:root {
    --navy: #0A2740;
    --navy2: #0E3656;
    --green: #63B457;
    --green2: #46A03F;
    --ink: #0E2434;
    --muted: #d7e7f3;
    --chip: rgba(255, 255, 255, .08);
    --chipb: rgba(255, 255, 255, .18);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: #F7FAFE;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial
}

a {
    text-decoration: none;
    color: inherit
}
.top-brand-bar-fixed{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:#0f3142;
  color:#fff;
  padding:10px 20px;
  text-align:center;
  font-size:15px;
  font-weight:600;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #ffffff25;
}
.top-brand-bar-fixed span{
  color:#33d1b2;
  font-weight:700;
}
body{
  padding-top:45px; /* prevents header overlap */
}
.container {
    width: min(1200px, 92%);
    margin: 0 auto
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800
}

.btn i {
    font-size: 16px
}

.btn-fill {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green2));
    box-shadow: 0 12px 28px rgba(70, 160, 63, .28)
}

.btn-fill:active {
    transform: translateY(1px)
}

/* ✨ Shine + subtle motion (mobile) */
.btn.attn {
    position: relative;
    overflow: hidden
}

.btn.attn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .25) 25%, rgba(255, 255, 255, .45) 35%, transparent 55%);
    transform: translateX(-120%);
    filter: blur(1px);
}

@keyframes shine {
    0% {
        transform: translateX(-120%)
    }

    100% {
        transform: translateX(120%)
    }
}

@keyframes floaty {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }

    100% {
        transform: translateY(0)
    }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    color: #EAF5FF;
    padding: 16px 0 50px
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    height: 44px
}

/* Grid (mobile first) */
.hero-grid {
    display: grid;
    gap: 14px;
    margin-top: 12px;
    grid-template-areas:
        "copy"
        "media"
        "cta"
        "features";
}

.copy {
    grid-area: copy
}

.media {
    grid-area: media
}

.cta {
    grid-area: cta
}

.features {
    grid-area: features
}

/* Heading */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--chipb);
    font-weight: 700
}

h1 {
    font-family: 'Red Rose', serif;
    font-weight: 700;
    line-height: 1.05;
    margin: 8px 0 8px;
    font-size: 24px
}

.grad {
    background: linear-gradient(90deg, #2A7FCF, #63B457);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.lead {
    margin: 0;
    color: white
}

/* Video */
.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45)
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(1000px 340px at 20% -10%, rgba(99, 180, 87, .18), transparent 60%),
        radial-gradient(900px 260px at 85% -20%, rgba(42, 127, 207, .16), transparent 55%)
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    height: 100%
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.video-overlay i {
  color: #fff;
  font-size: 52px;
  background: rgba(0, 0, 0, 0.4);
  padding: 22px 26px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-overlay:hover i {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}
/* Features (equal tiles) */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.tile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    border: 1px solid var(--chipb);
    border-radius: 14px;
    padding: 10px 12px;
    min-height: 52px
}

.tile i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: #0c2f4a;
    border-radius: 8px;
    border: 1px solid var(--chipb)
}

.tile span {
    font-weight: 700;
    color: #e9f6ff;
    font-size: 14.5px
}

/* ⚙️ Mobile-specific CTA centering + animation */
.cta {
    display: flex;
    justify-content: center;
    margin-top:20px;
}

/* center the button */
.cta .btn {
    min-width: 260px;
    justify-content: center
}

@media (max-width: 767px) {
    .btn.attn::before {
        animation: shine 1.8s linear infinite
    }

    .btn.attn {
        animation: floaty 2.6s ease-in-out infinite
    }
    .copy{
        text-align:center;
        padding-top:20px!important;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .btn.attn,
    .btn.attn::before {
        animation: none
    }
}

/* Desktop: video RIGHT, text LEFT; button left-column under features */
@media (min-width:1024px) {
    .hero-grid {
        gap: 22px;
        grid-template-columns: 1.05fr 0.95fr;
        grid-template-areas:
            "copy    media"
            "features media"
            "cta     media";
        align-items: center;
    }

    h1 {
        font-size: 34px
    }

    .lead {
        font-size: 18px;
        max-width: 60ch
    }

    .features {
        grid-template-columns: repeat(3, 1fr)
    }

    .cta {
        justify-content: flex-center;
         margin-top:10px;
    }

    /* desktop: align left */
}

.get199.v2 {
    position: relative;
    isolation: isolate;
    padding: 20px 0 20px;
    background:
        radial-gradient(1400px 500px at 15% -10%, rgba(42, 127, 207, .10), transparent 55%),
        radial-gradient(1200px 520px at 85% -12%, rgba(99, 180, 87, .10), transparent 55%),
        #F6FAFF;
}

.g199-container {
    width: min(1200px, 92%);
    margin: 0 auto
}

/* ---------- Title + ₹199 highlight ---------- */
.g199-title {
       margin: -2px 0 8px;
    font: 700 30px 'Red Rose', serif;
    text-align: center;
    line-height: 1.1em;
    padding-bottom: 13px;
    color: #102739;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    color: #08321a;
    background: linear-gradient(90deg, #B9F5C5, #9DF1B1, #B9F5C5);
    border: 1px solid rgba(70, 160, 63, .35);
    box-shadow: 0 6px 18px rgba(70, 160, 63, .25), inset 0 1px 0 rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
}

.price-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .55) 40%, transparent 60%);
    transform: translateX(-120%);
    filter: blur(1px);
    animation: price-shine 2.2s linear infinite;
}

@keyframes price-shine {
    to {
        transform: translateX(120%)
    }
}

.g199-sub {
    margin: 0 0 24px;
    text-align: center;
    color: #5f7f96;
    font-weight: 600
}

/* ---------- Grid ---------- */
.g199-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr
}

