/* ═══════════════════════════════════════════════════════════
   SHRI BALAJI GROUP — ENTERPRISE DESIGN SYSTEM
   Agency-Grade CSS · Production Ready
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
    /* ── Brand Colors ── */
    --red-900: #5c0d15;
    --red-800: #6b0f1a;
    --red-700: #8b1a25;
    --red-600: #a3202d;
    --red-500: #b22534;
    --red-400: #c43a4a;
    --red-300: #d96070;
    --red-200: #e89aa4;
    --red-100: #f5d0d5;
    --red-50:  #fdf0f2;

    --gold-600: #a8842e;
    --gold-500: #c8a044;
    --gold-400: #d4b35e;
    --gold-300: #e0c87a;
    --gold-200: #eeddb0;
    --gold-100: #f8f0d8;

    --charcoal-900: #111111;
    --charcoal-800: #1a1a1a;
    --charcoal-700: #2a2a2a;
    --charcoal-600: #3d3d3d;
    --charcoal-500: #555555;
    --charcoal-400: #777777;
    --charcoal-300: #999999;
    --charcoal-200: #c4c4c4;
    --charcoal-100: #e5e5e5;
    --charcoal-50:  #f0f0f0;

    --white: #ffffff;
    --off-white: #fafafa;
    --grey-bg: #f5f5f6;

    /* ── Functional Aliases ── */
    --primary: var(--red-700);
    --primary-dark: var(--red-900);
    --text-heading: var(--charcoal-900);
    --text-body: var(--charcoal-600);
    --text-muted: var(--charcoal-400);
    --border: var(--charcoal-100);

    /* ── Typography ── */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', 'Inter', sans-serif;

    /* ── Spacing Scale ── */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 120px;

    /* ── Section Padding (responsive) ── */
    --section-py: clamp(80px, 10vw, 120px);

    /* ── Container ── */
    --container-max: 1400px;
    --container-px: clamp(24px, 4vw, 80px);

    /* ── Transitions ── */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.35s;

    /* ── Shadows ── */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);

    /* ── Radius ── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}


/* ─────────────────────────────────────────────────────────
   RESET
   ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}
a:hover { color: var(--red-500); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-heading);
    line-height: 1.15;
    font-weight: 700;
}


/* ─────────────────────────────────────────────────────────
   GLOBAL CONTAINER — ONE SYSTEM
   ───────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}


/* ─────────────────────────────────────────────────────────
   SECTION BASE
   All sections share identical vertical rhythm
   ───────────────────────────────────────────────────────── */
.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    position: relative;
}

.section--grey { background: var(--grey-bg); }

.section--dark {
    background: var(--charcoal-900);
    color: rgba(255,255,255,0.75);
}


/* ─────────────────────────────────────────────────────────
   SECTION HEADER — UNIFIED ALIGNMENT
   Label → Title → Description all share the SAME left edge.
   This is the single most important alignment pattern.
   ───────────────────────────────────────────────────────── */
.section__header {
    margin-bottom: var(--space-xl);
}

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

.section__header--center .section__desc {
    margin-left: auto;
    margin-right: auto;
}

/* Label */
.section__label {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 100px;
    padding: 0.3rem 1.1rem;
    margin-bottom: var(--space-md);
}

.section__label--light {
    color: var(--gold-400);
    border-color: rgba(212,179,94,0.5);
}

/* Title */
.section__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.section__title--light {
    color: var(--white);
}

/* Description — capped width for readability */
.section__desc {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 750px;
    line-height: 1.75;
}

.section__desc--light {
    color: rgba(255,255,255,0.55);
}

/* Utility color classes */
.text-red  { color: var(--primary); }
.text-gold { color: var(--gold-400); }


