:root {
    /* WHITE BASE */
    --white: #FFFFFF;
    --snow: #FEFCFB;
    --cloud: #FBF7F9;
    /* BABY PINK SECONDARY */
    --blush: #FDE8EF;
    --rose: #F8C8D8;
    --petal: #FCEEF3;
    --pink-mist: #F9E0EA;
    /* LOGO COLOR — CTA & HIGHLIGHTS */
    --accent: #C94494;
    --accent-light: #E066AA;
    --accent-deep: #A03478;
    --purple: #5B2080;
    --purple-deep: #3D1560;
    --grad-accent: linear-gradient(135deg, #C94494, #E066AA);
    --grad-brand: linear-gradient(135deg, #C94494 0%, #9B3AB0 50%, #5B2080 100%);
    --grad-soft: linear-gradient(135deg, #FDE8EF, #F8C8D8);
    /* TEXT */
    --ink: #1A0E28;
    --charcoal: #2E1A3D;
    --warm: #7A6B88;
    --mid: #B0A0BE;
    --border: #EDD8E8;
    /* TYPE */
    --display: 'Cormorant Garamond', serif;
    --body: 'DM Sans', sans-serif;
    --hindi: 'Noto Serif Devanagari', serif;
    --r: 14px;
    --r-lg: 28px;
    --r-xl: 50px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --t: all .5s var(--ease);
    --tf: all .25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

::selection {
    background: var(--rose);
    color: var(--ink)
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--cloud)
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

.ctr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

[data-r] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

[data-r].on {
    opacity: 1;
    transform: none
}

[data-r][data-d="1"] {
    transition-delay: .12s
}

[data-r][data-d="2"] {
    transition-delay: .24s
}

[data-r][data-d="3"] {
    transition-delay: .36s
}

[data-r][data-d="4"] {
    transition-delay: .48s
}

[data-r][data-d="5"] {
    transition-delay: .6s
}

[data-r] {
    opacity: 1 !important;
    transform: none !important;
}

/* ═══════════════════════════════════════
   TAG · HEADING · BUTTON SYSTEM
═══════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent)
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--grad-accent);
    border-radius: 2px
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink)
}

.sec-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400
}

.sec-sub {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.82;
    color: var(--warm);
    max-width: 540px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--t)
}

.btn-accent {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 8px 32px rgba(201, 68, 148, .3)
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 48px rgba(201, 68, 148, .4)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: var(--purple-deep);
    transform: translateY(-3px)
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink)
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border: 2px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2)
}
/*==================================================
ROOT NAVBAR
==================================================*/

#nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:99999;

    padding:18px 0;

    transition:.35s ease;

    background:#fff;

}

#nav.scrolled{

    background:#fff;

    padding:12px 0;

    box-shadow:0 12px 40px rgba(0,0,0,.08);

    backdrop-filter:blur(18px);

}

.nav-in{

    display:flex;

    align-items:center;

    justify-content:space-between;

    position:relative;

}

.nav-logo{

    display:flex;

    align-items:center;

    z-index:100;

}

.nav-logo img{

    height:60px;

    width:auto;

    transition:.35s;

}

#nav.scrolled .nav-logo img{

    height:54px;

}

/*==================================================
DESKTOP MENU
==================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-links>li{

    position:relative;

    list-style:none;

}

.nav-links>li>a{

    display:flex;

    align-items:center;

    gap:7px;

    text-decoration:none;

    color:#000;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.08em;

    transition:.35s;

    position:relative;

}

#nav.scrolled .nav-links>li>a{

    color:#222;

}

.nav-links>li>a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(90deg,#ff5ca8,#8b3ed6);

    transition:.35s;

}

.nav-links>li>a:hover,

.nav-links>li>a.active{

    color:#d84d98;

}

.nav-links>li>a:hover::after,

.nav-links>li>a.active::after{

    width:100%;

}

/*==================================================
ARROW
==================================================*/

.mega-parent>a i{

    font-size:10px;

    transition:.3s;

}

.mega-parent:hover>a i{

    transform:rotate(180deg);

}

/*==================================================
CTA
==================================================*/

.nav-cta{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border-radius:60px;

    background:linear-gradient(90deg,#d84d98,#813bd7);

    color:#fff !important;

    font-size:13px !important;

    font-weight:700 !important;

    text-transform:none !important;

    box-shadow:0 12px 28px rgba(216,77,152,.25);

}

.nav-cta::after{

    display:none;

}

.nav-cta:hover{

    transform:translateY(-2px);

    color:#fff !important;

}

/*==================================================
HAMBURGER
==================================================*/

.hamburger{

    display:none;

    width:44px;

    height:44px;

    border:none;

    background:none;

    cursor:pointer;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:5px;

}

.hamburger span{

    width:26px;

    height:3px;

    border-radius:20px;

    background:#fff;

    transition:.3s;

}

#nav.scrolled .hamburger span{

    background:#222;

}


/*==================================================
MEGA MENU
==================================================*/

.mega-parent{

    position:relative;

}

/* Hover bridge */

.mega-parent::after{

    content:"";

    position:absolute;

    left:0;

    top:100%;

    width:100%;

    height:30px;

}

/*==========================
Mega Dropdown
==========================*/

.mega-menu{

    position:absolute;

    left:50%;

    top:calc(100% + 22px);

    transform:translateX(-50%) translateY(15px);

    width:min(1320px,94vw);

    background:#fff;

    border-radius:28px;

    padding:42px;

    border:1px solid #f3e6f6;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.30s ease;

    z-index:99999;

}

/* Show Dropdown */

.mega-parent:hover>.mega-menu,

.mega-menu:hover{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateX(-50%) translateY(0);

}

/*==================================================
GRID
==================================================*/

.mega-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:42px;

}

/*==================================================
COLUMN
==================================================*/

.mega-grid ul{

    margin:0;

    padding:0;

    list-style:none;

}

.mega-grid li{

    margin-bottom:15px;

}

.mega-grid li:last-child{

    margin-bottom:0;

}

/*==================================================
LINKS
==================================================*/

.mega-grid a{

    display:block;

    text-decoration:none;

    color:#222;

    font-size:15px;

    font-weight:500;

    line-height:1.65;

    transition:.30s ease;

    padding:2px 0;

}

.mega-grid a:hover{

    color:#d84d98;

    padding-left:10px;

}

/*==================================================
Optional Column Heading
==================================================*/

.mega-title{

    display:block;

    font-size:14px;

    font-weight:700;

    color:#8b3ed6;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

/*==================================================
Scrollbar (if needed)
==================================================*/

.mega-menu::-webkit-scrollbar{

    width:8px;

}

.mega-menu::-webkit-scrollbar-thumb{

    background:#d84d98;

    border-radius:20px;

}

.mega-menu::-webkit-scrollbar-track{

    background:#f5f5f5;

}

/*==================================================
Large Screen
==================================================*/

@media(max-width:1199px){

    .mega-menu{

        width:96vw;

        padding:34px;

    }

    .mega-grid{

        gap:28px;

    }

}

/*==================================================
Tablet
==================================================*/

@media(max-width:991px){

    .mega-menu{

        display:none;

    }

}

/*==================================================
MOBILE MENU
==================================================*/

#mob-nav{

    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    max-width:380px;

    height:100vh;

    background:#241532;

    z-index:999999;

    display:flex;

    flex-direction:column;

    padding:30px;

    overflow-y:auto;

    transition:.4s ease;

    visibility:hidden;

    opacity:0;

}

#mob-nav.open{

    right:0;

    visibility:visible;

    opacity:1;

}

/*==================================================
CLOSE
==================================================*/

#mob-close{

    width:46px;

    height:46px;

    margin-left:auto;

    margin-bottom:28px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:22px;

    cursor:pointer;

}

#mob-nav>a{

    display:block;

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*==================================================
BOOK BUTTON
==================================================*/

.mob-book{

    margin-top:25px;

    padding:16px;

    text-align:center;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:linear-gradient(90deg,#d84d98,#813bd7);

    border:none!important;

}

/*==================================================
SERVICES ACCORDION
==================================================*/

.mob-services{

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mob-services-btn{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    padding:16px 0;

    font-size:17px;

    font-weight:600;

}

.mob-services-btn i{

    transition:.3s;

}

.mob-services.open .mob-services-btn i{

    transform:rotate(180deg);

}

.mob-services-menu{

    max-height:0;

    overflow:hidden;

    transition:.45s ease;

    display:flex;

    flex-direction:column;

}

.mob-services.open .mob-services-menu{

    max-height:1800px;

    padding-bottom:12px;

}

.mob-services-menu a{

    color:#d9d9d9;

    text-decoration:none;

    font-size:14px;

    line-height:1.6;

    padding:8px 0 8px 18px;

    transition:.3s;

}

.mob-services-menu a:hover{

    color:#ff67b4;

    padding-left:28px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px){

    .nav-links{

        gap:22px;

    }

    .nav-links>li>a{

        font-size:13px;

    }

    .mega-menu{

        width:96vw;

        padding:32px;

    }

    .mega-grid{

        gap:24px;

    }

}

@media(max-width:991px){

    .nav-links{

        display:none;

    }

    .hamburger{

        display:flex;

    }

    .mega-menu{

        display:none;

    }

    #nav{

        padding:14px 0;

    }

    #nav.scrolled{

        padding:10px 0;

    }

    .nav-logo img{

        height:52px;

    }

}

@media(min-width:992px){

    #mob-nav{

        display:none!important;

    }

    .hamburger{

        display:none!important;

    }

}

@media(max-width:768px){

    .nav-logo img{

        height:46px;

    }

    #mob-nav{

        max-width:100%;

    }

}

@media(max-width:576px){

    #mob-nav{

        padding:24px;

    }

    #mob-nav>a{

        font-size:16px;

    }

    .mob-services-btn{

        font-size:16px;

    }

    .mob-services-menu a{

        font-size:13px;

    }

}

/*==================================================
BODY LOCK
==================================================*/

body.menu-open{

    overflow:hidden;

}

/*==================================================
FINAL FIX
==================================================*/

#nav,
.ctr,
.nav-in{

    overflow:visible !important;

}

.nav-links{

    position:relative;

    z-index:99999;

}

.mega-parent{

    position:relative;

}

.mega-menu{

    z-index:999999;

}
/* ═══════════════════════════════════════
   ABOUT — EDITORIAL SPLIT
═══════════════════════════════════════ */
#about {
    padding: 120px 0;
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 48% 52% 54% 46% / 46% 48% 52% 54%;
    z-index: 0;
    animation: blobM 14s ease-in-out infinite
}

@keyframes blobM {

    0%,
    100% {
        border-radius: 48% 52% 54% 46% / 46% 48% 52% 54%
    }

    33% {
        border-radius: 52% 48% 46% 54% / 54% 52% 48% 46%
    }

    66% {
        border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%
    }
}

.about-main-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
    box-shadow: 0 32px 80px rgba(201, 68, 148, .15)
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatY 8s ease-in-out infinite
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.afc-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0
}

.afc-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.afc-lbl {
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.about-content .eyebrow {
    margin-bottom: 18px
}

.about-name {
    font-family: var(--display);
    font-size: clamp(2.6rem, 3.8vw, 3.8rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 6px
}

.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 28px
}

.about-cred {
    padding: 6px 16px;
    background: var(--petal);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--rose)
}

.about-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--warm);
    margin-bottom: 18px
}

.about-p strong {
    color: var(--ink);
    font-weight: 600
}

.about-quote {
    font-family: var(--display);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.55;
    padding: 20px 0 20px 24px;
    border-left: 3px solid var(--accent);
    margin: 28px 0
}

/* ═══════════════════════════════════════
   PROMISE — EMOTIONAL IMPACT SECTION
═══════════════════════════════════════ */
#promise {
    padding: 100px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

#promise::before {
    content: 'माँ';
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--hindi);
    font-size: 28rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    user-select: none;
    line-height: 1
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.promise-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s ease
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(201, 68, 148, .12);
    border-color: var(--rose)
}

.promise-card:hover::before {
    opacity: 1
}

.pc-ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--t)
}

