/* =====================================================
   ROOT
===================================================== */

:root {

    --navy: #061f45;
    --navy2: #0b2f61;

    --gold: #c8942e;
    --gold2: #e1b85c;

    --ink: #101c2f;
    --muted: #647087;

    --cream: #f8f7f3;

    --line: #e7e8eb;

    --white: #ffffff;

    --shadow:
        0 24px 70px rgba(8,31,69,.11);

}



/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--ink);

    background: #fff;

    line-height: 1.6;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font-family: inherit;

}



/* =====================================================
   CONTAINER
===================================================== */

.container {

    width:
        min(
            1160px,
            calc(100% - 40px)
        );

    margin: auto;

}



/* =====================================================
   TOP BAR
===================================================== */

.topbar {

    height: 34px;

    background:
        var(--navy);

    color:
        #dfe7f2;

    font-size: 12px;

    letter-spacing: .06em;

}


.topbar-inner {

    height: 34px;

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.topbar-right {

    opacity: .9;

}


.dot {

    display: inline-block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--gold2);

    margin-right: 7px;

}



/* =====================================================
   HEADER
===================================================== */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 86px;

    background:
        rgba(255,255,255,.97);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid rgba(10,30,60,.07);

    transition:
        box-shadow .25s ease;

}



/* =====================================================
   NAV
===================================================== */

.nav {

    height: 86px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

}



/* =====================================================
   IMPORTANT LOGO FIX
===================================================== */

.brand {

    width: 205px;

    height: 86px;

    display: flex;

    align-items: center;

    justify-content:
        flex-start;

    flex-shrink: 0;

    position: relative;

    z-index: 5;

}



/*
   Logo wrapper prevents the oversized
   square PNG from escaping the header.
*/

.brand-logo {

    width: 300px;

    height: 208px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}



/*
   Because your original logo is a square PNG,
   we deliberately keep it inside the logo box.
*/

.brand-logo img {

    width: 200px;

    height: 155px;

    max-width: none;

    display: block;

    object-fit: contain;

}



/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 13px;

    font-weight: 600;

    color:
        #3c4758;

}


.nav-links a {

    transition:
        color .25s ease;

}


.nav-links a:hover {

    color:
        var(--navy);

}



/* =====================================================
   NAV CTA
===================================================== */

.nav-cta {

    background:
        var(--navy);

    color:
        #fff !important;

    padding:
        12px 18px;

    border-radius: 4px;

}


.nav-cta span {

    color:
        var(--gold2);

    margin-left: 7px;

}



/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 25px;

    height: 2px;

    background:
        var(--navy);

    margin: 5px 0;

}



/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f9fafb 0%,
            #fff 60%,
            #f8f7f3 100%
        );

    min-height: 670px;

    display: flex;

    align-items: center;

    padding:
        75px 0 100px;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.02fr .98fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;

}



/* =====================================================
   EYEBROW
===================================================== */

.eyebrow {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .2em;

    color:
        #8b6a2a;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

}


.eyebrow span {

    width: 34px;

    height: 1px;

    background:
        var(--gold);

    display: inline-block;

}


.eyebrow.light {

    color:
        #b8c6d9;

}


.eyebrow.light span {

    background:
        var(--gold2);

}



/* =====================================================
   HEADINGS
===================================================== */

h1,
h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    letter-spacing:
        -.035em;

    line-height:
        1.08;

}


h1 {

    font-size:
        clamp(
            50px,
            6vw,
            76px
        );

    color:
        var(--navy);

    max-width:
        720px;

}


h1 em,
h2 em {

    font-style: normal;

    color:
        var(--gold);

}



/* =====================================================
   HERO TEXT
===================================================== */

.hero-text {

    max-width:
        590px;

    font-size:
        17px;

    color:
        var(--muted);

    margin:
        24px 0 31px;

}



/* =====================================================
   BUTTONS
===================================================== */

.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding:
        15px 22px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .02em;

    border:
        1px solid transparent;

    transition:
        .25s ease;

}


.btn-primary {

    background:
        var(--navy);

    color: #fff;

    box-shadow:
        0 10px 30px rgba(6,31,69,.17);

}


.btn-primary:hover {

    transform:
        translateY(-2px);

    background:
        #0b2c5b;

}


.btn-primary span {

    color:
        var(--gold2);

    font-size: 18px;

}


.btn-ghost {

    border-color:
        #d9dde4;

    color:
        var(--navy);

    background:
        #fff;

}


.btn-ghost:hover {

    border-color:
        var(--navy);

}



/* =====================================================
   TRUST
===================================================== */

.trust-row {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 48px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    font-size: 12px;

    color:
        var(--navy);

}


.trust-item span {

    font-size: 10px;

    color:
        #8791a0;

    margin-top: 2px;

}


.trust-line {

    width: 1px;

    height: 30px;

    background:
        #dfe2e6;

}



/* =====================================================
   HERO CARD
===================================================== */