/* ─────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--red-900);
    border-color: var(--red-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,26,37,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold-500);
    color: var(--charcoal-900);
    border-color: var(--gold-500);
    font-weight: 700;
}
.btn--gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--charcoal-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,160,68,0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 0.9rem 2.2rem;
    font-size: 0.925rem;
}


/* ═════════════════════════════════════════════════════════
   HERO
   Center-aligned — the one intentional exception
   ═════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(155deg, var(--charcoal-900) 0%, var(--red-900) 45%, var(--charcoal-800) 100%);
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(100px, 14vh, 160px);
    padding-bottom: clamp(60px, 8vh, 100px);
}

.hero__content {
    text-align: center;
    max-width: 820px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--gold-400);
    border: 1px solid rgba(212,179,94,0.4);
    padding: 0.4rem 1.6rem;
    border-radius: 100px;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.hero__company-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 0.35em;
}

.hero__company-shri {
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.hero__company-pali {
    font-size: 0.45em;
    font-weight: 500;
    opacity: 0.55;
    letter-spacing: 0.02em;
}

.hero__tagline {
    font-family: var(--font-hindi);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-400);
    font-weight: 500;
    margin-bottom: clamp(20px, 3vw, 32px);
    letter-spacing: 0.04em;
}

.hero__divider {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.hero__divider span {
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.45;
    margin-bottom: clamp(16px, 2.5vw, 28px);
}

.hero__intro {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.hero__cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}




/* ═════════════════════════════════════════════════════════
   UNIFIED IMAGE SYSTEM
   One design language for every image on the site.
   
   Tokens:
     Border radius:   20px (all frames)
     Object fit:      cover (all images)
     Hover:           scale(1.04) with 0.6s ease
     Shadow (light):  0 4px 20px rgba(0,0,0,0.08)
     Shadow (dark):   0 8px 32px rgba(0,0,0,0.3)
   
   Aspect Ratios:
     Desktop:  16/9  (hero, card, showcase, banner)
               4/3   (aside)
     Tablet:   16/10
     Mobile:   4/3
   ═════════════════════════════════════════════════════════ */

/* ── Base Frame ── */
.img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--charcoal-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.img-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}

.img-frame:hover img {
    transform: scale(1.04);
}

/* ── Hero Image ── */
.img-frame--hero {
    aspect-ratio: 16 / 9;
    max-height: 500px;
    max-width: 820px;
    margin-top: clamp(40px, 6vw, 64px);
    background: var(--charcoal-700);
    box-shadow: 0 16px 56px rgba(0,0,0,0.35);
}

/* ── Service Card Image ── */
.img-frame--card {
    aspect-ratio: 16 / 9;
    margin: 0 var(--space-lg) var(--space-lg);
    background: var(--charcoal-100);
    box-shadow: none;
}

