:root {
    --maroon: #7d1219;
    --maroon-2: #4d090d;
    --gold: #d4af37;
    --gold-hot: #e5b80b;
    --cream: #fffdd0;
    --white: #ffffff;
    --ink: #120305;
    --ink-2: #1a080a;
    --ink-3: #260d10;
    --muted: rgba(255, 255, 255, 0.68);
    --line: rgba(212, 175, 55, 0.24);
    --line-soft: rgba(255, 255, 255, 0.09);
    --panel: rgba(255, 255, 255, 0.065);
    --panel-2: rgba(125, 18, 25, 0.2);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --max: 1200px;
}

html.light-theme {
    --cream: #7d1219;
    --white: #221416;
    --ink: #fffaf0;
    --ink-2: #f7efe1;
    --ink-3: #ffffff;
    --muted: rgba(55, 35, 38, 0.72);
    --line: rgba(125, 18, 25, 0.2);
    --line-soft: rgba(125, 18, 25, 0.12);
    --panel: rgba(255, 255, 255, 0.82);
    --panel-2: rgba(255, 255, 255, 0.68);
    --shadow: 0 26px 70px rgba(82, 42, 24, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(229, 184, 11, 0.13), transparent 26rem),
        radial-gradient(circle at 82% 12%, rgba(125, 18, 25, 0.42), transparent 34rem),
        linear-gradient(135deg, #080102 0%, var(--ink) 44%, var(--ink-2) 100%);
}

body {
    padding-top: 86px;
}

html.light-theme body {
    background:
        radial-gradient(circle at 12% 8%, rgba(229, 184, 11, 0.22), transparent 25rem),
        radial-gradient(circle at 84% 14%, rgba(125, 18, 25, 0.12), transparent 34rem),
        linear-gradient(135deg, #fffdf6 0%, #fff7e6 46%, #f7ead4 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 84%);
}

html.light-theme body::before {
    background-image:
        linear-gradient(rgba(125, 18, 25, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 18, 25, 0.055) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), transparent 84%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.32));
}

html.light-theme body::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.22));
}

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

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

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(calc(100% - 24px), calc(var(--max) + 48px));
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: rgba(10, 1, 2, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
    transform: translateX(-50%);
}

html.light-theme .navbar {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(82, 42, 24, 0.12);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand img,
.footer-brand img {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border: 2px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.26);
}

.brand strong,
.footer-brand span {
    display: block;
    color: var(--cream);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.02rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    white-space: nowrap;
}

html.light-theme .brand small {
    color: rgba(55, 35, 38, 0.66);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-links a {
    padding: 10px 11px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
    font-weight: 700;
    transition: 0.2s ease;
}

html.light-theme .nav-links a {
    color: rgba(55, 35, 38, 0.78);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cream);
    background: rgba(212, 175, 55, 0.12);
}

html.light-theme .nav-links a:hover,
html.light-theme .nav-links a.active {
    color: var(--maroon);
    background: rgba(125, 18, 25, 0.08);
}

.nav-links .nav-cta {
    margin-left: 6px;
    color: #1b0506;
    background: linear-gradient(135deg, var(--gold-hot), var(--gold));
    box-shadow: 0 0 26px rgba(229, 184, 11, 0.24);
}

.theme-toggle {
    --eye-fill: #ffffff;
    --eye-pupil: #120305;
    width: 44px;
    min-width: 44px;
    height: 39px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0;
    color: var(--eye-fill);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 900;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 184, 11, 0.58);
}

.theme-eye {
    position: relative;
    display: block;
    width: 28px;
    height: 18px;
    border: 0;
    background: currentColor;
    clip-path: polygon(50% 0, 92% 18%, 100% 50%, 92% 82%, 50% 100%, 8% 82%, 0 50%, 8% 18%);
    filter: drop-shadow(0 0 7px rgba(229, 184, 11, 0.24));
}

.theme-eye::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--eye-pupil);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.32);
    transform: translate(-50%, -50%);
}

.theme-eye::after {
    content: "";
    position: absolute;
    left: 55%;
    top: 33%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html.light-theme .theme-toggle {
    --eye-fill: #120305;
    --eye-pupil: #ffffff;
    background: rgba(125, 18, 25, 0.06);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold);
}