.hero-card-wrap {

    position: relative;

    max-width:
        450px;

    justify-self:
        end;

    width: 100%;

}


.hero-card-back {

    position: absolute;

    inset:
        22px -18px -20px 18px;

    background:
        #e7d6ac;

    border-radius: 3px;

    transform:
        rotate(3deg);

    opacity: .55;

}


.hero-card {

    position: relative;

    background:
        var(--navy);

    color:
        #fff;

    padding:
        38px;

    min-height:
        445px;

    box-shadow:
        var(--shadow);

    border-radius: 4px;

    overflow: hidden;

}


.hero-card:after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border:
        1px solid rgba(225,184,92,.2);

    border-radius:
        50%;

    right:
        -120px;

    bottom:
        -100px;

}



/* =====================================================
   CARD
===================================================== */

.card-top {

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.mini-label {

    font-size: 10px;

    letter-spacing: .18em;

    color:
        #9caec8;

}


.card-icon {

    color:
        var(--gold2);

    font-size: 23px;

}


.card-title {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        35px;

    line-height:
        1.13;

    margin:
        42px 0 14px;

}


.card-title span {

    color:
        var(--gold2);

}


.hero-card p {

    color:
        #b8c6d9;

    font-size:
        13px;

    max-width:
        340px;

}



/* =====================================================
   LOAN BARS
===================================================== */

.loan-bars {

    margin:
        30px 0 25px;

    display:
        grid;

    gap:
        13px;

}


.loan-bars div {

    display:
        grid;

    grid-template-columns:
        82px 1fr;

    align-items:
        center;

    gap:
        12px;

    font-size:
        10px;

    color:
        #cbd4e1;

}


.loan-bars b {

    height: 5px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold2)
        );

    display: block;

}


.loan-bars div:nth-child(1) b {
    width: 76%;
}


.loan-bars div:nth-child(2) b {
    width: 90%;
}


.loan-bars div:nth-child(3) b {
    width: 68%;
}


.loan-bars div:nth-child(4) b {
    width: 55%;
}



/* =====================================================
   CARD LINK
===================================================== */

.card-link {

    font-size:
        12px;

    font-weight:
        700;

    color:
        #fff;

}


.card-link span {

    color:
        var(--gold2);

    margin-left:
        10px;

    font-size:
        17px;

}



/* =====================================================
   HERO GLOW
===================================================== */

.hero-glow {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

}


.glow-one {

    width:
        450px;

    height:
        450px;

    right:
        -180px;

    top:
        -120px;

    background:
        radial-gradient(
            circle,
            rgba(200,148,46,.12),
            transparent 68%
        );

}


.glow-two {

    width:
        500px;

    height:
        500px;

    left:
        -350px;

    bottom:
        -260px;

    background:
        radial-gradient(
            circle,
            rgba(6,31,69,.06),
            transparent 70%
        );

}



/* =====================================================
   TICKER
===================================================== */

.hero-bottom {

    position:
        absolute;

    bottom:
        0;

    left:
        0;

    right:
        0;

    border-top:
        1px solid #e8e8e8;

    background:
        rgba(255,255,255,.7);

}


.ticker {

    height:
        57px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    font-size:
        10px;

    letter-spacing:
        .18em;

    font-weight:
        700;

    color:
        #778193;

}


.ticker i {

    font-style:
        normal;

    font-size:
        7px;

    color:
        var(--gold);

}



/* =====================================================
   GENERAL SECTION
===================================================== */

.section {

    padding:
        105px 0;

}


.section-head {

    display:
        grid;

    grid-template-columns:
        1fr .75fr;

    gap:
        60px;

    align-items:
        end;

    margin-bottom:
        52px;

}


.section-head h2,
.about-copy h2,
.faq h2 {

    font-size:
        50px;

    color:
        var(--navy);

}


.section-head > p {

    color:
        var(--muted);

    font-size:
        15px;

    max-width:
        430px;

}



/* =====================================================
   SERVICE GRID
===================================================== */

.service-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        16px;

}


.service-card {

    border:
        1px solid var(--line);

    padding:
        29px 25px 27px;

    min-height:
        310px;

    position:
        relative;

    transition:
        .3s;

    background:
        #fff;

}


.service-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);

    border-color:
        #d7dce5;

}


.service-card.featured {

    background:
        var(--navy);

    color:
        #fff;

    border-color:
        var(--navy);

}


.service-no {

    position:
        absolute;

    right:
        21px;

    top:
        21px;

    font-size:
        10px;

    color:
        #a0a9b6;

}


.featured .service-no {

    color:
        #6f86a8;

}


.service-icon {

    width:
        48px;

    height:
        48px;

    border:
        1px solid #d9dee6;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    font-family:
        Georgia,
        serif;

    color:
        var(--gold);

    font-size:
        22px;

    margin-bottom:
        29px;

}


