:root {
    --navy: #0B1220;
    --ink: #1F2937;
    --muted: #64748B;
    --line: #E2E8F0;
    --soft: #F8FAFC;
    --white: #FFFFFF;
    --blue: #2563EB;
    --cyan: #06B6D4;
    --amber: #F59E0B;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

img,
svg {
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 40px));
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding: 28px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue), var(--cyan) 62%, var(--amber));
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.22);
}

.brand-mark svg {
    width: 30px;
    fill: none;
    stroke: white;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-text {
    display: grid;
    gap: 0;
    line-height: 1.05;
    color: var(--navy);
    font-size: 0.9rem;
}

.brand-text strong {
    font-size: 1.08rem;
}

.brand-text span {
    color: var(--muted);
}

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

.nav-links a {
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #334155;
    font-weight: 650;
    font-size: 0.94rem;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.nav-links .nav-cta {
    margin-left: 8px;
    color: white;
    background: var(--navy);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    background:
            linear-gradient(120deg, rgba(255, 153, 51, 0.13), rgba(255, 255, 255, 0.76) 42%, rgba(19, 136, 8, 0.10)),
            radial-gradient(circle at top right, rgba(6, 182, 212, 0.16), transparent 36%),
            radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.16), transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 68px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    color: var(--navy);
    font-size: clamp(2.75rem, 8vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: 0;
    margin-bottom: 24px;
}

h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 18px;
}

h3 {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hero-lede,
.page-hero p,
.split p,
.section-heading p {
    color: var(--muted);
    font-size: 1.16rem;
    max-width: 700px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-promise span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 999px;
    color: #334155;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    font-size: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.24);
}

.button.secondary {
    color: var(--navy);
    background: white;
    border: 1px solid var(--line);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.india-hero-visual::before {
    content: "";
    position: absolute;
    inset: 14px 42px 58px 36px;
    border-radius: var(--radius);
    background:
            linear-gradient(90deg, rgba(255, 153, 51, 0.22), rgba(255, 255, 255, 0.42), rgba(19, 136, 8, 0.16)),
            repeating-linear-gradient(135deg, rgba(11, 18, 32, 0.06) 0 1px, transparent 1px 18px);
    transform: rotate(-2deg);
}

.india-sun {
    position: absolute;
    top: 0;
    right: 56px;
    width: 112px;
    height: 112px;
    border: 2px solid rgba(37, 99, 235, 0.20);
    border-radius: 999px;
    background:
            radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 28%, transparent 29%),
            repeating-conic-gradient(from 0deg, rgba(37, 99, 235, 0.36) 0 5deg, transparent 5deg 15deg);
    opacity: 0.78;
}

.home-carousel {
    position: relative;
    height: min(560px, 68vh);
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.carousel-track,
.carousel-slide {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 650ms ease, transform 650ms ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.08) 52%, rgba(11, 18, 32, 0.18)),
            linear-gradient(180deg, transparent 42%, rgba(11, 18, 32, 0.72));
}

.carousel-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 26px;
    z-index: 2;
    max-width: 360px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(11, 18, 32, 0.62);
    backdrop-filter: blur(14px);
}

.carousel-caption span,
.carousel-caption strong {
    display: block;
}

.carousel-caption span {
    color: #FBBF24;
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.carousel-caption strong {
    color: white;
    font-size: 1.18rem;
    line-height: 1.25;
}

.carousel-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.56);
    cursor: pointer;
    transform: translateY(-50%);
}

.carousel-control::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-top: 2px solid white;
    border-left: 2px solid white;
}

.carousel-control.prev {
    left: 16px;
}

.carousel-control.prev::before {
    transform: rotate(-45deg);
}

.carousel-control.next {
    right: 16px;
}

.carousel-control.next::before {
    transform: rotate(135deg);
}

.carousel-dots {
    position: absolute;
    right: 22px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

.carousel-dots button.active {
    width: 28px;
    background: white;
}

.dashboard-card,
.mini-card,
.service-card,
.text-panel,
.principle-card,
.wide-card,
.solution-card,
.contact-form,
.contact-card,
.cta-panel {
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow);
}

.dashboard-card {
    position: absolute;
    padding: 24px;
}

.main-panel {
    inset: 36px 18px 40px 0;
    background: linear-gradient(160deg, #FFFFFF, #EFF6FF);
}

.side-panel {
    right: 0;
    bottom: 8px;
    width: min(270px, 72%);
    background: var(--navy);
    color: white;
}

.side-panel p {
    color: #CBD5E1;
    margin-bottom: 0;
}

.status-dot {
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 999px;
    background: var(--amber);
    margin-bottom: 16px;
}

.panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
}

.panel-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #CBD5E1;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.metric-grid div {
    padding: 20px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--line);
}

