.dd-toggle:hover {
    background: #e9ffff;
}

.dd-menu a {
    color: #001543;
}

.header {
    background: #e9ffff;
}

.brand img {
    margin: 10px 0;
}

a {
    color: #002d42;
    font-weight: 700;
}

.dd-toggle {
    color: #002d42;
    font-weight: 800;
}

.dd-menu {
    min-width: 350px;
    margin-top: 0;
    margin-left: 0;
}

/* About Us Main Section CSS */
.about-us {
  max-width: var(--container);
  margin: 2rem auto;
  padding: 0 1rem;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  font-size: 1.75rem;
  color: #002d42; /* Adjust to your theme color */
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.about-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
  line-height: 1.6;
}

/* Responsive adjustments */
@media(max-width: 768px) {
  .about-section h2 {
    font-size: 1.5rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
}

/* Contact Us Section CSS */
.contact-us {
  max-width: var(--container);
  margin: 2rem auto;
  padding: 0 1rem;
}

.contact-info,
.contact-map {
  margin-bottom: 3rem;
}

.contact-info h2,
.contact-map h2 {
  font-size: 1.75rem;
  color: #002d42; /* Change to your theme color */
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #002d42;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #002d42;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #0056b3;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width: 768px) {
  .contact-info h2,
  .contact-map h2 {
    font-size: 1.5rem;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    text-align: center;
  }
}





    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero1 {
      background: url('../../assets/img/3.webp') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }

    .hero1::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }

    .hero1-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }

    .hero1 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero1 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    /* Features/Benefits */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }

    .testimonial {
      margin-bottom: 1rem;
    }

    .testimonial p {
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }

    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero1 h1 { font-size: 2rem; }
      .hero1 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }

    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero2 {
      background: url('../../assets/img/1.webp') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }
    .hero2::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .hero2-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }
    .hero2 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero2 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    /* Features/Benefits */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }
    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }
    .testimonial {
      margin-bottom: 1rem;
    }
    .testimonial p {
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero2 h1 { font-size: 2rem; }
      .hero2 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }




    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero3 {
      background: url('../../assets/img/10.webp') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }
    .hero3::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .hero3-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }
    .hero3 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero3 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    /* Features/Benefits */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }
    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }
    .testimonial {
      margin-bottom: 1rem;
    }
    .testimonial p {
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero3 h1 { font-size: 2rem; }
      .hero3 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }


    /* Reset & body */
    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero4 {
      background: url('../../assets/img/7.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }
    .hero4::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .hero4-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }
    .hero4 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero4 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    ul {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Features/Benefits */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }
    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }
    .testimonial {
      margin-bottom: 1rem;
    }
    .testimonial p {
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero4 h1 { font-size: 2rem; }
      .hero4 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }




    /* Reset & body */
    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero5 {
      background: url('../../assets/img/2.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }
    .hero5::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .hero5-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }
    .hero5 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero5 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    ul {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Features/Benefits */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }
    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }
    .testimonial {
      margin-bottom: 1rem;
    }
    .testimonial p {
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero5 h1 { font-size: 2rem; }
      .hero5 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }



    img {
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    /* Hero Section */
    .hero6 {
      background: url('../../assets/img/6.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
    }
    .hero6::after {
      content: "";
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.5);
    }
    .hero6-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease forwards;
    }
    .hero6 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero6 p {
      font-size: 1.2rem;
    }

    /* Section Headings */
    section h2 {
      font-size: 2rem;
      color: #002d42;
      margin-bottom: 1rem;
      display: inline-block;
      padding-bottom: 0.25rem;
      animation: fadeInUp 1s ease forwards;
    }

    main {
      max-width: var(--container);
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
    }

    section p {
      margin-bottom: 1rem;
      font-size: 1rem;
      text-align: justify;
      animation: fadeIn 1s ease forwards;
    }

    ul {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Features / Specialties */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background-color: white;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease forwards;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .feature-card img {
      max-width: 40px;
      margin-bottom: 1rem;
    }
    .feature-card h3 {
      margin-bottom: 0.5rem;
      color: #002d42;
    }

    /* Testimonials */
    .testimonials {
      background-color: #e7f1ff;
      padding: 2rem 1rem;
      border-radius: 8px;
      animation: fadeIn 1s ease forwards;
    }
    .testimonial {
      margin-bottom: 1rem;
    }
    .testimonial p {
      font-style: italic;
    }

    /* CTA Button */
    .cta {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
    .cta a {
      background-color: #002d42;
      color: white;
      padding: 1rem 2rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    .cta a:hover {
      background-color: #0056b3;
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {opacity:0; transform: translateY(20px);}
      100% {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero6 h1 { font-size: 2rem; }
      .hero6 p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }


.facility__txt p {
    text-align: left;
}


.mainindex{
    max-width: 3000px;
    margin: 0;
    padding: 0;
}

.ctaheader a{
    padding: 10px 8px;
}

.ctaheader{
    margin-top: 0;
}

.sf__brand{
    font-size: 24px;
}


.text-center {
  text-align: center;
}
.d-inline{
  display: inline-block;
}

@media (max-width: 1024px) {
    .nav__toggle {
        display: flex;
        padding-top: 12px;
    }
}


@media (max-width: 550px) {
  .topbar {
    display: none;
  }
.about {
    padding: 0 20px;
}
.facilities {
    padding: 00px 20px;
}
.activities {
    padding: 0px 16px;
}
.contact {
    padding: 0px 20px;
}


}