.featured .service-icon {

    border-color:
        #31507b;

    color:
        var(--gold2);

}


.service-card h3 {

    font-size:
        20px;

    margin-bottom:
        10px;

    color:
        var(--navy);

}


.featured h3 {

    color:
        #fff;

}


.service-card p {

    font-size:
        12px;

    color:
        var(--muted);

    line-height:
        1.7;

}


.featured p {

    color:
        #b9c6d8;

}


.service-card a {

    position:
        absolute;

    bottom:
        25px;

    font-size:
        11px;

    font-weight:
        700;

    color:
        var(--navy);

}


.featured a {

    color:
        #fff;

}


.service-card a span {

    color:
        var(--gold);

    margin-left:
        8px;

    font-size:
        15px;

}



/* =====================================================
   MORE SOLUTIONS
===================================================== */

.more-solutions {

    margin-top:
        20px;

    background:
        var(--cream);

    padding:
        17px 21px;

    display:
        flex;

    align-items:
        center;

    gap:
        30px;

    flex-wrap:
        wrap;

    font-size:
        11px;

    color:
        #737d8d;

}


.more-solutions span {

    color:
        #a08a5b;

}


.more-solutions b {

    color:
        var(--navy);

}



/* =====================================================
   DARK PROCESS
===================================================== */

.dark-section {

    background:
        var(--navy);

    color:
        #fff;

    padding:
        105px 0;

    position:
        relative;

    overflow:
        hidden;

}


.dark-section:after {

    content:
        "";

    position:
        absolute;

    width:
        620px;

    height:
        620px;

    border:
        1px solid rgba(255,255,255,.05);

    border-radius:
        50%;

    right:
        -300px;

    top:
        -250px;

}


.process-head {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        60px;

    align-items:
        end;

    margin-bottom:
        70px;

}


.process-head h2 {

    font-size:
        52px;

}


.process-head p {

    color:
        #afbdd0;

    max-width:
        430px;

    font-size:
        14px;

}


.process-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        30px;

}


.process-step {

    position:
        relative;

}


.step-number {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        40px;

    color:
        var(--gold2);

}


.step-line {

    height:
        1px;

    background:
        #294568;

    margin:
        14px 0 22px;

}


.process-step h3 {

    font-size:
        16px;

    margin-bottom:
        10px;

}


.process-step p {

    font-size:
        12px;

    color:
        #aebbd0;

    line-height:
        1.7;

    max-width:
        220px;

}



/* =====================================================
   ABOUT
===================================================== */

.about {

    background:
        var(--cream);

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:
        100px;

    align-items:
        center;

}


.about-visual {

    position:
        relative;

    min-height:
        500px;

    display:
        grid;

    place-items:
        center;

}


.visual-frame {

    width:
        370px;

    height:
        430px;

    background:
        var(--navy);

    position:
        relative;

    overflow:
        hidden;

    display:
        grid;

    place-items:
        center;

    box-shadow:
        var(--shadow);

}


.visual-ring {

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    border:
        1px solid rgba(225,184,92,.45);

    border-radius:
        50%;

}


.visual-ring:before {

    content:
        "";

    position:
        absolute;

    inset:
        35px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        50%;

}


.visual-mark {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        100px;

    color:
        #fff;

}


.visual-caption {

    position:
        absolute;

    bottom:
        31px;

    left:
        34px;

    color:
        var(--gold2);

    font-size:
        10px;

    letter-spacing:
        .2em;

    font-weight:
        700;

}


.visual-caption small {

    color:
        #aab8ca;

    font-size:
        7px;

}


.stat-card {

    position:
        absolute;

    right:
        0;

    bottom:
        27px;

    background:
        #fff;

    padding:
        20px 27px;

    box-shadow:
        0 18px 40px rgba(6,31,69,.12);

    display:
        flex;

    flex-direction:
        column;

}


.stat-card strong {

    font-family:
        "Playfair Display",
        serif;

    color:
        var(--navy);

    font-size:
        25px;

}


.stat-card span {

    font-size:
        10px;

    color:
        #7c8696;

}


.about-copy > p {

    color:
        var(--muted);

    font-size:
        14px;

    max-width:
        620px;

    margin-bottom:
        16px;

}


.about-points {

    margin-top:
        34px;

    border-top:
        1px solid #dddfe2;

}


.about-points > div {

    display:
        grid;

    grid-template-columns:
        42px 1fr;

    gap:
        15px;

    padding:
        18px 0;

    border-bottom:
        1px solid #dddfe2;

    font-size:
        12px;

}


.about-points b {

    color:
        var(--gold);

}


.about-points strong {

    display:
        block;

    color:
        var(--navy);

    margin-bottom:
        2px;

}



/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding:
        35px 0;

    background:
        #fff;

}


.cta-box {

    background:
        linear-gradient(
            105deg,
            var(--navy),
            #0d376c
        );

    color:
        #fff;

    padding:
        55px 65px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    position:
        relative;

    overflow:
        hidden;

}


