body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333; font-size: 14px;
  }

  h2, h3, h4, h5, h6{ font-weight: 600 !important;}

  body {
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Standard syntax */
  }
  
  header {
    background-color: #000000;
    color: white;
    padding: 20px 0;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
nav {
  display: flex;
  order: 3;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li a {
  color: #000; padding: 8px 20px;
  text-decoration: none;
  font-weight: 500; display: inline-block;
}
nav ul li a.active, nav ul li a:hover{ background: #00539a; border-radius: 30px; color: #fff;}

nav.active {
  display: block;
}

nav ul.mobile-hidden {
  display: none;
  flex-direction: column;
  width: 100%;
}

nav ul.mobile-visible {
  display: flex;
}

  nav ul li {
	margin-left: 5px;
}

  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 50px;
    margin-right: 10px;
  }
  section {
    padding: 60px 0;
  }
  .banner {
  
    background: url(../images/banner.jpg) no-repeat center top; background-size: cover;
    text-align: center;
    color: #000;
    padding: 120px 20px;
  }
  .banner h2 {
    font-size: 48px;
    margin-bottom: 10px; font-weight: 600;
  }
  .banner p {
    font-size: 18px;
  }
  .banner a {
    display: inline-block;
    margin-top: 20px;
    background: #00539a; font-size: 14px;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
  }
.banner a:hover{ background: #000; color: #fff;}

  .section-title {
    color: #000000;
   
    font-size: 32px;
    position: relative;
  }
 
  .services-boxes .col{ display: flex;}
 
  .service-card {
    background: #f5f5f5; width: 100%;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
  }

 .service-card i{ width: 75px; height: 75px; display: inline-flex; align-items: center; justify-content: center; color: #fff !important; background: #00539a; border-radius: 100%;} 
  .service-card h3{ font-size: 20px !important;}

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .service-card i {
    font-size: 36px;
    color: #000000;
    margin-bottom: 15px;
  }
  .about-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
  }
 

.col {
    flex: 1;
    min-width: 280px;
}

  .vision-mission {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  .cta {
    background-color: #000000;
    
    text-align: center;
    padding: 60px 20px;
  } 

 .cta a{ color: #00539a;}

  form input,
        form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        form button {
            background-color: #000000;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
        }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-wrapper i {
    color: #000000;
    margin-right: 8px;
  }
  .footer {
    background-color: #f4f4f4;
    color: #000;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
  }

  /* Scroll to top button */
  #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 20px;
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  #scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #d3d3d3; /* light grey */
    z-index: 999;
    transition: width 0.25s ease-out;
  }

  .cta .container {
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-info a {
  color: #000000;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

  /* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.faq-section h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}
.accordion {
  max-width: 800px; background: #015ea9; padding: 25px;
  margin: 0 auto;
}
.accordion-item {
  background: white;
  border-radius: 0px !important; border: none !important;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.accordion-header {
  background: #000000; border-radius: 0px !important; border: none !important;
  color: #000;
  cursor: pointer;
  padding: 15px 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 20px;
  background: #fdfdfd;
  border-top: 1px solid #ccc;
}

.faq {
  max-width: 800px;
  margin: 0 auto 20px;
}
.faq h4 {
  color: #000000;
  margin-bottom: 10px;
}
.faq p {
  margin: 0 0 20px;
}

/* Testimonials */
.testimonial-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-section h2 {
  color: #000000;
  margin-bottom: 40px;
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
}
.testimonial {
  min-width: 300px;
  background: #f1f1f1;
  padding:45px 25px;
  border-radius: 10px;
  scroll-snap-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial p {
  font-style: italic;
}
.testimonial .author {
  margin-top: 15px;
  font-weight: bold;
  color: #000000;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }
  header.scrolled {
    padding: 10px 0 !important;
    background-color: #075a60;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
 

.logo{ color: #00539a;  font-size: 24px; font-weight: 700;} 
.logo span{ color: #000; display: inline-block;} 

.services{ background: #00539a;} 

.service-card i {
            color: #00539a;
        }


        .faqs{ background: #f5f5f5;} 

        .contact{ background: #015ea9;} 

         form button {
            background-color: #fff; color: #015ea9;
        }

        form button:hover {
            background-color: #000; color: #fff;
        }

.contact-info a{ color: #fff; text-decoration: none;} 

.contact-info li{ display: flex; align-items: center; margin-bottom: 10px;} 
.contact-info li span{ padding-right: 10px;}
.contact-info li span i{ width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 100%; color: #015ea9; font-size: 18px;} 
.contact-info li p{ margin: 0px;}

@media (max-width: 768px) {
  .banner h2 {
    font-size: 2rem;
}

.menu-toggle {
    display: block;
    margin-left: auto; color: #000;
}

nav {
    width: 100%;
    order: 4;
}

nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
}

nav ul.active {
    display: flex;
}

.header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
}