.metric-grid strong {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.metric-grid span {
    color: var(--muted);
    font-size: 0.9rem;
}

.chart-lines {
    height: 150px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, white, #F1F5F9);
    border: 1px solid var(--line);
}

.chart-lines span {
    flex: 1;
    min-width: 22px;
    border-radius: var(--radius) var(--radius) 3px 3px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.chart-lines .bar-one {
    height: 42%;
}

.chart-lines .bar-two {
    height: 64%;
}

.chart-lines .bar-three {
    height: 52%;
}

.chart-lines .bar-four {
    height: 78%;
}

.chart-lines .bar-five {
    height: 68%;
}

.value-strip {
    background: white;
}

.india-trust {
    background: var(--navy);
    color: white;
    padding: 48px 0;
}

.india-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 34px;
}

.india-statement h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    max-width: 760px;
}

.india-statement p:not(.eyebrow) {
    color: #CBD5E1;
    max-width: 760px;
    margin-bottom: 0;
}

.initiative-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.initiative-badge {
    min-height: 168px;
    padding: 22px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.initiative-badge strong,
.initiative-badge small {
    display: block;
}

.initiative-badge strong {
    color: white;
    font-size: 1.2rem;
}

.initiative-badge small {
    color: #CBD5E1;
    font-weight: 750;
}

.badge-mark {
    width: 54px;
    height: 54px;
    display: inline-block;
    margin-bottom: 6px;
}

.digital-mark {
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    background:
            radial-gradient(circle, var(--blue) 0 22%, transparent 24%),
            repeating-conic-gradient(from 0deg, var(--cyan) 0 9deg, transparent 9deg 18deg);
}

.lion-mark {
    position: relative;
    border-radius: 7px;
    background: linear-gradient(135deg, #FF9933, #F59E0B);
}

.lion-mark::before,
.lion-mark::after,
.lion-mark span {
    content: "";
    position: absolute;
    display: block;
    background: var(--navy);
}

.lion-mark::before {
    left: 12px;
    top: 15px;
    width: 31px;
    height: 18px;
    border-radius: 14px 10px 8px 12px;
}

.lion-mark::after {
    right: 8px;
    top: 12px;
    width: 10px;
    height: 12px;
    border-radius: 8px 8px 4px 4px;
}

.lion-mark span {
    left: 10px;
    bottom: 12px;
    width: 35px;
    height: 4px;
    box-shadow: 0 7px 0 var(--navy);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mini-card {
    padding: 22px;
    box-shadow: none;
}

.mini-card strong,
.mini-card span {
    display: block;
}

.mini-card strong {
    color: var(--navy);
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.mini-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.section-heading {
    margin-bottom: 34px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.principle-card,
.solution-card {
    padding: 28px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.principle-card:hover,
.solution-card:hover,
.wide-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
}

.service-card p,
.principle-card p,
.solution-card p,
.wide-card p,
.text-panel p {
    color: var(--muted);
}

.icon-box {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: var(--radius);
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.culture-section {
    background:
            linear-gradient(180deg, #FFFFFF, #F8FAFC),
            radial-gradient(circle at top left, rgba(255, 153, 51, 0.10), transparent 34%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.culture-card {
    position: relative;
    min-height: 340px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.culture-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 18, 32, 0.72)),
            linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(245, 158, 11, 0.18));
    z-index: 1;
}

.culture-card h3,
.culture-card p,
.culture-pattern {
    position: relative;
    z-index: 2;
}

.culture-card h3 {
    color: white;
    font-size: 1.35rem;
}

.culture-card p {
    color: #E2E8F0;
    margin-bottom: 0;
}

.culture-pattern {
    width: 96px;
    height: 96px;
    margin-bottom: auto;
    border-radius: 50%;
    opacity: 0.92;
}

.culture-card.rajasthan {
    background: var(--navy);
}

.culture-card.rajasthan .culture-pattern {
    background:
            repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.90) 0 12deg, transparent 12deg 24deg),
            radial-gradient(circle, rgba(11, 18, 32, 0.28), transparent 58%);
}

.culture-card.kerala {
    background: var(--navy);
}

.culture-card.kerala .culture-pattern {
    border-radius: 8px 42px 8px 42px;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 45%),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 6px, transparent 6px 14px);
}

.culture-card.east {
    background: var(--navy);
}

.culture-card.east .culture-pattern {
    border-radius: 999px 999px 12px 12px;
    background:
            radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.95) 0 18%, transparent 20%),
            repeating-radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 4px, transparent 4px 11px);
}

.feature-band {
    background: #FFFFFF;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 44px;
    align-items: start;
}

.reason-list {
    display: grid;
    gap: 14px;
}

.reason-list div {
    padding: 22px;
    border-radius: var(--radius);
    background: #F8FAFC;
    border: 1px solid var(--line);
}

.reason-list strong,
.reason-list span {
    display: block;
}

.reason-list strong {
    color: var(--navy);
    margin-bottom: 4px;
}

.reason-list span {
    color: var(--muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--navy), #172554);
}

.cta-panel {
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    background:
            linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.10)),
            rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.cta-panel h2 {
    color: white;
    max-width: 760px;
    margin: 0;
}

.page-hero {
    background:
            linear-gradient(120deg, rgba(37, 99, 235, 0.10), rgba(245, 158, 11, 0.08)),
            #F8FAFC;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.text-panel {
    padding: 34px;
}