.cta-box:after {

    content:
        "";

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    border:
        1px solid rgba(225,184,92,.18);

    border-radius:
        50%;

    right:
        -120px;

    top:
        -140px;

}


.cta-box h2 {

    font-size:
        44px;

}


.btn-gold {

    background:
        var(--gold2);

    color:
        var(--navy);

    min-width:
        190px;

    position:
        relative;

    z-index:
        2;

}


.btn-gold:hover {

    transform:
        translateY(-2px);

    background:
        #e9c873;

}



/* =====================================================
   FAQ
===================================================== */

.faq {

    background:
        #fff;

}


.faq-grid {

    display:
        grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap:
        100px;

}


.faq-intro {

    color:
        var(--muted);

    font-size:
        13px;

    margin-top:
        22px;

    max-width:
        350px;

}


.accordion {

    border-top:
        1px solid #ddd;

}


.accordion details {

    border-bottom:
        1px solid #ddd;

}


.accordion summary {

    list-style:
        none;

    cursor:
        pointer;

    padding:
        23px 5px;

    font-size:
        14px;

    font-weight:
        700;

    color:
        var(--navy);

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.accordion summary::-webkit-details-marker {

    display:
        none;

}


.accordion summary span {

    font-size:
        21px;

    color:
        var(--gold);

    transition:
        .2s;

}


.accordion details[open]
summary span {

    transform:
        rotate(45deg);

}


.accordion p {

    color:
        var(--muted);

    font-size:
        12px;

    padding:
        0 40px 23px 5px;

}



/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background:
        var(--navy);

    padding:
        100px 0;

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        .82fr 1.18fr;

    gap:
        85px;

    align-items:
        start;

}


.contact-copy h2 {

    font-size:
        57px;

    color:
        #fff;

}


.contact-copy > p {

    color:
        #b5c2d4;

    font-size:
        14px;

    max-width:
        400px;

    margin:
        22px 0 28px;

}


.contact-mini {

    display:
        grid;

    gap:
        12px;

    color:
        #dce4ef;

    font-size:
        12px;

}


.contact-mini span {

    color:
        var(--gold2);

    margin-right:
        9px;

}



/* =====================================================
   FORM
===================================================== */

.lead-form {

    background:
        #fff;

    padding:
        38px 40px;

    color:
        var(--ink);

    box-shadow:
        var(--shadow);

}


.form-title {

    font-family:
        "Playfair Display",
        serif;

    color:
        var(--navy);

    font-size:
        27px;

    margin-bottom:
        24px;

}


.form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        16px;

}


label {

    display:
        block;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        .08em;

    color:
        #5c6675;

    margin-bottom:
        16px;

}


input,
select,
textarea {

    display:
        block;

    width:
        100%;

    border:
        1px solid #dfe3e8;

    background:
        #fbfbfc;

    padding:
        13px 14px;

    margin-top:
        7px;

    font-size:
        13px;

    color:
        var(--ink);

    outline:
        none;

    border-radius:
        2px;

    transition:
        .2s;

}


input:focus,
select:focus,
textarea:focus {

    border-color:
        #7890b0;

    background:
        #fff;

}


textarea {

    resize:
        vertical;

}


.form-btn {

    width:
        100%;

}


.form-note {

    font-size:
        9px !important;

    color:
        #8a94a2 !important;

    margin:
        12px 0 0 !important;

    line-height:
        1.6;

}


.form-success {

    display:
        none;

    margin-top:
        14px;

    padding:
        11px;

    background:
        #edf7ef;

    color:
        #35643d;

    font-size:
        11px;

}


.form-success.show {

    display:
        block;

}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    background:
        #041a3a;

    color:
        #c3cfde;

}


.footer-top {

    padding:
        70px 0 55px;

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr 1.25fr;

    gap:
        40px;

}


.footer-brand img {

    width:
        185px;

    /*
      Keep footer logo visible
      without affecting layout.
    */

    height:
        auto;

}


.footer-brand p {

    font-size:
        11px;

    color:
        #8fa1ba;

    margin-top:
        12px;

}


.footer-col {

    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;

    font-size:
        11px;

}


.footer-col h4 {

    font-size:
        10px;

    letter-spacing:
        .18em;

    color:
        var(--gold2);

    margin-bottom:
        8px;

}


.footer-col a:hover {

    color:
        #fff;

}


.footer-col span {

    color:
        #91a0b4;

}



/* =====================================================
   DISCLAIMER
===================================================== */

.disclaimer {

    border-top:
        1px solid #173458;

    border-bottom:
        1px solid #173458;

    padding:
        20px 0;

    color:
        #8192a9;

    font-size:
        9px;

    line-height:
        1.7;

}


.disclaimer strong {

    color:
        #b8c5d6;

}



/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    min-height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    font-size:
        9px;

    color:
        #71859f;

}