.section-pad {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 92px 24px;
}

.section-tight {
    padding-top: 52px;
}

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    align-items: center;
    gap: 56px;
    padding-top: 98px;
}

.hero-mesh {
    position: absolute;
    inset: 58px 24px 32px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(125, 18, 25, 0.34), transparent 46%),
        radial-gradient(circle at 68% 38%, rgba(229, 184, 11, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.015);
}

html.light-theme .hero-mesh {
    background:
        linear-gradient(115deg, rgba(125, 18, 25, 0.08), transparent 46%),
        radial-gradient(circle at 68% 38%, rgba(229, 184, 11, 0.18), transparent 18rem),
        rgba(255, 255, 255, 0.64);
}

.hero-content,
.hero-console,
.page-hero,
.section-head,
.split-section > *,
.pillar-grid,
.metrics-band,
.news-strip,
.vertical-stack,
.filter-bar,
.portfolio-grid,
.portal-grid,
.footer {
    isolation: isolate;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-hot);
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-hot);
    box-shadow: 0 0 14px rgba(229, 184, 11, 0.7);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Outfit", "Inter", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 930px;
    margin-top: 20px;
    font-size: clamp(2.9rem, 6.7vw, 6.25rem);
    line-height: 0.94;
}

.hero h1 {
    font-size: clamp(1.45rem, 3.35vw, 3.12rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    line-height: 1;
}

h3 {
    font-size: 1.18rem;
    line-height: 1.22;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

html.light-theme .trust-row span,
html.light-theme .console-top span,
html.light-theme .console-footer span,
html.light-theme .console-grid span,
html.light-theme .metric span,
html.light-theme .timeline span,
html.light-theme .job-list span,
html.light-theme .footer a,
html.light-theme .footer-bottom,
html.light-theme .portal-card small {
    color: rgba(55, 35, 38, 0.68);
}

.hero-content p,
.page-hero p {
    max-width: 720px;
    font-size: 1.08rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.trust-row span {
    padding: 9px 12px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.82rem;
    font-weight: 700;
}

html.light-theme .trust-row span {
    color: rgba(55, 35, 38, 0.78);
    background: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    padding: 13px 18px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
    color: #1b0506;
    background: linear-gradient(135deg, var(--gold-hot), var(--gold));
    box-shadow: 0 0 34px rgba(229, 184, 11, 0.24);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.055);
}

html.light-theme .btn-ghost {
    color: var(--maroon);
    background: rgba(255, 255, 255, 0.72);
}

.btn:hover,
.mini-link:hover,
.portal-card:hover {
    transform: translateY(-3px);
}

.hero-console {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(125, 18, 25, 0.18)),
        rgba(18, 3, 5, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

html.light-theme .hero-console,
html.light-theme .glass-card,
html.light-theme .team-card,
html.light-theme .project-card,
html.light-theme .glass-form,
html.light-theme .map-panel,
html.light-theme .portal-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 242, 0.72)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.05), rgba(229, 184, 11, 0.07));
    box-shadow: var(--shadow);
}

.hero-console::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(140deg, rgba(229, 184, 11, 0.44), transparent 36%, rgba(255, 255, 255, 0.08));
}

html.light-theme .hero-console::before {
    background: linear-gradient(140deg, rgba(125, 18, 25, 0.24), transparent 38%, rgba(229, 184, 11, 0.2));
}

.console-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
}

.console-top img {
    width: 82px;
    height: 82px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(229, 184, 11, 0.18);
}

.console-top strong,
.console-footer strong {
    display: block;
    color: var(--cream);
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
}