/* ── Showcase Image (Achievements) ── */
.img-frame--showcase {
    aspect-ratio: 16 / 9;
    max-width: 800px;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
    background: var(--charcoal-700);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── Aside Image (Pan India Presence) ── */
.img-frame--aside {
    height: 100%;
    min-height: 250px;
    background: var(--charcoal-100);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ── Banner Image (Contact CTA) ── */
.img-frame--banner {
    aspect-ratio: 16 / 9;
    max-width: 800px;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
    background: var(--charcoal-700);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── Responsive Image Ratios ── */

/* Tablet: slightly taller crops */
@media (max-width: 1024px) {
    .img-frame--hero,
    .img-frame--card,
    .img-frame--showcase,
    .img-frame--banner {
        aspect-ratio: 16 / 10;
    }
}

/* Mobile: squarer crops for smaller viewports */
@media (max-width: 768px) {
    .img-frame--hero,
    .img-frame--showcase,
    .img-frame--banner {
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }

    .img-frame--card {
        aspect-ratio: 4 / 3;
        margin: 0 var(--space-md) var(--space-md);
    }

    .img-frame--aside {
        aspect-ratio: 16 / 10;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .img-frame--hero,
    .img-frame--showcase,
    .img-frame--banner {
        aspect-ratio: 4 / 3;
        max-height: 240px;
    }

    .img-frame--card {
        margin: 0 var(--space-sm) var(--space-sm);
    }
}


/* ═════════════════════════════════════════════════════════
   ABOUT
   ═════════════════════════════════════════════════════════ */
.about__grid {
    display: grid;
    grid-template-columns: 5.5fr 4.5fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.about__lead {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    font-weight: 500;
    color: var(--charcoal-700);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.about__text p {
    color: var(--text-body);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.about__text strong {
    color: var(--charcoal-800);
}

.about__strengths {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--space-lg);
    row-gap: var(--space-sm);
    margin: var(--space-md) 0 var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal-800);
}

.strength-item svg {
    color: var(--primary);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

@media (min-width: 1024px) {
    .about__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.stat-card:hover {
    border-color: var(--red-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stat-card__icon {
    color: var(--primary);
    margin-bottom: var(--space-xs);
    display: flex;
    justify-content: center;
}

.stat-card__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-700);
    line-height: 1.4;
}

/* ── Leadership Showcase ── */
.about__leadership {
    display: flex;
    flex-direction: column;
    gap: var(--space-md); /* Reduced gap to group closer */
    padding-top: 5px; /* Subtle nudge to visually align tops of photos with text cap height */
}

.leadership-portraits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.leadership-card {
    text-align: center;
}

.leadership-card__photo {
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-sm);
    transition: all var(--duration) var(--ease);
}

.leadership-card:hover .leadership-card__photo {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.leadership-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.leadership-card__name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.15rem;
}

.leadership-card__role {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.4;
}

.leadership-note {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--text-body);
    line-height: 1.75;
    /* Removed left border and padding to integrate it more cleanly */
}

.leadership-note p {
    margin-bottom: var(--space-sm);
}

.leadership-note p:last-child {
    margin-bottom: 0;
}

.leadership-note strong {
    color: var(--charcoal-800);
    font-weight: 700;
}


/* ═════════════════════════════════════════════════════════
   SERVICES — BUSINESS VERTICALS
   Equal-height two-column cards
   ═════════════════════════════════════════════════════════ */
.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--red-200);
}

.service-card__header {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--border);
}

.service-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--red-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-card__division-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.service-card__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: var(--space-xs);
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card__list {
    padding: var(--space-md) var(--space-lg);
    flex: 1;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--charcoal-700);
    border-bottom: 1px solid var(--grey-bg);
}

.service-card__list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.65rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--red-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.services__addon {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.92rem;
    color: var(--charcoal-700);
}

.services__addon-icon {
    flex-shrink: 0;
    color: var(--primary);
}


/* ═════════════════════════════════════════════════════════
   WHY US — 4-COLUMN GRID
   ═════════════════════════════════════════════════════════ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--red-100);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card__icon {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.why-card__title {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--space-xs);
}

.why-card__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ═════════════════════════════════════════════════════════
   ACHIEVEMENTS — DARK PRESTIGE
   ═════════════════════════════════════════════════════════ */
.achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.achievement-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.achievement-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.achievement-card--featured {
    background: linear-gradient(145deg, rgba(200,160,68,0.12) 0%, rgba(200,160,68,0.04) 100%);
    border-color: rgba(212,179,94,0.35);
}

.achievement-card--featured:hover {
    background: linear-gradient(145deg, rgba(200,160,68,0.2) 0%, rgba(200,160,68,0.06) 100%);
    box-shadow: 0 12px 40px rgba(200,160,68,0.12);
    border-color: rgba(212,179,94,0.5);
}

.achievement-card__trophy {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.achievement-card__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.achievement-card__org {
    font-size: 0.8rem;
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.achievement-card__year {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.achievement-card__desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}




/* ═════════════════════════════════════════════════════════
   VALUES — NUMBERED GRID
   ═════════════════════════════════════════════════════════ */
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-item {
    padding-top: var(--space-md);
    border-top: 2px solid var(--border);
    transition: border-color var(--duration) var(--ease);
}

.value-item:hover {
    border-top-color: var(--primary);
}

.value-item__number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--red-100);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: color var(--duration) var(--ease);
}

.value-item:hover .value-item__number {
    color: var(--red-200);
}

.value-item__title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: var(--space-xs);
}