/* =====================================================
   FLOATING APPLY
===================================================== */

.floating-apply {

    position:
        fixed;

    right:
        24px;

    bottom:
        22px;

    z-index:
        900;

    background:
        var(--gold2);

    color:
        var(--navy);

    padding:
        13px 17px;

    font-size:
        11px;

    font-weight:
        800;

    box-shadow:
        0 12px 35px rgba(0,0,0,.2);

    border-radius:
        3px;

}


.floating-apply span {

    margin-left:
        7px;

}



/* =====================================================
   TABLET
===================================================== */

@media(max-width:950px) {


    .nav-links {

        gap:
            16px;

    }


    .hero-grid {

        gap:
            40px;

    }


    .service-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .about-grid {

        gap:
            50px;

    }


    .process-grid {

        grid-template-columns:
            1fr 1fr;

        row-gap:
            45px;

    }


    .faq-grid {

        gap:
            50px;

    }


    .footer-top {

        grid-template-columns:
            1.5fr 1fr 1fr;

    }

}



/* =====================================================
   MOBILE
===================================================== */

@media(max-width:760px) {


    .container {

        width:
            min(
                100% - 28px,
                600px
            );

    }


    .topbar {

        display:
            none;

    }


    /* HEADER */

    .header {

        height:
            74px;

    }


    .nav {

        height:
            74px;

    }


    /*
       MOBILE LOGO FIX
    */

    .brand {

        width:
            300px;

        height:
            150px;

    }


    .brand-logo {

        width:
            210px;

        height:
            68px;

    }


    .brand-logo img {

        width:
            205px;

        height:
            135px;

    }



    /* MOBILE MENU */

    .menu-toggle {

        display:
            flex;

        flex-direction:
            column;

        gap:
            0;

    }


    .nav-links {

        display:
            none;

        position:
            absolute;

        top:
            74px;

        left:
            0;

        right:
            0;

        background:
            #fff;

        padding:
            18px 20px 25px;

        border-bottom:
            1px solid var(--line);

        box-shadow:
            0 15px 30px rgba(0,0,0,.07);

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

    }


    .nav-links.open {

        display:
            flex;

    }


    .nav-links a {

        padding:
            12px 0;

        border-bottom:
            1px solid #f0f1f3;

    }


    .nav-cta {

        text-align:
            center;

        margin-top:
            12px;

    }



    /* HERO */

    .hero {

        padding:
            62px 0 85px;

        min-height:
            auto;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

    }


    .hero-card-wrap {

        justify-self:
            center;

        margin-top:
            25px;

    }


    .hero-card {

        min-height:
            390px;

        padding:
            30px;

    }


    .hero-card-back {

        right:
            -8px;

    }


    .hero-bottom {

        display:
            none;

    }


    .hero-text {

        font-size:
            15px;

    }


    .trust-row {

        margin-top:
            34px;

        gap:
            12px;

    }


    .trust-line {

        height:
            24px;

    }


    h1 {

        font-size:
            48px;

    }



    /* SECTION */

    .section {

        padding:
            75px 0;

    }


    .section-head,
    .process-head {

        grid-template-columns:
            1fr;

        gap:
            20px;

        margin-bottom:
            35px;

    }


    .section-head h2,
    .about-copy h2,
    .faq h2 {

        font-size:
            39px;

    }


    /* SERVICES */

    .service-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .service-card {

        min-height:
            290px;

        padding:
            25px 20px;

    }


    /* PROCESS */

    .dark-section {

        padding:
            75px 0;

    }


    .process-head h2 {

        font-size:
            42px;

    }


    .process-grid {

        grid-template-columns:
            1fr 1fr;

    }


    /* ABOUT */

    .about-grid,
    .faq-grid,
    .contact-grid {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .about-visual {

        min-height:
            440px;

    }


    .visual-frame {

        width:
            300px;

        height:
            370px;

    }


    .stat-card {

        right:
            4px;

    }


    /* CTA */

    .cta-box {

        padding:
            42px 28px;

        display:
            block;

    }


    .cta-box h2 {

        font-size:
            37px;

        margin-bottom:
            28px;

    }


    /* CONTACT */

    .lead-form {

        padding:
            28px 22px;

    }


    .contact-copy h2 {

        font-size:
            48px;

    }


    /* FOOTER */

    .footer-top {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-bottom {

        height:
            auto;

        padding:
            20px 0;

        gap:
            12px;

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .floating-apply {

        right:
            14px;

        bottom:
            14px;

    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {


    h1 {

        font-size:
            42px;

    }


    .hero-actions .btn {

        width:
            100%;

    }


    .trust-row {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

    }


    .trust-line {

        display:
            none;

    }


    .service-grid,
    .process-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            270px;

    }


    .about-visual {

        min-height:
            390px;

    }


    .visual-frame {

        width:
            270px;

        height:
            340px;

    }


    .visual-mark {

        font-size:
            80px;

    }


    .stat-card {

        right:
            0;

    }


    .form-row {

        grid-template-columns:
            1fr;

    }


    .contact-section {

        padding:
            75px 0;

    }


    .footer-top {

        grid-template-columns:
            1fr;

    }


    .footer-brand {

        grid-column:
            auto;

    }

}














/* =========================================================
   PREMIUM INDIA DIGITAL NETWORK
========================================================= */

.india-network-frame {

    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(197, 153, 70, .12),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #071426 0%,
            #0b1b31 48%,
            #06101f 100%
        );

    border: 1px solid rgba(197, 153, 70, .25);

    box-shadow:
        0 30px 70px rgba(0,0,0,.20),
        inset 0 0 60px rgba(197,153,70,.04);

}


/* =========================================================
   GRID
========================================================= */

.india-grid {

    position: absolute;

    inset: 0;

    opacity: .20;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    animation: gridMove 18s linear infinite;

}


@keyframes gridMove {

    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 35px 35px, 35px 35px;
    }

}


/* =========================================================
   GLOW
========================================================= */

.india-glow {

    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 43%;

    transform: translate(-50%, -50%);

    background:

        radial-gradient(
            circle,
            rgba(197,153,70,.18),
            rgba(197,153,70,.06) 35%,
            transparent 70%
        );

    filter: blur(10px);

    animation: indiaGlow 4s ease-in-out infinite;

}


@keyframes indiaGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(.92);
        opacity: .65;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }

}