.promise-card:hover .pc-ico {
    background: var(--grad-accent);
    transform: scale(1.08)
}

.promise-card:hover .pc-ico i {
    color: #fff
}

.pc-ico i {
    color: var(--accent);
    transition: color .3s
}

.pc-title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px
}

.pc-text {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

/* ═══════════════════════════════════════
   SERVICES — MAGAZINE GRID
═══════════════════════════════════════ */
#services {
    padding: 120px 0;
    background: var(--white)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px
}

.svc-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--border);
    transition: var(--t);
    display: block;
    position: relative
}

.svc-card:hover {
    transform: translateY(-10px);
    border-color: var(--rose);
    box-shadow: 0 28px 72px rgba(201, 68, 148, .1)
}

.svc-img {
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.svc-card:hover .svc-img img {
    transform: scale(1.08)
}

.svc-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 40, .6), transparent 50%)
}

.svc-img-ico {
    position: absolute;
    bottom: 16px;
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 68, 148, .35)
}

.svc-body {
    padding: 28px 24px
}

.svc-cat {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.svc-name {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.28;
    transition: color .2s
}

.svc-card:hover .svc-name {
    color: var(--accent)
}

.svc-desc {
    font-size: .84rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--warm);
    margin-bottom: 18px
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    transition: gap .2s ease
}

.svc-card:hover .svc-link {
    gap: 14px
}

/* ═══════════════════════════════════════
   BIG IMPACT — FULL-WIDTH STATEMENT
═══════════════════════════════════════ */
#impact {
    padding: 120px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

#impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.03'/%3E%3C/svg%3E")
}

.impact-eyebrow {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.impact-eyebrow::before,
.impact-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(201, 68, 148, .4)
}

.impact-h2 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.06;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 36px;
    letter-spacing: -.01em
}

.impact-h2 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300
}

.impact-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .4);
    max-width: 560px;
    margin: 0 auto 48px
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.is {
    text-align: center
}

.is-num {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px
}

.is-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

/*=========================================
TESTIMONIALS
=========================================*/

#testi{
    position:relative;
    padding:100px 0;
    background:var(--cloud);
    overflow:hidden;
}

.testi-hdr{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:55px;
    flex-wrap:wrap;
}

.t-nav{
    display:flex;
    gap:12px;
}

.t-btn{

    width:54px;
    height:54px;

    border-radius:50%;

    border:2px solid var(--border);

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.35s ease;

    color:#444;

    flex-shrink:0;

}

.t-btn:hover{

    background:var(--grad-accent);

    border-color:transparent;

    color:#fff;

}

/*======================
Swiper
======================*/

.t-swiper{

    overflow:hidden;

    padding:5px 2px 15px;

}

.t-swiper .swiper-wrapper{

    align-items:stretch;

}

.t-swiper .swiper-slide{

    display:flex;

    height:auto;

}

/*======================
Card
======================*/

.t-card{

    width:100%;

    background:#fff;

    border-radius:28px;

    border:2px solid #edd7ea;

    padding:34px;

    display:flex;

    flex-direction:column;

    height:100%;

    min-height:520px;

    transition:.35s ease;

}

.t-card:hover{

    transform:translateY(-8px);

    border-color:#d456aa;

    box-shadow:0 20px 45px rgba(212,86,170,.10);

}

/*======================
Stars
======================*/

.t-stars{

    display:flex;

    gap:4px;

    margin-bottom:20px;

}

.t-stars i{

    color:#f6b332;

    font-size:15px;

}

/*======================
Text
======================*/

.t-text{

    font-family:var(--display);

    font-size:28px;

    font-style:italic;

    line-height:1.8;

    color:#2b2435;

    flex:1;

    margin:0 0 30px;

}

/*======================
Author
======================*/

.t-author{

    display:flex;

    align-items:center;

    gap:16px;

    border-top:1px solid #eee;

    padding-top:22px;

}

.t-av{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#f9e8f3;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#d456aa;

    font-family:var(--display);

    flex-shrink:0;

}

.t-name{

    font-size:22px;

    font-weight:700;

    color:#222;

}

.t-tag{

    font-size:15px;

    color:#777;

    margin-top:4px;

}

.t-badge{

    margin-left:auto;

    color:#4285f4;

    font-size:28px;

}

/*======================
Remove Extra Gap
======================*/

.swiper{

    margin-bottom:0!important;

}

.swiper-wrapper{

    margin-bottom:0!important;

}

.swiper-slide{

    margin-bottom:0!important;

}

#testi *{

    box-sizing:border-box;

}

/*======================
Tablet
======================*/

@media(max-width:991px){

#testi{

padding:80px 0;

}

.testi-hdr{

flex-direction:column;

align-items:flex-start;

}

.t-card{

min-height:auto;

padding:28px;

}

.t-text{

font-size:22px;

}

.t-name{

font-size:19px;

}

}

/*======================
Mobile
======================*/

@media(max-width:576px){

#testi{

padding:60px 0;

}

.t-card{

padding:24px;

border-radius:20px;

}

.t-text{

font-size:18px;

line-height:1.7;

}

.t-av{

width:50px;
height:50px;

font-size:22px;

}

.t-name{

font-size:17px;

}

.t-tag{

font-size:13px;

}

.t-btn{

width:44px;
height:44px;

}

}
/* ═══════════════════════════════════════
   APPOINTMENT CTA
═══════════════════════════════════════ */
#appt {
    padding: 110px 0;
    background: var(--white);
    position: relative
}

.appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.appt-left .eyebrow {
    margin-bottom: 18px
}

.appt-left .sec-title {
    margin-bottom: 20px
}

.appt-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}

.ap {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.ap-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--tf)
}

.ap:hover .ap-ico {
    background: var(--grad-accent);
    color: #fff
}

.ap-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px
}

.ap-txt {
    font-size: .82rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

.appt-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 42px;
    box-shadow: 0 28px 80px rgba(201, 68, 148, .1);
    border: 2px solid var(--border)
}

.appt-card-title {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.appt-card-title em {
    font-style: italic;
    color: var(--accent)
}

.appt-card-sub {
    font-size: .84rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 28px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-grp {
    margin-bottom: 16px
}

.f-grp.full {
    grid-column: 1/-1
}

.f-grp label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 7px
}

.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: var(--tf);
    outline: none
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.appt-submit {
    width: 100%;
    padding: 18px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t)
}

.appt-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(201, 68, 148, .35)
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
    background: var(--ink);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden
}

.footer-watermark {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-family: var(--hindi);
    font-size: 16rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .025);
    pointer-events: none;
    user-select: none;
    line-height: 1
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ft-logo img {
    height: 56px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(2)
}

.ft-desc {
    font-size: .84rem;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px
}

.ft-socials {
    display: flex;
    gap: 10px
}

.ft-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    transition: var(--tf)
}

.ft-soc:hover {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff
}

.ft-col-h {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 22px
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.ft-links a {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .32);
    transition: var(--tf)
}

.ft-links a:hover {
    color: var(--accent-light);
    padding-left: 6px
}

.ft-ci {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px
}

.ft-ci-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 68, 148, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--accent-light);
    flex-shrink: 0
}

.ft-ci-lbl {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
    margin-bottom: 3px
}

.ft-ci-val {
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.ft-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.ft-copy {
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2)
}

.ft-legal {
    display: flex;
    gap: 20px
}

.ft-legal a {
    font-size: .72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    transition: var(--tf)
}

.ft-legal a:hover {
    color: var(--accent-light)
}

/* ═══ FLOATS ═══ */
.floats {
    position: fixed;
    bottom: 30px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.fl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: var(--t);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .18)
}

.fl-wa {
    padding: 14px 20px;
    background: #25D366;
    color: #fff
}

.fl-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .35)
}

.fl-ap {
    padding: 14px 20px;
    background: var(--grad-accent);
    color: #fff
}

.fl-ap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201, 68, 148, .4)
}

.fl-lbl {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .35s ease
}

.fl-btn:hover .fl-lbl {
    max-width: 160px
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px) {
    .promise-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .ctr {
        padding: 0 22px
    }

    .about-grid,
    .appt-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-bar-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hb-cell:nth-child(3),
    .hb-cell:nth-child(4) {
        display: none
    }

    .impact-stats {
        gap: 36px
    }

    .about-float-card {
        display: none
    }
}

@media(max-width:768px) {
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .hero-content {
        padding: 130px 0 140px
    }
}

@media(max-width:640px) {

    .svc-grid,
    .promise-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }

    .fl-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        padding: 0;
        justify-content: center
    }

    .fl-lbl {
        display: none
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .ts-row {
        gap: 24px
    }

    .ts-item {
        flex-direction: column;
        text-align: center;
        gap: 8px
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .hp-sep {
        display: none
    }
}

/* PAGE HERO */
.pg-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--ink);
    overflow: hidden;
    text-align: center
}

.pg-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 14, 40, .97), rgba(91, 32, 128, .4) 50%, rgba(201, 68, 148, .12))
}

.pg-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.pg-hero-o1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 68, 148, .14), transparent 60%);
    animation: orb 14s ease-in-out infinite
}

.pg-hero-o2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -50px;
    background: radial-gradient(circle, rgba(91, 32, 128, .14), transparent 60%);
    animation: orb 10s ease-in-out infinite reverse
}

@keyframes orb {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-18px, -28px)
    }
}

.pg-hero-bc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    position: relative;
    z-index: 2
}

.pg-hero-bc a {
    color: rgba(255, 255, 255, .3);
    transition: color .2s
}

.pg-hero-bc a:hover {
    color: var(--accent-light)
}

.pg-hero-bc .sep {
    color: rgba(255, 255, 255, .15)
}

.pg-hero-bc .cur {
    color: var(--accent-light)
}

.pg-hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.04;
    position: relative;
    z-index: 2;
    margin-bottom: 20px
}

.pg-hero h1 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300
}

.pg-hero-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .45);
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.pg-hero-hindi {
    font-family: var(--hindi);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .15);
    margin-top: 18px;
    position: relative;
    z-index: 2
}


/* STORY SECTION */
.story {
    padding: 120px 0;
    background: var(--white)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center
}

.story-img-wrap {
    position: relative
}

.story-blob {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 42% 58% 54% 46%/46% 42% 58% 54%;
    z-index: 0;
    animation: bM 14s ease-in-out infinite
}

@keyframes bM {

    0%,
    100% {
        border-radius: 42% 58% 54% 46%/46% 42% 58% 54%
    }

    50% {
        border-radius: 58% 42% 42% 58%/54% 58% 42% 46%
    }
}

.story-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
    box-shadow: 0 32px 80px rgba(201, 68, 148, .14)
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.story-float {
    position: absolute;
    bottom: -24px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 26px;
    box-shadow: 0 16px 52px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fY 8s ease-in-out infinite
}

@keyframes fY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.story-float-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff
}

.story-float-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.story-float-lbl {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.story-accent {
    position: absolute;
    top: 40px;
    right: -20px;
    z-index: 2;
    width: 45%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(201, 68, 148, .2);
    border: 4px solid var(--white)
}

.story-accent img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover
}

.story-name {
    font-family: var(--display);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.06;
    margin-bottom: 6px
}

.story-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 28px
}

.story-cred {
    padding: 6px 16px;
    background: var(--petal);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--rose)
}

.story-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.92;
    color: var(--warm);
    margin-bottom: 18px
}

.story-p strong {
    color: var(--ink);
    font-weight: 600
}

.story-quote {
    font-family: var(--display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.55;
    padding: 20px 0 20px 24px;
    border-left: 3px solid var(--accent);
    margin: 28px 0
}

/* IMPACT NUMBERS */
.impact-bar {
    padding: 80px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.impact-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1
}

.ig-num {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px
}

.ig-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.ig-sep {
    width: 1px;
    background: rgba(255, 255, 255, .06);
    align-self: stretch;
    justify-self: center
}

/* PHILOSOPHY */
.philosophy {
    padding: 120px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.philosophy::before {
    content: 'आयु';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 24rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.phil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.phil-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.phil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s
}

.phil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(201, 68, 148, .12);
    border-color: var(--rose)
}

.phil-card:hover::before {
    opacity: 1
}

.phil-ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--t)
}

