/* ===================================================
       ROOT & RESET
    =================================================== */
    :root {
      --primary: #2563a8;
      --primary-dark: #1a4880;
      --primary-deep: #0f2d52;
      --gold-accent: #c9a84c;
      --gold-light: #e0c47a;
      --text-main: #1a2030;
      --text-muted: #566070;
      --surface-light: #f5f6f8;
      --white: #ffffff;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "DM Sans", sans-serif;
      color: var(--text-main);
      background: var(--white);
      padding-top: 78px;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Cormorant Garamond", serif;
    }

    img {
      display: block;
    }

    /* ===================================================
       NAVBAR
    =================================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 18px 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition:
        padding 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }

    .navbar.scrolled {
      padding: 10px 0;
      border-color: rgba(37, 99, 168, 0.12);
      box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
    }

    .navbar-brand {
      font-family: "Marcellus", serif;
      font-size: 1.75rem;
      color: var(--primary) !important;
      letter-spacing: 0.4px;
      font-weight: 700;
    }

    .nav-link {
      font-family: "DM Sans", sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main) !important;
      margin: 0 10px;
      padding: 6px 2px !important;
      position: relative;
      transition: color 0.25s;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    /*.nav-link:hover,*/
    /*.nav-link.active {*/
    /*  color: var(--primary) !important;*/
    /*}*/

    /*.nav-link:hover::after,*/
    /*.nav-link.active::after {*/
    /*  width: 80%;*/
    /*}*/

    .btn-book {
      display: inline-block;
      padding: 10px 26px;
      background: var(--primary);
      color: #fff !important;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.03em;
      border-radius: 50px;
      text-decoration: none;
      border: 2px solid var(--primary);
      transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.25s;
    }

    .btn-book:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(37, 99, 168, 0.28);
    }

    /* ===================================================
       HERO / SLIDER
    =================================================== */
    #mainSlider {
      overflow: hidden;
    }

    #mainSlider .carousel-item {
      height: 540px;
      position: relative;
    }

    #mainSlider .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    #mainSlider .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg,
          rgba(10, 20, 45, 0.76) 0%,
          rgba(10, 20, 45, 0.28) 70%);
      z-index: 1;
    }

    .custom-caption {
      position: absolute;
      top: 50%;
      left: 9%;
      transform: translateY(-50%);
      z-index: 2;
      max-width: 540px;
      color: #fff;
    }

    .custom-caption .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 18px;
    }

    .custom-caption .eyebrow::before {
      content: "";
      display: block;
      width: 30px;
      height: 1.5px;
      background: var(--gold-light);
      flex-shrink: 0;
    }

    .custom-caption h1 {
      font-size: 54px;
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 18px;
    }

    .custom-caption p {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.75;
      opacity: 0.85;
      margin-bottom: 32px;
      max-width: 420px;
    }

    .btn-banner {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background: var(--primary);
      color: #fff;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      border: 2px solid var(--primary);
      transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.25s;
    }

    .btn-banner:hover {
      background: transparent;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(37, 99, 168, 0.35);
    }

    .btn-banner svg {
      transition: transform 0.25s;
    }

    .btn-banner:hover svg {
      transform: translateX(4px);
    }

    .carousel-indicators {
      bottom: 22px;
      gap: 6px;
    }

    .carousel-indicators [data-bs-target] {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      transition:
        background 0.3s,
        transform 0.3s;
    }

    .carousel-indicators .active {
      background: var(--gold-accent);
      transform: scale(1.3);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 48px;
      height: 48px;
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      margin: 0 20px;
      opacity: 0;
      transition:
        opacity 0.3s,
        background 0.25s;
    }

    #mainSlider:hover .carousel-control-prev,
    #mainSlider:hover .carousel-control-next {
      opacity: 1;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: rgba(37, 99, 168, 0.4);
    }

    /* ===================================================
       SECTION DIVIDER
    =================================================== */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(37, 99, 168, 0.15) 50%,
          transparent 100%);
    }

    /* ===================================================
       ABOUT — SHARED
    =================================================== */
    .about-premium {
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-grid.reverse {
      direction: rtl;
    }

    .about-grid.reverse>* {
      direction: ltr;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-glass {
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      /* height: 420px; */
      position: relative;
    }

    .about-img-glass img {
      width: 100%;
      /* height: 608px; */
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s ease;
    }

    .about-img-glass:hover img {
      transform: scale(1.03);
    }

    .about-img-wrap::before {
      content: "";
      position: absolute;
      border-radius: 20px;
      z-index: -1;
    }

    .img-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      padding: 9px 18px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.05em;
      backdrop-filter: blur(14px);
    }

    .about-content {
      padding: 0;
    }

    .sub-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .sub-label::before {
      content: "";
      display: block;
      width: 28px;
      height: 1.5px;
      flex-shrink: 0;
    }

    .about-content h2 {
      font-size: 54px;
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -0.01em;
      margin-bottom: 26px;
    }

    .about-content p {
      font-size: 15px;
      line-height: 1.82;
      font-weight: 300;
      margin-bottom: 14px;
    }

    .tick-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 20px;
    }

    .tick-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      line-height: 1.5;
    }

    .tick-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .tick-icon svg {
      width: 10px;
      height: 10px;
    }

    .btn-solid {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-solid .arrow {
      font-size: 16px;
      transition: transform 0.3s;
    }

    .btn-solid:hover .arrow {
      transform: translateX(4px);
    }

    /* ===================================================
       ABOUT DOCTOR — DARK
    =================================================== */
    .about-doctor {
      background: #0d1525;
      background-image:
        radial-gradient(ellipse at 85% 15%,
          rgba(37, 99, 168, 0.16) 0%,
          transparent 55%),
        radial-gradient(ellipse at 8% 85%,
          rgba(201, 168, 76, 0.07) 0%,
          transparent 50%);
    }

    .about-doctor .about-img-glass {
      box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .about-doctor .about-img-wrap::before {
      top: 24px;
      left: -24px;
      right: 24px;
      bottom: -24px;
      background: rgba(37, 99, 168, 0.1);
      border: 1px solid rgba(37, 99, 168, 0.2);
    }

    .about-doctor .img-badge {
      background: rgba(201, 168, 76, 0.18);
      border: 1px solid rgba(201, 168, 76, 0.38);
      color: blue;
    }

    .about-doctor .sub-label {
      color: var(--gold-accent);
    }

    .about-doctor .sub-label::before {
      background: var(--gold-accent);
    }

    .about-doctor .about-content h2 {
      color: #fff;
    }

    .about-doctor .about-content p {
      color: rgba(255, 255, 255, 0.58);
    }

    .about-doctor .about-content p strong {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .about-doctor .tick-item {
      color: rgba(255, 255, 255, 0.68);
    }

    .about-doctor .tick-icon {
      background: rgba(37, 99, 168, 0.2);
      border: 1px solid rgba(37, 99, 168, 0.38);
    }

    .about-doctor .tick-icon svg {
      stroke: var(--gold-light);
    }

    .about-doctor .btn-solid {
      background: rgba(37, 99, 168, 0.16);
      border: 1px solid rgba(37, 99, 168, 0.48);
      color: #8ab4e8;
    }

    .about-doctor .btn-solid:hover {
      background: rgba(37, 99, 168, 0.3);
      border-color: rgba(37, 99, 168, 0.75);
      color: #fff;
    }

    /* ===================================================
       ABOUT CLINIC — LIGHT
    =================================================== */
    .about-clinic {
      background: #f5f6f8;
      background-image:
        radial-gradient(ellipse at 15% 20%,
          rgba(37, 99, 168, 0.05) 0%,
          transparent 55%),
        radial-gradient(ellipse at 90% 80%,
          rgba(201, 168, 76, 0.05) 0%,
          transparent 55%);
    }

    .about-clinic .about-img-glass {
      box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.85);
    }

    .about-clinic .about-img-wrap::before {
      top: 24px;
      right: -24px;
      left: 24px;
      bottom: -24px;
      background: rgba(37, 99, 168, 0.06);
      border: 1px solid rgba(37, 99, 168, 0.1);
    }

    .about-clinic .img-badge {
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.95);
      color: var(--primary-dark);
    }

    .about-clinic .sub-label {
      color: var(--primary);
    }

    .about-clinic .sub-label::before {
      background: var(--primary);
    }

    .about-clinic .about-content h2 {
      color: #0d1525;
    }

    .about-clinic .about-content p {
      color: #3a4a62;
    }

    .about-clinic .about-content p strong {
      color: #0d1525;
      font-weight: 500;
    }

    .about-clinic .btn-solid {
      background: var(--primary);
      border: 2px solid var(--primary);
      color: #fff;
    }

    .about-clinic .btn-solid:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
    }

    /* ===================================================
       SERVICES
    =================================================== */
    .services-section {
      padding: 100px 0;
      background: #fff;
      position: relative;
    }

    .services-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%,
          rgba(37, 99, 168, 0.04) 0%,
          transparent 60%);
      pointer-events: none;
    }

    .sec-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .sec-header .eyebrow-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .sec-header .eyebrow-label::before,
    .sec-header .eyebrow-label::after {
      content: "";
      display: block;
      height: 1.5px;
      width: 28px;
      background: var(--gold-accent);
    }

    .sec-header h2 {
      font-size: 48px;
      font-weight: 500;
      color: #0d1525;
      line-height: 1.08;
    }

    .service-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(37, 99, 168, 0.08);
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 52px rgba(0, 0, 0, 0.1);
      border-color: rgba(37, 99, 168, 0.22);
    }

    .service-card-img-wrap {
      overflow: hidden;
      /* height: 220px; */
    }

    .service-card-img {
      width: 100%;
      /* height: 220px; */
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-card-img {
      transform: scale(1.04);
    }

    .service-content {
      padding: 28px 26px 26px;
          background-color: #0d1525;
    }

    .service-content h3 {
      font-size: 24px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .service-content p {
      font-size: 14px;
      color: #ffffff94
;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 22px;
    }

    .read-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      background: transparent;
      color: #8ab4e8;
      border: 1.5px solid var(--primary);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition:
        background 0.25s,
        color 0.25s,
        transform 0.2s;
    }

    .read-btn:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ===================================================
       PRICING
    =================================================== */
    .rg-pricing-wrap {
      padding: 100px 0;
      background: #0d1525;
      background-image:
        radial-gradient(ellipse at 80% 10%,
          rgba(37, 99, 168, 0.2) 0%,
          transparent 50%),
        radial-gradient(ellipse at 10% 90%,
          rgba(201, 168, 76, 0.09) 0%,
          transparent 50%);
      position: relative;
      overflow: hidden;
    }

    .rg-pricing-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          transparent,
          transparent 40px,
          rgba(255, 255, 255, 0.012) 40px,
          rgba(255, 255, 255, 0.012) 41px);
      pointer-events: none;
    }

    .rg-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .rg-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 52px;
      font-weight: 500;
      color: #fff;
      text-align: center;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }

    .rg-subtitle {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
      text-align: center;
      margin-bottom: 60px;
      line-height: 1.7;
    }

    .rg-category {
      margin-bottom: 52px;
    }

    .rg-category-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--gold-accent);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-style: italic;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .rg-category-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg,
          rgba(201, 168, 76, 0.3),
          transparent);
    }

    .rg-grid {
      display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
      gap: 20px;
    }

      .rg-grids {
      display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
      gap: 20px;
    }