/* =========================================================
   TOP LABEL
========================================================= */

.india-top-label {

    position: absolute;

    top: 28px;
    left: 30px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,.65);

}


.label-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c99a4b;

    box-shadow:
        0 0 0 5px rgba(201,154,75,.10),
        0 0 18px rgba(201,154,75,.8);

    animation: labelPulse 2s infinite;

}


@keyframes labelPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(201,154,75,.10),
            0 0 12px rgba(201,154,75,.6);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(201,154,75,.04),
            0 0 24px rgba(201,154,75,1);
    }

}


/* =========================================================
   MAP AREA
========================================================= */

.india-map-area {

    position: absolute;

    left: 50%;
    top: 53%;

    width: 440px;
    height: 510px;

    transform: translate(-50%, -50%);

}


/* =========================================================
   REAL INDIA MAP
========================================================= */

.real-india-map {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 365px;
    height: 425px;

    transform: translate(-50%, -50%);

    object-fit: contain;

    opacity: .96;

    filter:

        brightness(0)
        saturate(100%)

        invert(68%)
        sepia(39%)
        saturate(665%)
        hue-rotate(357deg)
        brightness(91%)
        contrast(89%)

        drop-shadow(
            0 0 8px rgba(201,154,75,.50)
        )

        drop-shadow(
            0 0 25px rgba(201,154,75,.22)
        );

    animation: mapBreath 4s ease-in-out infinite;

}