.console-top span,
.console-footer span,
.console-grid span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.console-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.console-grid div {
    min-height: 102px;
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

html.light-theme .console-grid div,
html.light-theme .timeline div,
html.light-theme .job-list article,
html.light-theme .vertical-row,
html.light-theme .news-strip {
    background: rgba(255, 255, 255, 0.68);
}

.console-grid strong {
    display: block;
    margin-top: 18px;
    color: var(--gold-hot);
    font-family: "Outfit", sans-serif;
    font-size: 1.12rem;
}

html.light-theme .console-grid strong,
html.light-theme .metric strong,
html.light-theme .vertical-row > span,
html.light-theme .card-icon,
html.light-theme .portal-card span,
html.light-theme .footer h3,
html.light-theme .news-strip > span,
html.light-theme .eyebrow {
    color: var(--maroon);
}

.brand-banner {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 32px;
}

.banner-image,
.banner-copy {
    min-height: 360px;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(125, 18, 25, 0.18)),
        rgba(18, 3, 5, 0.72);
    box-shadow: var(--shadow);
}

.banner-image {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.banner-image::before {
    content: "";
    position: absolute;
    inset: -18%;
    background:
        radial-gradient(circle, rgba(229, 184, 11, 0.2), transparent 34%),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.16) 49%, rgba(212, 175, 55, 0.16) 51%, transparent 52%);
    background-size: auto, 34px 34px;
    transform: rotate(-8deg);
}

.banner-image img {
    position: relative;
    width: min(260px, 66%);
    border: 3px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 45px rgba(229, 184, 11, 0.24);
}

.banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    padding: clamp(28px, 5vw, 58px);
}

.banner-copy h2 {
    margin-top: 18px;
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.banner-copy p {
    max-width: 680px;
    font-size: 1.05rem;
}

.banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.banner-tags span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--cream);
    background: rgba(212, 175, 55, 0.1);
    font-weight: 800;
    font-size: 0.84rem;
}

html.light-theme .banner-image,
html.light-theme .banner-copy {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 235, 0.78)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.05), rgba(229, 184, 11, 0.09));
}

.console-line {
    height: 8px;
    margin: 24px 0 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.console-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--maroon), var(--gold-hot));
    box-shadow: 0 0 20px rgba(229, 184, 11, 0.38);
}

.console-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 30px;
}

.section-head h2 {
    max-width: 780px;
}

.pillar-grid,
.value-grid,
.team-grid,
.portfolio-grid,
.media-grid,
.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.glass-card,
.team-card,
.project-card,
.glass-form,
.map-panel,
.portal-card {
    border: 1px solid var(--line-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.18), rgba(0, 0, 0, 0.12));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.glass-card,
.team-card,
.project-card,
.portal-card {
    position: relative;
    min-height: 216px;
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.glass-card::after,
.project-card::after,
.portal-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(229, 184, 11, 0.74), transparent);
    opacity: 0.7;
}

.tilt:hover,
.team-card:hover,
.project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 184, 11, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.24), rgba(0, 0, 0, 0.1));
}

.card-icon {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    height: 40px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--gold-hot);
    background: rgba(212, 175, 55, 0.09);
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
}

.metrics-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1px;
    background: var(--line);
}

.metric {
    padding: 34px 20px;
    text-align: center;
    background: rgba(13, 2, 4, 0.92);
}

html.light-theme .metric {
    background: rgba(255, 255, 255, 0.86);
}

.metric strong {
    display: block;
    color: var(--gold-hot);
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.india-footprint .section-head p {
    max-width: 420px;
    margin: 0;
}

.india-footprint {
    max-width: 1500px;
    margin-top: 40px;
    border-radius: 8px;
    background: #1c2025;
    color: #ffffff;
}

.india-footprint .section-head {
    margin-bottom: 46px;
}

.india-footprint h2,
.india-footprint .section-head p {
    color: #ffffff;
}

.branch-map-layout {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.25fr) minmax(220px, 1fr) minmax(240px, 0.9fr);
    gap: 34px;
    align-items: center;
}

.branch-list {
    position: relative;
    display: grid;
    gap: 34px;
}

.branch-list::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    width: 2px;
    background: rgba(140, 148, 162, 0.55);
}

.branch-list-left::before {
    left: 27px;
}

.branch-list-right::before {
    right: 27px;
}

.branch-list article {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 84px;
}

.branch-list-left article {
    grid-template-columns: 56px 1fr;
}

.branch-list-right article {
    grid-template-columns: 1fr 56px;
    text-align: right;
}

.branch-list-right article > span {
    order: 2;
}

.branch-list article > span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 3px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    background: #a92c2f;
    font: 900 1.35rem "Outfit", sans-serif;
}