.accent-panel {
    background: linear-gradient(150deg, #FFFFFF, #EEF8FF);
}

.principles {
    grid-template-columns: repeat(5, 1fr);
}

.service-list {
    display: grid;
    gap: 18px;
}

.wide-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 22px;
    align-items: start;
    transition: transform 180ms ease, border-color 180ms ease;
}

.wide-card h2 {
    font-size: 1.42rem;
    margin: 0;
}

.wide-card span,
.solution-card span {
    color: #475569;
    font-weight: 650;
}

.solutions {
    grid-template-columns: repeat(4, 1fr);
}

.solution-card h2 {
    font-size: 1.22rem;
}

.solution-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.solution-visual-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-visual-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.solution-visual-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.solution-visual-card div {
    padding: 26px;
}

.solution-visual-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 12px;
}

.solution-visual-card p:not(.eyebrow) {
    color: var(--muted);
}

.solution-visual-card span {
    display: block;
    color: #475569;
    font-weight: 750;
}

.compact-solutions {
    align-items: stretch;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.contact-form {
    padding: 32px;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

label {
    color: var(--navy);
    font-weight: 750;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea {
    resize: vertical;
}

.form-status {
    min-height: 26px;
    margin: 16px 0 0;
    color: #047857;
    font-weight: 750;
}

.form-status.error {
    color: #B91C1C;
}

.form-status.success {
    color: #047857;
}

.contact-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.contact-card {
    padding: 24px;
    box-shadow: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card h2 {
    font-size: 1.12rem;
}

.contact-card p,
.contact-card a {
    color: var(--muted);
    margin-bottom: 0;
}

.site-footer {
    color: #CBD5E1;
    background: var(--navy);
    padding: 62px 0 24px;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background:
            linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(6, 182, 212, 0.08)),
            var(--soft);
}

.admin-login-card {
    width: min(420px, 100%);
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.admin-login-brand {
    margin-bottom: 28px;
}

.admin-login-card h1 {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 10px;
}

.admin-login-card p {
    color: var(--muted);
}

.admin-login-card .button {
    width: 100%;
    margin-top: 6px;
}

.admin-alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: #B91C1C !important;
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.admin-body {
    background: #F1F5F9;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.admin-topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.admin-actions a {
    padding: 10px 14px;
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 750;
    background: #EFF6FF;
}

.admin-actions a:hover {
    color: white;
    background: var(--blue);
}

.admin-main {
    padding-top: 54px;
}

.admin-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 26px;
}

.admin-heading h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 0;
}

.admin-note {
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #475569;
    background: white;
    border: 1px solid var(--line);
}

.admin-table-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.admin-table th {
    color: var(--navy);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0;
    background: #F8FAFC;
}

.admin-table td {
    color: #334155;
}

.admin-table td strong,
.admin-table td span {
    display: block;
}

.admin-table td span {
    color: var(--muted);
    font-size: 0.92rem;
}

.message-cell {
    max-width: 360px;
    white-space: normal;
}

.status-pill {
    display: inline-block !important;
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: #075985 !important;
    background: #E0F2FE;
    font-size: 0.8rem !important;
    font-weight: 850;
}

.empty-cell {
    text-align: center !important;
    color: var(--muted) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-india-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.footer-badge {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: white;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.footer-badge .badge-mark {
    width: 34px;
    height: 34px;
    margin: 0;
}

.footer-badge .lion-mark::before {
    left: 8px;
    top: 10px;
    width: 19px;
    height: 12px;
}

.footer-badge .lion-mark::after {
    right: 5px;
    top: 8px;
    width: 7px;
    height: 8px;
}

.footer-badge .lion-mark span {
    left: 7px;
    bottom: 8px;
    width: 22px;
    height: 3px;
    box-shadow: 0 5px 0 var(--navy);
}

.brand-footer .brand-text strong {
    color: white;
}

.footer-brand p {
    max-width: 360px;
}

.site-footer h2 {
    color: white;
    font-size: 1rem;
    margin-bottom: 14px;
}

.site-footer a,
.site-footer p {
    display: block;
    color: #CBD5E1;
    margin: 0 0 10px;
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero-grid,
    .split,
    .contact-grid,
    .india-trust-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.four,
    .solutions,
    .principles,
    .culture-grid,
    .solution-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
    }

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

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1120px);
    }

    .section {
        padding: 68px 0;
    }

    .nav {
        min-height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: white;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

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

    h1 {
        font-size: clamp(2.45rem, 14vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .hero-grid {
        gap: 36px;
    }

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

    .main-panel {
        inset: 0;
    }

    .side-panel {
        right: 14px;
        bottom: -4px;
    }

    .value-grid,
    .card-grid,
    .card-grid.four,
    .solutions,
    .principles,
    .culture-grid,
    .initiative-badges,
    .solution-showcase-grid {
        grid-template-columns: 1fr;
    }

    .india-trust {
        padding: 42px 0;
    }

    .initiative-badge {
        min-height: 132px;
    }

    .culture-card {
        min-height: 300px;
    }

    .wide-card {
        grid-template-columns: 1fr;
    }

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

    .chart-lines {
        height: 96px;
    }

    .cta-panel {
        padding: 30px;
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