@keyframes mapBreath {

    0%,
    100% {
        opacity: .82;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================================
   NETWORK SVG
========================================================= */

.india-network {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 3;

    overflow: visible;

}


/* STATIC CONNECTIONS */

.network-lines line {

    stroke: rgba(201,154,75,.48);

    stroke-width: 1.5;

    stroke-dasharray: 4 6;

    opacity: .7;

}


/* MOVING CONNECTIONS */

.network-flow line {

    stroke: #e3bd70;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-dasharray: 8 24;

    filter:
        drop-shadow(
            0 0 5px rgba(227,189,112,.9)
        );

    animation: dataFlow 2.5s linear infinite;

}


.network-flow line:nth-child(2) {
    animation-delay: -.5s;
}

.network-flow line:nth-child(3) {
    animation-delay: -1s;
}

.network-flow line:nth-child(4) {
    animation-delay: -1.5s;
}

.network-flow line:nth-child(5) {
    animation-delay: -2s;
}


@keyframes dataFlow {

    to {
        stroke-dashoffset: -32;
    }

}


/* =========================================================
   NODES
========================================================= */

.network-nodes > circle:not(.node-pulse) {

    fill: #f2cc7b;

    stroke: #fff;

    stroke-width: 1.5;

    filter:
        drop-shadow(
            0 0 7px rgba(242,204,123,.95)
        );

}


.node-pulse {

    fill: none;

    stroke: rgba(242,204,123,.7);

    stroke-width: 1.5;

    animation: nodePulse 2.2s ease-out infinite;

}


.network-nodes .node-pulse:nth-child(2) {
    animation-delay: -.2s;
}

.network-nodes .node-pulse:nth-child(4) {
    animation-delay: -.5s;
}

.network-nodes .node-pulse:nth-child(6) {
    animation-delay: -.8s;
}

.network-nodes .node-pulse:nth-child(8) {
    animation-delay: -1.1s;
}

.network-nodes .node-pulse:nth-child(10) {
    animation-delay: -1.4s;
}

.network-nodes .node-pulse:nth-child(12) {
    animation-delay: -1.7s;
}


@keyframes nodePulse {

    0% {
        opacity: .9;
        transform: scale(.5);
        transform-origin: center;
    }

    70% {
        opacity: 0;
        transform: scale(1.7);
        transform-origin: center;
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
        transform-origin: center;
    }

}


/* =========================================================
   CENTER BRAND
========================================================= */

.india-center-brand {

    position: absolute;

    left: 50%;
    top: 48%;

    width: 125px;
    height: 125px;

    transform: translate(-50%, -50%);

    z-index: 8;

    display: flex;

    align-items: center;
    justify-content: center;

}


.center-ring {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 1px solid rgba(201,154,75,.7);

    box-shadow:

        0 0 25px rgba(201,154,75,.18),

        inset 0 0 25px rgba(201,154,75,.08);

    animation: ringRotate 10s linear infinite;

}


.center-ring::before,
.center-ring::after {

    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(201,154,75,.35);

}


.center-ring::before {

    inset: 9px;

}

.center-ring::after {

    inset: 20px;

}


@keyframes ringRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.center-content {

    position: relative;

    z-index: 2;

    width: 85px;
    height: 85px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(8,24,43,.96),
            rgba(5,15,27,.98)
        );

    border: 1px solid rgba(201,154,75,.35);

    box-shadow:
        0 0 25px rgba(0,0,0,.35);

}


.center-content strong {

    font-family: Georgia, serif;

    font-size: 25px;

    line-height: 1;

    color: #d9ae5c;

}


.center-content span {

    margin-top: 5px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;

    color: white;

}


.center-content small {

    margin-top: 3px;

    font-size: 5px;

    letter-spacing: .7px;

    color: rgba(255,255,255,.55);

}


/* =========================================================
   CITY LABELS
========================================================= */

.map-city {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 5px 8px;

    border-radius: 20px;

    background: rgba(4,15,28,.75);

    border: 1px solid rgba(201,154,75,.22);

    backdrop-filter: blur(8px);

    color: rgba(255,255,255,.68);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;

}


.map-city i {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #d9ae5c;

    box-shadow: 0 0 8px #d9ae5c;

}


.city-delhi {
    top: 108px;
    left: 220px;
}

.city-mumbai {
    top: 275px;
    left: 48px;
}

.city-bangalore {
    bottom: 100px;
    left: 155px;
}

.city-chennai {
    bottom: 28px;
    left: 205px;
}

.city-kolkata {
    top: 300px;
    right: 18px;
}


/* =========================================================
   BOTTOM STATS
========================================================= */

.india-bottom {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 55px;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

}


.india-stat {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.india-stat strong {

    color: #d8ad5d;

    font-size: 11px;

    letter-spacing: .7px;

}


.india-stat span {

    color: rgba(255,255,255,.45);

    font-size: 8px;

    letter-spacing: .6px;

}


.india-divider {

    width: 1px;

    height: 30px;

    background:
        linear-gradient(
            transparent,
            rgba(201,154,75,.5),
            transparent
        );

}


/* =========================================================
   TAGLINE
========================================================= */

.india-tagline {

    position: absolute;

    bottom: 22px;

    left: 0;
    right: 0;

    z-index: 10;

    text-align: center;

    font-size: 8px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.45);

}


.india-tagline strong {

    color: #d9ae5c;

    font-weight: 700;

}


/* =========================================================
   ATTRIBUTION
========================================================= */

.map-attribution {

    position: absolute;

    right: 18px;
    top: 18px;

    z-index: 20;

    font-size: 6px;

    color: rgba(255,255,255,.22);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .india-network-frame {

        min-height: 540px;

        border-radius: 24px;

    }


    .india-map-area {

        width: 350px;
        height: 420px;

        top: 50%;

    }


    .real-india-map {

        width: 300px;
        height: 350px;

    }


    .india-top-label {

        top: 22px;
        left: 22px;

        font-size: 8px;

        letter-spacing: 1.5px;

    }


    .map-city {

        display: none;

    }


    .india-center-brand {

        width: 105px;
        height: 105px;

    }


    .center-content {

        width: 73px;
        height: 73px;

    }


    .center-content strong {

        font-size: 21px;

    }


    .india-bottom {

        bottom: 52px;

        gap: 16px;

    }


    .india-stat strong {

        font-size: 9px;

    }


    .india-stat span {

        font-size: 7px;

    }


    .india-tagline {

        bottom: 20px;

        font-size: 7px;

    }

}













/* =========================================================
   FINAL ALIGNMENT FIX — ABOUT INDIA NETWORK
========================================================= */

.india-network-frame {
    width: 100%;
    height: 610px;
    min-height: 610px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

/* MAP AREA */
.india-map-area {
    position: absolute;
    left: 50%;
    top: 47%;
    width: 430px;
    height: 485px;
    transform: translate(-50%, -50%);
}

/* REAL MAP */
.real-india-map {
    position: absolute;
    left: 50%;
    top: 49%;

    width: 350px;
    height: 405px;

    transform: translate(-50%, -50%);

    object-fit: contain;

    opacity: .95;

    filter:
        brightness(0)
        saturate(100%)
        invert(68%)
        sepia(39%)
        saturate(665%)
        hue-rotate(357deg)
        brightness(91%)
        contrast(89%)
        drop-shadow(0 0 8px rgba(201,154,75,.5))
        drop-shadow(0 0 25px rgba(201,154,75,.2));

    z-index: 1;
}

/* NETWORK ABOVE MAP */
.india-network {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 4;
}

/* CENTER LOGO */
.india-center-brand {
    position: absolute;

    left: 50%;
    top: 48%;

    width: 118px;
    height: 118px;

    transform: translate(-50%, -50%);

    z-index: 8;
}

/* TOP LABEL */
.india-top-label {
    position: absolute;

    top: 27px;
    left: 30px;

    z-index: 20;
}

/* =========================================================
   CITY LABEL POSITIONING
========================================================= */

.city-delhi {
    top: 75px;
    left: 215px;
}

.city-mumbai {
    top: 265px;
    left: 42px;
}

.city-bangalore {
    bottom: 105px;
    left: 130px;
}

.city-chennai {
    bottom: 35px;
    left: 190px;
}

.city-kolkata {
    top: 285px;
    right: 8px;
}


/* =========================================================
   BOTTOM INFORMATION BAR
========================================================= */

.india-bottom {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 48px;

    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 32px;

    z-index: 30;

    padding: 0 20px;

    background: rgba(4, 15, 28, .78);

    border-top: 1px solid rgba(201,154,75,.18);
    border-bottom: 1px solid rgba(201,154,75,.18);

    backdrop-filter: blur(10px);
}

/* STATS */
.india-stat {
    min-width: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.india-stat strong {
    font-size: 10px;
    color: #d8ad5d;
}

.india-stat span {
    font-size: 7px;
    color: rgba(255,255,255,.45);
    margin-left: 6px;
}

/* DIVIDER */
.india-divider {
    width: 1px;
    height: 28px;
    flex-shrink: 0;
}


/* =========================================================
   TAGLINE
========================================================= */

.india-tagline {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 18px;

    z-index: 40;

    text-align: center;

    font-size: 7px;
    letter-spacing: 2px;
}


/* =========================================================
   REMOVE / HIDE OLD FLOATING CARD
========================================================= */

/* Agar existing HTML me floating card/visual-card hai */
.india-network-frame .visual-card,
.india-network-frame .floating-card,
.india-network-frame .india-floating-card,
.india-network-frame .map-card {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .india-network-frame {

        height: 540px;
        min-height: 540px;

        border-radius: 24px;
    }

    .india-map-area {

        width: 350px;
        height: 430px;

        top: 48%;
    }

    .real-india-map {

        width: 300px;
        height: 350px;
    }

    .india-center-brand {

        width: 105px;
        height: 105px;

        top: 47%;
    }

    .map-city {

        display: none;
    }

    .india-bottom {

        left: 18px;
        right: 18px;

        bottom: 45px;

        height: 48px;

        gap: 10px;

        padding: 0 8px;
    }

    .india-stat {

        min-width: auto;

        flex-direction: column;
        gap: 2px;
    }

    .india-stat strong {

        font-size: 8px;
    }

    .india-stat span {

        margin-left: 0;

        font-size: 6px;
    }

    .india-divider {

        height: 24px;
    }

    .india-tagline {

        bottom: 17px;

        font-size: 6px;
    }

}



.visual-caption {
    display: none;
}


.india-network-frame .visual-caption {
    display: none !important;
}





.network-lines line {
    stroke: rgba(201,154,75,.38);
    stroke-width: 1.2;
    stroke-dasharray: 3 7;
    opacity: .55;
}

.network-flow line {
    stroke: #e6c477;
    stroke-width: 1.6;
    stroke-linecap: round;

    stroke-dasharray: 2 28;
    stroke-dashoffset: 0;

    opacity: .9;

    filter:
        drop-shadow(0 0 4px rgba(230,196,119,.85));

    animation: dataFlow 2.8s linear infinite;
}

.network-flow line:nth-child(1) {
    animation-delay: 0s;
}

.network-flow line:nth-child(2) {
    animation-delay: -.4s;
}

.network-flow line:nth-child(3) {
    animation-delay: -.8s;
}

.network-flow line:nth-child(4) {
    animation-delay: -1.2s;
}

.network-flow line:nth-child(5) {
    animation-delay: -1.6s;
}

.network-flow line:nth-child(6) {
    animation-delay: -2s;
}

.network-flow line:nth-child(7) {
    animation-delay: -2.4s;
}

@keyframes dataFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -30;
    }

}