.phil-card:hover .phil-ico {
    background: var(--grad-accent);
    transform: scale(1.08)
}

.phil-card:hover .phil-ico i {
    color: #fff
}

.phil-ico i {
    color: var(--accent);
    transition: color .3s
}

.phil-title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px
}

.phil-text {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

/* JOURNEY TIMELINE */
.journey {
    padding: 120px 0;
    background: var(--white)
}

.jn-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative
}

.jn-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose), var(--accent), var(--rose));
    transform: translateX(-50%)
}

.jn-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 48px;
    align-items: start
}

.jn-item:nth-child(odd) .jn-content {
    grid-column: 1
}

.jn-item:nth-child(odd) .jn-empty {
    grid-column: 3
}

.jn-item:nth-child(even) .jn-content {
    grid-column: 3;
    text-align: left
}

.jn-item:nth-child(even) .jn-empty {
    grid-column: 1
}

.jn-dot-wrap {
    grid-column: 2;
    display: flex;
    justify-content: center;
    z-index: 1
}

.jn-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    transition: var(--t)
}

.jn-item:hover .jn-dot {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.1)
}

.jn-content {
    padding: 0 28px
}

.jn-year {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px
}

.jn-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3
}

.jn-desc {
    font-size: .86rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

.jn-item:nth-child(odd) .jn-content {
    text-align: right
}

/* CREDENTIALS */
.credentials {
    padding: 110px 0;
    background: var(--cloud)
}

.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px
}

.cred-col-h {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cred-col-h::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--r);
    border: 2px solid var(--border);
    margin-bottom: 14px;
    transition: var(--t)
}

.cred-item:hover {
    border-color: var(--rose);
    box-shadow: 0 10px 32px rgba(201, 68, 148, .08);
    transform: translateY(-3px)
}

.cred-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.cred-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.cred-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}


/* MEMBERSHIPS */
.memberships {
    padding: 100px 0;
    background: var(--blush)
}

.mem-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px
}

.mem {
    padding: 18px 32px;
    background: var(--white);
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--t)
}

.mem:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(201, 68, 148, .1);
    transform: translateY(-3px)
}

.mem i {
    color: var(--accent);
    font-size: 1rem
}

/* CTA */
.pg-cta {
    padding: 120px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

.pg-cta-o {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.pg-cta-o1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(201, 68, 148, .16), transparent 60%)
}

.pg-cta-o2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(91, 32, 128, .18), transparent 60%)
}

.pg-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.pg-cta-ey {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.pg-cta-ey::before,
.pg-cta-ey::after {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(201, 68, 148, .35)
}

.pg-cta h2 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px
}

.pg-cta h2 em {
    font-style: italic;
    color: var(--accent-light)
}

.pg-cta-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 48px
}

.pg-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.pg-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.pg-cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3)
}

.pg-cta-trust i {
    color: var(--accent-light)
}


/*==========================================
 HERO SECTION
==========================================*/

.sd-hero{
    position:relative;
    overflow:hidden;
    background:var(--ink);
    min-height:760px;
    display:flex;
    align-items:center;
    padding:80px 0;
}

.sd-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.sd-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.22) saturate(.75);
    transform:scale(1.05);
}

.sd-hero-ov{
    position:absolute;
    inset:0;
    background:
    linear-gradient(110deg,
    rgba(26,14,40,.96) 0%,
    rgba(61,21,96,.90) 35%,
    rgba(91,32,128,.68) 65%,
    rgba(201,68,148,.28) 100%);
    z-index:1;
}

.sd-hero-orb{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(8px);
    z-index:1;
}

.sd-hero-o1{
    width:620px;
    height:620px;
    right:-120px;
    top:-180px;
    background:radial-gradient(circle,
    rgba(201,68,148,.30),
    transparent 70%);
    animation:heroOrb1 14s ease-in-out infinite;
}

.sd-hero-o2{
    width:420px;
    height:420px;
    left:-120px;
    bottom:-120px;
    background:radial-gradient(circle,
    rgba(91,32,128,.28),
    transparent 70%);
    animation:heroOrb2 10s ease-in-out infinite;
}

@keyframes heroOrb1{

    0%,100%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-35px,-25px);
    }

}

@keyframes heroOrb2{

    0%,100%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(25px,-30px);
    }

}

/*==================================
CONTAINER
==================================*/

.sd-hero .ctr {
    position: relative;
    z-index: 5;
    width: 1400px;
}
/*==================================
GRID
==================================*/

.sd-hero-grid{

    display:grid;
    grid-template-columns:minmax(0,1fr) 430px;
    gap:70px;
    align-items:center;

}

/*==================================
LEFT CONTENT
==================================*/

.sd-left {
    max-width: 844px;
}
/*==================================
BREADCRUMB
==================================*/

.sd-hero-bc {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sd-hero-bc a {
    color:#fff;
    transition: color .2s;
}


.sd-hero-bc a:hover{

    color:var(--accent-light);

}



.sd-hero-bc .cur{

    color:var(--accent-light);

}

/*==================================
BADGE
==================================*/

.sd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    margin-bottom: 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sd-hero-badge i{

    color:var(--accent-light);
    font-size:1rem;

}

/*==================================
HEADING
==================================*/

.sd-left h1{

    font-family:var(--display);

    font-size:50px;
    line-height:1.05;
    font-weight:500;
    color:#fff;
    margin-bottom:15px;

}

.sd-left h1 em{
    font-style:italic;
    color:var(--accent-light);
    font-weight:400;

}

/*==================================
DESCRIPTION
==================================*/

.sd-hero-sub{

    font-size:1.08rem;

    line-height:2;

    color:rgba(255,255,255,.72);

    margin-bottom:40px;

}

/*==================================
BUTTONS
==================================*/

.sd-btns{

    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

}

.sd-btns .btn{

    min-width:220px;

    height:58px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:100px;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:.05em;

    text-transform:uppercase;

    transition:.35s;

}

.btn-accent{

    background:var(--grad-brand);

    color:#fff;

    box-shadow:
    0 18px 40px rgba(201,68,148,.30);

}

.btn-accent:hover{

    transform:translateY(-4px);

    box-shadow:
    0 25px 55px rgba(201,68,148,.42);

}

.btn-white{

    background:#fff;

    color:var(--accent);

}

.btn-white:hover{

    background:var(--cloud);

    transform:translateY(-4px);

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.sd-hero{

padding:90px 0 70px;

}

.sd-hero-grid{

grid-template-columns:1fr;
gap:50px;

}

.sd-left{

max-width:100%;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.sd-hero{

min-height:auto;
padding:80px 0 60px;

}

.sd-left h1{

font-size:2.7rem;

}

.sd-hero-sub{

font-size:1rem;
line-height:1.8;

}

.sd-btns{

flex-direction:column;
align-items:stretch;

}

.sd-btns .btn{

width:100%;

}

.sd-hero-bc{

margin-bottom: 30px;
 margin-top: 30px;

}

.sd-hero-bc .cur {
    color: var(--accent-light);
    font-size: 11px;
}

}

.btn-whatsapp{

    background:#25D366;
    color:#fff;

    box-shadow:0 18px 40px rgba(37,211,102,.28);

}

.btn-whatsapp:hover{

    background:#1ebe5d;
    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 25px 55px rgba(37,211,102,.40);

}

.btn-whatsapp i{

    font-size:1.15rem;

}

/*==========================================
 HERO FORM
==========================================*/

.hero-form{

    position:relative;
    z-index:5;

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08);

    overflow:hidden;

}

.hero-form::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(180deg,
    rgba(201,68,148,.18),
    rgba(91,32,128,.05));

    pointer-events:none;

}

.hero-form>*{

    position:relative;
    z-index:2;

}

/*==================================
TOP
==================================*/

.hero-form-top{

    text-align:center;

    margin-bottom:30px;

}

.hero-form-top span{

    display:inline-block;

    padding:8px 18px;

    border-radius:100px;

    background:rgba(201,68,148,.15);

    color:var(--accent-light);

    font-size:.72rem;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:18px;

}

.hero-form-top h3 {
    color: #fff;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0px;
}

.hero-form-top h3 strong{

    color:var(--accent-light);
    font-weight:600;

}

.hero-form-top p{

    color:rgba(255,255,255,.65);

    line-height:1.8;

    font-size:.95rem;

}


/*==================================
INPUTS
==================================*/

.hf-group{

    position:relative;

    margin-bottom:18px;

}

.hf-group i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:var(--accent-light);

    font-size:.95rem;

    pointer-events:none;

}

.hf-group.textarea i{

    top:24px;
    transform:none;

}

.hf-group input,
.hf-group select,
.hf-group textarea{

    width:100%;

    border:none;
    outline:none;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    border-radius:14px;

    transition:.35s;

    font-size:.95rem;

    font-family:var(--body);

    padding-left:50px;

}

.hf-group input,
.hf-group select{

    height:56px;

}

.hf-group textarea{

    resize:none;

    min-height:120px;

    padding-top:18px;

    padding-right:18px;

}

.hf-group input::placeholder,
.hf-group textarea::placeholder{

    color:rgba(255,255,255,.55);

}

.hf-group select{

    appearance:none;

    cursor:pointer;

}

.hf-group option{

    color:#222;

}


/* Select */

.hf-group select{

    width:100%;
    height:56px;

    padding-left:52px;      /* icon ke liye */
    padding-right:50px;     /* arrow ke liye */

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;

    color:#fff;
    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23E066AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:18px;
}

.hf-group select option{
    color:#222;
}

/* Left Icon */

.hf-group{
    position:relative;
}

.hf-group i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--accent-light);
    font-size:18px;
    pointer-events:none;
    z-index:2;
}
/*==================================
FOCUS
==================================*/

.hf-group input:focus,
.hf-group textarea:focus,
.hf-group select:focus{

    background:rgba(255,255,255,.12);

    border-color:var(--accent);

    box-shadow:
    0 0 0 4px rgba(201,68,148,.18);

}

/*==================================
SUBMIT
==================================*/

.hero-submit{

    width:100%;

    height:58px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    margin-top:8px;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:.05em;

    text-transform:uppercase;

    color:#fff;

    background:var(--grad-brand);

    transition:.35s;

    box-shadow:
    0 18px 40px rgba(201,68,148,.25);

}

.hero-submit i{

    margin-right:10px;

}

.hero-submit:hover{

    transform:translateY(-3px);

    box-shadow:
    0 25px 55px rgba(201,68,148,.40);

}

/*==================================
BOTTOM INFO
==================================*/

.hero-form-bottom{

    margin-top:24px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    gap:15px;

    flex-wrap:wrap;

}

.hero-form-bottom div{

    display:flex;

    align-items:center;

    gap:8px;

    color:rgba(255,255,255,.70);

    font-size:.82rem;

}

.hero-form-bottom i{

    color:var(--accent-light);

}

/*==================================
HOVER
==================================*/

.hero-form:hover{

    border-color:rgba(201,68,148,.25);

    transform:translateY(-5px);

    transition:.35s;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.hero-form{

padding:35px;

}

}

@media(max-width:768px){

.hero-form{

padding:28px 22px;

border-radius:22px;

}

.hero-form-top h3{

font-size:1.7rem;

}

.hero-form-bottom{

justify-content:center;
text-align:center;

}

.hero-form-bottom div{

justify-content:center;

}

}

@media(max-width:480px){

.hero-form{

padding:22px 18px;

}

.hero-form-top h3{

font-size:1.45rem;

}

.hero-form-top span{

font-size:.65rem;

letter-spacing:.12em;

}

.hf-group input,
.hf-group select{

height:52px;

}

.hero-submit{

height:54px;

font-size:.9rem;

}

}

/* QF Card */
.qf {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden
}

.qf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent)
}

.qf-h {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 26px
}

.qf-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.qf-row:last-of-type {
    border-bottom: none
}

.qf-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 68, 148, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--accent-light);
    flex-shrink: 0
}

.qf-lbl {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 3px
}

.qf-val {
    font-size: .88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    line-height: 1.4
}

.qf-cta {
    margin-top: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--grad-accent);
    color: #fff;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--t)
}