.value-item__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ═════════════════════════════════════════════════════════
   PAN INDIA PRESENCE
   ═════════════════════════════════════════════════════════ */
.presence__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.presence__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.presence__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--charcoal-700);
    line-height: 1.6;
}

.presence__list li svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 3px;
}


/* ═════════════════════════════════════════════════════════
   TRUST QUOTE — LUXURY STATEMENT
   Center-aligned — intentional visual anchor
   ═════════════════════════════════════════════════════════ */
.trust-section {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.trust-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-50) 0%, var(--white) 50%, var(--gold-100) 100%);
    opacity: 0.45;
}

.trust-section__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.trust-section__quote-mark {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.5;
    color: var(--red-100);
    margin-bottom: clamp(16px, 2vw, 24px);
}

.trust-section__quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.8vw, 3rem);
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.35;
    max-width: 800px;
    margin: 0 auto clamp(20px, 3vw, 32px);
    letter-spacing: -0.015em;
}

.trust-section__attribution {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ═════════════════════════════════════════════════════════
   LEADERSHIP
   ═════════════════════════════════════════════════════════ */
.leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 680px;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.leader-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--red-200);
}

.leader-card__avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--red-700), var(--red-900));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 16px rgba(139,26,37,0.2);
}

.leader-card__avatar span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.leader-card__name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.leader-card__role {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.leader-card__phone {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}


/* ═════════════════════════════════════════════════════════
   CONTACT — CTA
   Center-aligned — conversion-focused
   ═════════════════════════════════════════════════════════ */
.contact-section {
    text-align: center;
}

.contact__headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.contact__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.contact__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: left;
    margin-bottom: var(--space-xl);
}

.contact__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.contact__card-title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: var(--space-sm);
}

.contact__card-title--spaced {
    margin-top: var(--space-md);
}

.contact__person {
    margin-bottom: 0.65rem;
}

.contact__person strong {
    display: block;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.contact__person a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--duration) var(--ease);
}

.contact__person a:hover {
    color: var(--gold-400);
}

.contact__link {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    word-break: break-all;
    transition: color var(--duration) var(--ease);
}

.contact__link:hover {
    color: var(--gold-400);
}

.contact__address {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}




/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */
.footer {
    background: var(--charcoal-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-lg) 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer__tagline {
    font-family: var(--font-hindi);
    color: var(--gold-500);
    opacity: 0.55;
    font-size: 0.82rem;
}


/* ═════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.20s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.28s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.32s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* ═════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP-FIRST BREAKPOINTS
   Flawless at every viewport
   ═════════════════════════════════════════════════════════ */

/* ── Large Laptop (≤1200px) ── */
@media (max-width: 1200px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ── Laptop (≤1024px) ── */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .presence__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .leadership-portraits {
        max-width: 400px;
    }
}

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
    :root {
        --section-py: clamp(64px, 10vw, 100px);
    }

    .hero {
        min-height: auto;
    }

    .hero__container {
        padding-top: clamp(80px, 14vh, 120px);
        padding-bottom: clamp(48px, 8vh, 80px);
    }

    .hero__cta-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero__cta-row .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

    .leadership-portraits {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .achievements__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .leadership__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

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

    .contact__actions {
        flex-direction: column;
        align-items: center;
    }

    .contact__actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer__inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
    :root {
        --section-py: clamp(56px, 10vw, 80px);
    }

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

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

    .services__addon {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* ── Small Mobile (≤375px) ── */
@media (max-width: 375px) {
    .hero__company-name {
        font-size: 2.5rem;
    }

    .trust-section__quote {
        font-size: 1.4rem;
    }
}


/* ═════════════════════════════════════════════════════════
   PRINT
   ═════════════════════════════════════════════════════════ */
@media print {
    body { font-size: 11pt; color: #000; }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: #8b1a25 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .section { padding: 2rem 0; page-break-inside: avoid; }

    .btn {
        border: 1px solid #333;
        color: #333 !important;
        background: none !important;
    }

    .why-card, .service-card, .achievement-card, .leader-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .section--dark {
        background: #1a1a1a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