/* 📱 Tablet */
@media (max-width: 992px) {
    .rg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rg-grids {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 📱 Mobile */
@media (max-width: 576px) {
    .rg-grid {
        grid-template-columns: 1fr !important;
    }

    .rg-grids {
        grid-template-columns: 1fr !important;
    }
} 

    .rg-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 18px;
      padding: 32px 28px 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    }

    .rg-card:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(37, 99, 168, 0.42);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .rg-highlight {
      background: rgba(37, 99, 168, 0.12);
      border-color: rgba(37, 99, 168, 0.38);
    }

    .rg-highlight:hover {
      background: rgba(37, 99, 168, 0.2);
      border-color: rgba(37, 99, 168, 0.62);
    }

    .rg-badge {
      display: inline-block;
      padding: 4px 12px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 50px;
      width: fit-content;
    }

    .rg-card h4 {
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      font-weight: 500;
      color: #fff;
      line-height: 1.2;
    }

    .rg-time {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400;
      letter-spacing: 0.04em;
    }

    .rg-card h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: 44px;
      font-weight: 600;
      color: var(--gold-accent);
      line-height: 1;
      margin: 4px 0;
    }

    .rg-card p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
      line-height: 1.65;
      flex: 1;
    }

    .rg-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 24px;
      background: transparent;
      border: 1.5px solid rgba(37, 99, 168, 0.45);
      color: #8ab4e8;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-decoration: none;
      margin-top: 6px;
      transition:
        background 0.25s,
        border-color 0.25s,
        color 0.25s,
        transform 0.2s;
    }

    .rg-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ===================================================
       RESPONSIVE
    =================================================== */
    @media (max-width: 992px) {
      .about-premium {
        padding: 80px 0;
      }

      .about-grid,
      .about-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
      }

      .about-img-glass {
        height: 320px;
      }

      .about-content h2 {
        font-size: 42px;
      }

      .tick-list {
        grid-template-columns: 1fr;
      }

      .about-img-wrap::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      #mainSlider .carousel-item {
        height: 360px;
      }

      .custom-caption {
        left: 5%;
        max-width: 90%;
      }

      .custom-caption h1 {
        font-size: 30px;
      }

      .custom-caption p {
        font-size: 14px;
      }

      .sec-header h2 {
        font-size: 36px;
      }

      .rg-title {
        font-size: 38px;
      }
    }

    @media (max-width: 576px) {
      .about-img-glass {
        /*height: 260px;*/
      }

      .about-content h2 {
        font-size: 34px;
      }

      .about-premium {
        padding: 60px 0;
      }

      .services-section {
        padding: 72px 0;
      }

      .rg-pricing-wrap {
        padding: 72px 0;
      }
    }

    [data-aos] {
      will-change: transform, opacity;
    }

    .rg-progress {
      position: relative;
      padding: 90px 20px;
      background: linear-gradient(135deg,
          var(--primary-deep),
          var(--primary));
      color: #fff;
      text-align: center;
    }

    .rg-progress-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
    }

    .rg-progress-container {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: auto;
    }

    .rg-progress h2 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .rg-progress p {
      color: #dbe4f0;
      margin-bottom: 50px;
    }

    /* Grid */
    .rg-progress-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
    }

    /* Box */
    .rg-progress-box {
      background: rgba(255, 255, 255, 0.08);
      padding: 30px;
      border-radius: 15px;
      backdrop-filter: blur(6px);
      transition: 0.3s;
    }

    .rg-progress-box:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.15);
    }

    /* Counter */
    .rg-counter {
      font-size: 40px;
      color: var(--gold-light);
      margin-bottom: 10px;
    }

    .rg-testimonials {
      padding: 80px 20px;
      background-color: var(--surface-light);
    }

    .rg-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .rg-title {
      text-align: center;
      color: var(--primary-deep);
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .rg-subtitle {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 50px;
    }

    .rg-test-card {
      background: var(--white);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border-top: 4px solid var(--primary);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .rg-test-card p {
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.5;
      font-size: 0.95rem;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .rg-test-card h4 {
      color: var(--primary-dark);
      margin: 0 0 5px 0;
      font-size: 1.1rem;
    }

    .rg-test-card span {
      color: var(--gold-accent);
      font-size: 1rem;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary) !important;
    }

      /* FOOTER */
.rg-footer {
  background: var(--primary-deep);
  color: var(--white);
  padding-top: 70px;
}

/* GRID */
.rg-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

/* HEADINGS */
.rg-footer-col h3,
.rg-footer-col h4 {
  color: var(--gold-light);
  margin-bottom: 15px;
}

/* TEXT */
.rg-footer-col p {
  font-size: 14px;
  color: #cfd8e3;
  line-height: 1.6;
}

/* LINKS */
.rg-footer-col ul {
  list-style: none;
  padding: 0;
}

.rg-footer-col ul li {
  margin-bottom: 10px;
}

.rg-footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.rg-footer-col ul li a i {
  margin-right: 8px;
  color: var(--gold-accent);
}

.rg-footer-col ul li a:hover {
  color: var(--gold-accent);
  transform: translateX(5px);
}

/* MAP */
.rg-footer-col iframe {
  width: 100%;
  height: 127px;
  border-radius: 12px;
  border: none;
  margin-bottom: 15px;
}

/* CONTACT BOX */
.rg-contact-box p {
  margin-bottom: 8px;
}

.rg-contact-box i {
  margin-right: 8px;
  color: var(--gold-accent);
}

/* SOCIAL */
.rg-socials {
  margin-top: 10px;
}

.rg-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.rg-socials a:hover {
  background: var(--gold-accent);
  color: var(--primary-deep);
}

/* BOTTOM */
.rg-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  font-size: 13px;
  color: #cfd8e3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rg-footer {
    padding-top: 50px;
  }
}


