/*main css*/

          

        /* Sticky header styles */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: #1a202c;
            color: white;
            display: flex;
            align-items: center;
            padding: 0 20px;
            z-index: 1000;
            font-family: 'Lobster', cursive;
        }

        .header .logo {
            margin-right: 20px;
        }

        .header .name {
            font-size: 24px;
        }


        

        .enquiry {
            text-align: center;
        }

        

        .btn1 {
            background-color: #e53e3e;
            border: none;
            color: #ffffff;
            padding: 8px 20px;
            text-decoration: none;
            border-radius: 5px;
        }

        .btn1:hover {
            background-color: #c53030;
        }

          /* End Header */

        nav {
            background-color: #1a202c;
            text-align: center;
            padding: 20px 0;
            margin-top: 60px;
            
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 10px;
        }

        .btn {
            background-color: #e53e3e;
            border: none;
            color: #ffffff;
            padding: 10px 20px;
            margin-top: 30px;
            text-decoration: none;
            border-radius: 5px;
        }

        .btn:hover {
            background-color: #c53030;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            background-color: none;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif; /*remember to put font-family: Arial, sans-serif;  here*/
            background-color: #1a202c;
            color: #ffffff;
            width: 100%;
            overflow-x: hidden;
        }

        .section {
            padding: 20px 0;
            text-align: center;
            background-color: none;
            
        }



        .facility {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            padding-bottom: 0;
            background-color: none;
        }
        
        .section:nth-of-type(2) {
            background-color: #ffffff; /* Set background color to white */
            padding: 50px 0; /* Optional: Adjust padding as needed */
            text-align: center; /* Optional: Center align text */
            color: #000000;
        }
         
        .section:nth-of-type(2) h2 {
            margin-left: 10px; /* Center the heading horizontally */
            margin-right: 10px;
            max-width: 800px; /* Optional: Set max-width to prevent text from extending too far */
        }

        .section:nth-of-type(2) p {
            margin-left: 10px; /* Center the paragraph horizontally */
            margin-right: 10px;
            max-width: 800px; /* Optional: Set max-width to prevent text from extending too far */
        }

        

        .testimonial {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
            padding: 20px;
        }

        .facility .item {
            flex: 1 1 300px;
            background-color: none;
            color: #000000;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            margin-block-end: 10px;
            border: solid grey thin;
            box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5); /* Add box shadow */
        }

        .testimonial .item {
            flex: 1 1 300px;
            background-color: #4a5568;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
        }

        .facility h2, .testimonial h2 {
            margin-top: 0;
        }

        .testimonial p {
            margin-bottom: 10px;
        }

        .testimonial .author {
            font-style: italic;
            color: #a0aec0;
        }

         /* for contact form */
        .contact-form {
            text-align: center;
            padding: 1px;
         }

        .input-group {
            display: inline-block;
            width: 45%;
            height: 50px;
            margin-bottom: -2px;
        }

        .input-group input {
           width: calc(102.70% - 20px);
           height: 30px;
           background-color: #4a5568;
           color: #ffffff;
           border-radius: 10px;
           border: solid;
        }


        .contact-form textarea {
            width: 70%;
            margin-left: 16%;
            margin-right: 16%;
            margin-bottom: 8px;
            height: 80px;
            display: block;
            box-sizing: border-box;
            background-color: #4a5568;
            color: #ffffff;
            padding: 10px;
            border-radius: 10px;
            border: solid;
            resize: both;
            
        }
        

        contact-form input,
        contact-form textarea,
        contact-form button {
            display: block;
            width: calc(60% - 20px); /*Adjust text area width */
            margin-bottom: 10px;
            height: 50px;
            padding: 10px;
            box-sizing: border-box;
            border: none;
            background-color: #4a5568;
            color: #ffffff;
            border-radius: 5px;
        }

        .contact-form button {
            background-color: #ff5ccd;
            color: #ffffff;
            display: block;
            cursor: pointer;
            margin: 0 auto;
            margin-bottom: -30px;
            width: 100px;
            padding: 5px;
            border-radius: 10px;
            border: none;

        }
         /* End of contact form */


        html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
            scroll-padding-top: 70px;
            /* Adjust as needed to account for fixed headers */
            scroll-margin-top: 70px;
            /* Adjust as needed to account for fixed headers */
            transition: scroll-behavior 0.5s ease;
        }

        .fit-image {
            max-width: 90%;
            height: auto;
            margin-top: 50px;
            /* Adjust this value as needed */
            border-radius: 10px;
        }


         /* for the divider */
        .divider {
            border: 1px solid white;
            max-width: 100%;
            margin-left: 12px;
            margin-right: 12px;
        }
        /* end of the divider */

        /* for gallery styles */
        .gallery {
            background-color: #ffffff;
            /* Set gallery background color */
            padding: 40px 0;
            /* Adjust padding as needed */
            
            padding-bottom: 0;

            
        }


        .gallery-heading {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-left: 12px;
            margin-right: 12px;
        }

        .gallery-title {
            margin-bottom: 10px;
            font-weight: bold;
            color: #000000;
            /* Adjust text color as needed */
        }

        .gallery-description {
            margin-bottom: 20px;
            text-align: right;
            font-style: italic;
            color: #000000;
            /* Adjust text color as needed */
            word-wrap: break-word;
            /* Ensures long words are wrapped */
            overflow-wrap: break-word;
        }
        

        
         .gallery {
            width: 100%;
            overflow: hidden;
          
        }

         .gallery-container {
          display: flex;
          animation: slideGallery 20s infinite;
          
        }

         @keyframes slideGallery {
         0% { transform: translateX(0%); }
         16.666% { transform: translateX(0%); }
         25% { transform: translateX(-100%); }
         41.666% { transform: translateX(-100%); }
         50% { transform: translateX(-200%); }
         66.666% { transform: translateX(-200%); }
         75% { transform: translateX(-300%); }
         91.666% { transform: translateX(-300%); }
         100% { transform: translateX(-400%); }
        }


         .gallery-item {
          flex: 0 0 auto;
          width: 100%;
         
         
        }

         .gallery-item img {
          max-width: 100%;
          max-height: 100%;
          border-radius: 12px;
        }
        /* End of gallery image*/



         .section:first-of-type {
          background-color: #1a202c; /* Set background color to white */
          padding: 50px 0; /* Optional: Adjust padding as needed */
          text-align: center; /* Optional: Center align text */
        }

         .section:first-of-type h2 {
          margin-bottom: 20px;
          color: none; /* Optional: Set text color */
        }

         .section:first-of-type p {
          color: none; /* Optional: Set text color */
        }

        /* Goto up button*/
        #goToTopButton {
          display: none; /* Hide the button by default */
          position: fixed; /* Fixed position to keep it in the same place as the user scrolls */
          bottom: 20px; /* Adjust the distance from the bottom */
          left: 20px; /* Adjust the distance from the right */
          z-index: 99; /* Ensure it appears above other content */
          background-color: #007bff; /* Button background color */
          color: white; /* Button text color */
          border: none; /* Remove button border */
          border-radius: 20%; /* Round button corners */
          cursor: pointer; /* Show pointer cursor on hover */
          padding: 15px; /* Add some padding */
        }

        #goToTopButton:hover {
          background-color: #b30000; /* Button background color on hover */
        }
        /* End goto up button */


         /* About Us */
        .about-ds {
            -webkit-tap-highlight-color: rgba(0,0,0,0);
      -webkit-text-size-adjust: 100%;
      font-size: 14px;
      line-height: 1.42857143;
      color: #333;
      font-family: "Roboto", sans-serif;
      box-sizing: border-box;
      display: block;
      padding: 100px 0;
      }
       /* End About Us */

       .footer {
        padding: 20px 0;
        background: #1a202c;
        color: white;
        text-align: center;
      }
      .footer .social-icons a {
        color: white;
        margin: 0 10px;
        font-size: 30px;
      }

