@font-face {
    font-family: "KG Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "KG Inter";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/inter-latin-variable.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "KG Devanagari";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/noto-sans-devanagari-variable.woff2") format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0c1115;
    --dark: #11181e;
    --dark-2: #172128;

    --gold: #c9a05a;
    --gold-light: #e2c17e;

    --white: #ffffff;
    --cream: #f5f4f0;

    --text: #182027;
    --muted: #69747c;

    --line: #e2e4e3;
    --font-body: "KG Inter", "KG Devanagari", "Segoe UI", Arial, sans-serif;
    --font-heading: "KG Manrope", "KG Devanagari", "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    font-synthesis: none;
}

html:lang(hi) body {
    font-family: "KG Devanagari", "KG Inter", "Segoe UI", Arial, sans-serif;
}

html:lang(hi) .hero h1,
html:lang(hi) .section-heading h2,
html:lang(hi) .about-content h2,
html:lang(hi) .trust-content h2,
html:lang(hi) .enquiry-intro h2,
html:lang(hi) .final-cta h2,
html:lang(hi) .service-card h3,
html:lang(hi) .faq-container summary {
    font-family: "KG Devanagari", "KG Manrope", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -.35px;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 78px;

    padding: 0 7%;

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

    background: rgba(255,255,255,0.95);

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

    position: sticky;
    top: 0;

    z-index: 100;

    backdrop-filter: blur(15px);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 20px;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 5px;
}

.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    font-size: 13px;
    color: var(--black);
	weight:600;
    position: relative;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-button {
    background: var(--black);
    color: white;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-button span {
    margin-left: 8px;
}

.menu-btn {
    display: none;

    border: none;

    background: none;

    font-size: 25px;

    cursor: pointer;
}


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

.mobile-menu {
    position: fixed;

    top: 78px;
    left: 0;
    right: 0;

    background: var(--black);

    display: flex;
    flex-direction: column;

    padding: 25px;

    gap: 20px;

    transform: translateY(-120%);

    transition: 0.4s;

    z-index: 90;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: white;
    font-size: 15px;
}


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

.hero {
    min-height: calc(100vh - 78px);

    padding: 90px 7% 70px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            #eee2ca 0,
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #ffffff,
            #f5f5f1
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(201,160,90,0.2);

    right: -180px;
    top: 100px;

    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 13px;

    border: 1px solid #ddd9ce;

    background: rgba(255,255,255,0.7);

    border-radius: 30px;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #6c634f;

    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 0 5px rgba(201,160,90,0.15);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,100% {
        box-shadow: 0 0 0 4px rgba(201,160,90,0.15);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(201,160,90,0.02);
    }

}

.hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(48px,6vw,78px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-description {
    max-width: 620px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

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

    padding: 15px 23px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}

.primary-btn {
    background: var(--black);
    color: white;
}

.primary-btn:hover {
    background: var(--gold);
    color: var(--black);

    transform: translateY(-3px);
}

.primary-btn span {
    margin-left: 20px;
}

.secondary-btn {
    border: 1px solid #d7d9d7;

    background: white;
}

.secondary-btn:hover {
    border-color: var(--gold);

    transform: translateY(-3px);
}

.hero-trust {
    display: flex;

    gap: 30px;

    margin-top: 45px;

    padding-top: 25px;

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

.hero-trust div {
    display: flex;

    gap: 10px;

    align-items: flex-start;
}

.hero-trust strong {
    font-size: 12px;
    color: var(--gold);
}

.hero-trust span {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}


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

.hero-visual {
    min-height: 530px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(201,160,90,0.14);

    filter: blur(30px);

    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {

    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1.1);
    }

}

.blueprint-card {
    width: 390px;

    height: 450px;

    background:
        linear-gradient(
            rgba(201,160,90,0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,160,90,0.06) 1px,
            transparent 1px
        ),
        #111a20;

    background-size: 35px 35px;

    border: 1px solid #3b454b;

    border-radius: 14px;

    padding: 25px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(0,0,0,0.2);

    animation: floatMain 5s ease-in-out infinite;
}

@keyframes floatMain {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.blueprint-top,
.blueprint-bottom {
    display: flex;

    justify-content: space-between;

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 2px;
}

.building {
    position: absolute;

    left: 55px;
    right: 55px;

    bottom: 75px;

    height: 270px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}

.building-floor {
    display: grid;

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

    gap: 10px;

    border: 2px solid rgba(226,193,126,0.7);

    padding: 10px;

    background: rgba(255,255,255,0.02);
}

.floor-one {
    height: 75px;
}

.floor-two {
    height: 80px;
}

.floor-three {
    height: 85px;
}

.building-floor i {
    border: 1px solid rgba(226,193,126,0.5);

    background: rgba(226,193,126,0.08);
}

.building-base {
    height: 15px;

    background: var(--gold);

    opacity: 0.7;
}

.blueprint-bottom {
    position: absolute;

    bottom: 25px;

    left: 25px;
    right: 25px;

    border-top: 1px solid #3c464c;

    padding-top: 15px;
}

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 15px;

    background: rgba(255,255,255,0.96);

    border: 1px solid #e5e3dc;

    border-radius: 9px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    z-index: 3;

    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

.float-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    background: #f2eadb;

    color: var(--gold);

    border-radius: 6px;

    font-size: 18px;
}

.floating-card small {
    display: block;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: var(--muted);
}

.floating-card strong {
    font-size: 12px;
}

.card-one {
    left: 0;
    top: 120px;
}

.card-two {
    right: 0;
    top: 240px;

    animation-delay: 1s;
}

.card-three {
    left: 20px;
    bottom: 40px;

    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;

    bottom: 25px;
    left: 7%;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 2px;

    color: #92999d;
}

.scroll-line {
    width: 50px;

    height: 1px;

    background: var(--gold);
}


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

.stats {
    background: var(--black);

    color: white;

    padding: 28px 7%;

    display: grid;

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

    border-bottom: 1px solid #2b353c;
}

.stats-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 12px;

    border-right: 1px solid #303a40;
}

.stats-item:last-child {
    border-right: none;
}

.stats-item strong {
    font-family: var(--font-heading);

    color: var(--gold-light);

    font-size: 25px;
}

.stats-item span {
    font-size: 11px;

    color: #aeb5ba;

    line-height: 1.4;
}


/* ================= COMMON ================= */

.section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 15px;
}