.branch-list h3 {
    margin-top: 3px;
    color: #b6383d;
    font-size: 1.08rem;
    text-transform: uppercase;
}

.branch-list p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.35;
}

.branch-india-map {
    position: relative;
    min-height: 430px;
}

.branch-india-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.map-outline {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.38);
    stroke-width: 3;
}

.map-inner {
    fill: rgba(255, 255, 255, 0.02);
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 1.4;
}

.map-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 1.3;
}

.branch-pin {
    position: absolute;
    z-index: 3;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #a92c2f;
    box-shadow: 0 0 0 4px rgba(169, 44, 47, 0.28), 0 14px 28px rgba(0, 0, 0, 0.38);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.branch-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 17px;
    background: #a92c2f;
    transform: translateX(-50%);
}

.branch-pin span {
    position: absolute;
    left: 50%;
    top: -34px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #ffffff;
    background: #a92c2f;
    font-size: 0.8rem;
    font-weight: 900;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.18s ease;
}

.branch-pin:hover span,
.branch-pin:focus span {
    opacity: 1;
}

.branch-cta-card {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 560px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    text-align: center;
}

.branch-shield {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    border: 3px solid #a92c2f;
    border-radius: 16px;
    color: #ffffff;
    font: 900 1.25rem "Outfit", sans-serif;
}

.branch-cta-card h3 {
    max-width: 280px;
    color: #ffffff;
    font-size: 1.35rem;
}

.branch-cta-card p {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.branch-map-caption {
    margin-top: 28px;
}

.branch-map-caption h3 {
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.branch-map-caption p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

html.light-theme .india-footprint {
    background: #1c2025;
}

html.light-theme .branch-list p,
html.light-theme .branch-cta-card p,
html.light-theme .branch-map-caption p {
    color: rgba(255, 255, 255, 0.78);
}

.footprint-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    gap: 22px;
    align-items: stretch;
}

.india-map-card,
.state-table {
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.18), rgba(0, 0, 0, 0.12));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.india-map-card {
    position: relative;
    min-height: 500px;
    padding: 28px;
    overflow: hidden;
}

.india-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.7;
}

.map-total {
    position: relative;
    z-index: 2;
    display: inline-grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

.map-total span,
.state-marker small,
.state-table span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.map-total strong {
    color: var(--gold-hot);
    font: 900 2.1rem "Outfit", sans-serif;
    line-height: 1;
}

.india-shape {
    position: absolute;
    inset: 88px 36px 30px;
}

.india-shape::before {
    content: "";
    position: absolute;
    inset: 3% 6% 2% 6%;
    background:
        radial-gradient(circle at 58% 40%, rgba(229, 184, 11, 0.18), transparent 26%),
        linear-gradient(145deg, rgba(125, 18, 25, 0.12), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 8px;
    box-shadow: inset 0 0 42px rgba(229, 184, 11, 0.09);
}

.india-shape::after {
    content: "Priority Region";
    position: absolute;
    right: 8%;
    bottom: 6%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.78rem;
    font-weight: 900;
}

.state-area {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    border: 2px solid rgba(229, 184, 11, 0.64);
    background: linear-gradient(145deg, rgba(125, 18, 25, 0.72), rgba(229, 184, 11, 0.2));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 0 28px rgba(255, 253, 208, 0.12);
}

.state-area span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.state-area-up {
    left: 14%;
    top: 18%;
    width: 48%;
    height: 28%;
    clip-path: polygon(4% 42%, 16% 18%, 42% 12%, 67% 0, 100% 18%, 94% 58%, 72% 72%, 50% 64%, 34% 86%, 12% 78%);
}

.state-area-bihar {
    left: 58%;
    top: 28%;
    width: 34%;
    height: 20%;
    clip-path: polygon(0 26%, 16% 4%, 72% 0, 100% 28%, 88% 74%, 45% 100%, 8% 82%);
}

.state-area-jharkhand {
    left: 50%;
    top: 52%;
    width: 30%;
    height: 25%;
    clip-path: polygon(18% 0, 72% 7%, 100% 42%, 84% 84%, 42% 100%, 0 70%, 8% 24%);
}

.state-marker {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: var(--marker-size);
    height: var(--marker-size);
    min-width: 34px;
    min-height: 34px;
    border: 2px solid rgba(255, 253, 208, 0.86);
    border-radius: 50%;
    color: #1b0506;
    background: linear-gradient(135deg, var(--gold-hot), var(--gold));
    box-shadow: 0 0 0 9px rgba(229, 184, 11, 0.16), 0 0 32px rgba(229, 184, 11, 0.42);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.state-marker span {
    font: 900 0.74rem "Outfit", sans-serif;
}

.state-marker small {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    min-width: 36px;
    padding: 3px 6px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(10, 1, 2, 0.78);
    transform: translateX(-50%);
    pointer-events: none;
}

.state-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 1px;
    background-color: var(--line-soft);
}

.state-table article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 120px;
    padding: 24px;
    background: rgba(13, 2, 4, 0.9);
}

.state-table strong {
    display: block;
    color: var(--cream);
}

.state-table b {
    color: var(--gold-hot);
    font: 900 2.2rem "Outfit", sans-serif;
}

html.light-theme .india-map-card,
html.light-theme .state-table {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 242, 0.72)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.05), rgba(229, 184, 11, 0.07));
    box-shadow: var(--shadow);
}

