﻿
/* ─────────────────────────────────────────
           DESIGN TOKENS
        ───────────────────────────────────────── */
:root {
    --navy: #0F4C75;
    --navy-dk: #0a3557;
    --blue: #3282B8;
    --blue-lt: #5ba3d9;
    --teal: #00BFA6;
    --teal-dk: #009e88;
    --teal-lt: #e0faf6;
    --white: #ffffff;
    --bg: #f4f8fb;
    --bg2: #eaf4f0;
    --text: #0d2535;
    --text-mid: #3d5a6e;
    --text-muted: #7a97aa;
    --border: rgba(15,76,117,.10);
    --shadow-sm: 0 2px 12px rgba(15,76,117,.08);
    --shadow-md: 0 8px 32px rgba(15,76,117,.12);
    --shadow-lg: 0 20px 60px rgba(15,76,117,.15);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

/* ─────────────────────────────────────────
           RESET & BASE
        ───────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans','Noto Sans Devanagari',sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ─────────────────────────────────────────
           SCROLLBAR
        ───────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #eaf4f0;
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

/* ─────────────────────────────────────────
           TOPBAR
        ───────────────────────────────────────── */
.topbar {
    background: var(--navy-dk);
    padding: .45rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .topbar-left span {
        font-size: .72rem;
        color: rgba(255,255,255,.5);
        letter-spacing: .05em;
    }

    .topbar-left .sep {
        color: rgba(255,255,255,.2);
    }

    .topbar-left .hl {
        color: var(--teal);
        font-weight: 600;
    }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .topbar-right a {
        font-size: .72rem;
        color: rgba(255,255,255,.5);
        transition: color .2s;
    }

        .topbar-right a:hover {
            color: var(--teal);
        }

/* ─────────────────────────────────────────
           NAVBAR
        ───────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--teal);
}

.nav-inner {
   /* max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 2rem;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(15,76,117,.3);
}

.brand-text .b1 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.01em;
}

.brand-text .b2 {
    font-size: .66rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: .1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .1rem;
}

    .nav-links a {
        font-size: .8rem;
        font-weight: 500;
        color: var(--text-mid);
        padding: .45rem .9rem;
        border-radius: 8px;
        transition: all .2s;
        white-space: nowrap;
    }

        .nav-links a:hover {
            color: var(--navy);
            background: var(--teal-lt);
        }

        .nav-links a.active {
            color: var(--teal-dk);
            font-weight: 600;
            background: var(--teal-lt);
        }

.nav-actions {
    display: flex;
    align-items: center;
    /*gap: .75rem;*/
    gap: 1rem;    
    flex-shrink: 0;
}

.btn-login {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    padding: .45rem 1.1rem;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    transition: all .2s;
}

    .btn-login:hover {
        background: var(--navy);
        color: #fff;
    }

.btn-register {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    padding: .5rem 1.3rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,191,166,.35);
    transition: all .25s;
    white-space: nowrap;
}

    .btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,191,166,.45);
    }

.nav-phone {
    font-size: .75rem;
    font-weight: 600;
    color: var(--teal-dk);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    padding: .4rem .85rem;
    background: var(--teal-lt);
    border-radius: 8px;
}

/* ─────────────────────────────────────────
           HERO
        ───────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 40%, #1a6b8a 70%, #0d7a6a 100%);
    /* background: linear-gradient(135deg, #0e2c44 0%, #133550 40%, #051a23 70%, #334e64 100%); */
    overflow: hidden;
    padding: 5rem 2rem 6rem;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* Geometric decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hs-1 {
    width: 600px;
    height: 600px;
    background: rgba(0,191,166,.08);
    top: -200px;
    right: -150px;
    animation: slowdrift 18s ease-in-out infinite alternate;
}

.hs-2 {
    width: 400px;
    height: 400px;
    background: rgba(50,130,184,.1);
    bottom: -150px;
    left: -100px;
    animation: slowdrift 14s ease-in-out infinite alternate-reverse;
}

.hs-3 {
    width: 200px;
    height: 200px;
    background: rgba(0,191,166,.06);
    top: 30%;
    left: 55%;
    animation: slowdrift 10s ease-in-out infinite alternate;
}

