/*
   xaxify — Professional Light Theme
   Inspired by ICICI Bank & India.gov.in
   Navy · Saffron · Green · White
*/

/* Apple SF Pro — closest public web font equivalents */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..900;1,9..40,100..900&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&display=swap');

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
    /* Primary Palette — ICICI Bank Inspired */
    --navy:            #003580;
    --navy-dark:       #002360;
    --navy-deep:       #001646;
    --navy-light:      #1A4EA6;

    /* Accent — India.gov.in Tri-color */
    --saffron:         #FF671F;
    --saffron-light:   #FF8C4B;
    --india-green:     #046A38;
    --india-green-lt:  #058A49;

    /* Neutrals */
    --white:           #FFFFFF;
    --bg-page:         #F4F7FB;
    --bg-section:      #EEF2F8;
    --bg-card:         #FFFFFF;
    --border:          #D9E2F0;
    --border-light:    #E8EDF6;

    /* Text — Apple Typography Colors */
    --text-dark:       #1d1d1f;   /* Apple's exact heading color */
    --text-body:       #3a3a3c;   /* Apple's secondary text */
    --text-gray:       #6e6e73;   /* Apple's tertiary text */
    --text-muted:      #aeaeb2;   /* Apple's quaternary text */
    --text-white:      #FFFFFF;

    /* Semantic */
    --primary:         var(--navy);
    --primary-dark:    var(--navy-dark);
    --accent:          var(--saffron);
    --success:         var(--india-green);

    /* Layout */
    --nav-height:      72px;
    --utility-height:  38px;
    --container-max:   1320px;
    --radius-sm:       6px;
    --radius-md:       10px;
    --radius-lg:       16px;
    --radius-xl:       24px;
    --radius-full:     9999px;

    /* Shadows */
    --shadow-xs:       0 1px 3px rgba(0,53,128,0.08);
    --shadow-sm:       0 2px 8px rgba(0,53,128,0.10);
    --shadow-md:       0 4px 20px rgba(0,53,128,0.12);
    --shadow-lg:       0 8px 40px rgba(0,53,128,0.15);
    --shadow-xl:       0 20px 60px rgba(0,53,128,0.18);

    /* Transitions */
    --ease:            cubic-bezier(0.4, 0, 0.2, 1);
    --transition:      all 0.3s var(--ease);
    --transition-slow: all 0.6s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   UTILITY BAR — ICICI Style Top Strip
   ========================================= */
.utility-bar {
    background: var(--navy-deep);
    height: var(--utility-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.utility-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.utility-bar__left, .utility-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-bar a {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.utility-bar a:hover { color: var(--saffron); }

.utility-bar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
}

.utility-bar__highlight {
    background: var(--saffron);
    color: #fff !important;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
}

.utility-bar__highlight:hover { background: var(--saffron-light) !important; color: #fff !important; }

/* =========================================
   NAVIGATION — Professional Sticky Nav
   ========================================= */
nav#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--saffron);
    height: var(--nav-height);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

nav#navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy) !important;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover { opacity: 0.8; }

/* Fallback text logo styles kept for legacy use */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--saffron);
    font-style: normal;
    font-size: 38px;
    line-height: 1;
    margin-left: 1px;
    font-weight: 700;
}

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

.nav-links li { position: relative; }

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--navy);
    background: var(--bg-section);
}

.nav-links a.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white) !important;
    border-color: var(--saffron);
    box-shadow: 0 4px 14px rgba(255,103,31,0.35);
}
.btn-primary:hover {
    background: var(--saffron-light);
    border-color: var(--saffron-light);
    box-shadow: 0 6px 20px rgba(255,103,31,0.45);
    transform: translateY(-1px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white) !important;
    border-color: var(--navy);
    box-shadow: 0 4px 14px rgba(0,53,128,0.3);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--navy) !important;
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white) !important;
}

