:root {
      --brand: #0b5ead;
      --brand-dark: #073b78;
      --brand-soft: #e8f3ff;
      --accent: #11a879;
      --ink: #14213d;
      --muted: #627085;
      --line: #d9e5f2;
      --light: #f7fbff;
      --white: #ffffff;
      --shadow: 0 22px 60px rgba(7, 59, 120, .14);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--white);
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
    }

    .top-strip {
      background: var(--brand-dark);
      color: rgba(255, 255, 255, .9);
      font-size: .88rem;
    }

    .top-strip a {
      color: rgba(255, 255, 255, .9);
    }

    .site-navbar {
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 12px 28px rgba(20, 33, 61, .08);
      backdrop-filter: blur(12px);
    }

    .navbar-brand {
      gap: .75rem;
      font-weight: 800;
      color: var(--brand-dark);
      line-height: 1.1;
      white-space: normal;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 8px;
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--accent));
      box-shadow: 0 12px 24px rgba(11, 94, 173, .25);
    }

    .brand-small {
      display: block;
      margin-top: .2rem;
      font-size: .75rem;
      font-weight: 600;
      color: var(--muted);
    }

    .nav-link {
      color: #27364f;
      font-weight: 600;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--brand);
    }

    .btn-brand {
      --bs-btn-bg: var(--accent);
      --bs-btn-border-color: var(--accent);
      --bs-btn-hover-bg: #0d936a;
      --bs-btn-hover-border-color: #0d936a;
      --bs-btn-color: #fff;
      --bs-btn-hover-color: #fff;
      border-radius: 6px;
      font-weight: 700;
      box-shadow: 0 14px 30px rgba(17, 168, 121, .24);
    }

    .btn-outline-brand {
      --bs-btn-color: var(--brand-dark);
      --bs-btn-border-color: rgba(255, 255, 255, .7);
      --bs-btn-hover-bg: #fff;
      --bs-btn-hover-border-color: #fff;
      --bs-btn-hover-color: var(--brand-dark);
      border-radius: 6px;
      font-weight: 700;
    }

    .hero-carousel {
      position: relative;
      min-height: 650px;
      background: var(--brand-dark);
      overflow: hidden;
    }

    .hero-carousel .carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
      min-height: 650px;
    }

    .hero-carousel .carousel-item img {
      width: 100%;
      min-height: 650px;
      object-fit: cover;
      filter: saturate(1.04);
      transform: scale(1.02);
    }

    .hero-carousel .carousel-item.active img {
      animation: heroZoom 8s ease-out both;
    }

    .hero-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 39, 79, .9) 0%, rgba(7, 39, 79, .68) 42%, rgba(7, 39, 79, .18) 100%),
        linear-gradient(0deg, rgba(7, 39, 79, .62), rgba(7, 39, 79, .08));
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      color: var(--white);
      padding-top: 94px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .5rem .75rem;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      font-weight: 700;
      font-size: .9rem;
    }

    .hero-title {
      max-width: 780px;
      margin: 1.2rem 0 1rem;
      font-size: clamp(2.45rem, 5vw, 5rem);
      line-height: .98;
      font-weight: 800;
    }

    .hero-copy {
      max-width: 650px;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(1rem, 1.4vw, 1.18rem);
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      margin-top: 2rem;
    }

    .hero-info {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: -64px;
      position: relative;
      z-index: 4;
      background: var(--line);
      box-shadow: var(--shadow);
      border-radius: 8px;
      overflow: hidden;
    }

    .hero-info-item {
      min-height: 128px;
      padding: 1.35rem;
      background: var(--white);
    }

    .hero-info-item i {
      color: var(--accent);
      font-size: 1.8rem;
    }

    .hero-info-item h2 {
      margin: .65rem 0 .35rem;
      font-size: 1.02rem;
      font-weight: 800;
    }

    .hero-info-item p {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.6;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5rem;
      z-index: 5;
    }

    .carousel-indicators {
      z-index: 5;
      margin-bottom: 6.5rem;
    }

    .carousel-indicators [data-bs-target] {
      width: 36px;
      height: 4px;
      border-radius: 999px;
      border: 0;
    }

    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to { transform: scale(1.02); }
    }

    .section {
      padding: 92px 0;
    }

    .section-soft {
      background: var(--light);
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      color: var(--accent);
      font-weight: 800;
      text-transform: uppercase;
      font-size: .78rem;
      letter-spacing: 0;
    }

    .section-title {
      margin: .65rem 0 1rem;
      font-size: clamp(2rem, 3vw, 3.1rem);
      line-height: 1.08;
      font-weight: 800;
      color: var(--brand-dark);
    }

    .section-copy {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1.02rem;
    }

    .about-photo {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow);
      background: var(--brand-soft);
    }

    .about-photo img {
      width: 100%;
      min-height: 430px;
      object-fit: cover;
      display: block;
    }

    .experience-badge {
      position: absolute;
      right: 1.2rem;
      bottom: 1.2rem;
      width: min(220px, calc(100% - 2.4rem));
      padding: 1rem;
      border-radius: 8px;
      color: var(--white);
      background: var(--brand-dark);
      box-shadow: 0 18px 38px rgba(7, 59, 120, .25);
    }

    .experience-badge strong {
      display: block;
      font-size: 2rem;
      line-height: 1;
    }

    .check-list {
      display: grid;
      gap: .8rem;
      padding: 0;
      margin: 1.5rem 0 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: .7rem;
      color: #27364f;
      font-weight: 600;
    }

    .check-list i {
      color: var(--accent);
      font-size: 1.2rem;
      flex: 0 0 auto;
    }

    .feature-card,
    .course-card,
    .testimonial-card {
      height: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .feature-card:hover,
    .course-card:hover,
    .testimonial-card:hover {
      transform: translateY(-6px);
      border-color: rgba(11, 94, 173, .35);
      box-shadow: var(--shadow);
    }

    .feature-card {
      padding: 1.45rem;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      color: var(--brand);
      background: var(--brand-soft);
      font-size: 1.45rem;
    }

    .feature-card h3,
    .course-card h3 {
      margin: 1.1rem 0 .55rem;
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--brand-dark);
    }

    .feature-card p,
    .course-card p,
    .testimonial-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: .96rem;
    }

    .course-card {
      overflow: hidden;
    }

    .course-top {
      padding: 1.45rem;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      color: var(--white);
    }

    .course-top .icon-box {
      color: var(--white);
      background: rgba(255, 255, 255, .14);
    }

    .course-top h3 {
      color: var(--white);
    }

    .course-body {
      padding: 1.45rem;
    }

    .course-meta {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      margin-top: 1.2rem;
    }

    .course-meta span {
      padding: .42rem .62rem;
      border-radius: 999px;
      color: var(--brand-dark);
      background: var(--brand-soft);
      font-size: .78rem;
      font-weight: 800;
    }

    .stats-band {
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(7, 59, 120, .96), rgba(11, 94, 173, .9)),
        url("images/banner_3.b9d1b4cc80c6ac88a560.webp") center/cover;
    }

    .stat-number {
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 800;
      line-height: 1;
    }

    .stat-label {
      margin-top: .5rem;
      color: rgba(255, 255, 255, .78);
      font-weight: 600;
    }

    .doctor-panel {
      display: grid;
      grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
      gap: 0;
      overflow: hidden;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .doctor-panel img {
      width: 100%;
      height: 100%;
      min-height: 440px;
      object-fit: cover;
    }

    .doctor-content {
      padding: clamp(1.5rem, 4vw, 3.5rem);
      align-self: center;
    }

    .quote-mark {
      color: var(--accent);
      font-size: 2.7rem;
      line-height: 1;
    }

    .timeline {
      display: grid;
      gap: 1rem;
      margin-top: 1.6rem;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1rem;
      align-items: start;
    }

    .timeline-step span {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--white);
      background: var(--brand);
      font-weight: 800;
    }

    .timeline-step h3 {
      margin: 0 0 .25rem;
      font-size: 1.02rem;
      font-weight: 800;
      color: var(--brand-dark);
    }

    .timeline-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .testimonial-card {
      padding: 1.45rem;
    }

    .stars {
      color: #f5a524;
      margin-bottom: .85rem;
    }

    .cta {
      padding: 56px;
      border-radius: 8px;
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(7, 59, 120, .94), rgba(17, 168, 121, .88)),
        url("images/banner_4.e44f185154f42a64c798.webp") center/cover;
      box-shadow: var(--shadow);
    }

    .footer {
      color: rgba(255, 255, 255, .76);
      background: #061f3f;
    }

    .footer h2,
    .footer h3 {
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 800;
    }

    .footer a {
      color: rgba(255, 255, 255, .76);
    }

    .footer a:hover {
      color: var(--white);
    }

    .footer-list {
      display: grid;
      gap: .6rem;
      padding: 0;
      margin: 1rem 0 0;
      list-style: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    @media (max-width: 991.98px) {
      .top-strip .container {
        justify-content: center !important;
      }

      .hero-carousel,
      .hero-carousel .carousel,
      .hero-carousel .carousel-inner,
      .hero-carousel .carousel-item,
      .hero-carousel .carousel-item img {
        min-height: 620px;
      }

      .hero-content {
        padding-top: 110px;
      }

      .hero-info {
        grid-template-columns: 1fr;
        margin-top: 0;
        border-radius: 0;
      }

      .doctor-panel {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .navbar-brand {
        max-width: 250px;
        font-size: .95rem;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .hero-carousel,
      .hero-carousel .carousel,
      .hero-carousel .carousel-inner,
      .hero-carousel .carousel-item,
      .hero-carousel .carousel-item img {
        min-height: 680px;
      }

      .hero-title {
        font-size: 2.45rem;
      }

      .carousel-control-prev,
      .carousel-control-next {
        display: none;
      }

      .carousel-indicators {
        margin-bottom: 1.5rem;
      }

      .section {
        padding: 68px 0;
      }

      .about-photo img,
      .doctor-panel img {
        min-height: 340px;
      }

      .cta {
        padding: 32px 22px;
      }
    }