/* Grid texture */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Diagonal bottom cut */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg);
    clip-path: polygon(0 100%,100% 0,100% 100%);
}

@keyframes slowdrift {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(30px,20px) scale(1.06);
    }
}

.hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(0,191,166,.15);
    border: 1px solid rgba(0,191,166,.35);
    color: rgba(255,255,255,.85);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    animation: fadeUp .6s ease both;
}

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--teal);
        animation: blink 2s ease infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.6);
    }
}

.hero h1 {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: clamp(2.2rem,4.5vw,3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.4rem;
    animation: fadeUp .7s ease .1s both;
    word-spacing: 10px;
}

    .hero h1 .accent {
        color: var(--teal);
    }

    .hero h1 .sub-accent {
        display: block;
        font-size: .6em;
        font-weight: 400;
        font-family: 'Noto Sans Devanagari',sans-serif;
        color: rgba(255,255,255,.65);
        letter-spacing: 0;
        margin-top: 2.4rem;
    }

.hero-desc {
    color: rgb(255 255 255);
    /*font-size: .95rem;*/
    font-size: 20px;
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 2.25rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
    animation: fadeUp .7s ease .2s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .3s both;
    margin-bottom: 2.5rem;
}

.btn-hero-p {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    padding: .9rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,191,166,.4);
    transition: all .3s;
}

    .btn-hero-p:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,191,166,.5);
    }

.btn-hero-s {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    font-weight: 500;
    padding: .9rem 2rem;
    border-radius: 12px;
    transition: all .3s;
    backdrop-filter: blur(10px);
}

    .btn-hero-s:hover {
        background: rgba(255,255,255,.18);
    }

/* Hero trust pills */
.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .4s both;
}

.trust-pill {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    padding: .30rem .6rem;
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    transition: all 0.3s ease;
    white-space: nowrap;
}
/*.d-flex {
    gap: 10px;*/ /* 👈 boxes के बीच space */
/*}*/

    .trust-pill .tp-icon {
        font-size: .9rem;
    }
    .trust-pill:hover {
        background: transparent;
        border: 2px solid #00ffcc;
        transform: translateY(-3px);
        color: #ffffff;
    }

    /* Active (default look SAME as normal) */
    .trust-pill.active-link {
        background: rgba(255,255,255,.08); /* same as normal */
        border: 2px solid #00ffcc; /* active दिखे */
        color: #ffffff;
    }

        /* Hover should still work */
        .trust-pill.active-link:hover {
            border-color: #00ffcc;
            transform: translateY(-3px);
        }
/* Hero right — glass card stack */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp .8s ease .25s both;
}

.hc-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(16px);
    border-radius: var(--r-md);
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all .3s;
    text-decoration: none;
    color: #fff;
}
    .hc-card:hover {
        background: rgba(255,255,255,.13);
        transform: translateX(-5px);
    }

.hc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

    .hc-icon.tl {
        background: rgba(0,191,166,.2);
    }

    .hc-icon.bl {
        background: rgba(50,130,184,.2);
    }

    .hc-icon.wh {
        background: rgba(255,255,255,.12);
    }

    .hc-icon.gd {
        background: rgba(255,193,7,.15);
    }