.fa-solid{
  color: var(--gold-accent);
}
.rg-credit {
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 500;
}

.rg-credit:hover {
  text-decoration: underline;
}
#rgScrollTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

#rgScrollTop:hover {
  background: var(--gold-accent);
  color: #dbe4f0 !important;
  transform: translateY(-4px);
}
.rg-floating-btns {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Common style */
.rg-float {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

/* Call */
.rg-float.call {
  background: var(--primary);
}

/* WhatsApp */
.rg-float.whatsapp {
  background: #25D366;
}

/* Hover */
.rg-float:hover {
  transform: translateY(-5px) scale(1.05);
}
.rg-faq {
  padding: 90px 20px;
  background: linear-gradient(
    135deg,
    var(--surface-light),
    #eef2f6
  );
}

/* Wrapper */
.rg-faq-wrapper {
  max-width: 850px;
  margin: auto;
}

/* Item */
.rg-faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.rg-faq-item:hover {
  transform: translateY(-5px);
}

/* Question */
.rg-faq-question {
  width: 100%;
  padding: 20px 25px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
}

/* Icon */
.rg-faq-question i {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Answer */
.rg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.rg-faq-answer p {
  padding: 10px 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active State */
.rg-faq-item.active {
  border-left: 4px solid var(--gold-accent);
}

.rg-faq-item.active .rg-faq-answer {
  max-height: 100%;
}

.rg-faq-item.active .rg-faq-question i {
  background: var(--gold-accent);
  transform: rotate(45deg);
}
.rg-video-section {
  padding: 80px 20px;
  background: var(--surface-light);
  text-align: center;
}

/* Grid */
.rg-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Card */
.rg-video-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.rg-video-card:hover {
  transform: translateY(-8px);
}

/* iframe */
.rg-video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}
@media (max-width: 992px) {
  .rg-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rg-video-grid {
    grid-template-columns: 1fr;
  }
}


.rg-about-banner {
  position: relative;
  height: 350px;
  overflow: hidden;
}

/* Background Image */
.rg-banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner-1.png") center/cover no-repeat;
}

/* Dark Overlay */
.rg-about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 45, 82, 0.9),
    rgba(15, 45, 82, 0.4)
  );
}