.qf-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 68, 148, .45)
}


/* OVERVIEW */
.sd-overview {
    padding: 120px 0;
    background: var(--white)
}

.sd-ov-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start
}

.sd-ov-img-wrap {
    position: relative
}

.sd-ov-blob {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 42% 58% 54% 46%/46% 42% 58% 54%;
    z-index: 0;
    animation: bM 14s ease-in-out infinite
}

@keyframes bM {

    0%,
    100% {
        border-radius: 42% 58% 54% 46%/46% 42% 58% 54%
    }

    50% {
        border-radius: 58% 42% 42% 58%/54% 58% 42% 46%
    }
}

.sd-ov-img{

    height:auto;      /* 650px se choti */
    border-radius:var(--r-lg);
    overflow:hidden;
    position:relative;
    z-index:1;
    box-shadow:0 32px 80px rgba(201,68,148,.14);

}

.sd-ov-img img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.sd-ov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}



.sd-ov-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 26px;
    box-shadow: 0 16px 52px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fY 8s ease-in-out infinite
}

@keyframes fY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.sd-ov-float-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff
}

.sd-ov-float-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.sd-ov-float-lbl {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.sd-ov-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.92;
    color: var(--warm);
    margin-bottom: 18px
}

.sd-ov-p strong {
    color: var(--ink);
    font-weight: 600
}

.sd-ov-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px
}

.sd-hl {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--cloud);
    border-radius: var(--r);
    border: 2px solid var(--border);
    transition: var(--t)
}

.sd-hl:hover {
    border-color: var(--rose);
    box-shadow: 0 10px 32px rgba(201, 68, 148, .08);
    transform: translateY(-3px)
}

.sd-hl-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0
}

.sd-hl-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.sd-hl-txt {
    font-size: .76rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

/* WHO NEEDS */
.sd-who {
    padding: 110px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.sd-who::before {
    content: 'सुरक्षा';
    position: absolute;
    top: -10px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 22rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.sd-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px
}

.sd-who-col-h {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.sd-who-col-h::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.ri {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--r);
    border: 2px solid var(--border);
    margin-bottom: 12px;
    transition: var(--t)
}

.ri:hover {
    border-color: var(--rose);
    box-shadow: 0 8px 28px rgba(201, 68, 148, .08);
    transform: translateX(5px)
}

.ri-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grad-accent);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(201, 68, 148, .3)
}

.ri-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.ri-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

.sd-notice {
    margin-top: 44px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--r-lg);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 12px 36px rgba(201, 68, 148, .06)
}

.sd-notice i {
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px
}

.sd-notice p {
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--charcoal)
}

.sd-notice strong {
    color: var(--ink);
    font-weight: 700
}




/*=========================================
MOBILE FIX
=========================================*/

@media (max-width:768px){

    .sd-overview{
        padding:70px 0;
    }

    .sd-ov-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .sd-ov-img-wrap{
        width:100%;
        max-width:340px;
        margin:0 auto;
        order:1;
    }

    .sd-ov-content{
        order:2;
    }

    .sd-ov-blob{
        width:90%;
        height:90%;
        top:-15px;
        right:-15px;
    }

    .sd-ov-img{
        height: 350px;
        }

    .sd-ov-float{
        left:50%;
        bottom:-18px;
        transform:translateX(-50%);
        padding:14px 18px;
        width:170px;
        gap:10px;
    }

    .sd-ov-float:hover{
        transform:translateX(-50%);
    }

    .sd-ov-float-ico{
        width:42px;
        height:42px;
        font-size:1rem;
    }

    .sd-ov-float-num{
        font-size:1.45rem;
    }

    .sd-ov-float-lbl{
        font-size:.58rem;
    }

    .sd-ov-highlights{
        grid-template-columns:1fr;
        gap:14px;
    }

    .sd-hl{
        padding:16px;
    }

    .sd-pretitle{
        text-align:center;
    }

    .sd-title{
        font-size:2.2rem;
        line-height:1.2;
    }

    .sd-ov-p{
        font-size:.95rem;
        line-height:1.8;
    }

}


/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width:575px){

    .sd-overview{
        padding:60px 0;
    }

    .sd-ov-grid{
        gap:35px;
    }

    .sd-ov-img-wrap{
        max-width:400px;
    }

    .sd-ov-float{
        width:145px;
        padding:12px 14px;
    }

    .sd-ov-float-num{
        font-size:1.2rem;
    }

    .sd-title{
        font-size:1.9rem;
    }

    .sd-hl{
        flex-direction:column;
        gap:12px;
    }

    .sd-hl-ico{
        width:44px;
        height:44px;
    }

}


/*=========================================
WHO NEEDS MOBILE
=========================================*/

@media(max-width:768px){

    .sd-who{
        padding:70px 0;
    }

    .sd-who::before{
        display:none;
    }

    .sd-who-grid{
        grid-template-columns:1fr;
        gap:30px;
        margin-top:35px;
    }

    .ri{
        padding:16px;
    }

    .sd-notice{
        margin-top:30px;
        padding:20px;
        flex-direction:column;
        gap:14px;
    }

}

/* APPROACH */
.sd-approach {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.sd-approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.sd-approach-wm {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    pointer-events: none;
    line-height: 1
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
    z-index: 1
}

.step-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s
}

.step-card:hover {
    background: rgba(201, 68, 148, .06);
    border-color: rgba(201, 68, 148, .2);
    transform: translateY(-8px)
}

.step-card:hover::before {
    opacity: 1
}

.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 8px 28px rgba(201, 68, 148, .35)
}

.step-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px
}

.step-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

.step-desc {
    font-size: .82rem;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(255, 255, 255, .4)
}

/* DETAILS TABS */
.sd-details {
    padding: 120px 0;
    background: var(--white)
}

.sd-det-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px
}

.sd-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.sd-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--warm);
    background: var(--white);
    cursor: pointer;
    transition: var(--tf)
}

.sd-tab.active,
.sd-tab:hover {
    background: var(--grad-accent);
    color: #fff;
    border-color: transparent
}

.sd-panel {
    display: none
}

.sd-panel.active {
    display: block
}

.sd-tl {
    display: flex;
    flex-direction: column
}

.sd-tl-item {
    display: grid;
    grid-template-columns: 56px 1fr
}

.sd-tl-left {
    display: flex;
    flex-direction: column;
    align-items: center
}

.sd-tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--petal);
    border: 2px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    z-index: 1;
    transition: var(--tf)
}

.sd-tl-item:hover .sd-tl-dot {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff
}

.sd-tl-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--rose), var(--border));
    min-height: 28px
}

.sd-tl-item:last-child .sd-tl-line {
    display: none
}

.sd-tl-content {
    padding: 0 0 36px 24px
}

.sd-tl-week {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px
}

.sd-tl-title {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px
}

.sd-tl-desc {
    font-size: .86rem;
    font-weight: 300;
    line-height: 1.82;
    color: var(--warm)
}

.sd-tl-desc strong {
    color: var(--charcoal);
    font-weight: 600
}

/* SIDEBAR */
.sd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.sd-outcome {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: 0 12px 44px rgba(201, 68, 148, .06)
}

.sd-oc-hdr {
    padding: 24px 28px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    gap: 14px
}

.sd-oc-hdr i {
    font-size: 1.3rem;
    color: #fff
}

.sd-oc-hdr span {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff
}

.sd-oc-list {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.sd-oc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .86rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.55
}

.sd-oc-chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .6rem;
    color: var(--accent);
    font-weight: 700
}

.sd-stat-box {
    background: var(--blush);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 2px solid var(--rose)
}

.sd-stat-box-h {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sd-sr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--rose)
}

.sd-sr:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.sd-sr-l {
    font-size: .82rem;
    font-weight: 300;
    color: var(--charcoal)
}

.sd-sr-v {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent)
}

.sd-doc-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 2px solid var(--border);
    text-align: center
}

.sd-doc-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 3px solid var(--rose)
}

.sd-doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sd-doc-name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px
}

.sd-doc-creds {
    font-size: .72rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 16px;
    line-height: 1.5
}

.sd-doc-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--grad-accent);
    color: #fff;
    border-radius: 100px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    transition: var(--t)
}

.sd-doc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 68, 148, .35)
}



/* FAQ */
.sd-faqs {
    padding: 60px 0;
    background: var(--white)
}

.sd-faq-wrap {
    max-width: 820px;
    margin: 56px auto 0
}

.sd-faq-item {
    border-bottom: 1.5px solid var(--border)
}

.sd-faq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer
}

.sd-faq-qt {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    transition: color .2s
}

.sd-faq-item.open .sd-faq-qt {
    color: var(--accent)
}

.sd-faq-tog {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t)
}

.sd-faq-tog i {
    font-size: .72rem;
    color: var(--warm);
    transition: transform .35s ease
}

.sd-faq-item.open .sd-faq-tog {
    background: var(--grad-accent);
    border-color: var(--accent)
}

.sd-faq-item.open .sd-faq-tog i {
    transform: rotate(180deg);
    color: #fff
}

.sd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease
}

.sd-faq-item.open .sd-faq-a {
    max-height: 400px
}

.sd-faq-ai {
    padding: 0 0 24px;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--warm)
}

.sd-faq-ai strong {
    color: var(--ink);
    font-weight: 600
}

/* RELATED */
.sd-related {
    padding: 110px 0;
    background: var(--blush)
}

.sd-rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px
}

.sd-rel-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--t);
    display: block
}

.sd-rel-card:hover {
    transform: translateY(-8px);
    border-color: var(--rose);
    box-shadow: 0 24px 60px rgba(201, 68, 148, .1)
}

.sd-rel-img {
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative
}

.sd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease
}

.sd-rel-card:hover .sd-rel-img img {
    transform: scale(1.06)
}

.sd-rel-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 40, .5), transparent 50%)
}

.sd-rel-ico {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff
}

.sd-rel-body {
    padding: 24px
}

.sd-rel-cat {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px
}

.sd-rel-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color .2s
}

.sd-rel-card:hover .sd-rel-title {
    color: var(--accent)
}

.sd-rel-desc {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.72;
    color: var(--warm);
    margin-bottom: 16px
}

.sd-rel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: gap .2s
}

.sd-rel-card:hover .sd-rel-link {
    gap: 14px
}


.contact-main {
    padding: 120px 0;
    background: var(--white)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start
}

.c-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px
}

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--cloud);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    transition: var(--t)
}

.c-card:hover {
    border-color: var(--rose);
    box-shadow: 0 12px 40px rgba(201, 68, 148, .08);
    transform: translateY(-4px)
}

.c-card-ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0
}

.c-card-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.c-card-val {
    font-size: .88rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.6
}

.c-card-val a {
    color: var(--accent);
    font-weight: 600
}

.c-card-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 6px
}

.c-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px
}

.c-soc {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--warm);
    transition: var(--t)
}

.c-soc:hover {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px)
}

.c-form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 42px;
    box-shadow: 0 28px 80px rgba(201, 68, 148, .1);
    border: 2px solid var(--border)
}

.c-form-title {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.c-form-title em {
    font-style: italic;
    color: var(--accent)
}

.c-form-sub {
    font-size: .84rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 28px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-grp {
    margin-bottom: 16px
}

.f-grp.full {
    grid-column: 1/-1
}

.f-grp label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 7px
}

.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: var(--tf)
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.c-submit {
    width: 100%;
    padding: 18px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t)
}

.c-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(201, 68, 148, .35)
}

.contact-map {
    background: var(--cloud)
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(.3)
}

.contact-hours {
    padding: 100px 0;
    background: var(--blush)
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px
}

.hour-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--t)
}

.hour-card:hover {
    border-color: var(--rose);
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(201, 68, 148, .08)
}

.hour-card-ico {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 18px;
    transition: var(--t)
}

.hour-card:hover .hour-card-ico {
    background: var(--grad-accent)
}

.hour-card:hover .hour-card-ico i {
    color: #fff
}

.hour-card-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px
}

.hour-card-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px
}

.hour-card-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.6
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hours-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {
    .hours-grid {
        grid-template-columns: 1fr
    }

    .f-row {
        grid-template-columns: 1fr
    }
}