.hc-val {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .hc-val small {
        font-size: 14px;
        font-weight: 400;
        color: rgb(255 255 255 / 90%);
        font-family: 'Plus Jakarta Sans',sans-serif;
    }

.hc-label {
    font-size: 19px;
    color: rgb(255 255 255);
    margin-top: .25rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────
           STATS STRIP
        ───────────────────────────────────────── */
.stats-strip {
    background: var(--white);
    padding: 0 2rem;
    box-shadow: var(--shadow-md);
}

.stats-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

.stat-item {
    padding: 1.6rem 1.2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .25s;
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item:hover {
        background: var(--teal-lt);
    }

    .stat-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 40px;
        height: 2px;
        background: var(--teal);
        transition: transform .3s;
    }

    .stat-item:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

.stat-num {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: .35rem;
    letter-spacing: -.02em;
}

    .stat-num .unit {
        color: var(--teal);
    }

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #2f6283;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
           SHARED SECTION STYLES
        ───────────────────────────────────────── */
.section {
    padding: 2.5rem 2rem;
}

.sec-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: 700;
    /*letter-spacing: .14em;*/
    text-transform: uppercase;
    color: var(--teal-dk);
    margin-bottom: .85rem;
}

    .sec-label::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

.sec-title {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: clamp(1.7rem,3vw,2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: .85rem;
}

.sec-sub {
    font-size: .93rem;
    color: var(--text-mid);
    line-height: 1.75;
    /*max-width: 560px;*/
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
}

/* ─────────────────────────────────────────
           BENEFITS SECTION
        ───────────────────────────────────────── */
.benefits-sec {
    background: var(--bg);
}

.benefits-header {
    /*display: flex;*/
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    cursor: default;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--blue));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

    .benefit-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--teal-lt);
        transition: transform .4s;
    }

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(0,191,166,.25);
    }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-card:hover::after {
            transform: scale(1.4);
        }

.bc-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--r-sm);
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: background .3s;
}

.benefit-card:hover .bc-icon {
    background: var(--teal);
}

.bc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem;
    position: relative;
    z-index: 1;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.bc-body {
    font-size: .8rem;
    color: var(--text-mid);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
}

.bc-amount {
    display: inline-block;
    margin-top: .85rem;
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dk);
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────
           SCHEME ABOUT
        ───────────────────────────────────────── */
.about-sec {
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-card {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--r-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .about-img-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 70% 20%, rgba(0,191,166,.2) 0%,transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(50,130,184,.2) 0%,transparent 60%);
    }

.about-big-num {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255,255,255,.06);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    letter-spacing: -.06em;
    pointer-events: none;
}

.about-feature-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.afl-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    transition: background .25s;
}

    .afl-item:hover {
        background: rgba(255,255,255,.16);
    }