html.light-theme .map-total,
html.light-theme .state-table article {
    background: rgba(255, 255, 255, 0.78);
}

html.light-theme .map-total span,
html.light-theme .state-marker small,
html.light-theme .state-table span {
    color: rgba(55, 35, 38, 0.66);
}

html.light-theme .map-total strong,
html.light-theme .state-table b,
html.light-theme .state-table strong {
    color: var(--maroon);
}

html.light-theme .india-shape::before {
    background:
        radial-gradient(circle at 58% 40%, rgba(229, 184, 11, 0.18), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(229, 184, 11, 0.1));
}

html.light-theme .state-area {
    background: linear-gradient(145deg, rgba(125, 18, 25, 0.18), rgba(229, 184, 11, 0.26));
    border-color: rgba(125, 18, 25, 0.36);
}

html.light-theme .state-area span {
    color: rgba(125, 18, 25, 0.58);
}

html.light-theme .india-shape::after {
    color: var(--maroon);
    background: rgba(255, 255, 255, 0.78);
}

html.light-theme .state-marker small {
    background: rgba(255, 255, 255, 0.92);
}

.news-strip {
    max-width: var(--max);
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.news-strip > span {
    color: var(--gold-hot);
    font-weight: 900;
    white-space: nowrap;
}

.ticker {
    flex: 1;
    overflow: hidden;
}

.ticker div {
    display: flex;
    gap: 46px;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker p {
    margin: 0;
    white-space: nowrap;
}

.page-hero {
    padding-top: 128px;
    padding-bottom: 48px;
}

.page-hero h1 {
    max-width: 980px;
}

.page-image-banner {
    min-height: 380px;
    display: flex;
    align-items: end;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(18, 3, 5, 0.7) 42%, rgba(125, 18, 25, 0.16) 100%),
        radial-gradient(circle at 78% 42%, rgba(229, 184, 11, 0.28), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
    background-repeat: no-repeat;
    background-size: cover, cover, min(360px, 46vw);
    background-position: center, center, right 8% center;
    box-shadow: var(--shadow);
}

.page-image-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.62;
}

.page-image-copy {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    margin: 28px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 8px;
    background: rgba(10, 1, 2, 0.68);
    backdrop-filter: blur(16px);
}

.page-image-copy span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold-hot);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.page-image-copy h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4.2vw, 4rem);
}