.faq-search {
    padding: 60px 0 0;
    background: var(--white)
}

.faq-search-wrap {
    max-width: 680px;
    margin: 0 auto;
    position: relative
}

.faq-search-wrap input {
    width: 100%;
    padding: 20px 24px 20px 56px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: 100px;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: var(--tf)
}

.faq-search-wrap input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.faq-search-ico {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1rem
}

.faq-cats {
    padding: 48px 0 0;
    background: var(--white)
}

.faq-cat-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px
}

.faq-cat-pill {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--warm);
    background: var(--white);
    cursor: pointer;
    transition: var(--tf)
}

.faq-cat-pill.active,
.faq-cat-pill:hover {
    background: var(--grad-accent);
    color: #fff;
    border-color: transparent
}

.faq-section {
    padding: 56px 0 120px;
    background: var(--white)
}

.faq-group {
    max-width: 860px;
    margin: 0 auto
}

.faq-group-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 48px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

.faq-group-title::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.fq {
    border-bottom: 1.5px solid var(--border)
}

.fq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer
}

.fq-qt {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    transition: color .2s
}

.fq.open .fq-qt {
    color: var(--accent)
}

.fq-tog {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t)
}

.fq-tog i {
    font-size: .72rem;
    color: var(--warm);
    transition: transform .35s ease
}

.fq.open .fq-tog {
    background: var(--grad-accent);
    border-color: var(--accent)
}

.fq.open .fq-tog i {
    transform: rotate(180deg);
    color: #fff
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease
}

.fq.open .fq-a {
    max-height: 600px
}

.fq-ai {
    padding: 0 0 24px;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--warm)
}

.fq-ai strong {
    color: var(--ink);
    font-weight: 600
}

/* STATS BAR */
.testi-stats {
    padding: 56px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.ts-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    text-align: center
}

.ts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.ts-num {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1
}

.ts-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--warm)
}


/* VIDEO REVIEWS */
.video-reviews {
    padding: 120px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.video-reviews::before {
    content: 'माँ';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 24rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.vr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px
}

.vr-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--t)
}

.vr-card:hover {
    border-color: var(--rose);
    box-shadow: 0 20px 56px rgba(201, 68, 148, .1);
    transform: translateY(-6px)
}

.vr-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink)
}

.vr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .3s
}

.vr-card:hover .vr-thumb img {
    opacity: .5
}

.vr-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(201, 68, 148, .45);
    transition: var(--t);
    padding-left: 4px
}

.vr-card:hover .vr-play {
    transform: translate(-50%, -50%) scale(1.12)
}

.vr-dur {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, .7);
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 600;
    color: #fff
}

.vr-body {
    padding: 24px
}

.vr-name {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.vr-tag {
    font-size: .74rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 12px
}

.vr-quote {
    font-size: .84rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.65;
    padding-left: 14px;
    border-left: 3px solid var(--accent)
}

/* IMPACT QUOTE */
.testi-impact {
    padding: 100px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

.testi-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.ti-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto
}

.ti-quote-mark {
    font-family: var(--display);
    font-size: 6rem;
    font-weight: 300;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: -20px;
    opacity: .5
}

.ti-quote {
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 28px
}

.ti-attr {
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 4px
}

.ti-attr-sub {
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35)
}

/* CTA */
.testi-cta {
    padding: 100px 0;
    background: var(--white);
    text-align: center
}

.testi-cta-inner {
    max-width: 700px;
    margin: 0 auto
}

@media(max-width:900px) {

    .gr-grid,
    .vr-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .gr-grid,
    .vr-grid {
        grid-template-columns: 1fr
    }

    .ts-row {
        gap: 28px
    }
}



:root {
    /* WHITE BASE */
    --white: #FFFFFF;
    --snow: #FEFCFB;
    --cloud: #FBF7F9;
    /* BABY PINK SECONDARY */
    --blush: #FDE8EF;
    --rose: #F8C8D8;
    --petal: #FCEEF3;
    --pink-mist: #F9E0EA;
    /* LOGO COLOR — CTA & HIGHLIGHTS */
    --accent: #C94494;
    --accent-light: #E066AA;
    --accent-deep: #A03478;
    --purple: #5B2080;
    --purple-deep: #3D1560;
    --grad-accent: linear-gradient(135deg, #C94494, #E066AA);
    --grad-brand: linear-gradient(135deg, #C94494 0%, #9B3AB0 50%, #5B2080 100%);
    --grad-soft: linear-gradient(135deg, #FDE8EF, #F8C8D8);
    /* TEXT */
    --ink: #1A0E28;
    --charcoal: #2E1A3D;
    --warm: #7A6B88;
    --mid: #B0A0BE;
    --border: #EDD8E8;
    /* TYPE */
    --display: 'Cormorant Garamond', serif;
    --body: 'DM Sans', sans-serif;
    --hindi: 'Noto Serif Devanagari', serif;
    --r: 14px;
    --r-lg: 28px;
    --r-xl: 50px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --t: all .5s var(--ease);
    --tf: all .25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

::selection {
    background: var(--rose);
    color: var(--ink)
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--cloud)
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

.ctr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

[data-r] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

[data-r].on {
    opacity: 1;
    transform: none
}

[data-r][data-d="1"] {
    transition-delay: .12s
}

[data-r][data-d="2"] {
    transition-delay: .24s
}

[data-r][data-d="3"] {
    transition-delay: .36s
}

[data-r][data-d="4"] {
    transition-delay: .48s
}

[data-r][data-d="5"] {
    transition-delay: .6s
}

[data-r] {
    opacity: 1 !important;
    transform: none !important;
}

/* ═══════════════════════════════════════
   TAG · HEADING · BUTTON SYSTEM
═══════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent)
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--grad-accent);
    border-radius: 2px
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink)
}

.sec-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400
}

.sec-sub {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.82;
    color: var(--warm);
    max-width: 540px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--t)
}

.btn-accent {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 8px 32px rgba(201, 68, 148, .3)
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 48px rgba(201, 68, 148, .4)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: var(--purple-deep);
    transform: translateY(-3px)
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink)
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border: 2px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2)
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--t)
}

#nav.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 32px rgba(201, 68, 148, .06);
    border-bottom: 1px solid var(--border)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo img {
    height: 52px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .3s ease
}

.nav-logo img:hover {
    transform: scale(1.04)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #000;
    transition: var(--tf);
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: width .3s ease;
    border-radius: 2px
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

/* Menu Links Black */
#nav.scrolled .nav-links a {
    color: #111;
}


.nav-cta {
    padding: 12px 26px;
    background: var(--grad-accent);
    color: #fff !important;
    border-radius: 100px;
    font-size: .72rem !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(201, 68, 148, .3);
    letter-spacing: .1em !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 68, 148, .4) !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--tf)
}

#mob-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .5s var(--ease)
}

#mob-nav.open {
    transform: translateX(0)
}

#mob-nav a {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    transition: color .2s
}

#mob-nav a:hover {
    color: var(--accent-light)
}

#mob-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(255, 255, 255, .6);
    font-size: 1.6rem;
    cursor: pointer;
    background: none;
    border: none
}

/* ═══════════════════════════════════════
   HERO — CINEMATIC FULLSCREEN
═══════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.22) saturate(.6)
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 14, 40, .96) 0%, rgba(91, 32, 128, .4) 50%, rgba(201, 68, 148, .1) 100%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px)
}

.hero-o1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 68, 148, .15), transparent 60%);
    animation: orb 16s ease-in-out infinite
}

.hero-o2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(91, 32, 128, .15), transparent 60%);
    animation: orb 11s ease-in-out infinite reverse
}

.hero-o3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 55%;
    background: radial-gradient(circle, rgba(248, 200, 216, .08), transparent 60%);
    animation: orb 8s ease-in-out infinite 3s
}

@keyframes orb {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-20px, -30px)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 160px;
    max-width: 800px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    margin-bottom: 36px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6)
}

.hero-badge i {
    color: var(--accent-light);
    font-size: .8rem
}

.hero-h1 {
    font-family: var(--display);
    font-size: clamp(3.4rem, 7.5vw, 7rem);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -.02em
}

.hero-h1 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300;
    display: block;
    margin-top: 4px
}

.hero-h1 .hero-hindi {
    font-family: var(--hindi);
    font-size: .35em;
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
    letter-spacing: .04em
}

.hero-sub {
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .5);
    max-width: 520px;
    margin-bottom: 44px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.hp-item {
    display: flex;
    align-items: center;
    gap: 10px
}

.hp-num {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1
}

.hp-lbl {
    font-size: .68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .35);
    line-height: 1.3;
    letter-spacing: .06em;
    text-transform: uppercase
}

.hp-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .1)
}

/* HERO BOTTOM BAR */
.hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3
}

.hero-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.hb-cell {
    padding: 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s
}

.hb-cell:first-child {
    border-radius: var(--r) 0 0 0
}

.hb-cell:last-child {
    border-right: none;
    border-radius: 0 var(--r) 0 0
}

.hb-cell:hover {
    background: rgba(201, 68, 148, .1)
}

.hb-ico {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 10px
}

.hb-title {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px
}

.hb-sub {
    font-size: .68rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    line-height: 1.4
}

/* ═══════════════════════════════════════
   TRUST STRIP — SOCIAL PROOF
═══════════════════════════════════════ */
.trust-strip {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.ts-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap
}

.ts-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.ts-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent)
}

.ts-num {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1
}

.ts-lbl {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

/* ═══════════════════════════════════════
   ABOUT — EDITORIAL SPLIT
═══════════════════════════════════════ */
#about {
    padding: 120px 0;
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 48% 52% 54% 46% / 46% 48% 52% 54%;
    z-index: 0;
    animation: blobM 14s ease-in-out infinite
}

@keyframes blobM {

    0%,
    100% {
        border-radius: 48% 52% 54% 46% / 46% 48% 52% 54%
    }

    33% {
        border-radius: 52% 48% 46% 54% / 54% 52% 48% 46%
    }

    66% {
        border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%
    }
}

.about-main-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
    box-shadow: 0 32px 80px rgba(201, 68, 148, .15)
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatY 8s ease-in-out infinite
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.afc-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0
}

.afc-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.afc-lbl {
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.about-content .eyebrow {
    margin-bottom: 18px
}

.about-name {
    font-family: var(--display);
    font-size: clamp(2.6rem, 3.8vw, 3.8rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 6px
}

.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 28px
}

.about-cred {
    padding: 6px 16px;
    background: var(--petal);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--rose)
}

.about-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--warm);
    margin-bottom: 18px
}

.about-p strong {
    color: var(--ink);
    font-weight: 600
}

.about-quote {
    font-family: var(--display);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.55;
    padding: 20px 0 20px 24px;
    border-left: 3px solid var(--accent);
    margin: 28px 0
}

/* ═══════════════════════════════════════
   PROMISE — EMOTIONAL IMPACT SECTION
═══════════════════════════════════════ */
#promise {
    padding: 100px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

#promise::before {
    content: 'माँ';
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--hindi);
    font-size: 28rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    user-select: none;
    line-height: 1
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.promise-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s ease
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(201, 68, 148, .12);
    border-color: var(--rose)
}

.promise-card:hover::before {
    opacity: 1
}

.pc-ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--t)
}

.promise-card:hover .pc-ico {
    background: var(--grad-accent);
    transform: scale(1.08)
}

.promise-card:hover .pc-ico i {
    color: #fff
}

.pc-ico i {
    color: var(--accent);
    transition: color .3s
}

.pc-title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px
}

.pc-text {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

/* ═══════════════════════════════════════
   SERVICES — MAGAZINE GRID
═══════════════════════════════════════ */
#services {
    padding: 120px 0;
    background: var(--white)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px
}

.svc-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--border);
    transition: var(--t);
    display: block;
    position: relative
}

.svc-card:hover {
    transform: translateY(-10px);
    border-color: var(--rose);
    box-shadow: 0 28px 72px rgba(201, 68, 148, .1)
}