.afl-icon {
    width: 36px;
    height: 36px;
    background: var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.afl-text {
    font-size: .82rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.afl-val {
    margin-left: auto;
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: .9rem;
    font-weight: 800;
    /*color: var(--teal);*/
    color: #40e5cf;
    white-space: nowrap;
}

/* Floating badge */
.about-float-badge {
    position: absolute;
    top: -50px;
    right: -20px;
    background: var(--teal);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.afb-num {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.afb-lbl {
    font-size: .65rem;
    opacity: .8;
    margin-top: .25rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* About right content */
.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.ap-item {
    display: flex;
    gap: 1.1rem;
    padding: 1.25rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    transition: all .25s;
    background: var(--bg);
}

    .ap-item:hover {
        border-color: rgba(0,191,166,.4);
        background: var(--teal-lt);
        transform: translateX(4px);
    }

.ap-num {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(0,191,166,.25);
    line-height: 1;
    flex-shrink: 0;
}

.ap-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.ap-body {
    font-size: .78rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
}

/* ─────────────────────────────────────────
           CATEGORIES SECTION
        ───────────────────────────────────────── */
.cat-sec {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.cat-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    border: 1.5px solid transparent;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .cat-card:hover {
        border-color: var(--teal);
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.cat-card-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--navy);
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.cat-card:nth-child(2) .cat-card-tag {
    background: var(--blue);
}

.cat-card:nth-child(3) .cat-card-tag {
    background: #0096c7;
}

.cat-card:nth-child(4) .cat-card-tag {
    background: var(--teal-dk);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: .85rem;
    display: block;
}

.cat-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

    .cat-list li {
        display: flex;
        gap: .5rem;
        font-size: 1rem;
        color: var(--text-mid);
        line-height: 1.5;
        font-family: 'Noto Sans Devanagari',sans-serif;
        font-weight: 300;
    }

        .cat-list li::before {
            content: '→';
            color: var(--teal);
            flex-shrink: 0;
            font-size: .75rem;
            margin-top: .05rem;
        }

/* ─────────────────────────────────────────
           PROCESS SECTION
        ───────────────────────────────────────── */
.process-sec {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    .process-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0,191,166,.1) 0%,transparent 60%);
        pointer-events: none;
    }

    .process-sec .sec-label {
        color: rgba(0,191,166,.8);
    }

        .process-sec .sec-label::before {
            background: var(--teal);
        }

    .process-sec .sec-title {
        color: #fff;
    }

    .process-sec .sec-sub {
        color: rgba(255,255,255,.5);
    }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
        opacity: .3;
    }

.ps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.ps-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 2px solid rgba(0,191,166,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 0 0 8px var(--navy);
    transition: all .35s;
}

.ps-item:hover .ps-circle {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.12);
    box-shadow: 0 0 0 8px var(--navy), 0 0 24px rgba(0,191,166,.3);
}

.ps-step {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    /* color: var(--teal);*/
    color: #40e5cf;
    margin-bottom: .45rem;
}

.ps-title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.ps-desc {
    font-size: .76rem;
    color: rgba(255,255,255,.4);
    line-height: 1.6;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
}

/* ─────────────────────────────────────────
           NEWS + TABS
        ───────────────────────────────────────── */
.news-tab-sec {
    background: var(--white);
}

.nt-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* News panel */
.news-panel {
    background: var(--bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.news-panel-header {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nph-title {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nph-badge {
    font-size: .62rem;
    background: var(--teal);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 50px;
    font-weight: 700;
}

.nph-all {
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

    .nph-all:hover {
        color: var(--teal);
    }

.news-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    /*gap: 1.2rem;*/
    max-height: 505px;
    overflow-y: auto;
    overflow-x: hidden;
}
}

.news-item {
    background: var(--white);
    border-radius: var(--r-sm);
    padding: 1rem 1.1rem;
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s;
}

    .news-item:hover {
        border-color: rgba(0,191,166,.35);
        box-shadow: var(--shadow-sm);
        transform: translateX(3px);
    }

.ni-date {
    font-size: .65rem;
    font-weight: 700;
    color: var(--teal-dk);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: .1rem;
    min-width: 52px;
}

.ni-right {
    flex: 1;
}

.ni-title {
    font-size: .82rem;
    color: var(--text);
    line-height: 1.5;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 400;
    margin-bottom: .4rem;
}

.ni-tag {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    padding: .15rem .55rem;
    border-radius: 50px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

    .ni-tag.notif {
        background: rgba(0,191,166,.12);
        color: var(--teal-dk);
    }

    .ni-tag.sop {
        background: rgba(50,130,184,.12);
        color: var(--blue);
    }

    .ni-tag.update {
        background: rgba(15,76,117,.1);
        color: var(--navy);
    }

/* Tabs panel */
.tabs-panel {
}

.tabs-nav {
    display: flex;
    gap: .5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.75rem;
}

.tab-btn {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: .6rem 1.2rem;
    border-radius: 8px 8px 0 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: all .25s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

    .tab-btn:hover {
        color: var(--navy);
        background: var(--teal-lt);
    }

    .tab-btn.active {
        color: var(--teal-dk);
        background: var(--teal-lt);
        border-bottom-color: var(--teal);
        font-weight: 700;
    }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
        animation: fadeIn .3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: border-color .25s;
}

    .faq-item:hover {
        border-color: rgba(0,191,166,.3);
    }

.faq-q {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Noto Sans Devanagari',sans-serif;
}

    .faq-q .arrow {
        color: var(--teal);
        font-size: .75rem;
        flex-shrink: 0;
        transition: transform .3s;
    }

.faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: .85rem 1.25rem 1.1rem;
    font-size: .8rem;
    color: var(--text-mid);
    line-height: 1.65;
    border-top: 1px solid var(--border);
    background: var(--bg);
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
}

.faq-item.open .faq-a {
    display: block;
}

.eligibility-list,
.claim-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.eli-item, .claim-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: var(--r-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all .25s;
}

    .eli-item:hover, .claim-step:hover {
        background: var(--teal-lt);
        border-color: rgba(0,191,166,.3);
        transform: translateX(4px);
    }

.eli-icon, .claim-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans',sans-serif;
}

.eli-text, .claim-text {
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.55;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 400;
}

    .eli-text strong, .claim-text strong {
        display: block;
        color: var(--navy);
        font-weight: 600;
        margin-bottom: .25rem;
    }

/* ─────────────────────────────────────────
           FAMILY SECTION
        ───────────────────────────────────────── */
.family-sec {
    background: var(--bg2);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.fam-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1.4rem;
    text-align: center;
    border: 1.5px solid transparent;
    transition: all .3s;
}

    .fam-card:hover {
        border-color: var(--teal);
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
    }

.fam-emoji {
    font-size: 2rem;
    margin-bottom: .7rem;
    display: block;
}

.fam-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .3rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.fam-note {
    font-size: .7rem;
    color: var(--text-muted);
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
    line-height: 1.4;
}

/* ─────────────────────────────────────────
           CTA BANNER
        ───────────────────────────────────────── */
.cta-sec {
    background: linear-gradient(135deg, #1d5d80 0%, #107eba 50%, #1a77a6 100%); /*linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 50%, #1abc9c 100%);*/
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-sec h2 {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: clamp(1.8rem,4vw,2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: .85rem;
    line-height: 1.15;
}

.cta-sec p {
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    margin-bottom: 2.25rem;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-w {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: var(--teal-dk);
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-weight: 800;
    font-size: .9rem;
    padding: .95rem 2.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.2);
    transition: all .3s;
}

    .btn-cta-w:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(0,0,0,.25);
    }

.btn-cta-o {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .9rem 2rem;
    border-radius: 12px;
    transition: all .3s;
}

    .btn-cta-o:hover {
        background: rgba(255,255,255,.12);
    }

/* ─────────────────────────────────────────
           FOOTER
        ───────────────────────────────────────── */
footer {
    background: var(--navy-dk);
    padding: 4.5rem 2rem 0;
}

.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
   /* gap: 3rem;
    padding-bottom: 3rem;*/
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.fg-brand .fb-logo {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.1rem;
}

.fb-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fb-logo-text {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

.fg-brand p {
    font-size: 16px;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
    font-family: 'Noto Sans Devanagari',sans-serif;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.fg-helpline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,191,166,.15);
    border: 1px solid rgba(0,191,166,.3);
    color: var(--teal);
    font-size: .85rem;
    font-weight: 700;
    padding: .55rem 1.1rem;
    border-radius: 50px;
}

.fg-col h5 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.25rem;
}

.fg-col ul li {
    margin-bottom: .6rem;
}

    .fg-col ul li a {
        font-size: .8rem;
        color: rgba(255,255,255,.35);
        transition: color .2s;
        font-family: 'Noto Sans Devanagari',sans-serif;
    }

        .fg-col ul li a:hover {
            color: rgba(255,255,255,.8);
        }

.fg-contact h5 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.25rem;
}

.contact-item {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .85rem;
}

.ci-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0,191,166,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}

.ci-text {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    line-height: 1.5;
}

    .ci-text strong {
        display: block;
        color: rgba(255,255,255,.6);
        font-weight: 600;
        margin-bottom: .1rem;
    }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .72rem;
    color: rgba(255,255,255,.2);
}

    .footer-bottom a {
        color: rgba(255,255,255,.3);
        transition: color .2s;
    }

        .footer-bottom a:hover {
            color: rgba(255,255,255,.7);
        }

/* ─────────────────────────────────────────
           SCROLL REVEAL
        ───────────────────────────────────────── */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

    .rv.on {
        opacity: 1;
        transform: none;
    }

/* ─────────────────────────────────────────
           MOBILE MENU TOGGLE
        ───────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .3s;
    }   

/* ─────────────────────────────────────────
           RESPONSIVE
        ───────────────────────────────────────── */
@media (max-width:1100px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .family-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

        .process-steps::before {
            display: none;
        }

    .nt-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(3,1fr);
    }

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-top: 1px solid var(--border);
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width:600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .family-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(5) {
        grid-column: span 2;
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }
    .benefit-card { 
        padding: 1rem; 
    }
}

/* ─────────────────────────────────────────
         Layout Copy css
        ───────────────────────────────────────── */

.nav-links a {
    font-size: 15px;
    font-weight: 600; /* slightly bold */
    color: #154c6a; /* your image color */
    text-decoration: none;
}

.nav-links a:hover {
    color: #0f3a52; /* darker on hover */
}

.active-link {
    border-bottom: 3px solid #154c6a;
}

.about-one__text {
    font-size: 17px;
    font-weight: 400;
    color: #154c6a;
    padding-top: 12px;
    text-align: justify;
    line-height: 30px;
}

.about-one__text1 {
    font-size: 17px;
    font-weight: 400;
    color: #2bc4c0;
    padding-top: 12px;
    text-align: justify;
    line-height: 30px;
}

.about-one2 {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    padding-top: 12px;
    text-align: justify;
    line-height: 30px;
}

.about-one__text2 {
    font-size: 15px;
    font-weight: 200;
    color: #40e5cf;
    padding-top: 10px;
    text-align: center;
    line-height: 30px;
}

.cat-grid {
    font-family: 'Mukta', sans-serif; /* ✅ New Font */
    color: #000; /* ✅ Black text */
}

.cat-title {
    font-weight: 600;
    font-size: 20px;
    color: #154c6a;
}

.cat-list li {
    color: #000;
    font-weight: 400;
}

/*     .cat-card-tag {
        color: #000;
        font-weight: 500;
    } */
#faq .faq-a {
    font-family: 'Noto Sans Devanagari', sans-serif; /* Best match */
    font-size: 14px;
    line-height: 22px;
    color: #154c6a;
    font-weight: 500; /* IMPORTANT: matches image thickness */
    margin-top: 4px;
}
/* Family Section Font Styling */
.family-grid .fam-name {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 17px;
    font-weight: 600; /* Bold title */
    color: #154c6a; /* Black text */
    margin-top: 6px;
}