.page-image-copy p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.about-image-banner {
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(18, 3, 5, 0.66) 42%, rgba(125, 18, 25, 0.12) 100%),
        radial-gradient(circle at 82% 36%, rgba(229, 184, 11, 0.34), transparent 17rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

.verticals-image-banner {
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(77, 9, 13, 0.66) 48%, rgba(212, 175, 55, 0.12) 100%),
        radial-gradient(circle at 78% 40%, rgba(125, 18, 25, 0.48), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

.projects-image-banner {
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(18, 3, 5, 0.68) 44%, rgba(229, 184, 11, 0.12) 100%),
        radial-gradient(circle at 78% 42%, rgba(229, 184, 11, 0.3), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

.careers-image-banner {
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(77, 9, 13, 0.72) 46%, rgba(255, 253, 208, 0.1) 100%),
        radial-gradient(circle at 78% 42%, rgba(229, 184, 11, 0.24), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

.contact-image-banner {
    background-image:
        linear-gradient(90deg, rgba(18, 3, 5, 0.92) 0%, rgba(18, 3, 5, 0.66) 44%, rgba(125, 18, 25, 0.18) 100%),
        radial-gradient(circle at 80% 44%, rgba(229, 184, 11, 0.32), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

html.light-theme .page-image-banner {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 240, 0.82) 44%, rgba(229, 184, 11, 0.12) 100%),
        radial-gradient(circle at 78% 42%, rgba(229, 184, 11, 0.26), transparent 18rem),
        url("../images/satyakarm-edutech-logo.jpeg");
}

html.light-theme .page-image-copy {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(125, 18, 25, 0.16);
}

html.light-theme .page-image-copy h2 {
    color: var(--maroon);
}

html.light-theme .page-image-copy p {
    color: rgba(55, 35, 38, 0.72);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: start;
}

.legal-section {
    display: grid;
    gap: 18px;
    max-width: 980px;
}

.legal-section article {
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.18), rgba(0, 0, 0, 0.12));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.legal-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

html.light-theme .legal-section article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 242, 0.72)),
        linear-gradient(135deg, rgba(125, 18, 25, 0.05), rgba(229, 184, 11, 0.07));
}

.timeline {
    display: grid;
    gap: 14px;
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.timeline div {
    position: relative;
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.timeline div::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 27px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-hot);
    box-shadow: 0 0 18px rgba(229, 184, 11, 0.7);
}

.timeline strong,
.job-list strong,
.project-card span {
    color: var(--cream);
}

html.light-theme .timeline strong,
html.light-theme .job-list strong,
html.light-theme .project-card span {
    color: var(--maroon);
}

.timeline span,
.job-list span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
}

.avatar {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #1b0506;
    background: linear-gradient(135deg, var(--gold-hot), var(--cream));
    font-size: 2rem;
    font-weight: 900;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
}

.vertical-stack {
    display: grid;
    gap: 14px;
}

.vertical-row {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 26px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    transition: 0.22s ease;
}

.vertical-row:hover {
    border-color: rgba(229, 184, 11, 0.5);
    background: rgba(255, 255, 255, 0.065);
}

.vertical-row > span {
    color: var(--gold-hot);
    font: 800 2.1rem "Outfit", sans-serif;
}

.mini-link,
.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 14px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.055);
    font-weight: 900;
    cursor: pointer;
    transition: 0.22s ease;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.filter-btn.active,
.filter-btn:hover {
    color: #1b0506;
    background: var(--gold-hot);
}

.project-card.hidden {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
}

.modal.open {
    display: grid;
}

.modal-panel {
    position: relative;
    width: min(620px, 100%);
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(26, 8, 10, 0.98), rgba(125, 18, 25, 0.78));
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    background: transparent;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.impact-pill {
    display: inline-flex;
    margin-top: 12px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(212, 175, 55, 0.12);
    font-weight: 900;
}

.job-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.job-list article {
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.glass-form {
    border-radius: 8px;
    padding: 28px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--cream);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.23);
    border-radius: 6px;
    padding: 14px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.28);
    outline: none;
}

html.light-theme input,
html.light-theme select,
html.light-theme textarea {
    color: #221416;
    background: rgba(255, 255, 255, 0.72);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-hot);
    box-shadow: 0 0 0 3px rgba(229, 184, 11, 0.12);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-alert {
    margin: 14px 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.form-alert.success {
    background: rgba(26, 138, 82, 0.16);
}

.form-alert.warning {
    background: rgba(229, 184, 11, 0.12);
}

.media-grid a {
    display: block;
}

.map-panel {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    border-radius: 8px;
    padding: 30px;
}

.map-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 55% 45%, rgba(229, 184, 11, 0.22), transparent 10rem),
        linear-gradient(rgba(212, 175, 55, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.12) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}