.svc-img {
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.svc-card:hover .svc-img img {
    transform: scale(1.08)
}

.svc-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 40, .6), transparent 50%)
}

.svc-img-ico {
    position: absolute;
    bottom: 16px;
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 68, 148, .35)
}

.svc-body {
    padding: 28px 24px
}

.svc-cat {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.svc-name {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.28;
    transition: color .2s
}

.svc-card:hover .svc-name {
    color: var(--accent)
}

.svc-desc {
    font-size: .84rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--warm);
    margin-bottom: 18px
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    transition: gap .2s ease
}

.svc-card:hover .svc-link {
    gap: 14px
}

/* ═══════════════════════════════════════
   BIG IMPACT — FULL-WIDTH STATEMENT
═══════════════════════════════════════ */
#impact {
    padding: 120px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

#impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.03'/%3E%3C/svg%3E")
}

.impact-eyebrow {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.impact-eyebrow::before,
.impact-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(201, 68, 148, .4)
}

.impact-h2 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.06;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 36px;
    letter-spacing: -.01em
}

.impact-h2 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300
}

.impact-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .4);
    max-width: 560px;
    margin: 0 auto 48px
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.is {
    text-align: center
}

.is-num {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px
}

.is-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#testi {
    padding: 120px 0;
    background: var(--cloud)
}

.testi-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px
}

.t-nav {
    display: flex;
    gap: 10px
}

.t-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--warm);
    cursor: pointer;
    transition: var(--tf)
}

.t-btn:hover {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff
}

.t-card{

    background:#fff;

    border-radius:28px;

    padding:34px;

    border:2px solid #edd8ef;

    transition:.35s;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:430px;

    height:auto;

}

.t-card:hover {
    border-color: var(--rose);
    box-shadow: 0 20px 52px rgba(201, 68, 148, .08)
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px
}

.t-stars i {
    font-size: .85rem;
    color: #F5B642
}

.t-text {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.72;
    color: var(--charcoal);
    flex: 1;
    margin-bottom: 24px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border)
}

.t-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0
}

.t-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink)
}

.t-tag {
    font-size: .74rem;
    font-weight: 300;
    color: var(--warm);
    margin-top: 3px
}

.t-badge {
    margin-left: auto;
    color: #4285F4;
    font-size: 1rem
}

/* ═══════════════════════════════════════
   APPOINTMENT CTA
═══════════════════════════════════════ */
#appt {
    padding: 110px 0;
    background: var(--white);
    position: relative
}

.appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.appt-left .eyebrow {
    margin-bottom: 18px
}

.appt-left .sec-title {
    margin-bottom: 20px
}

.appt-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}

.ap {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.ap-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--tf)
}

.ap:hover .ap-ico {
    background: var(--grad-accent);
    color: #fff
}

.ap-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px
}

.ap-txt {
    font-size: .82rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

.appt-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 42px;
    box-shadow: 0 28px 80px rgba(201, 68, 148, .1);
    border: 2px solid var(--border)
}

.appt-card-title {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.appt-card-title em {
    font-style: italic;
    color: var(--accent)
}

.appt-card-sub {
    font-size: .84rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 28px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-grp {
    margin-bottom: 16px
}

.f-grp.full {
    grid-column: 1/-1
}

.f-grp label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 7px
}

.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: var(--tf);
    outline: none
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.appt-submit {
    width: 100%;
    padding: 18px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t)
}

.appt-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(201, 68, 148, .35)
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
    background: var(--ink);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden
}

.footer-watermark {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-family: var(--hindi);
    font-size: 16rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .025);
    pointer-events: none;
    user-select: none;
    line-height: 1
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ft-logo img {
    height: 56px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(2)
}

.ft-desc {
    font-size: .84rem;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px
}

.ft-socials {
    display: flex;
    gap: 10px
}

.ft-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    transition: var(--tf)
}

.ft-soc:hover {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff
}

.ft-col-h {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 22px
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.ft-links a {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .32);
    transition: var(--tf)
}

.ft-links a:hover {
    color: var(--accent-light);
    padding-left: 6px
}

.ft-ci {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px
}

.ft-ci-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 68, 148, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--accent-light);
    flex-shrink: 0
}

.ft-ci-lbl {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
    margin-bottom: 3px
}

.ft-ci-val {
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.ft-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.ft-copy {
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2)
}

.ft-legal {
    display: flex;
    gap: 20px
}

.ft-legal a {
    font-size: .72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    transition: var(--tf)
}

.ft-legal a:hover {
    color: var(--accent-light)
}

/* ═══ FLOATS ═══ */
.floats {
    position: fixed;
    bottom: 30px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.fl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: var(--t);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .18)
}

.fl-wa {
    padding: 14px 20px;
    background: #25D366;
    color: #fff
}

.fl-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .35)
}

.fl-ap {
    padding: 14px 20px;
    background: var(--grad-accent);
    color: #fff
}

.fl-ap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201, 68, 148, .4)
}

.fl-lbl {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .35s ease
}

.fl-btn:hover .fl-lbl {
    max-width: 160px
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px) {
    .promise-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .ctr {
        padding: 0 22px
    }

    .about-grid,
    .appt-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-bar-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hb-cell:nth-child(3),
    .hb-cell:nth-child(4) {
        display: none
    }

    .impact-stats {
        gap: 36px
    }

    .about-float-card {
        display: none
    }
}

@media(max-width:768px) {
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .hero-content {
        padding: 130px 0 140px
    }
}

@media(max-width:640px) {

    .svc-grid,
    .promise-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }

    .fl-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        padding: 0;
        justify-content: center
    }

    .fl-lbl {
        display: none
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .ts-row {
        gap: 24px
    }

    .ts-item {
        flex-direction: column;
        text-align: center;
        gap: 8px
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .hp-sep {
        display: none
    }
}

/* PAGE HERO */
.pg-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--ink);
    overflow: hidden;
    text-align: center
}

.pg-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 14, 40, .97), rgba(91, 32, 128, .4) 50%, rgba(201, 68, 148, .12))
}

.pg-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.pg-hero-o1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 68, 148, .14), transparent 60%);
    animation: orb 14s ease-in-out infinite
}

.pg-hero-o2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -50px;
    background: radial-gradient(circle, rgba(91, 32, 128, .14), transparent 60%);
    animation: orb 10s ease-in-out infinite reverse
}

@keyframes orb {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-18px, -28px)
    }
}

.pg-hero-bc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    position: relative;
    z-index: 2
}

.pg-hero-bc a {
    color: rgba(255, 255, 255, .3);
    transition: color .2s
}

.pg-hero-bc a:hover {
    color: var(--accent-light)
}

.pg-hero-bc .sep {
    color: rgba(255, 255, 255, .15)
}

.pg-hero-bc .cur {
    color: var(--accent-light)
}

.pg-hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.04;
    position: relative;
    z-index: 2;
    margin-bottom: 20px
}

.pg-hero h1 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300
}

.pg-hero-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .45);
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.pg-hero-hindi {
    font-family: var(--hindi);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .15);
    margin-top: 18px;
    position: relative;
    z-index: 2
}


/* STORY SECTION */
.story {
    padding: 120px 0;
    background: var(--white)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center
}

.story-img-wrap {
    position: relative
}

.story-blob {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 42% 58% 54% 46%/46% 42% 58% 54%;
    z-index: 0;
    animation: bM 14s ease-in-out infinite
}

@keyframes bM {

    0%,
    100% {
        border-radius: 42% 58% 54% 46%/46% 42% 58% 54%
    }

    50% {
        border-radius: 58% 42% 42% 58%/54% 58% 42% 46%
    }
}

.story-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
    box-shadow: 0 32px 80px rgba(201, 68, 148, .14)
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.story-float {
    position: absolute;
    bottom: -24px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 26px;
    box-shadow: 0 16px 52px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fY 8s ease-in-out infinite
}

@keyframes fY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.story-float-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff
}

.story-float-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.story-float-lbl {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.story-accent {
    position: absolute;
    top: 40px;
    right: -20px;
    z-index: 2;
    width: 45%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(201, 68, 148, .2);
    border: 4px solid var(--white)
}

.story-accent img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover
}

.story-name {
    font-family: var(--display);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.06;
    margin-bottom: 6px
}

.story-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 28px
}

.story-cred {
    padding: 6px 16px;
    background: var(--petal);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--rose)
}

.story-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.92;
    color: var(--warm);
    margin-bottom: 18px
}

.story-p strong {
    color: var(--ink);
    font-weight: 600
}

.story-quote {
    font-family: var(--display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.55;
    padding: 20px 0 20px 24px;
    border-left: 3px solid var(--accent);
    margin: 28px 0
}

/* IMPACT NUMBERS */
.impact-bar {
    padding: 80px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.impact-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1
}

.ig-num {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px
}

.ig-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.ig-sep {
    width: 1px;
    background: rgba(255, 255, 255, .06);
    align-self: stretch;
    justify-self: center
}

/* PHILOSOPHY */
.philosophy {
    padding: 120px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.philosophy::before {
    content: 'आयु';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 24rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.phil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px
}

.phil-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.phil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s
}

.phil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(201, 68, 148, .12);
    border-color: var(--rose)
}

.phil-card:hover::before {
    opacity: 1
}

.phil-ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--t)
}

.phil-card:hover .phil-ico {
    background: var(--grad-accent);
    transform: scale(1.08)
}

.phil-card:hover .phil-ico i {
    color: #fff
}

.phil-ico i {
    color: var(--accent);
    transition: color .3s
}

.phil-title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px
}

.phil-text {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

/* JOURNEY TIMELINE */
.journey {
    padding: 120px 0;
    background: var(--white)
}

.jn-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative
}

.jn-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose), var(--accent), var(--rose));
    transform: translateX(-50%)
}

.jn-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 48px;
    align-items: start
}

.jn-item:nth-child(odd) .jn-content {
    grid-column: 1
}

.jn-item:nth-child(odd) .jn-empty {
    grid-column: 3
}

.jn-item:nth-child(even) .jn-content {
    grid-column: 3;
    text-align: left
}

.jn-item:nth-child(even) .jn-empty {
    grid-column: 1
}

.jn-dot-wrap {
    grid-column: 2;
    display: flex;
    justify-content: center;
    z-index: 1
}

.jn-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    transition: var(--t)
}

.jn-item:hover .jn-dot {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.1)
}

.jn-content {
    padding: 0 28px
}

.jn-year {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px
}

.jn-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3
}

.jn-desc {
    font-size: .86rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--warm)
}

.jn-item:nth-child(odd) .jn-content {
    text-align: right
}

/* CREDENTIALS */
.credentials {
    padding: 110px 0;
    background: var(--cloud)
}

.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px
}

.cred-col-h {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cred-col-h::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--r);
    border: 2px solid var(--border);
    margin-bottom: 14px;
    transition: var(--t)
}

.cred-item:hover {
    border-color: var(--rose);
    box-shadow: 0 10px 32px rgba(201, 68, 148, .08);
    transform: translateY(-3px)
}

.cred-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.cred-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.cred-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}


/* MEMBERSHIPS */
.memberships {
    padding: 100px 0;
    background: var(--blush)
}

.mem-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px
}

.mem {
    padding: 18px 32px;
    background: var(--white);
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--t)
}

.mem:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(201, 68, 148, .1);
    transform: translateY(-3px)
}

.mem i {
    color: var(--accent);
    font-size: 1rem
}

/* CTA */
.pg-cta {
    padding: 120px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

.pg-cta-o {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.pg-cta-o1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(201, 68, 148, .16), transparent 60%)
}

.pg-cta-o2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(91, 32, 128, .18), transparent 60%)
}

.pg-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.pg-cta-ey {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.pg-cta-ey::before,
.pg-cta-ey::after {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(201, 68, 148, .35)
}

.pg-cta h2 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px
}

.pg-cta h2 em {
    font-style: italic;
    color: var(--accent-light)
}

.pg-cta-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 48px
}

.pg-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.pg-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.pg-cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .3)
}

.pg-cta-trust i {
    color: var(--accent-light)
}



/* HERO */
.sd-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
    padding: 160px 0 30px
}

.sd-hero-bg {
    position: absolute;
    inset: 0
}

