/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  

  /* width: 100%; */
}

/* Show only on mobile */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}




.chat-button {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Use right: 20px; for bottom-right placement */
  width: 55px;
  height: 55px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.2s ease;
}

.chat-button:hover {
  transform: scale(1.1);
}

.chat-button img {
  width: 24px;
  height: 24px;
}




body {
  margin: 0;
  padding: 0;
  /* overflow: hidden; hides horizontal scrollbar */
}


@media (max-width: 768px) {
body {
    overflow-x: hidden;
    width: 100%;
  }
}


body {
  font-family: Arial, sans-serif;
  
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.header-section {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
 overflow-x: hidden;
}

/* Flex container */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}

/* Logo area */
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.logo-text p {
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  position: relative;
  right: 2%;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  cursor: pointer;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover effect underline */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #00b4db; /* Underline color */
  transition: width 0.3s ease;
}

/* Hover changes */
.nav a:hover {
  color: #00b4db; /* Change text color */
}

.nav a:hover::after {
  width: 100%; /* Animate underline */
}


.nav a:hover{
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.call-btn {
  background: linear-gradient(to right, #00b4db, #00d084);
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.call-icon {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 30px;
    height: 100%;
    width: 70%;
    padding-left: 10px;
    padding-right: 10px;

  }

   .header-section {
    overflow: hidden;
    /* width: 100%; */
    padding: 0px 0px;
    /* height: 150px; */
    
  } 

  

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
  }

  .call-btn {
    margin-top: 10px;
  }
  .logo-section {
    display: flex;
    align-items: flex-start;
  }

  .logo-img {
    height: 20%;
    width: 20%;
  }

  .logo-text h3 {
    font-size: medium;
  }

  .logo-text p {
    font-size: smaller;
  }
}







/* Hamburger button */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;
    position: relative;
    left: 90px;
    bottom: 50px;
  }

  .nav {
    display: none; /* Hide by default */
    flex-direction: column;
    width: 100%;
  }

  .nav.show {
    display: flex; /* Show on toggle */
    height: 25vh;
    padding-left: 20px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .call-btn {
    align-self: flex-start;
    margin-top: 10px;
    display: none;
  }

  body {
    overflow-x: hidden;
  }
}









.text-content {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.text-content h1 {
  font-size: 3.0rem;
  color: #111;
}

.text-content h1 span {
      -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(0, 152, 240), rgb(46, 184, 46)) text;
    font-size: 50px;
}

.text-content p {
  margin: 20px 0;
  color: #555;
  font-size: 1.1rem;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.primary {
  background:  linear-gradient(to right, #00b4db, #00d084);
  color: white;
}

.btn.primary:hover {
  background: #00a98e;
}

.btn.secondary {
  border: 2px solid #00a8e8;
  color: #00a8e8;
  background: white;
}

.btn.secondary:hover {
  background: #e6f9ff;
}

.slider-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 500px;

}

.slider {
  display: flex;
  width: 100%;
  animation: slide 30s infinite;
}

.slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes slide {
  0%    { transform: translateX(0%); }         /* Slide 1 */
  11%   { transform: translateX(0%); }

  12%   { transform: translateX(-100%); }      /* Slide 2 */
  23%   { transform: translateX(-100%); }

  24%   { transform: translateX(-200%); }      /* Slide 3 */
  35%   { transform: translateX(-200%); }

  36%   { transform: translateX(-300%); }      /* Slide 4 */
  47%   { transform: translateX(-300%); }

  48%   { transform: translateX(-400%); }      /* Slide 5 */
  59%   { transform: translateX(-400%); }

  60%   { transform: translateX(-500%); }      /* Slide 6 */
  71%   { transform: translateX(-500%); }

  72%   { transform: translateX(-600%); }      /* Slide 7 */
  83%   { transform: translateX(-600%); }

  84%   { transform: translateX(-700%); }      /* Slide 8 */
  99.9% { transform: translateX(-700%); }

  100%  { transform: translateX(0%); }         /* Loop back to Slide 1 */
}


/* Responsive */
@media (max-width: 900px) {
  .main-section {
    flex-direction: column;
    padding: 10px 20px;
    /* overflow-x: hidden; */
  }

  .text-content {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .slider-wrapper {
    width: 100%;
  }
  .text-content h1 {
  font-size: 2rem;
  color: #111;
}


  .text-content h1 span {
      -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(0, 152, 240), rgb(46, 184, 46)) text;
    font-size: 35px;
}

  
}









.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #ffffff;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
}

.feature {
  flex: 1 1 150px;
  max-width: 200px;
  
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2cb5e8, #36cb63);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

.feature h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
  color: #444;
}

/* About Section */
.about {
  background: #e6fff9;
  text-align: start;
  padding: 20px 20px;
}

.about h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  margin-left: 10px;
}