@media (min-width:960px) {
    .g199-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* ---------- Card ---------- */
.g199-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .74));
    border: 1px solid rgba(16, 39, 57, .08);
    box-shadow: 0 12px 30px rgba(16, 39, 57, .08), inset 0 2px 0 rgba(255, 255, 255, .85);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.g199-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(221, 241, 255, .95), rgba(208, 245, 219, .92));
    border-color: rgba(42, 127, 207, .22);
    box-shadow: 0 20px 42px rgba(16, 39, 57, .16), inset 0 2px 0 rgba(255, 255, 255, .9);
}

/* ---------- Icon with animated border ring ---------- */
.g199-icon {
    position: relative;
    flex: 0 0 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(160deg, #E8F5FF 0%, #EAF7EF 100%);
    z-index: 0;
    /* for ring layering */
}

.g199-icon i {
    font-size: 26px;
    color: #2A7FCF;
    z-index: 2
}

/* moving conic-gradient ring */
.g199-icon.ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    z-index: 1;
    padding: 2px;
    /* ring thickness */
    background: conic-gradient(from 0turn, #2A7FCF, #63B457, #2A7FCF);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-spin 6s linear infinite;
    opacity: .9;
}

@keyframes ring-spin {
    to {
        transform: rotate(1turn)
    }
}

/* small float on icon itself */
@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }
}

.g199-card:nth-child(1) .g199-icon i {
    animation: icon-float 3s ease-in-out infinite
}

.g199-card:nth-child(2) .g199-icon i {
    animation: icon-float 3.2s ease-in-out infinite .2s
}

.g199-card:nth-child(3) .g199-icon i {
    animation: icon-float 3.4s ease-in-out infinite .4s
}

.g199-card:nth-child(4) .g199-icon i {
    animation: icon-float 3.6s ease-in-out infinite .6s
}

/* ---------- Text ---------- */
.g199-body h3 {
    margin: 0 0 6px;
    font-weight: 900;
    color: #143247
}

.g199-body p {
    margin: 0;
    color: #55758d;
    font-weight: 600
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

    .price-badge::after,
    .g199-icon.ring::before,
    .g199-icon i {
        animation: none
    }
}

.g199-cta {
    margin-top: 42px;
    text-align: center
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2A7FCF, #63B457);
    box-shadow: 0 8px 24px rgba(42, 127, 207, .3);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .4) 40%, transparent 60%);
    transform: translateX(-120%);
    animation: shine 2s linear infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(99, 180, 87, .35)
}

@keyframes shine {
    to {
        transform: translateX(120%)
    }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {

    .price-badge::after,
    .g199-icon.ring::before,
    .cta-btn::before {
        animation: none
    }
}

.shv-tiles-4row {
    padding: 20px 0;
    background: linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
}

.shv-wrap {
    width: min(1200px, 92%);
    margin: auto;
    text-align: center;
}

.shv-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.shv-head h2 {
    font-family: "Red Rose", serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 36px);
    color: #0f2f45;
}

.shv-pill {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a7fcf, #3aa4ff);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* GRID */
.shv-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* TILE */
.shv-tile {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shv-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--img) center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.shv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 15, 30, 0.2), rgba(5, 15, 30, 0.6));
    transition: opacity 0.3s ease;
}

.shv-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
    text-align: left;
}

.shv-body h3 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* HOVER */
.shv-tile:hover::before {
    transform: scale(1.12);
}

.shv-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.shv-tile:hover .shv-overlay {
    opacity: 0.85;
}

/* RESPONSIVE */
@media (min-width: 1024px) {
    .shv-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .shv-body h3 {
        font-size: 14px;
    }
}

.shv-when-4row {
    padding: 60px 0 70px;
    background:
        radial-gradient(900px 420px at 15% -10%, rgba(63, 201, 115, .12), transparent 60%),
        radial-gradient(900px 420px at 85% -10%, rgba(42, 127, 207, .12), transparent 60%),
        #F6FAFF;
    position: relative;
}

.shv-when-4row .shv-wrap {
    width: min(1200px, 92%);
    margin: auto
}

.shv-when-4row .shv-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 12px;
}

.shv-when-4row .shv-head h2 {
    margin: 0;
    color: #0f2f45;
    font: 800 clamp(24px, 4vw, 36px)/1.2 "Red Rose", serif;
}

.shv-when-4row .shv-pill {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2)
}