/* Content */
.rg-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  color: #fff;
}

/* Heading */
.rg-banner-content h1 {
  font-size: 36px;
  margin-bottom: 5px;
}

/* Subtext */
.rg-banner-content p {
  font-size: 16px;
  color: #dbe4f0;
}
@media (max-width: 768px) {
  .rg-banner-content {
    padding-left: 20px;
    text-align: center;
  }

  .rg-banner-content h1 {
    font-size: 26px;
  }

  .rg-banner-content p {
    font-size: 14px;
  }
}
.rg-contact-link {
  color: #cfd8e3;
  text-decoration: none;
  margin-left: 5px;
  transition: 0.3s;
}

.rg-contact-link:hover {
  color: var(--gold-accent);
}
.gallery-section {
  padding: 80px 0;
  background: #f9fcff;
}

.gallery-title {
  font-size: 36px;
  font-weight: 600;
  color: #0a2540;
}

.gallery-card {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

/* Hover Zoom Effect */
.gallery-card:hover img {
  transform: scale(1.1);
}

/* Optional overlay effect */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.1);
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover::after {
  opacity: 1;
}


.rg-contact {
  padding: 80px 20px;
  background: var(--surface-light);
}

/* Grid */
.rg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* Info Cards */
.rg-contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.rg-contact-card i {
  font-size: 20px;
  color: #c9a84c;
  margin-bottom: 10px;
}