.section-heading h2,
.about-content h2,
.trust-content h2,
.enquiry-intro h2 {
    font-family: var(--font-heading);

    font-size: clamp(35px,4vw,54px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-heading h2 span,
.about-content h2 span,
.trust-content h2 span,
.enquiry-intro h2 span,
.final-cta h2 span {
    color: var(--gold);
}

.section-heading p,
.about-content p,
.trust-content p,
.enquiry-intro > p {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* ================= SERVICES ================= */

.services {
    background: var(--cream);
}

.services-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

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

    gap: 18px;
}

.service-card {
    min-height: 370px;

    padding: 30px;

    border-radius: 12px;

    background: white;

    position: relative;

    overflow: hidden;

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

    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.service-number {
    font-size: 11px;

    color: var(--gold);

    letter-spacing: 2px;
}

.service-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--black);

    color: var(--gold-light);

    font-size: 30px;

    margin: 55px 0 25px;

    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);

    font-size: 24px;

    line-height: 1.15;

    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-card a {
    font-size: 12px;

    font-weight: 800;

    color: var(--gold);
}

.card-decoration {
    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    border: 1px solid rgba(201,160,90,0.2);

    right: -50px;
    bottom: -50px;

    transition: 0.5s;
}

.service-card:hover .card-decoration {
    transform: scale(1.5);
}


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

.about {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.about-visual {
    height: 520px;

    position: relative;

    background: var(--dark);

    border-radius: 15px;

    overflow: hidden;
}

.about-grid {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(201,160,90,0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,160,90,0.07) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.about-panel {
    position: absolute;

    width: 240px;
    height: 290px;

    left: 50%;
    top: 50%;

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

    border: 1px solid #4a5359;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 25px;

    background: rgba(255,255,255,0.025);
}

.about-panel > span {
    font-family: var(--font-heading);

    font-size: 70px;

    color: var(--gold);

    font-weight: 800;
}

.about-panel small {
    display: block;

    color: #9ea7ac;

    font-size: 8px;

    letter-spacing: 2px;
}

.about-panel strong {
    color: white;

    font-size: 12px;

    letter-spacing: 1px;
}

.about-circle {
    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    right: 40px;
    top: 45px;

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

    display: grid;

    place-items: center;

    text-align: center;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: var(--gold-light);

    animation: rotateCircle 15s linear infinite;
}

.about-content > p {
    margin-bottom: 15px;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;
}

.about-points span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    background: #f2eadb;

    color: var(--gold);

    border-radius: 50%;
}


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

.process {
    background: var(--black);

    color: white;
}

.process .section-heading p {
    color: #aeb6bb;
}

.timeline {
    max-width: 1250px;

    margin: auto;

    display: grid;

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

    position: relative;
}

.timeline-line {
    position: absolute;

    top: 25px;

    left: 8%;

    right: 8%;

    height: 1px;

    background: #38434a;
}

.timeline-item {
    position: relative;

    text-align: center;

    padding: 0 12px;
}

.timeline-dot {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    background: var(--dark);

    border: 1px solid #4a565d;

    color: var(--gold-light);

    font-size: 10px;

    position: relative;

    z-index: 2;

    transition: 0.3s;
}

.timeline-item:hover .timeline-dot {
    background: var(--gold);

    color: var(--black);

    transform: scale(1.15);
}

.timeline-item h3 {
    margin-top: 25px;

    font-family: var(--font-heading);

    font-size: 16px;
}

.timeline-item p {
    margin-top: 10px;

    color: #929ca1;

    font-size: 12px;

    line-height: 1.6;
}


/* ================= PROJECTS ================= */

.projects {
    background: white;
}

.project-showcase {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 18px;
}

.project-large,
.project-small {
    border-radius: 12px;

    overflow: hidden;

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

    background: var(--cream);
}

.project-large {
    display: grid;

    grid-template-rows: 1fr auto;
}

.project-side {
    display: grid;

    gap: 18px;
}

.project-small {
    display: grid;

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

.project-visual {
    position: relative;

    overflow: hidden;

    background: var(--dark);
}

.project-large .project-visual {
    min-height: 430px;
}

.project-small .project-visual {
    min-height: 210px;
}

.project-building {
    background:
        linear-gradient(
            145deg,
            #172128,
            #303b42
        );
}

.mini-building {
    position: absolute;

    width: 260px;
    height: 280px;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    border: 2px solid var(--gold);

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 15px;

    background:
        linear-gradient(
            rgba(201,160,90,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,160,90,0.08) 1px,
            transparent 1px
        );

    background-size: 30px 30px;
}

.mini-building div {
    flex: 1;

    border-bottom: 1px solid rgba(201,160,90,0.5);

    margin-bottom: 5px;
}

.project-electric {
    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            #3d3a30,
            #151c21
        );
}

.electric-symbol,
.gear-symbol {
    font-size: 90px;

    color: var(--gold);

    opacity: 0.8;

    animation: symbolFloat 3s ease-in-out infinite;
}

@keyframes symbolFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.project-mechanical {
    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            #30383d,
            #11181e
        );
}

.project-info {
    padding: 25px;
}

.project-info span {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;
}

.project-info h3 {
    font-family: var(--font-heading);

    margin-top: 8px;

    font-size: 19px;
}

.project-info p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 8px;
}


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