.btn-outline-white {
    background: transparent;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* =========================================
   TICKER / ANNOUNCEMENT BAR
   ========================================= */
.ticker-bar {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-bar .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-label {
    background: var(--saffron);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

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

.ticker-scroll {
    display: flex;
    gap: 60px;
    animation: tickerMove 30s linear infinite;
    white-space: nowrap;
}

.ticker-scroll span {
    font-size: 13px;
    color: var(--text-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-scroll span::before {
    content: '◆';
    color: var(--saffron);
    font-size: 8px;
}

@keyframes tickerMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   HERO BANNER
   ========================================= */
.hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,103,31,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(4,106,56,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,103,31,0.2);
    border: 1px solid rgba(255,103,31,0.4);
    color: #FFB085;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .accent { color: var(--saffron); }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats Panel */
.hero-panel {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hero-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.hero-stat:hover { background: rgba(255,103,31,0.12); border-color: rgba(255,103,31,0.3); }

.hero-stat .num {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--saffron);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-icon {
    width: 40px; height: 40px;
    background: rgba(4,106,56,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #6EE7A0;
    flex-shrink: 0;
}

.hero-trust p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.hero-trust strong { color: var(--white); display: block; font-size: 14px; }

/* =========================================
   QUICK LINKS — ICICI Icon Grid
   ========================================= */
.quick-links { background: var(--white); padding: 60px 0; }

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.ql-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ql-card:hover {
    border-color: var(--navy);
    background: var(--bg-section);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ql-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.ql-icon.navy   { background: #EBF0FB; color: var(--navy); }
.ql-icon.orange { background: #FEF0E8; color: var(--saffron); }
.ql-icon.green  { background: #E8F5EE; color: var(--india-green); }
.ql-icon.purple { background: #F0ECF9; color: #6B3FAA; }
.ql-icon.teal   { background: #E5F7F9; color: #0891B2; }
.ql-icon.red    { background: #FEE8E8; color: #DC2626; }

.ql-card:hover .ql-icon.navy   { background: var(--navy); color: #fff; }
.ql-card:hover .ql-icon.orange { background: var(--saffron); color: #fff; }
.ql-card:hover .ql-icon.green  { background: var(--india-green); color: #fff; }
.ql-card:hover .ql-icon.purple { background: #6B3FAA; color: #fff; }
.ql-card:hover .ql-icon.teal   { background: #0891B2; color: #fff; }
.ql-card:hover .ql-icon.red    { background: #DC2626; color: #fff; }

.ql-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--saffron);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px; height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title .accent { color: var(--saffron); }
.section-title .navy   { color: var(--navy); }

.section-sub {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header.left .section-sub { margin: 0; }

/* =========================================
   STATS STRIP — Trust Bar
   ========================================= */
.stats-strip {
    background: var(--navy);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--saffron);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--saffron);
    transition: var(--transition-slow);
    border-radius: 0 0 4px 0;
}

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

.service-card:hover::before { height: 100%; }

.service-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    background: #EBF0FB;
    color: var(--navy);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 8px;
    transition: var(--transition);
}

.service-link i { font-size: 10px; transition: var(--transition); }
.service-link:hover { color: var(--saffron); }
.service-link:hover i { transform: translateX(4px); }

/* =========================================
   SPOTLIGHT / PROJECT CARDS
   ========================================= */
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.spotlight-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.spotlight-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.spotlight-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.spotlight-card.featured .spotlight-thumb {
    aspect-ratio: unset;
    width: 45%;
    font-size: 64px;
}

.spotlight-body { padding: 28px; flex: 1; }

.spotlight-tag {
    display: inline-block;
    background: var(--bg-section);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.spotlight-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.spotlight-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.spotlight-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    background: var(--bg-section);
    border: 1px solid var(--border);
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* =========================================
   TESTIMONIAL CARDS
   ========================================= */
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.quote-icon {
    font-size: 40px;
    color: var(--saffron);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    font-family: serif;
    font-weight: 700;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.testimonial-author span {
    font-size: 12px;
    color: var(--saffron);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stars { color: #FBBF24; font-size: 14px; margin-bottom: 16px; }

/* =========================================
   WHY XAXIFY — Split Layout
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 24px; }

.why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.why-point:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.why-point-icon {
    width: 48px; height: 48px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-point:hover .why-point-icon { background: var(--navy); color: #fff; }

.why-point h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 6px; }
.why-point p  { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* Why Visual Panel */
.why-visual {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,103,31,0.2) 0%, transparent 70%);
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--saffron) 0%, #E55010 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--navy-deep);
    color: var(--white);
}

.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand .logo {
    font-size: 28px;
    color: var(--white) !important;
    margin-bottom: 20px;
    display: inline-block;
    font-style: italic;
}
.footer-brand .logo span { color: var(--saffron); font-style: normal; }

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    cursor: pointer;
}

.social-btn:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.footer-col ul li a:hover { color: var(--saffron); padding-left: 3px; }

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-item:last-child { margin-bottom: 0; }

.footer-contact-item i {
    color: var(--saffron);
    width: 14px;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--saffron); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--india-green) 50%, var(--navy-light) 100%);
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--saffron); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
}

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

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.7;
}

/* =========================================
   CARDS GRID
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }

.contact-icon {
    width: 52px; height: 52px;
    background: #EBF0FB;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-info-card h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}
.contact-info-card a:hover { color: var(--navy); }

.contact-form-wrap {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-page);
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,53,128,0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* =========================================
   ABOUT PAGE — Philosophy Cards
   ========================================= */
.philosophy-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    border-top: 4px solid var(--saffron);
    transition: var(--transition);
}

.philosophy-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.philosophy-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.philosophy-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* =========================================
   ABOUT — Metrics
   ========================================= */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.metric-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--india-green));
    opacity: 0;
    transition: var(--transition);
}

.metric-card:hover { box-shadow: var(--shadow-lg); }
.metric-card:hover::before { opacity: 1; }

.metric-num {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.metric-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover { background: var(--bg-section); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .utility-bar { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .spotlight-card.featured { flex-direction: column; grid-column: span 1; }
    .spotlight-card.featured .spotlight-thumb { width: 100%; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .mobile-menu-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border-bottom: 2px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); }

    .section { padding: 56px 0; }

    .hero { padding: 56px 0 64px; }

    .quick-links-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
    .stat-item { border-right: none; }

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

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

    .contact-form-wrap { padding: 28px; }

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

    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
}