.about p {
  max-width: 2000px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.4;
  color: #333;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    
  }

  .feature {
    max-width: 100%;
  }

  .about h2 {
    font-size: 22px;
  }

  .about p {
    font-size: 16px;
    padding: 0 10px;
  }
}







 .card-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      padding: 20px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      flex: 1 1 300px;
      max-width: 350px;
      padding: 40px 25px;
      text-align: center;
      transition: transform 0.3s ease;
      
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2cb5e8, #36cb63);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .icon-circle i {
      color: #fff;
      font-size: 26px;
    }

    .card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .card p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
    }

    @media (max-width: 768px) {
      .card-section {
        flex-direction: column;
        align-items: center;
      }
    }








    .programs-section {
      padding: 20px 20px;
      text-align: center;
      max-width: 1400px;
      margin: auto;
    }

    .programs-section h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .programs-section p.description {
      font-size: 18px;
      color: #444;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      justify-content: center;
    }

    .program-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 4px 50px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .program-card:hover {
      transform: translateY(-5px);
    }

    .program-emoji {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .program-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .program-text {
      font-size: 16px;
      color: #444;
    }

    @media (max-width: 992px) {
      .programs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .programs-grid {
        grid-template-columns: 1fr;
      }

      .programs-section h2 {
        font-size: 28px;
      }

      .programs-section p.description {
        font-size: 16px;
      }
    }






    .choose-section {
      max-width: 1400px;
      margin: 20px auto;
      padding: 0 20px;
      /* flex-wrap: wrap; */
    }

    .choose-section h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 50px;
    }

    .choose-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .left-features {
      flex: 1;
      min-width: 300px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .feature-icon-1 {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(to bottom, #00aaff, #00cc66);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

    .feature-icon-1 img {
      width: 24px;
      height: 24px;
    }

    .feature-text h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .feature-text p {
      color: #444;
      font-size: 15px;
      margin: 0;
    }

    .right-certifications {
      flex: 1;
      min-width: 300px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
    }

    .right-certifications h3 {
      text-align: center;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .cert-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .cert-list li {
      display: flex;
      align-items: center;
      font-size: 16px;
      margin-bottom: 15px;
      color: #111;
    }

    .cert-list li::before {
      content: '🎖️';
      font-size: 18px;
      margin-right: 10px;
    }

    .confidential-note {
      background-color: #e6f4ff;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      color: #0077cc;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .choose-container {
        flex-direction: column;
      }

      .choose-section h2 {
        font-size: 26px;
      }

      .right-certifications {
        margin-top: 30px;
      }

      .feature-icon-1 {
        height: 60px;
        width: 80px;
        border-radius: 50%;

      }
    }





  .review-section {
  text-align: center;
  padding: 20px 20px;
  background: #f6fdfc;
  font-family: Arial, sans-serif;
}

.review-section h2 {
  font-size: 2.5rem;
  color: #001133;
}

.review-section p {
  font-size: 1.1rem;
  color: #333;
}

.review-slider {
  overflow: hidden;
  max-width: 1800px;
  margin: 30px auto 0;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom right, #eaf8ff, #edfff6);
}

.review-slides {
  display: flex;
  width: 100%;
  animation: reviewSlide 15s infinite;
}

.review-card {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.review-text {
  font-style: italic;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 15px;
}

.review-stars {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

.review-author {
  font-weight: bold;
  color: #222;
}

@keyframes reviewSlide {
  0% { transform: translateX(0%); }
  33.33% { transform: translateX(0%); }
  36.66% { transform: translateX(-100%); }
  66.66% { transform: translateX(-100%); }
  69.99% { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

@media (max-width: 768px) {
  .review-text {
    font-size: 1rem;
  }

  .review-card {
    padding: 20px;
  }
}




/* footer-start */


.faq-section {
  padding: 20px 20px;
  text-align: center;
  width: 100%;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #f8fdfa;
  color: #333;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px;
}

.site-footer {
  background: #0f766e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 60px;
}







.footer-contact {
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-container h2 {
  font-size: 2rem;
  
  color: #111827;
  text-align: center;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.contact-list li {
  flex: 1 1 45%;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  background-color: #f3f4f6;
}

.contact-list .icon {
  font-size: 1.8rem;
  color: #06b6d4;
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-list h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
  color: #111827;
}

.contact-list p,
.contact-list a {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.emergency {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.emergency h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111827;
}

.emergency-btn {
  background: linear-gradient(to right, #06b6d4, #22c55e);
  color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.emergency-btn:hover {
  background: linear-gradient(to right, #0891b2, #16a34a);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-list {
    flex-direction: column;
    margin-left: 7%;
  }

  .contact-list li {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .footer-container h2 {
    font-size: 1.6rem;
  }

  .emergency {
    margin-top: 5px;
  }
}







.footer {
  background-color: #101820;
  color: #ffffff;
  padding: 20px 20px;
}

.footer-container .footer-col-2 h2  {
  color: #fff;
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.footer-contact, .footer-map {
  flex: 1 1 300px;
}

.footer h2, .footer h3 {
  color: #00df83;
}

.footer-contact .info p {
  margin: 10px 0;
  line-height: 1.6;
}

.footer a {
  color: #00c2ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}



.footer-map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}





.footer {
  background: #0e1725;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 ;
}

.footer-col .rehab {
  flex: 1 1 220px;
  margin: 2px;
  font-size: xx-small;
  margin-bottom: 12px;
}

/* .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
} */


.footer-col p,
.footer-col a {
  font-size: 16px;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-col h3 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.footer-col a:hover {
  color: #00bfff;
}

.note {
  margin: 10px 0;
  font-size: 12px;
  color: #aaa;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 9px 0;
}

.cities a {
  display: inline-block;
  margin: 4px 6px 4px 0;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
}

.footer-bottom a {
  color: #00bfff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col h2 {
    font-size: medium;
  }

  .footer-col {
    margin-top: 50px; 
  }
}



/* Scrolling Section */


html {
  scroll-behavior: smooth;
}





/* Hamburger for mobile */



.menu-toggle {
  display: none;
  font-size: 24px;
  color: #00b4db;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-2 {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-2 .show {
    display: flex;
  }

  .nav-2 a, .call-btn {
    margin: 10px 0;
  }
}