.map-pin {
    position: absolute;
    top: 38%;
    left: 52%;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    background: var(--gold-hot);
    box-shadow: 0 0 36px rgba(229, 184, 11, 0.74);
    transform: rotate(-45deg);
}

.map-panel h2,
.map-panel p {
    position: relative;
}

.portal-card {
    display: grid;
    align-content: space-between;
    color: var(--white);
}

.portal-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--gold-hot);
    background: rgba(212, 175, 55, 0.12);
    font-family: "Outfit", sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
}

.portal-card small {
    color: rgba(255, 255, 255, 0.62);
}

.footer {
    max-width: none;
    margin: 80px 0 0;
    padding: 68px max(24px, calc((100vw - var(--max)) / 2)) 26px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    background:
        radial-gradient(circle at 50% 10%, rgba(229, 184, 11, 0.1), transparent 30rem),
        linear-gradient(135deg, #191d22, #111418);
    color: #ffffff;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 62px;
}

.footer-contact-row article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 122px;
    padding: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.02);
}

.footer-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    color: #ffffff;
    background: #a92c2f;
    font: 900 0.78rem "Outfit", sans-serif;
}

.footer-contact-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.footer-contact-row strong {
    color: #ffffff;
    font-size: 1.28rem;
}

.footer-contact-row a,
.footer a {
    color: inherit;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.1fr) minmax(260px, 0.9fr);
    gap: 56px;
    align-items: start;
}

.footer h3 {
    position: relative;
    margin-bottom: 34px;
    color: #ffffff;
    font-size: 1.6rem;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 62px;
    height: 3px;
    background: #ffffff;
}

.footer-links a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.17);
    color: rgba(255, 255, 255, 0.76);
    transition: 0.2s ease;
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--gold-hot);
}

.footer-center {
    text-align: center;
}

.footer-brand-large {
    display: inline-grid;
    justify-items: center;
    gap: 14px;
}

.footer-brand-large img {
    width: 96px;
    height: 96px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 34px rgba(229, 184, 11, 0.24);
}

.footer-brand-large span,
.footer-slogan {
    color: #ffffff;
    font: 900 1.35rem "Outfit", sans-serif;
}

.footer-slogan {
    display: inline-flex;
    margin: 26px 0;
    padding: 14px 38px;
    border-radius: 999px;
    background: #a92c2f;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.footer-center p {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.55;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.footer-info p {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.17);
    color: rgba(255, 255, 255, 0.78);
}

.footer-info p span {
    color: #b6383d;
    font-weight: 900;
}