.family-grid .fam-note {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 15px;
    font-weight: 400; /* Normal */
    color: #154c6a; /* Navy blue */
    margin-top: 2px;
    line-height: 20px;
}

/* Center everything */
.cta-sec {
    text-align: center;
    padding: 50px 20px;
    background: #154c6a; /* optional background for visibility */
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    /* Heading */
    .cta-inner h2 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* Paragraph */
    .cta-inner p {
        color: #fff;
        max-width: 600px;
        margin-bottom: 20px;
        line-height: 24px;
    }

/* Green highlight text */
.highlight-green {
    color: #28a745;
    font-weight: 600;
}

/* Buttons alignment */
.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button styles */
.btn-cta-w,
.btn-cta-o {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #fff; /* WHITE text */
    border: 2px solid #28a745;
    background: transparent;
}

    /* Hover effect */
    .btn-cta-w:hover,
    .btn-cta-o:hover {
        background: #fff;
        color: #28a745; /* GREEN text */
    }

.main-footer {
    background: #0f3a52;
    padding: 50px 0 20px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        text-decoration: none;
        font-size: 14px;
    }

.contact-item {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
}

.footer-grid > div {
    padding: 10px;
}

/* ✅ IMPORTANT: FORCE WHITE TEXT */
footer,
footer p,
footer h5,
footer a,
footer li,
footer span,
footer div,
footer strong {
    color: #ffffff !important;
}

    /* Hover effect */
    footer a:hover {
        color: #28a745 !important;
    }

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* IMPORTANT */
    flex-wrap: wrap;
    gap: 30px;
}

    .footer-grid > div {
        flex: 1;
        min-width: 220px;
    }

/* Fix logo section alignment */
.fg-brand {
    margin-top: 0;
}

/* Align headings */
.main-footer__contact h5,
.fg-contact h5 {
    margin-bottom: 15px;
}

/* Fix contact items alignment */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nav-links {
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap; /* ❗ IMPORTANT: disable wrap */
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
}

/* remove old active border */
.active-link {
    border-bottom: none !important;
}

/* indicator */
.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #154c6a;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
    width: 0;
    z-index: 10; /* ✅ ensure visible */
}