.shv-when-4row .shv-green {
    background: linear-gradient(135deg, #63B457, #39c86b)
}

.shv-when-4row .shv-sub {
    text-align: center;
    color: #45677b;
    font-weight: 700;
    margin: 6px 0 26px;
}

/* Grid */
.shv-when-4row .shv-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width:1024px) {
    .shv-when-4row .shv-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Glass cards with animated gradient border */
.shv-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.shv-card .shv-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(from 0deg, #36c86a, #2a7fcf, #36c86a);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shv-spin 6s linear infinite;
}

@keyframes shv-spin {
    to {
        transform: rotate(1turn)
    }
}

.shv-card-in {
    position: relative;
    border-radius: 15px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    padding: 22px 18px 20px;
    box-shadow: 0 10px 30px rgba(16, 47, 69, .10);
    min-height: 180px;
    display: grid;
    gap: 10px;
    align-content: start;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

/* Icon with pulsing ring */
.shv-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #0f2f45;
    background: linear-gradient(135deg, #e7fbef, #dcf5ff);
    position: relative;
    overflow: hidden;
}

.shv-ico::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    border: 2px solid rgba(58, 180, 94, .35);
    animation: shv-pulse 2.2s ease-in-out infinite;
}

@keyframes shv-pulse {

    0%,
    100% {
        transform: scale(.95);
        opacity: .65
    }

    50% {
        transform: scale(1.05);
        opacity: 1
    }
}

.shv-card-in h3 {
    margin: 6px 0 0;
    font-weight: 800;
    color: #12384e;
    font-size: 16px;
}

.shv-card-in p {
    margin: 0;
    color: #5d7a8f;
    font-weight: 600;
    font-size: 14px;
}

/* Hover effects */
.shv-card:hover .shv-card-in {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 40px rgba(16, 47, 69, .2);
}

/* Note under grid */
.shv-when-4row .shv-note {
    text-align: center;
    margin: 18px 0 0;
    color: #48657a;
    font-weight: 700
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
    .shv-card .shv-border {
        animation: none
    }

    .shv-ico::after {
        animation: none
    }

    .shv-card-in {
        transition: none
    }
}

.impv2-section {
    padding: 48px 0 20px;
    background:
        radial-gradient(900px 420px at 12% -10%, rgba(58, 180, 94, .14), transparent 60%),
        radial-gradient(900px 420px at 88% -10%, rgba(42, 127, 207, .14), transparent 60%),
        linear-gradient(180deg, #eef7ff 0%, #e9f4ff 100%);
}

.impv2-wrap {
    width: min(1200px, 92%);
    margin: auto
}

/* ========== HEADING ========== */
.impv2-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 10px
}

.impv2-head h2 {
    margin: 0;
    color: #0f2f45;
    font: 800 clamp(24px, 4vw, 36px)/1.2 "Red Rose", serif
}

.impv2-pill {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #63B457, #36c86a);
    box-shadow: 0 8px 18px rgba(54, 200, 106, .35);
    position: relative;
    overflow: hidden;
}

.impv2-pill::after {
    content: "";
    position: absolute;
    inset: -70%;
    background: conic-gradient(from 0deg, #fff6, transparent 30%, #fff6 60%, transparent 80%);
    animation: impv2-spin 6s linear infinite;
}

.impv2-sub,
.impv2-note {
    text-align: center;
    color: #45677b;
    font-weight: 700;
    margin: 8px 0 28px
}

.impv2-note {
    margin-top: 18px
}

/* ========== GRID ========== */
.impv2-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

@media (min-width:1024px) {
    .impv2-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* ========== CARDS ========== */
.impv2-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    animation: impv2-fadeUp .7s cubic-bezier(.2, .65, .2, 1) both;
    animation-delay: var(--delay, 0s);
}

.impv2-border {
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 18px;
    background: conic-gradient(#36c86a, #2a7fcf, #36c86a);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: impv2-spin 5s linear infinite;
    opacity: .75;
}

.impv2-in {
    position: relative;
    border-radius: 16px;
    padding: 22px 18px 20px;
    min-height: 184px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .86));
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(16, 47, 69, .12);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

/* flowing sheen */
.impv2-in::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .6) 50%, transparent 80%);
    background-size: 200% 200%;
    mix-blend-mode: soft-light;
    opacity: .0;
    animation: impv2-sheen 3s ease-in-out infinite;
}

@keyframes impv2-sheen {

    0%,
    100% {
        background-position: 0% 0%;
        opacity: .0
    }

    50% {
        background-position: 100% 100%;
        opacity: .5
    }
}

.impv2-card:hover .impv2-in {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(16, 47, 69, .22);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
}

/* ========== ICONS ========== */
.impv2-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    margin: auto;
    place-items: center;
    color: #0f2f45;
    background: linear-gradient(135deg, #E9FFF3, #DDF2FF);
    position: relative;
    overflow: hidden;
    animation: impv2-float 3s ease-in-out infinite;
}

.impv2-ring {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: conic-gradient(from 0deg, #36c86a, #2a7fcf, #36c86a);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
    animation: impv2-spin 2.8s linear infinite;
    opacity: .55;
}

@keyframes impv2-spin {
    to {
        transform: rotate(1turn)
    }
}

@keyframes impv2-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes impv2-fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.impv2-in h3 {
    margin: 8px 0 0;
    font-weight: 800;
    color: #12384e;
    text-align: center;
    font-size: 16px
}

.impv2-in p {
    margin: 4px 0 0;
    color: #5d7a8f;
    text-align: center;
    font-weight: 600;
    font-size: 14px
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion:reduce) {

    .impv2-border,
    .impv2-ring,
    .impv2-ico,
    .impv2-in::after,
    .impv2-card {
        animation: none
    }

    .impv2-in {
        transition: none
    }
}


:root {
    --ink: #0e3b52;
    --muted: #7d96a3;
    --rail: #17a287;
    --dot: #0e5580;
    --bg: #edf5fb;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box
}

body {
    background: #f6fafe;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif
}.hw-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  color: #0e3b52;
  font-weight: 800;
}

.hw-sub {
  text-align: center;
  color: #7d96a3;
  font-weight: 600;
  margin-bottom: 18px;
}

.hw-hero-media {
  max-width: 980px;
  margin: 0 auto 24px;
  position: relative;
}

.hw-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e7eff6;
}

/* Default: show desktop image, hide mobile */
.desk-img {
  display: block!important;
}
.mob-img {
    display: none !important;
}

/* On tablets & smaller: hide desktop, show mobile */
@media (max-width: 768px) {
  .desk-img {
    display: none !important;
  }
  .mob-img {
    display: block !important;
  }

  .hw-hero-media {
    margin: 10px 0 12px;
  }
}

/* Optional: tighter spacing on very small phones */
@media (max-width: 480px) {
  .hw-hero-media img {
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }
}
:root{
  --ink:#0e3b52;
  --muted:#6e8896;
  --bg:#f4f9fe;
  --card:#ffffff;
  --good:#18a777;
  --bad:#ff4d7e;
  --glow:0 18px 40px rgba(14,59,82,.12);
}

*{box-sizing:border-box}
body{background:var(--bg); font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif}

/* Section frame */
.vsdiff{padding:72px 18px}
.vsdiff__wrap{max-width:1180px; margin:0 auto}
.vsdiff__title{
  text-align:center; margin:0 0 28px;
  color:var(--ink); font-weight:800; line-height:1.12;
  font-size:clamp(28px,4.2vw,48px)
}

/* Main split card */
.vsdiff__card{
  position:relative;
  display:grid; grid-template-columns:1fr 1fr;   /* two columns by default */
  background:var(--card); border-radius:22px; overflow:hidden; box-shadow:var(--glow)
}