.footer-portals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-portals a {
    padding: 9px 11px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom a:hover {
    color: var(--gold-hot);
}

html.light-theme .footer {
    background:
        radial-gradient(circle at 50% 10%, rgba(229, 184, 11, 0.12), transparent 30rem),
        linear-gradient(135deg, #191d22, #111418);
}

html.light-theme .footer,
html.light-theme .footer h3,
html.light-theme .footer-brand-large span,
html.light-theme .footer-slogan,
html.light-theme .footer-center p,
html.light-theme .footer-contact-row strong {
    color: #ffffff;
}

html.light-theme .footer-contact-row p,
html.light-theme .footer-contact-row a,
html.light-theme .footer-links a,
html.light-theme .footer-info p,
html.light-theme .footer-bottom,
html.light-theme .footer-portals a,
html.light-theme .footer-socials a {
    color: rgba(255, 255, 255, 0.82);
}

html.light-theme .footer-links a,
html.light-theme .footer-bottom span,
html.light-theme .footer-bottom a,
html.light-theme .footer-portals a {
    color: rgba(255, 255, 255, 0.9) !important;
}

html.light-theme .footer-info p span,
html.light-theme .footer-links a:hover,
html.light-theme .footer-info a:hover {
    color: #e35257;
}

html.light-theme .footer-portals a {
    border-color: rgba(229, 184, 11, 0.38);
}

html.light-theme .footer-socials a {
    background: rgba(255, 255, 255, 0.12);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 980px) {
    .navbar {
        top: 0;
        width: calc(100% - 24px);
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        right: 12px;
        left: 12px;
        display: grid;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(10, 1, 2, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: 0.22s ease;
    }

    html.light-theme .nav-links {
        background: rgba(255, 255, 255, 0.97);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links .nav-cta {
        margin-left: 0;
    }

    .hero,
    .brand-banner,
    .footprint-grid,
    .branch-map-layout,
    .split-section {
        grid-template-columns: 1fr;
    }

    .banner-image,
    .banner-copy {
        min-height: auto;
        border-radius: 8px;
    }

    .page-image-banner {
        min-height: 330px;
        background-size: cover, cover, 260px;
        background-position: center, center, right 18px center;
    }

    .page-image-copy {
        margin: 18px;
    }

    .banner-copy {
        border-left: 1px solid var(--line);
        border-top: 0;
    }

    .banner-image {
        min-height: 300px;
        border-bottom: 0;
        border-radius: 8px 8px 0 0;
    }

    .banner-copy {
        border-radius: 0 0 8px 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero-console {
        max-width: 560px;
    }

    .india-map-card {
        min-height: 560px;
    }

    .branch-map-layout {
        gap: 28px;
    }

    .branch-india-map {
        min-height: 520px;
        order: 1;
    }

    .branch-list-left {
        order: 2;
    }

    .branch-list-right {
        order: 3;
    }

    .branch-cta-card {
        min-height: 320px;
        order: 4;
    }

    .branch-list-right article {
        grid-template-columns: 56px 1fr;
        text-align: left;
    }

    .branch-list-right article > span {
        order: 0;
    }

    .branch-list-right::before {
        right: auto;
        left: 27px;
    }

    .pillar-grid,
    .value-grid,
    .team-grid,
    .portfolio-grid,
    .media-grid,
    .portal-grid,
    .metrics-band,
    .footer-contact-row,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head,
    .footer-bottom {
        display: block;
    }

    .footer-center {
        grid-column: 1 / -1;
        order: 3;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 64px 18px;
    }

    .hero {
        padding-top: 72px;
        gap: 34px;
    }

    .brand-banner {
        padding-top: 0;
    }

    .page-image-banner {
        min-height: 420px;
        align-items: end;
        background-size: cover, cover, 220px;
        background-position: center, center, center 42px;
    }

    .page-image-copy {
        margin: 150px 14px 14px;
        padding: 22px;
    }

    h1 {
        font-size: clamp(2.42rem, 14vw, 4rem);
    }

    .brand small {
        display: none;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .hero-mesh {
        inset: 46px 18px 20px;
    }

    .console-grid,
    .pillar-grid,
    .value-grid,
    .team-grid,
    .portfolio-grid,
    .media-grid,
    .portal-grid,
    .metrics-band,
    .state-table,
    .footer-contact-row,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 46px;
    }

    .footer-contact-row {
        gap: 14px;
        margin-bottom: 42px;
    }

    .footer-contact-row article {
        grid-template-columns: 54px 1fr;
        padding: 18px;
    }

    .footer-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 0.68rem;
    }

    .footer-main {
        gap: 36px;
    }

    .footer-center {
        grid-column: auto;
        order: 0;
    }

    .footer-slogan {
        padding: 12px 22px;
        font-size: 1.1rem;
    }

    .footer-info p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .india-map-card {
        min-height: 500px;
        padding: 20px;
    }

    .india-footprint {
        margin-top: 24px;
        border-radius: 0;
    }

    .branch-india-map {
        min-height: 420px;
    }

    .branch-list {
        gap: 22px;
    }

    .branch-list article {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .branch-list article > span {
        width: 48px;
        height: 48px;
        font-size: 1.08rem;
    }

    .branch-list::before {
        left: 23px;
    }

    .branch-list h3 {
        font-size: 0.98rem;
    }

    .branch-list p {
        font-size: 0.82rem;
    }

    .branch-cta-card {
        padding: 26px;
    }

    .india-shape {
        inset: 86px 8px 18px;
    }

    .state-marker small {
        display: none;
    }

    .vertical-row {
        grid-template-columns: 1fr;
    }

    .news-strip {
        display: block;
        margin-inline: 18px;
    }

    .ticker {
        margin-top: 12px;
    }
}