.sd-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.2) saturate(.5)
}

.sd-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(26, 14, 40, .97) 0%, rgba(91, 32, 128, .45) 50%, rgba(201, 68, 148, .12) 100%)
}

.sd-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.sd-hero-o1 {
    width: 650px;
    height: 650px;
    top: -180px;
    right: -80px;
    background: radial-gradient(circle, rgba(201, 68, 148, .14), transparent 60%);
    animation: orb 14s ease-in-out infinite
}

.sd-hero-o2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(91, 32, 128, .14), transparent 60%);
    animation: orb 10s ease-in-out infinite reverse
}

@keyframes orb {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-18px, -28px)
    }
}

.sd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2
}

.sd-hero-bc {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.sd-hero-bc a {
    color: #fff !important;
    transition: color .2s
}

.sd-hero-bc a:hover {
    color: var(--accent-light)
}

.sd-hero-bc .sep {
    color: #fff;
}

.sd-hero-bc .cur {
    color: var(--accent-light)
}

.sd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55)
}

.sd-hero-badge i {
    color: var(--accent-light)
}

.sd-hero h1 {
    font-family: var(--display);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 24px
}

.sd-hero h1 em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 300
}

.sd-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .48);
    max-width: 700px;
    margin-bottom: 36px
}

.sd-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px
}

.sd-pill {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 68, 148, .28);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 7px
}

.sd-pill i {
    color: var(--accent-light);
    font-size: .72rem
}


/* QF Card */
.qf {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden
}

.qf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent)
}

.qf-h {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 26px
}

.qf-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.qf-row:last-of-type {
    border-bottom: none
}

.qf-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 68, 148, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--accent-light);
    flex-shrink: 0
}

.qf-lbl {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 3px
}

.qf-val {
    font-size: .88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    line-height: 1.4
}

.qf-cta {
    margin-top: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--grad-accent);
    color: #fff;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--t)
}

.qf-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 68, 148, .45)
}


/* OVERVIEW */
.sd-overview {
    padding: 120px 0;
    background: var(--white)
}

.sd-ov-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start
}

.sd-ov-img-wrap {
    position: relative
}

.sd-ov-blob {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80%;
    height: 80%;
    background: var(--blush);
    border-radius: 42% 58% 54% 46%/46% 42% 58% 54%;
    z-index: 0;
    animation: bM 14s ease-in-out infinite
}

@keyframes bM {

    0%,
    100% {
        border-radius: 42% 58% 54% 46%/46% 42% 58% 54%
    }

    50% {
        border-radius: 58% 42% 42% 58%/54% 58% 42% 46%
    }
}

.sd-ov-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 32px 80px rgba(201, 68, 148, .14)
}

.sd-ov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sd-ov-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 26px;
    box-shadow: 0 16px 52px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fY 8s ease-in-out infinite
}

@keyframes fY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.sd-ov-float-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff
}

.sd-ov-float-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1
}

.sd-ov-float-lbl {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-top: 2px
}

.sd-ov-p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.92;
    color: var(--warm);
    margin-bottom: 18px
}

.sd-ov-p strong {
    color: var(--ink);
    font-weight: 600
}

.sd-ov-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px
}

.sd-hl {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--cloud);
    border-radius: var(--r);
    border: 2px solid var(--border);
    transition: var(--t)
}

.sd-hl:hover {
    border-color: var(--rose);
    box-shadow: 0 10px 32px rgba(201, 68, 148, .08);
    transform: translateY(-3px)
}

.sd-hl-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0
}

.sd-hl-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.sd-hl-txt {
    font-size: .76rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

/* WHO NEEDS */
.sd-who {
    padding: 110px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.sd-who::before {
    content: 'सुरक्षा';
    position: absolute;
    top: -10px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 22rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.sd-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px
}

.sd-who-col-h {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px
}

.sd-who-col-h::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.ri {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--r);
    border: 2px solid var(--border);
    margin-bottom: 12px;
    transition: var(--t)
}

.ri:hover {
    border-color: var(--rose);
    box-shadow: 0 8px 28px rgba(201, 68, 148, .08);
    transform: translateX(5px)
}

.ri-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grad-accent);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(201, 68, 148, .3)
}

.ri-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.ri-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.55
}

.sd-notice {
    margin-top: 44px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--r-lg);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 12px 36px rgba(201, 68, 148, .06)
}

.sd-notice i {
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px
}

.sd-notice p {
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.78;
    color: var(--charcoal)
}

.sd-notice strong {
    color: var(--ink);
    font-weight: 700
}

/* APPROACH */
.sd-approach {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.sd-approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.sd-approach-wm {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    pointer-events: none;
    line-height: 1
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
    z-index: 1
}

.step-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity .4s
}

.step-card:hover {
    background: rgba(201, 68, 148, .06);
    border-color: rgba(201, 68, 148, .2);
    transform: translateY(-8px)
}

.step-card:hover::before {
    opacity: 1
}

.step-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 8px 28px rgba(201, 68, 148, .35)
}

.step-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px
}

.step-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

.step-desc {
    font-size: .82rem;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(255, 255, 255, .4)
}

/* DETAILS TABS */
.sd-details {
    padding: 120px 0;
    background: var(--white)
}

.sd-det-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px
}

.sd-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.sd-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--warm);
    background: var(--white);
    cursor: pointer;
    transition: var(--tf)
}

.sd-tab.active,
.sd-tab:hover {
    background: var(--grad-accent);
    color: #fff;
    border-color: transparent
}

.sd-panel {
    display: none
}

.sd-panel.active {
    display: block
}

.sd-tl {
    display: flex;
    flex-direction: column
}

.sd-tl-item {
    display: grid;
    grid-template-columns: 56px 1fr
}

.sd-tl-left {
    display: flex;
    flex-direction: column;
    align-items: center
}

.sd-tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--petal);
    border: 2px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    z-index: 1;
    transition: var(--tf)
}

.sd-tl-item:hover .sd-tl-dot {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff
}

.sd-tl-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--rose), var(--border));
    min-height: 28px
}

.sd-tl-item:last-child .sd-tl-line {
    display: none
}

.sd-tl-content {
    padding: 0 0 36px 24px
}

.sd-tl-week {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px
}

.sd-tl-title {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px
}

.sd-tl-desc {
    font-size: .86rem;
    font-weight: 300;
    line-height: 1.82;
    color: var(--warm)
}

.sd-tl-desc strong {
    color: var(--charcoal);
    font-weight: 600
}

/* SIDEBAR */
.sd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.sd-outcome {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: 0 12px 44px rgba(201, 68, 148, .06)
}

.sd-oc-hdr {
    padding: 24px 28px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    gap: 14px
}

.sd-oc-hdr i {
    font-size: 1.3rem;
    color: #fff
}

.sd-oc-hdr span {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff
}

.sd-oc-list {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.sd-oc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .86rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.55
}

.sd-oc-chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .6rem;
    color: var(--accent);
    font-weight: 700
}

.sd-stat-box {
    background: var(--blush);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 2px solid var(--rose)
}

.sd-stat-box-h {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sd-sr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--rose)
}

.sd-sr:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.sd-sr-l {
    font-size: .82rem;
    font-weight: 300;
    color: var(--charcoal)
}

.sd-sr-v {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent)
}

.sd-doc-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 2px solid var(--border);
    text-align: center
}

.sd-doc-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 3px solid var(--rose)
}

.sd-doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sd-doc-name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px
}

.sd-doc-creds {
    font-size: .72rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 16px;
    line-height: 1.5
}

.sd-doc-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--grad-accent);
    color: #fff;
    border-radius: 100px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    transition: var(--t)
}

.sd-doc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 68, 148, .35)
}



/* FAQ */
.sd-faqs {
    padding: 110px 0;
    background: var(--white)
}

.sd-faq-wrap {
    max-width: 820px;
    margin: 56px auto 0
}

.sd-faq-item {
    border-bottom: 1.5px solid var(--border)
}

.sd-faq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer
}

.sd-faq-qt {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    transition: color .2s
}

.sd-faq-item.open .sd-faq-qt {
    color: var(--accent)
}

.sd-faq-tog {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t)
}

.sd-faq-tog i {
    font-size: .72rem;
    color: var(--warm);
    transition: transform .35s ease
}

.sd-faq-item.open .sd-faq-tog {
    background: var(--grad-accent);
    border-color: var(--accent)
}

.sd-faq-item.open .sd-faq-tog i {
    transform: rotate(180deg);
    color: #fff
}

.sd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease
}

.sd-faq-item.open .sd-faq-a {
    max-height: 400px
}

.sd-faq-ai {
    padding: 0 0 24px;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--warm)
}

.sd-faq-ai strong {
    color: var(--ink);
    font-weight: 600
}

/* RELATED */
.sd-related {
    padding: 110px 0;
    background: var(--blush)
}

.sd-rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px
}

.sd-rel-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--t);
    display: block
}

.sd-rel-card:hover {
    transform: translateY(-8px);
    border-color: var(--rose);
    box-shadow: 0 24px 60px rgba(201, 68, 148, .1)
}

.sd-rel-img {
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative
}

.sd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease
}

.sd-rel-card:hover .sd-rel-img img {
    transform: scale(1.06)
}

.sd-rel-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 40, .5), transparent 50%)
}

.sd-rel-ico {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff
}

.sd-rel-body {
    padding: 24px
}

.sd-rel-cat {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px
}

.sd-rel-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color .2s
}

.sd-rel-card:hover .sd-rel-title {
    color: var(--accent)
}

.sd-rel-desc {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.72;
    color: var(--warm);
    margin-bottom: 16px
}

.sd-rel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: gap .2s
}

.sd-rel-card:hover .sd-rel-link {
    gap: 14px
}


.contact-main {
    padding: 120px 0;
    background: var(--white)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start
}

.c-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px
}

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--cloud);
    border-radius: var(--r-lg);
    border: 2px solid var(--border);
    transition: var(--t)
}

.c-card:hover {
    border-color: var(--rose);
    box-shadow: 0 12px 40px rgba(201, 68, 148, .08);
    transform: translateY(-4px)
}

.c-card-ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0
}

.c-card-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.c-card-val {
    font-size: .88rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.6
}

.c-card-val a {
    color: var(--accent);
    font-weight: 600
}

.c-card-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 6px
}

.c-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px
}

.c-soc {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--warm);
    transition: var(--t)
}

.c-soc:hover {
    background: var(--grad-accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px)
}

.c-form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 42px;
    box-shadow: 0 28px 80px rgba(201, 68, 148, .1);
    border: 2px solid var(--border)
}

.c-form-title {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.c-form-title em {
    font-style: italic;
    color: var(--accent)
}

.c-form-sub {
    font-size: .84rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 28px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-grp {
    margin-bottom: 16px
}

.f-grp.full {
    grid-column: 1/-1
}

.f-grp label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 7px
}

.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: var(--r);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: var(--tf)
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.c-submit {
    width: 100%;
    padding: 18px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t)
}

.c-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(201, 68, 148, .35)
}

.contact-map {
    background: var(--cloud)
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(.3)
}

.contact-hours {
    padding: 100px 0;
    background: var(--blush)
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px
}

.hour-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--t)
}

.hour-card:hover {
    border-color: var(--rose);
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(201, 68, 148, .08)
}

.hour-card-ico {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 18px;
    transition: var(--t)
}

.hour-card:hover .hour-card-ico {
    background: var(--grad-accent)
}

.hour-card:hover .hour-card-ico i {
    color: #fff
}

.hour-card-title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px
}

.hour-card-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px
}

.hour-card-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.6
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hours-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {
    .hours-grid {
        grid-template-columns: 1fr
    }

    .f-row {
        grid-template-columns: 1fr
    }
}


.faq-search {
    padding: 60px 0 0;
    background: var(--white)
}

.faq-search-wrap {
    max-width: 680px;
    margin: 0 auto;
    position: relative
}

.faq-search-wrap input {
    width: 100%;
    padding: 20px 24px 20px 56px;
    background: var(--cloud);
    border: 2px solid var(--border);
    border-radius: 100px;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: var(--tf)
}