/* faint center divider line (under the VS pill) */
.vsdiff__card::after{
  content:""; position:absolute; top:0; bottom:0; left:50%; width:1px;
  transform:translateX(-50%); background:linear-gradient(#e9f0f5, #e9f0f5);
  pointer-events:none;
}

/* columns */
.vsdiff__col{padding:28px clamp(18px,3vw,40px) 36px}
.vsdiff__col--left{
  background:
    radial-gradient(1200px 300px at -20% -30%, #ffeaf1 0, transparent 50%),
    linear-gradient(180deg,#fff,#fff)
}
.vsdiff__col--right{
  background:
    radial-gradient(1200px 300px at 120% -30%, #e8fbf2 0, transparent 50%),
    linear-gradient(180deg,#fff,#fff)
}

/* centered VS badge */
.vsdiff__vs{
  position:absolute; left: 43%;
    top: 210px; transform:translate(-50%,-50%);
  width:78px; height:78px; border-radius:50%;
  background:linear-gradient(180deg,#0e6a8e,#0c4f6a);
  display:grid; place-items:center; color:#fff; font-weight:900; letter-spacing:.04em;
  box-shadow:0 12px 26px rgba(0,0,0,.18); font-size:24px; z-index:2
}

/* column headings */
.vsdiff__head{margin-bottom:14px}
.vsdiff__tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px; font-weight:800;
  color:#08374b; background:#eef7ff; border:1px solid #dbebfb
}
.vsdiff__tag--good{background:#e7fbf1; border-color:#c9f0e1; color:#0a4b3a}
.vsdiff__tag--bad {background:#ffeaf0; border-color:#ffd0de; color:#7c1030}
.vsdiff__sub{margin:10px 0 0; color:var(--muted); font-weight:600}

/* bullet list */
.vsdiff__list{list-style:none; padding:0; margin:18px 0 0}
.vsdiff__list li{
  display:flex; align-items:center; gap:12px;
  padding:16px 0; color:#163d4f; font-weight:650; line-height:1.5;
  border-bottom:1px dashed #e8eef4
}
.vsdiff__list li:last-child{border-bottom:none}

/* bullets */
.b{
  width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
  font-size:14px; font-weight:900; color:#fff; flex:0 0 30px
}
.b--good{background:var(--good)}
.b--bad {background:var(--bad)}

/* hover polish */
.vsdiff__col:hover .vsdiff__list li{background:rgba(14,59,82,.03)}

/* ======= Mobile tweaks ======= */
/* Keep two columns on phones (so it’s still left vs right), hide VS badge there */
@media (max-width: 640px){
  .vsdiff{padding:20px 14px}
  .vsdiff__title{margin-bottom:20px; font-size:clamp(26px,6vw,36px)}
  .vsdiff__vs{display:none}                 /* remove VS on mobile */
  .vsdiff__card{grid-template-columns:1fr 1fr}
  .vsdiff__card::after{opacity:.55}         /* keep the center divider */
  .vsdiff__col{padding:18px 12px 22px}
  .vsdiff__tag{font-size:12px; padding:7px 10px}
  .vsdiff__sub{font-size:13px}
  .vsdiff__list li{padding:12px 0; font-size:14px}
  .b{width:26px;height:26px;font-size:12px}
}

/* If you prefer stacking on very tiny screens, uncomment this block:
@media (max-width: 380px){
  .vsdiff__card{grid-template-columns:1fr}
  .vsdiff__card::after{display:none}
}
*/

:root{
  --ink:#0e3b52;
  --muted:#6f8a98;
  --bg:#f5f9fe;
  --card:#ffffff;
  --badge:#1a73e8; /* Google blue vibe */
  --star:#f6b800;
  --shadow:0 14px 40px rgba(14,59,82,.10);
}

*{box-sizing:border-box}
.g-section{padding:20px 18px; background:var(--bg)}
.g-wrap{max-width:1200px; margin:0 auto}
.g-title{
  text-align:center; color:var(--ink); font-weight:900;
  font-size:clamp(24px,4.2vw,40px); line-height:1.15; margin:0 0 22px;
}

/* Reel */
.g-reels{display:flex; align-items:center; gap:10px}
.g-viewport{
  --per:3;                       /* desktop */
  scroll-snap-type:x mandatory;
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;          /* Firefox */
  flex:1 1 auto; outline:none;
}
.g-viewport::-webkit-scrollbar{display:none}

@media (max-width:1024px){ .g-viewport{ --per:2 } }
@media (max-width:640px){  .g-viewport{ --per:1 } }

.g-track{
  display:flex; gap:18px; padding:6px 2px 10px; margin:0; list-style:none;
}

.g-card{
  scroll-snap-align:start;
  flex:0 0 calc((100% - (var(--per) - 1)*18px)/var(--per));
  background:var(--card); border:1px solid #e7edf2; border-radius:16px;
  box-shadow:var(--shadow);
  padding:18px 18px 16px; min-height:180px;
}

.g-head{display:flex; align-items:center; gap:12px; margin-bottom:10px}
.g-avatar{width:38px; height:38px; border-radius:50%; object-fit:cover}
.g-meta{line-height:1.1}
.g-name{display:block; font-weight:800; color:#103a4d}
.g-date{font-size:12px; color:var(--muted); font-weight:700}
.g-badge{
  margin-left:auto; font-size:12px; font-weight:800; color:#fff;
  padding:4px 8px; border-radius:999px;
  box-shadow:0 6px 16px rgba(26,115,232,.18);
}

.g-stars{color:var(--star); font-size:18px; letter-spacing:.5px; margin:4px 0 8px}
.g-text{margin:0; color:#173f52; line-height:1.55; font-weight:600}
.g-location{margin-top:10px; color:var(--muted); font-weight:800}

/* Arrows */
.g-nav{
  appearance:none; border:0; background:#fff; color:#116b86;
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.12); cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease; flex:0 0 auto;
}
.g-nav:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,.16) }
@media (max-width:640px){ .g-nav{width:38px;height:38px} }

/* ====== tokens ====== */
:root{
  --ink:#0e3b52;
  --ink-2:#143f55;
  --muted:#6e8a98;
  --brand:#12b886;                 /* rail/brand */
  --bg-top:#f1fbff;
  --bg-mid:#eaf6fb;
  --card:#ffffff;
  --shadow:0 20px 60px rgba(3,34,45,.10);
}

/* ====== section frame ====== */
.cta-hero{
  background: linear-gradient(180deg,var(--bg-top),var(--bg-mid));
  padding: clamp(40px,5vw,64px) 20px;
}
.cta-shell{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px 32px;

  /* Mobile-first grid (title -> image -> copy -> button)  */
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "title"
    "art"
    "copy"
    "btn";
}

/* ====== elements ====== */
.cta-badge{
  grid-area: badge;
  display:inline-flex; align-items:center; gap:.6rem;
  padding:10px 14px; border-radius:999px;
  background: #fff; color: var(--ink);
  font-weight: 700; box-shadow: 0 8px 25px rgba(14,59,82,.08);
}

.cta-title{
  grid-area: title;
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .2px;
  font-size: clamp(24px,5.4vw,30px);
}
.cta-title span{ color: var(--ink-2); }

.cta-art{
  grid-area: art; margin: 4px 0 0;
  border-radius: 18px; overflow: hidden; background: var(--card);
  box-shadow: var(--shadow);
}
.cta-art img{
  width: 100%; height: 100%; display:block; object-fit: cover;
  aspect-ratio: 16/11;
}

.cta-copy{
  grid-area: copy;
  color: var(--muted);
  font-size: clamp(16px,1.9vw,18px);
  line-height: 1.65;
  max-width: 56ch;
      margin: 0px;
}

/* CTA button (center on mobile) */
.cta-cta{ grid-area: btn; display:flex; justify-content:center; }
.cta-btn{
  position: relative;
  display:inline-flex; flex-direction:column; align-items:center;
  gap:6px; text-decoration:none;
  color:#fff; background: linear-gradient(180deg,#28c493,#0fa77a);
  padding:18px 28px; border-radius:16px; box-shadow:0 16px 40px rgba(18,184,134,.28);
  font-weight:800; font-size:clamp(18px,2vw,20px);
  transition: transform .15s ease, box-shadow .2s ease;
  overflow: hidden;
}
.cta-btn em{ font-style:normal; font-weight:600; font-size:13px; opacity:.95 }
.cta-btn::after{
  /* subtle shine */
  content:""; position:absolute; inset:-200% -40%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.45),transparent);
  transform:translateX(-60%);
  animation: shine 3.2s linear infinite;
}
@keyframes shine{ to{ transform:translateX(60%);} }
.cta-btn:hover{ transform: translateY(-2px); box-shadow:0 22px 56px rgba(18,184,134,.32); }

/* ====== desktop layout (image on the right) ====== */
@media (min-width: 980px){
  .cta-shell{
    /* two columns, image locked to the right */
    grid-template-columns: 1.15fr .95fr;
    align-items: center;
    grid-template-areas:
      "badge art"
      "title art"
      "copy  art"
      "btn   art";
  }
  .cta-cta{ justify-content: flex-start; }      /* button left on desktop */
  .cta-copy{ max-width: 60ch; }
  .cta-art img{ aspect-ratio: 4/3; }
}

:root{
  --ink:#0e3b52;--muted:#6c8592;--bg:#f6fbff;--brand:#12b886;--brand-dark:#0fa77a;
}

/* FAQ */
.faq-sec{
  padding:48px 20px 90px; /* extra bottom margin so it clears sticky bar */
  background:#fff;
}
.faq-wrap{max-width:1100px;margin:0 auto;text-align:left;}
.faq-title{margin:0 0 18px;font-size:clamp(24px,4vw,36px);color:var(--ink);font-weight:900;text-align:left;}
.faq-acc{display:grid;gap:14px}
.acc-item{background:var(--bg);border-radius:14px;box-shadow:0 6px 18px rgba(14,59,82,.06)}
.acc-head{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  gap:16px;padding:18px 20px;border:0;background:#acd5bfba;cursor:pointer;
  color:var(--ink);font-weight:800;font-size:clamp(15px,2.2vw,18px);text-align:left;
}
.acc-sign{
  width:22px;height:22px;border-radius:50%;background:#e6f6f1;position:relative;flex:0 0 22px;
  box-shadow:inset 0 0 0 2px #bfeadf;
}
.acc-sign::before,.acc-sign::after{
  content:"";position:absolute;left:50%;top:50%;width:12px;height:2px;background:#0fa77a;transform:translate(-50%,-50%);
}
.acc-sign::after{transform:translate(-50%,-50%) rotate(90deg);}
.acc-item.open .acc-sign::after{opacity:0}
.acc-body{
  overflow:hidden;max-height:0;transition:max-height .28s ease;
  padding:0 20px;color:#2f5563;font-size:clamp(14px,2vw,16px);line-height:1.6;text-align:left;
}
.acc-item.open .acc-body{padding:0 20px 18px}

/* Sticky footer */
.sticky-offer{
  position:fixed;left:0;right:0;bottom:0;z-index:9999;
  background:rgba(255,255,255,.78);backdrop-filter:blur(8px);
  box-shadow:0 -10px 30px rgba(0,0,0,.08)
}
.so-container{
  max-width:1200px;margin:0 auto;padding:12px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:14px
}
.so-left{display:flex;align-items:baseline;gap:10px}
.so-price{font-weight:900;color:var(--ink);font-size:clamp(22px,3.6vw,28px)}
.so-note{color:var(--muted);font-weight:700;font-size:14px}
.so-mid{display:flex;align-items:center;gap:10px;color:var(--ink);font-weight:800}
.so-label{color:var(--muted)}
.so-timer{
  min-width:74px;text-align:center;font-variant-numeric:tabular-nums;
  padding:6px 10px;border-radius:10px;color:#fff;background:var(--brand);
}
.so-right .so-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 20px;border-radius:12px;text-decoration:none;
  color:#fff;background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  font-weight:900
}
@media (max-width:640px){
  .faq-sec{padding-bottom:100px;} /* extra room below */
  .so-container{gap:10px;padding:10px 12px;flex-wrap:wrap;justify-content:space-between}
  .so-note{display:none}
  .so-timer{min-width:66px}
}

:root{
  --ink:#0e3b52;
  --muted:#6b8797;
  --accent:#10b08a;
  --bg-soft:#eaf7ff;
  --card:#ffffff;
  --shadow-lg: 0 30px 60px rgba(14,59,82,.16);
  --shadow-md: 0 16px 32px rgba(14,59,82,.12);
}

/* ===== Section frame */
.about-pro{
  background:
    radial-gradient(1100px 450px at 85% -20%, rgba(16,176,138,.10), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(16,176,138,.08), transparent 60%),
    linear-gradient(180deg,#f7fcff 0%, #eef7ff 100%);
  padding: clamp(20px,6vw,86px) 20px;
}
.about-pro__wrap{
  max-width:1200px; margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;     /* desktop: left text / right photo */
  grid-template-areas:
    "head   media"
    "body   media"
    "caro   caro";
  gap: clamp(20px,3.8vw,46px);
  align-items:center;
}

/* ===== Areas */
.about-pro__head{ grid-area: head; text-align:center;}
.about-pro__media{ grid-area: media; }
.about-pro__body{ grid-area: body; }
.clinic-carousel { grid-area: caro; }

/* ===== Typography */
.about-pro__title{
  margin:0 0 8px;
  font-size: clamp(26px,3.6vw,40px);
  line-height:1.15;
  color:var(--ink);
  font-weight:900;
}
.about-pro__title span{ color:#093f60; 
    
    font-family: 'Red Rose', serif;
}
.about-pro__sub{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:700;
  font-size: clamp(16px,2.2vw,20px);
}
.about-pro__body p{
  margin:0 0 14px; color:#2a5060; line-height:1.7;
  font-size: clamp(14px,2vw,17px);
}
.about-pro__body strong{ font-weight:800; color:#0a4560; }

/* ===== Doctor Photo Card */
.about-pro__photo{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
  border:1px solid #e6f0f4;
  border-radius:24px;
  padding:10px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin-left:auto;
}
.about-pro__photo img{
  width:100%; display:block; border-radius:18px; object-fit:cover;
}
.about-pro__tag{
  position:absolute; left:16px; bottom:16px;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border:1px solid #e7f0f3;
  padding:6px 10px; border-radius:999px;
  color:#075067; font-weight:800; font-size:12px;
}

/* ===== Quote & chips */
.about-pro__quote{
  margin:18px 0 22px;
  background:var(--card); border-radius:14px;
  padding:16px 18px; border:1px solid #e8f2f6;
  box-shadow: var(--shadow-md);
}
.about-pro__quote blockquote{ margin:0 0 8px; color:#0d3f55; font-weight:700; }
.about-pro__quote figcaption{ color:var(--muted); font-size:14px; }

.about-pro__chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  background:linear-gradient(180deg,#eafff6,#e8f6ff);
  border:1px solid #d7ecec; color:#0f5a6f;
  padding:8px 12px; border-radius:999px; font-weight:800; font-size:13px;
}

/* ===== Carousel */
/* --- Base container (kept same look) --- */
.clinic-carousel{
  position:relative; background:#fff; border-radius:20px;
  padding:14px 14px 48px; border:1px solid #e6f0f4;
  box-shadow:0 16px 32px rgba(14,59,82,.12);
}
.cc__viewport{ overflow:hidden; border-radius:14px; }
.cc__track{ display:flex; transition: transform .55s cubic-bezier(.2,.7,.2,1); }

/* We’ll control how many slides fit via a CSS var set by JS */
.clinic-carousel{ --perView: 3; }
.cc__slide{ min-width: calc(100% / var(--perView)); padding:6px; }
.cc__slide img{
  width:100%; height:360px; object-fit:cover; display:block; border-radius:12px;
}

/* Controls & dots */
.cc__btn{
  position:absolute; top:calc(50% - 26px);
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center; border:none; cursor:pointer;
  background:#fff; color:#0e516d; font-size:26px; font-weight:800;
  box-shadow:0 10px 22px rgba(0,0,0,.12); transition:transform .15s ease;
}
.cc__btn:hover{ transform: translateY(-2px); }
.cc__btn--prev{ left:14px; }
.cc__btn--next{ right:14px; }

.cc__dots{
  position:absolute; left:0; bottom:12px; width:100%;
  display:flex; justify-content:center; gap:10px;
}
.cc__dot{
  width:10px; height:10px; border-radius:999px; border:none; cursor:pointer;
  background:#c9dde5; transition: all .25s ease;
}
.cc__dot.is-active{ width:26px; background:#10b08a; }

/* Mobile: height smaller; perView set by JS but we adjust height here */
@media (max-width: 940px){
  .cc__slide img{ height:280px; }
}

/* ===== Mobile layout: put IMAGE right after the heading ===== */
@media (max-width: 940px){
  .about-pro__wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "media"    /* image immediately after heading on mobile */
      "body"
      "caro";
  }
  .about-pro__photo{ margin: 0 auto; max-width: 520px; }
  .cc__slide img{ height: 280px; }
}


.btn{display:inline-flex;align-items:center;gap:.6rem;padding:20px 20px;border-radius:14px;font-weight:700;cursor:pointer;text-decoration:none;border:0}
.btn-fill.attn{background:#15a085;color:#fff;box-shadow:0 10px 24px rgba(21,160,133,.25);text-align: center;}
.btn-fill.attn:hover{transform:translateY(-1px)}
.btn-wide{width:100%;justify-content:center}

/* Backdrop + modal base (hidden by default) */
.modal-backdrop,
.modal{
  position:fixed; inset:0; z-index:1000;
  opacity:0; pointer-events:none; transition:.25s ease;
}
.modal-backdrop{background:rgba(5,21,31,.45);backdrop-filter:saturate(140%) blur(4px);}

/* Open state */
.modal-backdrop.is-open,
.modal.is-open{opacity:1; pointer-events:auto; z-index:1000;}
.modal{display:grid;place-items:center;}

/* Card */
.modal-card{
  width:min(560px,92vw);
  background:#fff;
  border-radius:22px;
  box-shadow:0 30px 80px rgba(3,34,58,.2);
  padding:28px 22px 22px;
  position:relative;
  transform:translateY(10px);
  transition:transform .25s ease;
}
.modal.is-open .modal-card{ transform:translateY(0); }

.modal-close{
  position:absolute;top:10px;right:12px;width:38px;height:38px;border-radius:10px;border:0;
  background:#edf5fb;color:#0e3b52;font-size:22px;cursor:pointer
}
.modal-sub{margin:.35rem 0 1rem;color:#5c7381}

.grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.f{display:flex;flex-direction:column;gap:6px}
.f-full{grid-column:1/-1}
.f span{font-weight:700;color:#0e3b52}
.f input,.f select{height:46px;border:1px solid #dfeaf2;border-radius:12px;padding:0 14px;font-size:15px;outline:0}
.f input:focus,.f select:focus{border-color:#15a085; box-shadow:0 0 0 3px rgba(21,160,133,.15)}
.chk{flex-direction:row;align-items:center;gap:10px}
.err{display:none;color:#c62828;font-size:12px}
.tiny{margin:.8rem 0 0;color:#6f8593;font-size:12px;text-align:center}

@media (max-width:640px){
  .grid{grid-template-columns:1fr}
  .modal-card{padding:24px 16px 16px;border-radius:18px}

  
}

:root{
  --ink:#0e3546;
  --muted:#7895a3;
  --rail-a:#11b389;
  --rail-b:#0b5db7;
  --node:#0e5580;
  --bg:#eef6fb;
  --card:#ffffff;
  --shadow:0 14px 40px rgba(0,0,0,.10);
}

/* Section */
.healing-sec{background:var(--bg); padding:19px 18px;}
.hs-wrap{max-width:1180px; margin:0 auto;}

/* Heading (Red Rose) */
.hs-title{
  font-family:'Red Rose', system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  font-weight:700;
  text-align:center;
  color:var(--ink);
  font-size:clamp(32px,4.8vw,56px);
  letter-spacing:.2px;
  margin:0 0 8px;
}
.hs-sub{
  text-align:center;
  color:var(--muted);
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:600;
  margin:0 0 38px;
}

/* Timeline grid */
.hs-timeline{
  position:relative;
  display:grid;
  gap:34px;
  grid-template-columns: repeat(5, 1fr);
  align-items:flex-start;
}

/* Track line */
.hs-track{
  position:absolute;     left: 11%;
    right: 7%;
    top: 50px;
  height:8px; border-radius:10px;
  background:linear-gradient(90deg,var(--rail-a),var(--rail-b));
  box-shadow:0 6px 16px rgba(11,93,183,.12), inset 0 0 0 1px rgba(255,255,255,.5);
}

/* Step card */
.hs-step{
  text-align:center;
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
}
.hs-step h3{
  margin:18px 0 8px;
  font-size:clamp(16px,1.6vw,20px);
  color:var(--ink);
}
.hs-step p{
  color:#355565;
  line-height:1.55;
  font-weight:500;
  margin:0 auto;
  max-width:260px;
}

/* Node (numbered circle with icon) */
.hs-node{
  position:relative;
  width:104px; height:104px; margin:0 auto;
  border-radius:50%;
  background:radial-gradient(115% 115% at 30% 30%, #0f6b9f 0%, #0e5580 55%, #0b4670 100%);
  box-shadow:
    0 14px 36px rgba(0,0,0,.22),
    inset 0 0 0 8px #ffffff;
  display:grid; place-items:center;
}
.hs-node img{ width:54px; height:54px; object-fit:contain; filter:contrast(1.05); }

/* step number badge */
.hs-node::after{
  content:attr(data-step);
  position:absolute; top:28px; left:50%; transform:translateX(-50%);
  background:#fff; color:var(--node);
  border:3px solid var(--node);
  
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  font-weight:800;
  box-shadow:0 8px 20px rgba(14,85,128,.20);
}


/* CTA */
.hs-cta{display:flex; justify-content:center; margin-top:34px;}
.hs-btn{
  background:linear-gradient(180deg,#18c08f,#12a77d);
  color:#fff; font-weight:800; letter-spacing:.2px;
  padding:16px 26px; border-radius:16px;
  box-shadow:0 16px 36px rgba(17,179,137,.28);
  display:inline-flex; gap:10px; align-items:center;
  transition:transform .18s ease, box-shadow .18s ease;
}
.hs-btn:hover{ transform:translateY(-2px); box-shadow:0 22px 44px rgba(17,179,137,.38); }
.hs-btn .lock{filter:grayscale(0);}

/* ===== Mobile (vertical timeline) ===== */
@media (max-width: 900px){
  .hs-timeline{
    grid-template-columns: 1fr;
    gap:28px;
  }
  .hs-track{display:none;}
  .hs-step{
    text-align:left; padding-left:94px; position:relative;
    max-width:720px; margin:0 auto;
  }
  .hs-step .hs-node{
    position:absolute; left:0; top:0; width:80px; height:80px;
  }
  .hs-step h3{ margin-top:0; }
  .hs-step p{ max-width:none; }

  /* vertical line */
  .hs-step::before{
    content:""; position:absolute; left: 32px;
        top: 54px;width:8px; height:calc(100% + 24px);
    background:linear-gradient(180deg,var(--rail-a),var(--rail-b));
    border-radius:8px;
  }
  .hs-step:last-child::before{ display:none; }
}

/* Small polish for very small screens */
@media (max-width: 480px){
    .hs-node::after{
        top: 13px;
    }
  .hs-title{ font-size:34px; }
  .hs-step{ padding-left: 106px; }
  .hs-step .hs-node{ width:72px; height:72px; }
}

/* ---------- Footer Premium ---------- */
.ft{
  --ink:#e9f1ff; --muted:#b9c7db; --brand:#69c06c; --bg:#0a2446; --card:#0f2c55;
  position:relative; background:radial-gradient(1200px 500px at 20% -10%, #133368 0,#0a2446 55%);
  color:var(--ink); padding:72px 24px 26px; overflow:hidden;
}
.ft:before{
  content:""; position:absolute; inset:-2px; pointer-events:none;
  background:
    radial-gradient(800px 300px at 85% -10%, rgba(105,192,108,.16), transparent 55%),
    radial-gradient(900px 260px at 10% -20%, rgba(84,150,255,.12), transparent 60%);
}
.ft-wrap{
  max-width:1200px; margin:0 auto; display:grid; gap:34px;
  grid-template-columns: 1.2fr .6fr .6fr .6fr;
}
.ft-logo{font-size:34px; font-weight:800; margin:0}
.ft-logo span{color:var(--brand)}
.ft-sub{margin:6px 0 18px; color:var(--muted); font-weight:600}
.ft-doctors>div{margin:12px 0}
.ft-doctors h4{margin:0 0 4px; font-size:18px; font-weight:700}
.ft-doctors p{margin:0; color:#cdd9ea}

.ft-contact{margin:18px 0 0; padding:0; list-style:none}
.ft-contact li{display:flex; gap:10px; margin:10px 0; line-height:1.5}
.ft-contact i{color:var(--brand); margin-top:3px}
.ft-contact a{color:var(--ink); text-decoration:none}
.ft-contact a:hover{color:#a6ffd2}

/* cards (right columns) */
.ft-col{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:20px 18px; backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.ft h3{margin:0 0 14px; font-size:20px}

.ft-links{list-style:none; margin:0; padding:0}
.ft-links li{margin:10px 0}
.ft-links a{color:#d9e6f8; text-decoration:none}
.ft-links a:hover{color:#a6ffd2}

.ft-timing{margin:0; padding:0; list-style:none; color:#dfe8f8}
.ft-timing li{margin:8px 0}
.ft-timing i{color:#a6ffd2; margin-right:6px}
.ft-off{opacity:.85}

.ft-social{display:flex; gap:12px; margin:6px 0 16px}
.ft-social a{width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  color:#0a2446; background:#a6ffd2; box-shadow:0 10px 24px rgba(0,0,0,.28); transition:.25s}
.ft-social a:hover{transform:translateY(-3px); filter:saturate(1.2)}
.ft-social .ig{background:linear-gradient(135deg,#f9d163,#f04a77 55%,#7b5cff)}
.ft-social .fb{background:#6cc06c}
.ft-social .yt{background:#ff6262; color:#fff}

.ft-site{display:inline-flex; gap:8px; align-items:center; color:#cfe2ff; text-decoration:none}
.ft-site:hover{color:#a6ffd2}

/* bottom bar */
.ft-bottom{
  max-width:1200px; margin:26px auto 0; padding-top:16px;
  display:flex; gap:10px; align-items:center; justify-content:center;
  border-top:1px dashed rgba(255,255,255,.18); color:#c8d6ea; font-size:14px;
}
.ft-dot{width:6px;height:6px;background:#a6ffd2;border-radius:50%}

/* responsive */
@media (max-width: 1024px){
  .ft-wrap{grid-template-columns: 1fr 1fr}
}
@media (max-width: 700px){
  .ft{padding:56px 16px 22px}
  .ft-wrap{grid-template-columns: 1fr; gap:18px}
  .ft-col{padding:16px}
  .ft-logo{font-size:27px}
}

.ft-col{
      background:none;
  border:none;
   border-radius:none;
    padding: 20px 18px;
  backdrop-filter: blur(6px); */
  box-shadow:none;
}
.gm-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%,#7fe5fb,#37c8ea);
  display:grid;
  place-items:center;
  color:#0b1422;
  font-weight:900;
  border:2px solid rgba(66,215,244,.6);
  box-shadow:0 6px 16px -8px rgba(66,215,244,.45);
}
.gm-avatar::after{
  content:attr(data-initial);
}.gm-bar{
  max-width:1180px;
  margin:0 auto 24px;
  background:#0f3142;
  border:1px solid #1b5067;
  border-radius:16px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.gm-badge{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}
.gm-badge img{border-radius:4px;}
.gm-rating{margin-left:6px; opacity:.9;}
.gm-stars{color:#ffcc66; letter-spacing:2px; margin-left:6px;}
.gm-meta{opacity:.7; margin-left:10px;}
.gm-verified{
  background:#133f33;
  color:#b9ffe9;
  border:1px solid #2bd2a6;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}


.header .btn{
    padding-top:12px;
    padding-bottom:12px;
}

   /* General Section Styles */
.consultation-process {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    color: white;
    padding: 10px 10px;
    text-align: center;
}

.section-title {
        font-family: Inter, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;

}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px; /* Add padding to prevent it from touching the sides */
}

/* Step Card Styles */
.step-card {
    background: #fff;
    color:#000000;
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 23%;  /* Ensures 4 columns fit even if container size changes */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    overflow: hidden; /* To make sure the shadow doesn't overflow */
    min-width: 250px; /* Ensures that each card does not get too small */
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Style */
.step-icon {
    width: 40%;
    margin: auto;
    font-size: 39px;
        background-color: #023a40;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Step Content */
.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2a5d64;
}

.step-content p,
.step-content ul {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.step-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.step-content ul li {
    font-size: 14px;
    color: #00000;    text-align: left;
}

.cta-button {
    display: inline-block;
    background-color: #4a6d7c;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #3a8d99;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

 
    .step-icon {
    width: 28%;
    margin: auto;
    font-size: 28px;
    background-color: #0a4b52;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 40px;
    padding: 0 0px; /* Add padding to prevent it from touching the sides */
}
}