.rg-contact-card h4 {
  margin-bottom: 5px;
}

.rg-contact-card p a {
  color: var(--text-muted);
  text-decoration: none;
}

/* Form */
.rg-contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.rg-input-group {
  margin-bottom: 15px;
}

.rg-input-group input,
.rg-input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

/* Button */
.rg-btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.rg-btn:hover {
  background: var(--primary-dark);
}

/* Map */
.rg-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .rg-contact-grid {
    grid-template-columns: 1fr;
  }
}
.rg-breadcrumb {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.rg-breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.rg-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.rg-breadcrumb span {
    margin: 0 5px;
}
    .rg-about-banner {
    position: relative !important;
    width: 100% !important;
    height: 60vh !important;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Background Image */
.rg-banner-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: url('../images/banner-1.png') no-repeat center center !important;
    background-size: cover !important; /* full banner */
    z-index: 1 !important;
}

/* Overlay */
.rg-about-banner::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 2 !important;
}

/* Content */
.rg-banner-content {
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    color: #fff !important;
    padding: 20px !important;
}

/* Heading */
.rg-banner-content h1 {
    font-size: 42px !important;
    margin-bottom: 10px !important;
}

/* Breadcrumb */
.rg-breadcrumb {
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.rg-breadcrumb a {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.8 !important;
}

.rg-breadcrumb span {
    margin: 0 5px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .rg-about-banner {
        height: 40vh !important;
    }

    .rg-banner-content h1 {
        font-size: 28px !important;
    }

    .rg-breadcrumb {
        font-size: 12px !important;
    }
}
.insurance-section {
  padding: 70px 20px;
  background: #17406e;
  color: #fff;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #cfe3ff;
  margin-bottom: 40px;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insurance-item {
  background: #ffffff;
  color: #17406e;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.3s;
}

.insurance-item:hover {
  background: #0f2c4d;
  color: #fff;
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 992px) {
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .insurance-grid {
    grid-template-columns: 1fr;
  }
}