  :root {
      --primary: #0E6F6D;
      --primary-dark: #0A4F4E;
      --secondary: #8BC57A;
      --accent: #F28C28;
      --light-bg: #F6FBFA;
      --dark: #222;
      --white: #ffffff;
  }

  .hero-wrapper {
      position: relative;
      height: 100vh;
      overflow: hidden;
  }

  /* Slides */
  .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: top center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
  }

  .hero-slide.active {
      opacity: 1;
      z-index: 1;
  }

  /* Overlay */
  .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
  }

  /* Center Image */
  .hero-center {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-front-image {
      max-width: 85%;
      max-height: 80%;
  }

  /* Text Slide */
  .hero-text {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 20px;
  }

  .hero-text h1 {
      font-size: 46px;
      font-weight: 700;
  }

  .hero-text p {
      font-size: 18px;
      margin-top: 10px;
      max-width: 600px;
  }

  /* Responsive */
  @media (max-width:768px) {
      .hero-text h1 {
          font-size: 32px;
      }

      .hero-front-image {
          max-width: 95%;
      }
  }


  .about-cut-section {
      padding: 90px 30px;
      background: #fff;
  }

  /* IMAGE FRAME */
  .image-frame {
      position: relative;
      background: var(--primary);
      border-radius: 28px;
      padding: 12px 0 12px 12px;
      /* left side thick */
      max-width: 95%;
  }

  .image-frame img {
      width: 100%;
      display: block;
      border-radius: 20px;
  }

  /* CUT CTA BUTTON */
  .cut-cta-btn {
      position: absolute;
      right: -10px;
      bottom: -18px;
      background: var(--accent);
      color: #000;
      padding: 14px 26px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      z-index: 5;
  }

  /* Button cut effect */
  .cut-cta-btn::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 0;
      width: 18px;
      height: 100%;
      background: var(--accent);
      clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }

  /* Hover */
  .cut-cta-btn:hover {
      transform: translateY(-3px);
      background: #ffc107;
      color: #000;
  }

  /* TEXT */
  .about-text h2 {
      font-size: 40px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
  }

  .about-text p {
      font-size: 16px;
      line-height: 1.9;
      color: #444;
      margin-bottom: 15px;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .image-frame {
          max-width: 100%;
      }

      .cut-cta-btn {
          right: 10px;
          bottom: -20px;
      }

      .about-text {
          margin-top: 50px;
      }

      .about-text h2 {
          font-size: 32px;
      }
  }

  /* treatment */
  .treatment-section {
      padding: 80px 20px;
      background: rgba(242, 140, 40, 0.08);
      /* light accent */
  }

  .section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 50px;
  }

  .treatment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
  }

  .treatment-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.35s ease;
  }

  .treatment-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
  }

  .treatment-card h4 {
      font-size: 19px;
      font-weight: 600;
      color: var(--dark);
      margin: 18px 18px 8px;
  }

  .treatment-card p {
      font-size: 14.5px;
      line-height: 1.7;
      color: #555;
      margin: 0 18px 22px;
  }

  .treatment-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .section-title {
          font-size: 28px;
      }

      .treatment-card img {
          height: 160px;
      }
  }

  /* counter */
  .counter-section {
      padding: 90px 20px;
      background: linear-gradient(135deg, #185a58ff, #083e3d);
  }

  .counter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      text-align: center;
  }

  .counter-box {
      padding: 30px 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(6px);
      transition: all 0.3s ease;
  }

  .counter-box:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.08);
  }

  .counter-icon {
      width: 70px;
      height: 70px;
      background: var(--accent);
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 18px;
  }

  .counter-box h3 {
      font-size: 42px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
  }

  .counter-box p {
      font-size: 15px;
      color: #d6f1ef;
      letter-spacing: 0.5px;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .counter-box h3 {
          font-size: 34px;
      }
  }

  /* why choose */
  .why-choose-section {
      padding: 90px 20px;
      background: #fff;
  }

  .why-title {
      text-align: center;
      font-size: 38px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 50px;
  }

  .why-wrapper {
      display: flex;
      gap: 30px;
      align-items: stretch;
  }

  /* LEFT TABS */
  .why-tabs {
      width: 30%;
      background: #f5fafa;
      border-radius: 14px;
      padding: 15px;
  }

  .why-tab {
      width: 100%;
      padding: 14px 18px;
      background: transparent;
      border: none;
      border-bottom: 1px solid #ddd;
      text-align: left;
      font-weight: 600;
      cursor: pointer;
      color: #333;
      transition: all 0.3s ease;
  }

  .why-tab:last-child {
      border-bottom: none;
  }

  .why-tab:hover,
  .why-tab.active {
      background: var(--accent);
      color: #000;
      border-radius: 8px;
  }

  /* RIGHT CONTENT */
  .why-content {
      width: 70%;
      position: relative;
  }

  .why-box {
      display: none;
      position: relative;
      height: 100%;
      border-radius: 20px;
      background: linear-gradient(135deg, #0A4F4E, #063c3b);
      overflow: hidden;
  }

  .why-box.active {
      display: block;
  }

  .why-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
  }

  .why-text {
      position: relative;
      z-index: 2;
      padding: 50px;
      color: #fff;
  }

  .why-text h3 {
      font-size: 30px;
      margin-bottom: 15px;
  }

  .why-text p {
      font-size: 16px;
      line-height: 1.8;
      max-width: 600px;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .why-wrapper {
          flex-direction: column;
      }

      .why-tabs,
      .why-content {
          width: 100%;
      }

      .why-text {
          padding: 35px;
      }
  }

  /* contact section */
  .contact-section {
      padding: 80px 0;
  }

  /* LEFT INFO */
  .contact-info {
      background: linear-gradient(135deg, #0A4F4E, #063c3b);
      color: #fff;
      padding: 60px 50px;
  }

  .contact-info h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .info-text {
      font-size: 15.5px;
      line-height: 1.8;
      margin-bottom: 30px;
      color: #e0f2f1;
  }

  .contact-list {
      list-style: none;
      padding: 0;
  }

  .contact-list li {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      font-size: 15px;
  }

  .contact-list i {
      color: var(--accent);
      font-size: 18px;
      margin-right: 12px;
      min-width: 22px;
  }

  .contact-list a {
      color: #fff;
      text-decoration: none;
  }

  .contact-list a:hover {
      color: var(--accent);
  }

  /* RIGHT FORM */
  .contact-form-box {
      background: #fff;
      padding: 60px 60px;
  }

  .contact-form-box h3 {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 25px;
  }

  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 14px 15px;
      margin-bottom: 18px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 14px;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
      outline: none;
      border-color: var(--primary);
  }

  .contact-form button {
      padding: 12px 30px;
  }

  /* Responsive */
  @media (max-width: 991px) {

      .contact-info,
      .contact-form-box {
          padding: 40px 25px;
      }

      .contact-info h2 {
          font-size: 30px;
      }
  }

  /* testimonial */
  .testimonial-section {
      padding: 90px 20px;
      background: linear-gradient(135deg, var(--accent), #d96d0f);
      overflow: hidden;
  }

  .testimonial-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: #000;
      margin-bottom: 50px;
  }

  .testimonial-slider {
      overflow: hidden;
      width: 100%;
  }

  .testimonial-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: scrollTestimonials 35s linear infinite;
  }

  .testimonial-card {
      min-width: 320px;
      background: #fff;
      border-radius: 18px;
      padding: 28px 25px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  .testimonial-card p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 15px;
  }

  .stars {
      color: var(--accent);
  }

  /* Continuous animation */
  @keyframes scrollTestimonials {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  /* Pause on hover (optional but recommended) */
  .testimonial-slider:hover .testimonial-track {
      animation-play-state: paused;
  }

  /* Mobile */
  @media (max-width:768px) {
      .testimonial-card {
          min-width: 280px;
      }
  }


  .program-section {
      padding: 90px 20px;
      background: linear-gradient(135deg, #0A4F4E, #063c3b);
      color: #fff;
  }

  .program-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
  }

  .program-intro {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 50px;
      font-size: 16px;
      line-height: 1.8;
      color: #d6f1ef;
  }

  .program-list {
      max-width: 1000px;
      margin: auto;
  }

  .program-item {
      margin-bottom: 30px;
      padding-left: 20px;
      border-left: 4px solid var(--accent);
  }

  .program-item h4 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--accent);
  }

  .program-item p {
      font-size: 15.5px;
      line-height: 1.9;
      color: #e9f8f7;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .program-title {
          font-size: 28px;
      }

      .program-item h4 {
          font-size: 19px;
      }
  }

  .map-section {
  width: 100%;
  height: 450px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