.trust {
    background: var(--cream);

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.trust-content {
    position: sticky;

    top: 120px;
}

.trust-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.trust-card {
    background: white;

    padding: 30px;

    min-height: 190px;

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

    border-radius: 10px;

    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.trust-card > span {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}

.trust-card h3 {
    margin: 30px 0 10px;

    font-family: var(--font-heading);

    font-size: 20px;
}

.trust-card p {
    color: var(--muted);

    font-size: 13px;
}


/* ================= TESTIMONIAL ================= */

.testimonial {
    background: white;
}

.testimonial-card {
    max-width: 850px;

    margin: auto;

    padding: 55px;

    background: var(--black);

    color: white;

    border-radius: 15px;

    position: relative;

    overflow: hidden;
}

.quote-mark {
    font-family: Georgia;

    color: var(--gold);

    font-size: 90px;

    line-height: 0.6;

    opacity: 0.7;
}

.testimonial-card > p {
    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.6;

    margin: 25px 0 35px;
}

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

    font-weight: 800;
}

.testimonial-author strong {
    display: block;

    font-size: 13px;
}

.testimonial-author span {
    color: #8d979d;

    font-size: 11px;
}


/* ================= ENQUIRY ================= */

.enquiry {
    background: var(--cream);

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: start;
}

.enquiry-intro {
    position: sticky;

    top: 120px;
}

.contact-options {
    margin-top: 35px;

    display: grid;

    gap: 18px;
}

.contact-options > div {
    display: flex;

    gap: 14px;

    align-items: center;
}

.contact-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 7px;

    background: white;

    color: var(--gold);

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

.contact-options small {
    display: block;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1.5px;
}

.contact-options strong {
    font-size: 13px;
}

.contact-options address {
    max-width: 390px;
    color: var(--dark);
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}

.lead-form {
    background: white;

    padding: 38px;

    border-radius: 14px;

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

    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.form-title {
    display: flex;

    gap: 15px;

    align-items: center;

    padding-bottom: 25px;

    margin-bottom: 25px;

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

.form-title > span {
    color: var(--gold);

    font-size: 12px;
}

.form-title h3 {
    font-family: var(--font-heading);

    font-size: 22px;
}

.form-title p {
    color: var(--muted);

    font-size: 12px;
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.lead-form label {
    display: block;

    color: #3e474d;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 16px;
}

.optional {
    color: #9aa0a4;

    font-weight: 400;

    margin-left: 5px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;

    margin-top: 7px;

    padding: 14px;

    border: 1px solid #dfe2df;

    border-radius: 6px;

    outline: none;

    font-size: 13px;

    background: #fbfbfa;

    transition: 0.3s;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--gold);

    background: white;

    box-shadow: 0 0 0 3px rgba(201,160,90,0.08);
}

.lead-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;

    border: none;

    padding: 16px;

    border-radius: 6px;

    background: var(--black);

    color: white;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--gold);

    color: var(--black);
}

.submit-btn span {
    margin-left: 15px;
}

.form-note {
    text-align: center;

    color: #92999d;

    font-size: 10px;

    margin-top: 12px;
}


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

.faq {
    background: white;
}

.faq-container {
    max-width: 850px;

    margin: auto;
}

.faq-container details {
    border-top: 1px solid var(--line);

    padding: 22px 5px;

    cursor: pointer;
}

.faq-container details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-container summary {
    list-style: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 700;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container summary > span:first-child {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
    color: var(--dark);
    transition: color .25s ease;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(208,37,53,.28);
    border-radius: 50%;
    background: rgba(208,37,53,.07);
    color: var(--brand-red);
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.faq-toggle::before {
    content: "+";
    display: block;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-1px);
}

.faq-container summary:hover > span:first-child,
.faq-container details[open] summary > span:first-child {
    color: #8f1721;
}

.faq-container details[open] .faq-toggle {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.faq-container details[open] .faq-toggle::before {
    content: "−";
    transform: translateY(-1px);
}

.faq-container p {
    color: var(--muted);

    font-size: 13px;

    max-width: 700px;

    padding-top: 15px;

    line-height: 1.7;
}


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

.final-cta {
    background: var(--black);

    color: white;

    padding: 110px 7%;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.cta-pattern {
    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(201,160,90,0.15);

    border-radius: 50%;

    top: 50%;
    left: 50%;

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

    box-shadow:
        0 0 0 100px rgba(201,160,90,0.02),
        0 0 0 200px rgba(201,160,90,0.015);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: auto;
}

.final-cta h2 {
    font-family: var(--font-heading);

    font-size: clamp(38px,5vw,62px);

    letter-spacing: -2px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.final-cta p {
    color: #aeb6bb;

    max-width: 550px;

    margin: 0 auto 30px;
}

.final-cta .primary-btn {
    background: var(--gold);

    color: var(--black);
}


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

footer {
    background: #080d10;

    color: white;

    padding: 45px 7%;
}

.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: center;

    padding-bottom: 35px;

    border-bottom: 1px solid #273037;
}

.footer-main p {
    color: #808b91;

    font-size: 11px;

    margin-top: 10px;
}

.footer-address {
    max-width: 560px;
    margin-top: 12px;
    color: #a3adb2;
    font-style: normal;
    font-size: 11px;
    line-height: 1.65;
}

.footer-address a {
    color: #d7b16b;
}

.footer-links {
    display: flex;

    gap: 25px;

    font-size: 12px;

    color: #aab1b5;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 18px;

    padding-top: 25px;

    color: #687278;

    font-size: 10px;
}

.developer-credit a {
    color: #d7b16b;
    font-weight: 700;
    transition: color .25s ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
    color: #ffffff;
}


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

.mobile-actions {
    display: none;
}


/* ================= SCROLL ANIMATION ================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media(max-width:1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-grid {
        gap: 35px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .timeline {
        grid-template-columns: repeat(3,1fr);

        gap: 45px 10px;
    }

    .timeline-line {
        display: none;
    }

}


@media(max-width:800px) {

    .navbar {
        padding: 0 20px;
    }

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding: 65px 20px 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .blueprint-card {
        width: 330px;
        height: 400px;
    }

    .card-one {
        left: -5px;
    }

    .card-two {
        right: -5px;
    }

    .scroll-indicator {
        display: none;
    }

    .stats {
        grid-template-columns: repeat(2,1fr);

        padding: 20px;
    }

    .stats-item {
        border-bottom: 1px solid #303a40;
    }

    .stats-item:nth-child(2) {
        border-right: none;
    }

    .section {
        padding: 75px 20px;
    }

    .about,
    .trust,
    .enquiry {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-visual {
        height: 400px;
    }

    .trust-content,
    .enquiry-intro {
        position: static;
    }

    .project-showcase {
        grid-template-columns: 1fr;
    }

}


@media(max-width:600px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-trust {
        gap: 15px;
    }

    .hero-trust div {
        gap: 5px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .blueprint-card {
        width: 280px;
        height: 360px;
    }

    .building {
        left: 40px;
        right: 40px;

        height: 220px;
    }

    .floating-card {
        padding: 9px 10px;
    }

    .card-one {
        left: -10px;
        top: 80px;
    }

    .card-two {
        right: -10px;
        top: 200px;
    }

    .card-three {
        left: 0;
        bottom: 20px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stats-item strong {
        font-size: 20px;
    }

    .stats-item span {
        font-size: 9px;
    }

    .services-grid,
    .trust-cards,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
    }

    .project-small {
        grid-template-columns: 1fr;
    }

    .project-large .project-visual {
        min-height: 300px;
    }

    .project-small .project-visual {
        min-height: 180px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card > p {
        font-size: 17px;
    }

    .lead-form {
        padding: 22px;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .mobile-actions {
        position: fixed;

        bottom: 0;

        left: 0;
        right: 0;

        height: 58px;

        background: var(--black);

        display: grid;

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

        z-index: 999;

        box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    }

    .mobile-actions a {
        color: white;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 3px;

        font-size: 16px;

        border-right: 1px solid #303a40;
    }

    .mobile-actions a:last-child {
        border: none;
    }

    .mobile-actions span {
        font-size: 9px;

        letter-spacing: 1px;

        color: #c7ced2;
    }

}

/* ================= KAMALA LOGO ================= */
.logo-image {
    width: 82px;
    height: 62px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.hero-logo-wrap {
    position: absolute;
    width: 170px;
    height: 170px;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep the existing blueprint visual below the logo */
.hero-visual .blueprint-card {
    margin-top: 120px;
}

/* ================= LANGUAGE ================= */
.language-btn {
    border: 1px solid var(--line);
    background: white;
    color: var(--text);
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.language-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mobile-language-btn {
    text-align: left;
    background: transparent;
    color: white;
    border-color: #39444b;
    width: fit-content;
}

.language-modal {
    position: fixed;
    inset: 0;
    background: rgba(8,13,16,0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 5000;
    backdrop-filter: blur(7px);
}

.language-modal.show {
    display: flex;
}

.language-modal-card {
    position: relative;
    width: min(460px, 100%);
    background: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.language-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #eef0ef;
    color: var(--dark);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.language-modal-close:hover,
.language-modal-close:focus-visible {
    background: var(--gold-light);
    outline: 3px solid rgba(201, 160, 90, 0.3);
    outline-offset: 2px;
}

.language-modal-mark {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--gold-light);
}

.language-modal-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.language-modal-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.language-modal-card h3 [lang="hi"],
.language-modal-card p [lang="hi"],
.language-options [lang="hi"] {
    font-family: "KG Devanagari", var(--font-body);
}

.language-title-divider {
    color: var(--brand-red);
}

.language-modal-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.language-modal-card p span {
    display: block;
}

.language-modal-card p span + span {
    margin-top: 3px;
}

.language-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.language-options button {
    border: 1px solid var(--line);
    background: white;
    padding: 14px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: grid;
    gap: 2px;
    justify-items: center;
}

.language-options button span {
    font-size: 15px;
}

.language-options button small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    transition: color .3s ease;
}

.language-options button:hover,
.language-options button:focus-visible {
    background: var(--black);
    color: white;
    border-color: var(--black);
    outline: 3px solid rgba(208,37,53,.22);
    outline-offset: 2px;
}

.language-options button:hover small,
.language-options button:focus-visible small {
    color: rgba(255,255,255,.78);
}

/* 9 service cards */
.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    min-height: 330px;
}

@media(max-width:1050px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:800px) {
    .logo-image {
        width: 70px;
        height: 58px;
    }

    .logo-image img {
        width: 66px;
        height: 66px;
    }

    .hero-logo-wrap {
        width: 125px;
        height: 125px;
        top: 25px;
    }

    .hero-visual .blueprint-card {
        margin-top: 80px;
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .language-modal-card {
        padding: 28px 20px;
    }

    .language-modal-mark {
        width: 82px;
        height: 82px;
        margin-bottom: 16px;
    }

    .language-modal-card h3 {
        font-size: 21px;
        gap: 4px;
    }
}

/* ================= PREMIUM KAMALA GROUP UPGRADE ================= */
:root{
    --gold:#b98b43;
    --gold-light:#d7b16b;
    --black:#0a0f13;
    --dark:#101820;
    --cream:#f6f3ec;
    --shadow:0 24px 70px rgba(7,12,16,.12);
}
body{background:#fff;color:#151b20}
body.modal-open{overflow:hidden}
.navbar{transition:box-shadow .35s ease,background .35s ease,border-color .35s ease}
.navbar.scrolled{box-shadow:0 12px 40px rgba(0,0,0,.10);background:rgba(255,255,255,.98)}
.logo-image{width:108px;height:70px;overflow:visible}
.logo-image img{width:82px;height:82px;padding:5px;object-fit:contain;filter:drop-shadow(0 8px 15px rgba(0,0,0,.12));transition:transform .35s ease}
.logo-image:hover img{transform:scale(1.05) rotate(-2deg)}

/* Hero */
.hero{background:radial-gradient(circle at 78% 34%,rgba(211,178,113,.20),transparent 28%),linear-gradient(135deg,#fff 0%,#f7f6f1 58%,#efebe1 100%)}
.hero-content{position:relative;z-index:4}
.hero h1{font-weight:800}
.hero h1 span:last-child{display:inline-block}
.hero-description{max-width:650px}
.hero-buttons a{position:relative;overflow:hidden}
.hero-buttons a::before{content:"";position:absolute;inset:0;transform:translateX(-105%);background:rgba(255,255,255,.10);transition:transform .5s ease}
.hero-buttons a:hover::before{transform:translateX(105%)}
.hero-visual{min-height:570px}
.visual-glow{width:430px;height:430px;background:radial-gradient(circle,rgba(194,151,75,.20),transparent 67%);filter:blur(5px)}
.blueprint-card{width:430px;height:455px;border-radius:18px;background-color:#10181e;box-shadow:0 40px 90px rgba(4,10,14,.24);border:1px solid rgba(215,177,107,.22);padding:26px;animation:floatMain 6s ease-in-out infinite}
.blueprint-card::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.05),transparent 35%,transparent 65%,rgba(202,160,86,.06));pointer-events:none}
.service-blueprint-grid{position:absolute;left:54px;right:54px;top:104px;bottom:78px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.blueprint-service{border:1px solid rgba(215,177,107,.42);background:rgba(255,255,255,.025);padding:12px 9px;display:flex;flex-direction:column;justify-content:space-between;min-width:0;transition:all .35s ease;position:relative;z-index:2}
.blueprint-service span{font-size:8px;color:#a8884f;letter-spacing:1.5px}
.blueprint-service strong{font-size:10px;line-height:1.25;color:#e9d3a4;font-weight:600}
.blueprint-service:hover{background:rgba(195,153,75,.14);border-color:#c59a54;transform:translateY(-4px);box-shadow:0 12px 25px rgba(0,0,0,.22)}
.blueprint-bottom{z-index:3}
.floating-card{backdrop-filter:blur(12px);box-shadow:0 18px 45px rgba(0,0,0,.12);transition:transform .35s ease,box-shadow .35s ease}
.floating-card:hover{transform:translateY(-7px) scale(1.02)}
.float-icon{background:#f1e7d5}

/* Service cards */
.services{background:linear-gradient(180deg,#f7f4ec 0%,#fbfaf7 100%)}
.services-grid{grid-template-columns:repeat(3,1fr);gap:20px}
.service-card{min-height:405px;padding:24px;border:1px solid #e4e0d7;box-shadow:0 5px 0 rgba(0,0,0,.015);transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .45s ease}
.service-card:hover{transform:translateY(-12px);box-shadow:0 28px 65px rgba(12,17,21,.13);border-color:rgba(185,139,67,.55)}
.service-photo{height:122px;border-radius:10px;margin:17px 0 20px;background:#e7e2d9;position:relative;overflow:hidden}
.service-photo img,.about-photo img,.project-visual>img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.project-visual>img{position:absolute;inset:0}
.service-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(9,14,18,.16),rgba(185,139,67,.10));transition:opacity .35s ease}
.service-card:hover .service-photo::after{opacity:.35}
.service-icon{margin:0 0 18px;width:48px;height:48px;font-size:22px;border-radius:9px}
.service-card h3{font-size:21px;min-height:49px}
.service-card p{font-size:13px}

/* About visual redesigned without logo */
.about-visual{height:560px;background:#0d151b;border-radius:18px;box-shadow:var(--shadow);overflow:hidden;isolation:isolate}
.about-grid{opacity:.5;background-size:44px 44px}
.about-photo{position:absolute;border:1px solid rgba(215,177,107,.32);box-shadow:0 25px 55px rgba(0,0,0,.35);z-index:1;overflow:hidden}
.about-photo-main{width:58%;height:58%;right:8%;top:10%;clip-path:polygon(8% 0,100% 0,92% 100%,0 100%)}
.about-photo-small{width:40%;height:33%;left:7%;bottom:10%;z-index:2;border-radius:10px}
.about-panel{z-index:3;background:rgba(10,16,21,.90);backdrop-filter:blur(8px);border:1px solid rgba(215,177,107,.35);width:47%;height:48%;left:9%;top:26%;padding:22px;color:white;box-shadow:0 25px 55px rgba(0,0,0,.35)}
.about-panel-top{display:flex;justify-content:space-between;align-items:flex-start;border-bottom:1px solid rgba(255,255,255,.14);padding-bottom:14px}
.about-panel-top span{font-family:var(--font-heading);font-size:46px;line-height:.9;color:#d1a75d;font-weight:800}
.about-panel-top small{font-size:7px;letter-spacing:2px;color:#b7bec2;max-width:100px;text-align:right;line-height:1.5}
.about-panel-lines{padding:17px 0;display:grid;gap:11px}
.about-panel-lines div{display:flex;align-items:center;gap:9px;font-size:8px;letter-spacing:1.5px;color:#c6cdd0}
.about-panel-lines b{height:1px;flex:1;background:linear-gradient(90deg,rgba(211,171,99,.7),transparent)}
.about-panel-footer{font-size:7px;letter-spacing:1.5px;color:#9f7d46;border-top:1px solid rgba(255,255,255,.12);padding-top:12px}
.about-circle{z-index:4;width:135px;height:135px;right:7%;bottom:7%;border:1px solid rgba(215,177,107,.7);background:rgba(10,15,19,.58);backdrop-filter:blur(8px);display:grid;place-items:center;animation:slowSpin 20s linear infinite}
.about-circle span{font-size:8px;line-height:1.6;letter-spacing:1.5px;color:#d9bc86;text-align:center;animation:slowSpinReverse 20s linear infinite}
@keyframes slowSpin{to{transform:rotate(360deg)}}
@keyframes slowSpinReverse{to{transform:rotate(-360deg)}}

/* Process */
.timeline-item{transition:transform .35s ease}
.timeline-item:hover{transform:translateY(-8px)}
.timeline-dot{box-shadow:0 0 0 7px rgba(185,139,67,.10);transition:.35s ease}
.timeline-item:hover .timeline-dot{box-shadow:0 0 0 12px rgba(185,139,67,.12);background:var(--gold);color:#fff}

/* Projects */
.project-visual{overflow:hidden!important;position:relative}
.project-image-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,11,15,.05),rgba(6,11,15,.68));transition:background .4s ease}
.project-visual:hover .project-image-overlay{background:linear-gradient(180deg,rgba(6,11,15,.03),rgba(185,139,67,.45))}

/* Trust */
.trust-card{transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}
.trust-card:hover{transform:translateY(-8px);box-shadow:0 22px 50px rgba(0,0,0,.09);border-color:rgba(185,139,67,.45)}

/* Form */
.lead-form{box-shadow:0 25px 70px rgba(0,0,0,.08);border:1px solid #e5e0d5}
.submit-btn{position:relative;overflow:hidden}
.submit-btn::after{content:"";position:absolute;inset:0;transform:translateX(-110%);background:rgba(255,255,255,.10);transition:.5s}
.submit-btn:hover::after{transform:translateX(110%)}

/* Reveal */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1)}
.reveal.active{opacity:1;transform:translateY(0)}
.service-card:nth-child(2){transition-delay:.04s}.service-card:nth-child(3){transition-delay:.08s}.service-card:nth-child(4){transition-delay:.12s}.service-card:nth-child(5){transition-delay:.16s}.service-card:nth-child(6){transition-delay:.20s}.service-card:nth-child(7){transition-delay:.24s}.service-card:nth-child(8){transition-delay:.28s}.service-card:nth-child(9){transition-delay:.32s}

/* Language modal */
.language-modal{background:rgba(5,9,12,.76)}
.language-modal-card{border:1px solid rgba(185,139,67,.25);box-shadow:0 35px 100px rgba(0,0,0,.35);animation:modalIn .45s cubic-bezier(.2,.8,.2,1)}
@keyframes modalIn{from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:none}}
.language-modal-mark{background:#0b1116;color:#d5ae68;box-shadow:0 10px 25px rgba(0,0,0,.14)}
.language-options button{border-color:#ded9cf}
.language-options button:hover{background:#0b1116;border-color:#0b1116}

@media(max-width:1050px){
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .hero-grid{gap:40px}
    .blueprint-card{width:400px}
}
@media(max-width:800px){
    /* MOBILE HERO ORDER: CONTENT FIRST, SERVICE GRID SECOND */
    .hero-grid{
        display:flex;
        flex-direction:column;
        align-items:stretch;
    }
    .hero-content{
        order:1 !important;
    }
    .hero-visual{
        order:2 !important;
    }

    .desktop-nav,.navbar>.nav-button{display:none}
    .menu-btn{display:block}
    .logo-image{width:80px;height:62px}.logo-image img{width:70px;height:70px}
    .hero{padding-top:55px}.hero-grid{display:flex;flex-direction:column;grid-template-columns:none}.hero-content{order:1 !important}.hero-visual{min-height:510px;order:2 !important}.blueprint-card{width:min(430px,94vw);height:440px}.service-blueprint-grid{left:45px;right:45px;top:94px;bottom:72px}.blueprint-service{padding:10px 8px}.blueprint-service strong{font-size:9px}
    .about{grid-template-columns:1fr;gap:55px}.about-visual{height:500px}
}
@media(max-width:600px){
    .services-grid{grid-template-columns:1fr}.service-card{min-height:390px}.service-photo{height:140px}
    .hero-content{order:1 !important}.hero-visual{min-height:455px;order:2 !important}.blueprint-card{width:min(430px,94vw);height:400px;padding:20px}.service-blueprint-grid{left:24px;right:24px;top:82px;bottom:62px;gap:8px}.blueprint-service{padding:9px 7px;align-items:flex-start}.blueprint-service span{font-size:7px}.blueprint-service strong{font-size:8.5px;line-height:1.2}.blueprint-bottom{left:20px;right:20px}
    .floating-card{transform:scale(.82)}.card-one{left:-18px}.card-two{right:-18px}.card-three{left:-12px}
    .about-visual{height:430px}.about-panel{width:57%;height:53%;left:6%;top:22%;padding:15px}.about-panel-top span{font-size:35px}.about-panel-top small{font-size:6px}.about-panel-lines{padding:12px 0;gap:8px}.about-panel-footer{font-size:5.5px}.about-circle{width:105px;height:105px;right:5%;bottom:6%}.about-circle span{font-size:6.5px}
    .language-modal-card{padding:28px 20px}
}
@media(max-width:420px){
    .hero{padding-left:5%;padding-right:5%;}
    .hero-visual{min-height:430px;}
    .blueprint-card{width:94vw;height:375px;padding:18px;border-radius:16px;}
    .blueprint-top{font-size:7px;letter-spacing:1.4px;}
    .service-blueprint-grid{left:18px;right:18px;top:76px;bottom:58px;gap:6px;}
    .blueprint-service{padding:7px 6px;}
    .blueprint-service strong{font-size:7.2px;}
    .blueprint-bottom{left:18px;right:18px;bottom:18px;padding-top:11px;font-size:7px;}
    .floating-card{transform:scale(.68);}
    .card-one{left:-27px;top:105px;}
    .card-two{right:-27px;top:210px;}
    .card-three{left:-20px;bottom:30px;}
}

@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}.reveal{opacity:1;transform:none}}

/* ================= SUCCESS PAGE ================= */
.success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
    background:
        radial-gradient(circle at top right, rgba(201,160,90,.2), transparent 36%),
        linear-gradient(145deg, var(--dark), var(--black));
}

.success-card {
    width: min(680px, 100%);
    padding: clamp(32px, 7vw, 64px);
    border-radius: 24px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 30px 90px rgba(0,0,0,.3);
}

.success-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.success-logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.success-mark {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e5f7eb;
    color: #166534;
    font-size: 28px;
    font-weight: 800;
}

.success-card h1 {
    margin: 14px 0;
    font-family: var(--font-heading);
    font-size: clamp(34px, 6vw, 54px);
    line-height: 1.05;
}

.success-card > p:not(.section-tag) {
    max-width: 560px;
    margin: 0 auto 10px;
    color: var(--muted);
    line-height: 1.7;
}

.success-hindi {
    font-size: 14px;
}

.success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 20px;
}

.success-phone {
    color: var(--dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ================= LOGO RED BRAND ACCENT ================= */
:root {
    --brand-red: #d02535;
    --brand-red-dark: #a91f2e;
    --brand-red-soft: #fff0f2;
    --brand-red-ring: rgba(208, 37, 53, .16);
}

::selection {
    color: #fff;
    background: var(--brand-red);
}

.desktop-nav a::after {
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), var(--gold));
}

.nav-button,
.primary-btn,
.submit-btn {
    box-shadow: inset 0 3px 0 var(--brand-red);
}

.nav-button:hover,
.primary-btn:hover,
.submit-btn:hover {
    color: #fff;
    background: var(--brand-red);
}

.secondary-btn:hover,
.language-btn:hover {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.hero {
    background:
        radial-gradient(circle at 92% 13%, rgba(208, 37, 53, .08), transparent 20%),
        radial-gradient(circle at 78% 34%, rgba(211, 178, 113, .20), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f7f6f1 58%, #efebe1 100%);
}

.pulse {
    background: var(--brand-red);
    box-shadow: 0 0 0 5px var(--brand-red-ring);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--brand-red-ring);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(208, 37, 53, .025);
    }
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 9px;
}

.section-tag::before {
    width: 18px;
    height: 2px;
    flex: 0 0 18px;
    content: "";
    background: var(--brand-red);
}

.section-heading.center .section-tag,
.success-card .section-tag {
    justify-content: center;
}

.service-number,
.trust-card > span,
.faq-toggle {
    color: var(--brand-red);
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--brand-red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.trust-card:hover {
    border-color: rgba(208, 37, 53, .42);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px var(--brand-red-ring);
}

.language-modal-card {
    border-top: 3px solid var(--brand-red);
}

.language-modal-mark {
    box-shadow: inset 0 -3px 0 var(--brand-red), 0 10px 25px rgba(0, 0, 0, .14);
}

@media(max-width:800px) {
    .mobile-actions {
        box-shadow: 0 -3px 0 var(--brand-red), 0 -5px 25px rgba(0, 0, 0, .15);
    }
}

/* ================= MOBILE BRAND LOCKUP ================= */
.mobile-brand-name {
    display: flex;
    min-width: 100px;
    padding: 3px 0 3px 11px;
    border-left: 2px solid var(--brand-red);
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-image {
    width: 218px;
    height: 70px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

.logo-image img {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
}

.mobile-brand-name strong {
    color: var(--black);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.mobile-brand-name small {
    margin-top: 6px;
    color: var(--brand-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 4px;
}

@media(max-width:1200px) {
    .navbar {
        padding-right: 4%;
        padding-left: 4%;
    }

    .desktop-nav {
        gap: 22px;
    }

    .logo-image {
        width: 196px;
    }
}

@media(max-width:1050px) {
    .navbar {
        padding-right: 3%;
        padding-left: 3%;
    }

    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav a {
        font-size: 11px;
    }

    .logo-image {
        width: 176px;
        gap: 7px;
    }

    .logo-image img {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .mobile-brand-name {
        min-width: 92px;
        padding-left: 8px;
    }

    .mobile-brand-name strong {
        font-size: 13px;
        letter-spacing: 1.4px;
    }

    .mobile-brand-name small {
        font-size: 8px;
        letter-spacing: 3.2px;
    }

    .nav-button {
        padding: 11px 14px;
        font-size: 11px;
    }
}

@media(max-width:800px) {
    .navbar {
        padding-right: 5%;
        padding-left: 4%;
    }

    .logo-image {
        width: auto;
        min-width: 178px;
        height: 62px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 9px;
    }

    .logo-image img {
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
    }

    .mobile-brand-name {
        min-width: 96px;
        padding: 3px 0 3px 10px;
        border-left: 2px solid var(--brand-red);
        flex-direction: column;
        justify-content: center;
        line-height: 1;
    }

    .mobile-brand-name strong {
        color: var(--black);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 1.8px;
    }

    .mobile-brand-name small {
        margin-top: 6px;
        color: var(--brand-red);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 4px;
    }
}

@media(max-width:370px) {
    .logo-image {
        min-width: 164px;
        gap: 6px;
    }

    .logo-image img {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .mobile-brand-name {
        min-width: 92px;
        padding-left: 8px;
    }

    .mobile-brand-name strong {
        font-size: 14px;
    }
}

/* ================= COMPANY PROFILE LOADER ================= */
.screen-reader-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 50% 42%, rgba(208, 37, 53, .13), transparent 28%),
        radial-gradient(circle at 50% 55%, rgba(185, 139, 67, .10), transparent 45%),
        #080d11;
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
    animation: siteLoaderFailsafe 0s linear 5s forwards;
}

.site-loader::before,
.site-loader::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.site-loader::before {
    width: min(72vw, 620px);
    height: min(72vw, 620px);
    border: 1px solid rgba(185, 139, 67, .17);
    animation: siteLoaderRing 9s linear infinite;
}

.site-loader::after {
    width: min(54vw, 450px);
    height: min(54vw, 450px);
    border: 1px dashed rgba(208, 37, 53, .14);
    animation: siteLoaderRing 12s linear infinite reverse;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-profile {
    position: relative;
    z-index: 2;
    width: min(470px, 88vw);
    text-align: center;
    animation: siteLoaderProfileIn .7s cubic-bezier(.2, .8, .2, 1) both;
}

.site-loader-logo {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    padding: 5px;
    border: 1px solid rgba(215, 177, 107, .60);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(208, 37, 53, .10), 0 22px 55px rgba(0, 0, 0, .45);
    animation: siteLoaderLogoIn .8s cubic-bezier(.2, .8, .2, 1) both;
}

.site-loader-logo img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: contain;
}

.site-loader-skyline {
    position: relative;
    width: 130px;
    height: 62px;
    margin: 0 auto 17px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}

.site-loader-skyline::after {
    position: absolute;
    right: -12px;
    bottom: -1px;
    left: -12px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    animation: siteLoaderLine 1s .35s ease forwards;
}

.site-loader-skyline span {
    width: 16px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(180deg, #e02b3f, var(--brand-red-dark));
    box-shadow: inset 4px 0 0 rgba(255, 255, 255, .08);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: siteLoaderTower .55s cubic-bezier(.2, .8, .2, 1) forwards;
}

.site-loader-skyline span:nth-child(1) {
    height: 28px;
    animation-delay: .12s;
}

.site-loader-skyline span:nth-child(2) {
    height: 44px;
    animation-delay: .20s;
}

.site-loader-skyline span:nth-child(3) {
    height: 62px;
    animation-delay: .28s;
}

.site-loader-skyline span:nth-child(4) {
    height: 48px;
    animation-delay: .36s;
}

.site-loader-skyline span:nth-child(5) {
    height: 33px;
    animation-delay: .44s;
}

.site-loader-name {
    color: var(--gold-light);
    font-size: clamp(28px, 7vw, 42px);
    font-weight: 800;
    letter-spacing: clamp(3px, 1.3vw, 7px);
    line-height: 1;
}

.site-loader-name strong {
    color: var(--brand-red);
}

.site-loader-tagline {
    margin-top: 12px;
    color: #f4f0e8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-loader-services {
    margin-top: 16px;
    color: #8f9aa1;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.site-loader-services i {
    margin: 0 4px;
    color: var(--brand-red);
    font-style: normal;
}

.site-loader-progress {
    width: min(250px, 70vw);
    height: 2px;
    margin: 25px auto 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .10);
}

.site-loader-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-red), var(--gold-light));
    transform: translateX(-100%);
    animation: siteLoaderProgress 1.25s .12s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes siteLoaderProfileIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes siteLoaderLogoIn {
    from { opacity: 0; transform: scale(.76) rotate(-8deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes siteLoaderTower {
    to { transform: scaleY(1); }
}

@keyframes siteLoaderLine {
    to { transform: scaleX(1); }
}

@keyframes siteLoaderProgress {
    to { transform: translateX(0); }
}

@keyframes siteLoaderRing {
    to { transform: rotate(360deg); }
}

@keyframes siteLoaderFailsafe {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media(max-width:500px) {
    .site-loader-logo {
        width: 94px;
        height: 94px;
    }

    .site-loader-skyline {
        height: 54px;
        transform: scale(.88);
        transform-origin: center bottom;
    }

    .site-loader-tagline {
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .site-loader-services {
        max-width: 290px;
        margin-right: auto;
        margin-left: auto;
        line-height: 1.8;
    }
}

/* ================= BLUEPRINT SERVICE ICONS / SAFE RAIL ================= */
.blueprint-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-visual {
    min-height: 590px;
    padding: 10px 0 4px;
    flex-direction: column;
    gap: 17px;
}

.blueprint-card {
    width: 450px;
    height: 480px;
    flex: 0 0 auto;
}

.service-blueprint-grid {
    top: 94px;
    right: 45px;
    bottom: 70px;
    left: 45px;
    gap: 8px;
}

.blueprint-service {
    padding: 7px 8px;
    justify-content: flex-start;
    gap: 5px;
    overflow: hidden;
}

.blueprint-service .blueprint-service-meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    color: inherit;
    font-size: inherit;
    letter-spacing: 0;
}

.blueprint-service .blueprint-number {
    color: #b79354;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.blueprint-service-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    padding: 3px;
    overflow: visible;
    color: #dc2b3e;
    border: 1px solid rgba(208, 37, 53, .36);
    border-radius: 5px;
    background: rgba(208, 37, 53, .08);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.blueprint-service strong {
    font-size: 9.8px;
    line-height: 1.16;
    font-weight: 650;
}

.blueprint-service:hover .blueprint-service-icon,
.blueprint-service:focus-visible .blueprint-service-icon {
    color: #fff;
    border-color: var(--brand-red);
    background: var(--brand-red);
    transform: translateY(-1px);
}

.blueprint-service:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

.blueprint-insight-rail {
    position: relative;
    z-index: 5;
    width: min(510px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.blueprint-insight-rail .floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    padding: 9px 10px;
    gap: 8px;
    transform: none;
}

.blueprint-insight-rail .float-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    color: var(--brand-red);
    font-size: 16px;
}

.blueprint-insight-rail .floating-card div {
    min-width: 0;
}

.blueprint-insight-rail .floating-card small,
.blueprint-insight-rail .floating-card strong {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blueprint-insight-rail .floating-card small {
    font-size: 7px;
    letter-spacing: 1px;
}

.blueprint-insight-rail .floating-card strong {
    margin-top: 2px;
    font-size: 10px;
}

@media(max-width:800px) {
    .hero-visual {
        min-height: 600px;
    }

    .blueprint-card {
        width: min(430px, 94vw);
        height: 465px;
    }
}

@media(max-width:600px) {
    .hero-visual {
        min-height: 535px;
        gap: 13px;
    }

    .blueprint-card {
        height: 435px;
    }

    .service-blueprint-grid {
        top: 74px;
        right: 22px;
        bottom: 58px;
        left: 22px;
        gap: 7px;
    }

    .blueprint-service {
        padding: 6px;
        gap: 4px;
        transform: none;
    }

    .blueprint-service-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        padding: 3px;
    }

    .blueprint-service strong {
        font-size: 8.3px;
        line-height: 1.14;
    }

    .blueprint-insight-rail {
        width: 94vw;
        gap: 6px;
    }

    .blueprint-insight-rail .floating-card {
        padding: 8px 7px;
        gap: 6px;
        transform: none;
    }

    .blueprint-insight-rail .float-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        font-size: 14px;
    }

    .blueprint-insight-rail .floating-card small {
        font-size: 6px;
        letter-spacing: .7px;
    }

    .blueprint-insight-rail .floating-card strong {
        font-size: 8px;
    }
}

@media(max-width:420px) {
    .hero-visual {
        min-height: 520px;
    }

    .blueprint-card {
        height: 420px;
    }

    .service-blueprint-grid {
        top: 72px;
        right: 16px;
        bottom: 54px;
        left: 16px;
        gap: 6px;
    }

    .blueprint-service {
        padding: 5px;
    }

    .blueprint-service-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
        padding: 2px;
    }

    .blueprint-service strong {
        font-size: 8.1px;
    }
}