.faq-search-wrap input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 68, 148, .08)
}

.faq-search-ico {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1rem
}

.faq-cats {
    padding: 48px 0 0;
    background: var(--white)
}

.faq-cat-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px
}

.faq-cat-pill {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--warm);
    background: var(--white);
    cursor: pointer;
    transition: var(--tf)
}

.faq-cat-pill.active,
.faq-cat-pill:hover {
    background: var(--grad-accent);
    color: #fff;
    border-color: transparent
}

.faq-section {
    padding: 56px 0 120px;
    background: var(--white)
}

.faq-group {
    max-width: 860px;
    margin: 0 auto
}

.faq-group-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 48px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

.faq-group-title::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--rose)
}

.fq {
    border-bottom: 1.5px solid var(--border)
}

.fq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer
}

.fq-qt {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    transition: color .2s
}

.fq.open .fq-qt {
    color: var(--accent)
}

.fq-tog {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t)
}

.fq-tog i {
    font-size: .72rem;
    color: var(--warm);
    transition: transform .35s ease
}

.fq.open .fq-tog {
    background: var(--grad-accent);
    border-color: var(--accent)
}

.fq.open .fq-tog i {
    transform: rotate(180deg);
    color: #fff
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease
}

.fq.open .fq-a {
    max-height: 600px
}

.fq-ai {
    padding: 0 0 24px;
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--warm)
}

.fq-ai strong {
    color: var(--ink);
    font-weight: 600
}

/* STATS BAR */
.testi-stats {
    padding: 56px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.ts-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    text-align: center
}

.ts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.ts-num {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1
}

.ts-lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--warm)
}

/* GOOGLE REVIEWS */
.google-reviews {
    padding: 120px 0;
    background: var(--white)
}

.gr-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 56px
}

.gr-google-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--cloud);
    border-radius: var(--r-lg);
    border: 2px solid var(--border)
}

.gr-g-ico {
    font-size: 1.8rem;
    color: #4285F4
}

.gr-g-rating {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1
}

.gr-g-stars {
    display: flex;
    gap: 2px;
    margin: 3px 0
}

.gr-g-stars i {
    color: #F5B642;
    font-size: .85rem
}

.gr-g-count {
    font-size: .72rem;
    font-weight: 300;
    color: var(--warm)
}

.gr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.gr-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    border: 2px solid var(--border);
    transition: var(--t);
    display: flex;
    flex-direction: column;
    position: relative
}

.gr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    opacity: 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transition: opacity .3s
}

.gr-card:hover {
    border-color: var(--rose);
    box-shadow: 0 20px 56px rgba(201, 68, 148, .08);
    transform: translateY(-6px)
}

.gr-card:hover::before {
    opacity: 1
}

.gr-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.gr-stars {
    display: flex;
    gap: 2px
}

.gr-stars i {
    color: #F5B642;
    font-size: .9rem
}

.gr-date {
    font-size: .68rem;
    font-weight: 300;
    color: var(--mid)
}

.gr-text {
    font-family: var(--display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.72;
    color: var(--charcoal);
    flex: 1;
    margin-bottom: 24px
}

.gr-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border)
}

.gr-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0
}

.gr-name {
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink)
}

.gr-tag {
    font-size: .72rem;
    font-weight: 300;
    color: var(--warm);
    margin-top: 3px
}

.gr-badge {
    margin-left: auto;
    color: #4285F4;
    font-size: 1.1rem
}

.gr-more {
    text-align: center;
    margin-top: 48px
}

/* VIDEO REVIEWS */
.video-reviews {
    padding: 120px 0;
    background: var(--blush);
    position: relative;
    overflow: hidden
}

.video-reviews::before {
    content: 'माँ';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--hindi);
    font-size: 24rem;
    font-weight: 700;
    color: rgba(201, 68, 148, .04);
    pointer-events: none;
    line-height: 1
}

.vr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px
}

.vr-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--t)
}

.vr-card:hover {
    border-color: var(--rose);
    box-shadow: 0 20px 56px rgba(201, 68, 148, .1);
    transform: translateY(-6px)
}

.vr-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink)
}

.vr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .3s
}

.vr-card:hover .vr-thumb img {
    opacity: .5
}

.vr-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(201, 68, 148, .45);
    transition: var(--t);
    padding-left: 4px
}

.vr-card:hover .vr-play {
    transform: translate(-50%, -50%) scale(1.12)
}

.vr-dur {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, .7);
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 600;
    color: #fff
}

.vr-body {
    padding: 24px
}

.vr-name {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px
}

.vr-tag {
    font-size: .74rem;
    font-weight: 300;
    color: var(--warm);
    margin-bottom: 12px
}

.vr-quote {
    font-size: .84rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.65;
    padding-left: 14px;
    border-left: 3px solid var(--accent)
}

/* IMPACT QUOTE */
.testi-impact {
    padding: 100px 0;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden
}

.testi-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.025'/%3E%3C/svg%3E")
}

.ti-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto
}

.ti-quote-mark {
    font-family: var(--display);
    font-size: 6rem;
    font-weight: 300;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: -20px;
    opacity: .5
}

.ti-quote {
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 28px
}

.ti-attr {
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 4px
}

.ti-attr-sub {
    font-size: .74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35)
}

/* CTA */
.testi-cta {
    padding: 100px 0;
    background: var(--white);
    text-align: center
}

.testi-cta-inner {
    max-width: 700px;
    margin: 0 auto
}

@media(max-width:900px) {

    .gr-grid,
    .vr-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .gr-grid,
    .vr-grid {
        grid-template-columns: 1fr
    }

    .ts-row {
        gap: 28px
    }
}

/*==================================================
FERTILITY CONDITIONS
==================================================*/

.risk-section {

    padding: 60px 0;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #35184e 0%, #5a2d84 45%, #d456aa 100%);

}

.risk-section::before {

    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    filter: blur(10px);

}

.risk-section .container {

    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;

}

/*====================*/

.risk-head {

    text-align: center;
    margin-bottom: 50px;

}

.eyebrow {

    display: inline-block;

    padding: 10px 20px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    border-radius: 50px;

    letter-spacing: .18em;

    text-transform: uppercase;

    font-size: .78rem;

    font-weight: 600;

    margin-bottom: 18px;

}

.risk-title {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin: 0;

}

/*====================*/

.risk-wrapper {

    display: grid;

    grid-template-columns: 1fr 560px;

    gap: 60px;

    align-items: center;

}

/*====================*/

.risk-list {

    display: flex;

    flex-direction: column;

}

.risk-item {

    padding: 28px 30px;

    border-bottom: 1px solid rgba(255, 255, 255, .22);

    cursor: pointer;

    transition: .4s;

}

.risk-item h4 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;

    color: #fff;

}

.risk-desc {
    margin-top: 10px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
    font-size: 15px;
    display: none;

}

/*====================*/

.risk-item.active {

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border-left: 5px solid #ff74c5;

    border-radius: 20px;

    border-bottom: none;

    margin-bottom: 16px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.risk-item.active h4 {

    color: #fff;

}

.risk-item.active .risk-desc {

    display: block;

}

.risk-item:hover {

    background: rgba(255, 255, 255, .08);

}

/*====================*/

.risk-image {

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .22);

    position: relative;

}

.risk-image img {

    width: 100%;
    height: auto;
    object-fit: cover;

    display: block;

    transition: .5s;

}

.risk-image:hover img {

    transform: scale(1.05);

}

/*====================*/

@media(max-width:1200px) {

    .risk-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .risk-image {

        max-width: 650px;

        margin: auto;

    }

}

@media(max-width:991px) {

    .risk-section {

        padding: 80px 0;

    }

    .risk-title {

        font-size: 38px;

    }

    .risk-wrapper {

        display: flex;

        flex-direction: column-reverse;

    }

    .risk-image {

        width: 100%;

    }

    .risk-image img {

        height: 420px;

    }

    .risk-item {

        padding: 22px;

    }

    .risk-item h4 {

        font-size: 26px;

    }

    .risk-desc {

        font-size: 15px;

    }

}

@media(max-width:576px) {

    .risk-title {

        font-size: 30px;

    }

    .risk-item h4 {

        font-size: 22px;

    }

    .risk-image img {

        height: 320px;

    }

}




/*====================================================
WHY CHOOSE DR. SUMITI
====================================================*/

.pcos-why {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pcos-why::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(214, 86, 170, .06);
    left: -180px;
    top: -150px;
}

.pcos-why::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(108, 60, 170, .05);
    right: -220px;
    bottom: -220px;
}

.pcos-why .container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/*==========================
Heading
==========================*/

.pcos-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
}

.pcos-tag {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(214, 86, 170, .08);

    color: #d456aa;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.pcos-head h2 {

    font-family: var(--font-display);

    font-size: 30px;

    font-weight: 700;

    line-height: 1.2;

    color: #1f2232;

    margin-bottom: 10px;

}

.pcos-head h2 span {

    background: linear-gradient(90deg, #d456aa, #7b3fd0);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.pcos-head p {

    max-width: 720px;
    margin: auto;
    color: #667085;
    font-size: 14px;
    line-height: 1.9;

}

/*==========================
Layout
==========================*/

.pcos-wrapper {

    display: grid;

    grid-template-columns: 1fr 420px 1fr;

    gap: 60px;

    align-items: center;

}

.pcos-column {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

/*==========================
Card
==========================*/

.pcos-card {

    display: flex;

    gap: 22px;

    padding-bottom: 24px;

    border-bottom: 1px solid #ececec;

    transition: .35s;

}

.pcos-card:hover {

    transform: translateY(-4px);

}

.pcos-card:hover .pcos-icon {

    background: linear-gradient(135deg, #d456aa, #7b3fd0);

    color: #fff;

    transform: rotate(-8deg);

}

/*==========================
Icon
==========================*/

.pcos-icon {

    width: 45px;

    min-width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid #f0d7e7;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #d456aa;

    background: #fff;

    font-size: 16px;

    transition: .35s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);

}

/*==========================
Content
==========================*/

.pcos-content h4 {

    font-size: 14px;

    font-weight: 700;

    color: #222;

    margin-bottom: 10px;

    line-height: 1.3;

}

.pcos-content p {

    color: #6b7280;

    font-size: 12px;

    line-height: 1.8;

}

/*==========================
Center Image
==========================*/

.pcos-image {

    display: flex;

    justify-content: center;

    align-items: center;

}

.doctor-image {

    width: 420px;

    height: auto;

    border-radius: 50%;

    overflow: hidden;

    position: relative;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);

}

.doctor-image::before {

    content: "";

    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border: 2px dashed rgba(212, 86, 170, .18);

}

.doctor-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.doctor-image:hover img {

    transform: scale(1.06);

}

/*==========================
Tablet
==========================*/

@media(max-width:1199px) {

    .pcos-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .pcos-image {

        order: -1;

    }

    .pcos-column {

        gap: 18px;

    }

}

/*==========================
Mobile
==========================*/

@media(max-width:768px) {

    .pcos-why {

        padding: 80px 0;

    }

    .pcos-head {

        margin-bottom: 50px;

    }

    .pcos-head h2 {

        font-size: 36px;

    }

    .pcos-head p {

        font-size: 16px;

    }

    .doctor-image {

        width: 320px;

        height: 320px;

    }

    .pcos-card {

        gap: 16px;

        padding-bottom: 18px;

    }

    .pcos-icon {

        width: 50px;
        height: 50px;
        min-width: 50px;

        font-size: 17px;

    }

    .pcos-content h4 {

        font-size: 21px;

    }

    .pcos-content p {

        font-size: 15px;

        line-height: 1.7;

    }

}

/*==========================
Small Mobile
==========================*/

@media(max-width:480px) {

    .pcos-head h2 {

        font-size: 30px;

    }

    .doctor-image {

        width: 270px;

        height: 270px;

    }

    .pcos-card {

        flex-direction: column;

        align-items: flex-start;

    }

    .pcos-icon {

        margin-bottom: 5px;

    }

    .pcos-content h4 {

        font-size: 19px;

    }

    .pcos-content p {

        font-size: 14px;

    }

}
