/* ====================================================
   DESIGN SYSTEM & VARIABLES (ANAND THEME)
   ==================================================== */

@font-face {
    font-family: geosanslightregular;
    src: url(../fonts/geosanslight-webfont-webfont.eot);
    src: url(../fonts/geosanslight-webfont-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/geosanslight-webfont-webfont.woff2) format('woff2'), url(../fonts/geosanslight-webfont-webfont.woff) format('woff'), url(../fonts/geosanslight-webfont-webfont.ttf) format('truetype'), url(../fonts/geosanslight-webfont-webfont.svg#geosanslightregular) format('svg');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: geosanslightmedium_italic;
    src: url(../fonts/geosanslight-oblique-webfont.woff2) format('woff2'), url(../fonts/geosanslight-oblique-webfont.woff) format('woff');
    font-weight: 400;
    font-style: normal
}
:root {
    --primary: #063767;
    --primary-light: #063767;
    --secondary: #0D1E33;
    --accent: #00AEEF;
    /* Official ANAND Cerulean Blue */
    --accent-rgb: 0, 174, 239;
    --menu-color: #063767;
    /* Requested Menu link color */
    --gold: #C5A059;
    /* Premium SUJÁN Gold color */
    --white: #FFFFFF;
    --bg-dark: #020712;
    --bg-light: #FFFFFF;

    /* Consolidated Typographic Variables */
    --font-family-base: geosanslightregular !important;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-premium: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====================================================
   RESETS & GLOBAL TYPOGRAPHY UNIFICATION
   ==================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    background-color: var(--bg-light);
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base);
    font-weight: 700;
    color: #063767;
}

p {
    font-family: var(--font-family-base);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

a {
    font-family: var(--font-family-base);
    color: inherit;
    text-decoration: none;
    transition: all 0.4s var(--ease-premium);
}

ul {
    list-style: none;
}

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

button,
input,
select,
textarea {
    font-family: var(--font-family-base);
    outline: none;
}

/* Layout Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    scroll-margin-top: 90px;
}

/* ====================================================
   SOLID HEADER WITH BACKGROUND
   ==================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.5s var(--ease-premium);
    background: transparent;
    /* Transparent header background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    /* Subtle divider */
    box-shadow: none;
}

/* Scroll Header transition - Dark Glassmorphism to match white text */
.header.scrolled {
    position: fixed;
    padding: 0.8rem 0;
    background: rgba(6, 26, 56, 0.96);
    /* Brand dark blue glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 32px;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Invert logo to white for dark theme contrast */
}

.header .logo-img {
    filter: none;
    /* Show the original Anand blue logo in the header */
}

/* Navigation menu items */
.main-nav {
    display: block;
    margin-left: auto;
    margin-right: 2.2rem;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    /* White menu links */
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    /* White underline hover */
    transition: width 0.3s ease;
}

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

.nav-caret {
    font-size: 0.65rem;
    color: var(--white);
    /* White carets */
    transition: transform 0.3s;
}

.main-nav a:hover .nav-caret {
    transform: translateY(2px) rotate(180deg);
}

/* Hamburger Menu Toggle Button */
.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: none;
    color: var(--white);
    /* White toggle text */
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.menu-toggle-btn:hover {
    color: var(--accent);
}

.hamburger-icon-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
}

.line-bar {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s;
}

/* ====================================================
   PREMIUM SLIDE-OUT MENU DRAWER
   ==================================================== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 7, 18, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-premium);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: var(--menu-color);
    color: var(--white);
    z-index: 1100;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-premium);
}

.nav-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-logo {
    display: flex;
    align-items: center;
}

.sidebar-logo .logo-img {
    filter: brightness(0) invert(1);
    height: 26px;
}

.sidebar-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.sidebar-close-btn:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-link {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    transition: all 0.3s;
}

.sidebar-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.sidebar-contact-info {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.sidebar-contact-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sidebar-contact-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 8px;
}

.sidebar-tel,
.sidebar-email a {
    font-weight: 600;
    color: var(--white);
}

.sidebar-email a:hover {
    color: var(--accent);
}

.sidebar-socials {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.sidebar-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.sidebar-socials a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ====================================================
   CLEAN EV HERO SECTION (RESTORED BACKGROUND IMAGE & TALLER)
   ==================================================== */
.hero {
    height: 90vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: url('https://www.anandgroupindia.com/wp-content/uploads/2026/08/hero-ban.jpg') center center / cover no-repeat;
    position: relative;
    padding-top: 90px;
}

.hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 7, 18, 0.8) 0%, rgba(2, 7, 18, 0.55) 45%, rgba(2, 7, 18, 0.2) 75%, rgba(2, 7, 18, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left-col {
    max-width: 580px;
}

.hero-title-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-light {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #F8FAFC;
    /* Styled white for dark background */
    line-height: 1.1;
}

.title-bold {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--accent);
    /* Electric blue highlights */
    line-height: 0.95;
}

.hero-title-underline {
    width: 160px;
    height: 3.5px;
    background: var(--accent);
    margin-top: 1.5rem;
}

/* Hero Right Vertical Text Label */
.hero-right-vertical {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    /* Off-white label */
    text-transform: uppercase;
}

.vertical-line {
    width: 1.5px;
    height: 100px;
    background: #cbd5e1;
    margin-top: 20px;
}

/* Hero Scroll Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #cbd5e1;
    text-transform: uppercase;
}

.scroll-mouse-icon {
    width: 18px;
    height: 30px;
    border: 2px solid #cbd5e1;
    border-radius: 9px;
    position: relative;
}

.scroll-wheel {
    width: 3.5px;
    height: 7px;
    background: #cbd5e1;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.6s infinite ease-in-out;
}

@keyframes scrollAnim {
    0% {
        top: 5px;
        opacity: 1;
    }

    50% {
        top: 15px;
        opacity: 0;
    }

    100% {
        top: 5px;
        opacity: 1;
    }
}

/* ====================================================
   THIS IS US SECTION (RESTORED CLEAN DESIGN FROM SCREENSHOT)
   ==================================================== */
/* ====================================================
   THIS IS US SECTION (RELOCATED & REDESIGNED SHOWCASE)
   ==================================================== */
.this-is-us-sec {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.this-is-us-header {
    max-width: 800px;
    margin-bottom: 3.5rem;
}

.this-is-us-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.this-is-us-badge-line {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.5rem;
}

.this-is-us-title {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.this-is-us-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Two Card Showcase Grid */
.us-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.us-showcase-card {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.5s;
    border: 2px solid transparent;
}

.auto-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 174, 239, 0.2);
    border-color: var(--accent);
}

.hospitality-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.25);
    border-color: var(--gold);
}

/* Card Overlays */
.card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 7, 18, 0.1) 0%, rgb(2 7 18 / 31%) 40%, rgb(2 7 18 / 67%) 100%);
    z-index: 1;
}

.card-overlay-gradient-gold {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Showcase content */
.card-showcase-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.showcase-card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

.auto-tag {
    background: rgba(0, 174, 239, 0.2);
    color: #58d3ff;
    border: 1px solid rgba(0, 174, 239, 0.35);
}

.gold-tag {
    background: rgba(197, 160, 89, 0.2);
    color: #e5c07b;
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.card-showcase-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white) !important;
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-showcase-content p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.showcase-bullets {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.showcase-bullets li {
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #58d3ff;
}

.gold-bullets li {
    color: #e5c07b;
}

.showcase-bullets li i {
    font-size: 0.75rem;
}

/* Horizontal Trust Stats Bar Relocated */
.stats-horizontal-bar-relocated {
    background: #f8fafc;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1.5px solid rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0;
}

.stats-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

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

.stats-bar-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-bar-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stats-bar-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #64748b;
}

.text-blue {
    color: var(--accent);
}

/* ====================================================
   STANDALONE BIGGER LOGO SECTIONS
   ==================================================== */
.partners-new-sec,
.customers-new-sec {
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-new-sec {
    background: #f1f5f9;
}

.customers-new-sec {
    background: #e0f7ff;
}

.partners-grid-layout {
    display: grid;
    grid-template-columns: 1fr 648px;
    gap: 50px;
    align-items: center;
}

.customers-grid-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.customers-grid-layout .customers-text-col {
    order: 1;
}

.customers-grid-layout .customers-logos-grid {
    order: 2;
}

.partners-text-col,
.customers-text-col {
    max-width: 480px;
}

.partners-badge,
.customers-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.badge-underline-partners,
.badge-underline-customers {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.2rem;
}

.partners-title,
.customers-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.partners-desc,
.customers-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partners-metrics,
.customers-metrics {
    display: flex;
    gap: 30px;
}

.partner-metric-item,
.customer-metric-item {
    display: flex;
    flex-direction: column;
}

.p-metric-num,
.c-metric-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.p-metric-lbl,
.c-metric-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.partners-static-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.partners-logo-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.partners-static-grid .partner-logo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    width: 150px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-static-grid .partner-logo-card img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.partners-static-grid .partner-logo-card:hover {
    transform: translateY(-8px);
    border-color: #00AEEF;
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.12);
}

@media (max-width: 1024px) {
    .partners-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-logo-row {
        flex-wrap: wrap;
    }

    .partners-static-grid .partner-logo-card {
        width: 140px;
        height: 84px;
    }
}

@media (max-width: 768px) {}

@media (max-width: 480px) {
    .partners-static-grid .partner-logo-card {
        width: 120px;
        height: 72px;
        padding: 10px;
    }

    .partners-logo-row {
        gap: 10px;
    }
}

.partners-logos-grid,
.customers-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.partner-logo-card,
.customer-logo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: all 0.4s var(--ease-premium);
}

.partner-logo-card:hover,
.customer-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.partner-logo-card img,
.customer-logo-card img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* ====================================================
   INNOVATION SECTION
   ==================================================== */
.innovation {
    padding: 40px 0;
    background: url('https://www.anandgroupindia.com/wp-content/uploads/2026/08/innovation-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.innovation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
}

.innovation-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.innovation-text-col {
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.innovation-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.badge-underline-innov {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.8rem;
}

.innovation-title {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    color: var(--primary);
}

.heading-underline-innov {
    width: 68px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.innovation-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.innovation-explore-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.innovation-explore-link:hover {
    color: var(--primary);
}

.innovation-explore-link i {
    transition: transform 0.3s;
}

.innovation-explore-link:hover i {
    transform: translateX(4px);
}

/* 4 Columns Floating Stats cards */

.innov-stats-grid {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
    gap: 15px;
}

.innov-stat-card {
    padding: 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.innov-stat-card:last-child {
    border-right: none;
}

.innov-stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.innov-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

.innov-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.innov-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.innov-txt {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

/* Quote Section block */
.quote-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 1.5px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.quote-mark {
    font-size: 3rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}

.open-quote {
    align-self: flex-start;
}

.close-quote {
    align-self: flex-end;
}

.quote-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.quote-blue {
    color: var(--accent);
}

/* ====================================================
   GLOBAL PRESENCE SECTION (SPLIT SCREEN CARD GRAPHIC)
   ==================================================== */
.global-presence {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.global-presence-split-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
    /* Removed margin-bottom since the footer metrics card is removed */
}

.global-presence-text-pane {
    max-width: 480px;
}

.global-presence-map-pane {
    position: relative;
    width: 100%;
}

.global-presence-text-pane .badge-underline-global {
    margin-top: 6px;
    margin-bottom: 1.8rem;
}

.global-presence-text-pane .global-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.global-presence-text-pane .global-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.global-presence-text-pane .global-explore-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
}

.global-presence-text-pane .global-explore-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Map Graphics and leader lines overlays styling */
.global-presence-map-pane {
    position: relative;
    width: 100%;
}

.global-presence-map-pane .global-map-col {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.global-presence-map-pane .global-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Leader tags layout */
.map-leader-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 15;
    pointer-events: none;
}

.map-leader-tag span {
    font-size: 0.68rem;
    font-weight: 800;
    color: #02304f;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.92);
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.leader-line {
    position: absolute;
    height: 1px;
    background: rgba(0, 174, 239, 0.4);
    transform-origin: left center;
}

/* USA Leader Pointer styling */
.label-na {
    top: 18%;
    left: 16%;
}

.line-na {
    width: 50px;
    top: 100%;
    left: 20px;
    transform: rotate(70deg);
}

/* South America Leader Pointer styling */
.label-sa {
    top: 78%;
    left: 18%;
}

.line-sa {
    width: 55px;
    top: -10px;
    left: 75%;
    transform: rotate(-30deg);
}

/* Europe Leader Pointer styling */
.label-eu {
    top: 16%;
    left: 52%;
}

.line-eu {
    width: 50px;
    top: 100%;
    left: 20px;
    transform: rotate(65deg);
}

/* Middle East Leader Pointer styling */
.label-me {
    top: 28%;
    left: 63%;
}

.line-me {
    width: 55px;
    top: 100%;
    left: -15px;
    transform: rotate(125deg);
}

/* India Leader Pointer styling */
.label-in {
    top: 32%;
    left: 77%;
}

.line-in {
    width: 55px;
    top: 100%;
    left: -15px;
    transform: rotate(120deg);
}

/* Asia Pacific (Japan) Leader Pointer styling */
.label-ap1 {
    top: 26%;
    left: 88%;
}

.line-ap1 {
    width: 45px;
    top: 100%;
    left: -15px;
    transform: rotate(120deg);
}

/* Asia Pacific (Singapore/Australia) Leader Pointer styling */
.label-ap2 {
    top: 78%;
    left: 87%;
}

.line-ap2 {
    width: 40px;
    top: -8px;
    left: -10px;
    transform: rotate(-130deg);
}

/* Pulsing pins styled blue directly on world map graphic */
.global-pulse-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.35);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.global-pulse-pin::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(0, 174, 239, 0.7);
    animation: pinPulse 1.8s infinite ease-out;
}

@keyframes pinPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}



/* ====================================================
   INTERACTIVE MAP LOCATOR SECTION
   ==================================================== */
.map-locator-sec {
    padding: 80px 0;
    background: #FFFFFF;
}

.map-sec-header {
    margin-bottom: 2.5rem;
}

.map-sec-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a365d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-chevrons {
    color: #00B5D8;
    font-family: monospace;
}

.map-sec-line {
    width: 100%;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.15);
}

.map-locator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    height: 480px;
    align-items: stretch;
}

.leaflet-map-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

#leaflet-locations-map {
    height: 100%;
    width: 100%;
    min-height: 380px;
    background: #f1f5f9;
}

.leaflet-custom-marker-wrapper {
    background: none;
    border: none;
}

.custom-leaflet-marker {
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    color: #E53E3E;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-leaflet-marker.selected {
    color: #00B5D8;
    font-size: 2.2rem;
    margin-top: -6px;
}

.custom-leaflet-marker .pin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.3);
    z-index: -1;
    pointer-events: none;
}

.custom-leaflet-marker.selected .pin-ring {
    background: rgba(0, 181, 216, 0.4);
    animation: pinPulse 1.8s infinite ease-out;
}

/* Map Right details card */
.map-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.map-selector-wrap {
    position: relative;
    width: 100%;
}

.map-dropdown {
    width: 100%;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a365d;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: border-color 0.3s;
}

.map-dropdown-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    pointer-events: none;
    font-size: 0.85rem;
}

.map-details-card {
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s var(--ease-premium);
}

.map-details-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 4px;
    line-height: 1.25;
}

.card-subtitle {
    font-size: 0.82rem;
    color: #718096;
    margin-bottom: 0.8rem;
}

.card-address {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.card-phone,
.card-email {
    font-size: 0.88rem;
    color: #4a5568;
    margin-bottom: 6px;
}

.card-email a {
    color: #00B5D8;
    font-weight: 500;
}

.card-email a:hover {
    text-decoration: underline;
}

/* ====================================================
   SUSTAINABILITY SECTION
   ==================================================== */
.sustainability-new {
    display: flex;
    min-height: 520px;
    background: #FFFFFF;
}

.sustain-left-image {
    width: 50%;
    background: url('https://www.anandgroupindia.com/wp-content/uploads/2026/08/forest-canopy.jpg') center center / cover no-repeat;
}

.sustain-right-content {
    width: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    padding: 80px 8%;
}

.sustain-text-wrapper {
    max-width: 500px;
}

.sustain-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.badge-underline-sustain {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.8rem;
}

.sustain-title {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    color: var(--primary);
}

.heading-underline-sustain {
    width: 68px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.sustain-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.sustain-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.sustain-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sustain-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sustain-icon-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.sustain-icon-text p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

.sustain-learn-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sustain-learn-link:hover {
    color: var(--primary);
}

.sustain-learn-link i {
    transition: transform 0.3s;
}

.sustain-learn-link:hover i {
    transform: translateX(4px);
}

/* ====================================================
   LATEST NEWS SECTION
   ==================================================== */
.news {
    padding: 80px 0;
    background: #eef4f8;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.news-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.badge-underline-news {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.view-all-news {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all-news:hover {
    color: var(--accent);
}

.view-all-news i {
    transition: transform 0.3s;
}

.view-all-news:hover i {
    transform: translateX(4px);
}

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

.news-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.4s var(--ease-premium);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.news-img-wrap {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-premium);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 20px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.news-date {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-circle-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    align-self: flex-start;
    transition: all 0.3s;
}

.news-card:hover .news-circle-btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ====================================================
   REDESIGNED SOLID DARK BLUE CONTACT INQUIRY (ZIGZAG SPLIT)
   ==================================================== */
.contact-sec {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.contact-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 174, 239, 0.06) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

/* Zigzag side-by-side grid container */
.contact-split-grid-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Column: Headers & Direct Address list */
.contact-section-info-pane {
    display: flex;
    flex-direction: column;
}

.contact-section-info-pane .contact-sec-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-section-info-pane .badge-underline-contact {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    margin-top: 6px;
    margin-bottom: 1.5rem;
}

.contact-section-info-pane .contact-sec-title {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.contact-section-info-pane .contact-sec-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Direct contacts layout list */
.contact-direct-address-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.direct-address-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.item-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 174, 239, 0.15);
}

.item-text-box h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.item-text-box p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.45;
}

.item-text-box p a:hover {
    color: var(--accent);
}

/* Right Column: Glow Form Card */
.contact-form-dark-card {
    background: #022547;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 25px 65px rgba(2, 37, 71, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.contact-form-dark-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-form-dark-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-form-anand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.form-row-three {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 1.1fr;
    gap: 24px;
}

.form-row-three.email-row {
    grid-template-columns: 1.4fr 0.85fr 1fr;
}

.form-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-left-col,
.form-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field-group {
    position: relative;
    width: 100%;
}

.contact-form-anand input[type="text"],
.contact-form-anand input[type="email"],
.contact-form-anand input[type="tel"],
.contact-form-anand select,
.contact-form-anand textarea {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 400;
    transition: all 0.3s;
    appearance: none;
}

.contact-form-anand input::placeholder,
.contact-form-anand textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.contact-form-anand select {
    color: rgba(255, 255, 255, 0.6);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
}

.contact-form-anand select option {
    background: #022547;
    color: var(--white);
}

.contact-form-anand input:focus,
.contact-form-anand select:focus,
.contact-form-anand textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(0, 174, 239, 0.25);
}

.message-field {
    flex-grow: 1;
    display: flex;
}

.message-field textarea {
    height: 100%;
    resize: none;
}

.form-policy-checkbox {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-mandatory-txt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--white);
    user-select: none;
    gap: 10px;
}

.checkbox-container input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent);
}

.policy-label-txt {
    font-weight: 300;
}

.underline-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

.underline-link:hover {
    color: var(--accent);
}

.form-submit-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-submit-anand-blue {
    background: #01172f;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 42px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-submit-anand-blue:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
    transform: translateY(-1px);
}

.btn-arrows {
    font-family: monospace;
    font-size: 1.15rem;
}

/* ====================================================
   REDESIGNED MODERN PREMIUM FOOTER (DARK THEME)
   ==================================================== */
.footer {
    background: #020617;
    color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-brand-info {
    max-width: 500px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social-wrap {
    display: flex;
    gap: 12px;
}

.footer-social-wrap a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.footer-social-wrap a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
}

.footer-newsletter h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-divider-top,
.footer-divider-bottom {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 30px 0;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 30px;
    align-items: flex-start;
}

.footer-nav-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white) !important;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

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

.footer-nav-col ul a {
    font-size: 0.88rem;
    color: #94a3b8;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav-col ul a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-wreath-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-wreath-svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-wreath-card span {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.footer-bottom-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #ffffff;

    .copyright-txt {
        font-weight: 500;
        color: #ffffff !important;
    }

    .footer-contact-meta {
        display: flex;
        gap: 24px;
    }

    .footer-contact-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .footer-contact-meta i {
        color: var(--accent);
    }

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

    .footer-legal-links a {
        color: #ffffff;
        transition: color 0.3s;
    }

    .footer-legal-links a:hover {
        color: var(--accent);
    }

    /* ====================================================
   SCROLL REVEAL ANIMATION
   ==================================================== */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
    }

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

    /* ====================================================
   RESPONSIVENESS
   ==================================================== */
    @media (max-width: 1024px) {
        .header {
            padding: 1rem 0;
        }

        .main-nav {
            display: none;
        }

        .hero-title-main {
            text-align: left;
        }

        .title-light {
            font-size: 2.5rem;
        }

        .title-bold {
            font-size: 4.5rem;
        }

        .hero-right-vertical {
            display: none;
        }

        .this-is-us-images-grid {
            grid-template-columns: 1fr;
        }

        .us-img-box {
            height: 280px;
        }

        .this-is-us-banners-row {
            grid-template-columns: 1fr;
        }

        .hospitality-card h3,
        .hospitality-card p {
            text-align: left;
        }

        .banner-center-arrow {
            display: none;
        }

        .stats-horizontal-bar {
            grid-template-columns: 1fr 1fr;
            gap: 24px 0;
        }

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

        .stats-bar-item:nth-child(1),
        .stats-bar-item:nth-child(2) {
            border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
            padding-bottom: 16px;
        }

        .partners-grid-layout,
        .customers-grid-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .customers-grid-layout .customers-text-col {
            order: 1;
        }

        .customers-grid-layout .customers-logos-grid {
            order: 2;
        }

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

        .global-presence-split-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .this-is-us-sec,
        .partners-new-sec,
        .customers-new-sec,
        .innovation,
        .global-presence,
        .map-locator-sec,
        .news,
        .contact-sec {
            padding: 65px 0;
        }

        .map-leader-tag {
            display: none;
        }

        .map-locator-container {
            grid-template-columns: 1fr;
            height: auto;
            gap: 30px;
        }

        #leaflet-locations-map {
            min-height: 380px;
        }

        .contact-split-grid-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-form-dark-card {
            padding: 30px 20px;
        }

        .form-row-three {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .form-row-three.email-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .form-split-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .form-left-col,
        .form-right-col {
            gap: 15px;
        }

        .sustainability-new {
            flex-direction: column;
        }

        .sustain-left-image {
            width: 100%;
            height: 350px;
        }

        .sustain-right-content {
            width: 100%;
            padding: 60px 24px;
        }

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

        .footer-top-panel {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-main-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .footer-bottom-panel {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .footer-contact-meta {
            flex-direction: column;
            gap: 10px;
        }

        .global-footer-bar {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .footer-stat-col {
            border-right: none;
            border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 12px;
        }

        .footer-stat-text-block {
            border-left: none;
            padding-left: 0;
            padding-top: 10px;
        }
    }

    @media (max-width: 768px) {
        .menu-toggle-btn .menu-btn-text {
            display: none;
        }

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

        .this-is-us-sec,
        .partners-new-sec,
        .customers-new-sec,
        .innovation,
        .global-presence,
        .map-locator-sec,
        .news,
        .contact-sec {
            padding: 50px 0;
        }
    }

    @media (max-width: 480px) {
        .title-light {
            font-size: 2rem;
        }

        .title-bold {
            font-size: 3.5rem;
        }

        .stats-horizontal-bar {
            grid-template-columns: 1fr;
            gap: 20px 0;
        }

        .stats-bar-item {
            border-right: none !important;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
            padding-bottom: 12px;
        }

        .stats-bar-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

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

        .innov-stat-card {
            border-right: none !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 12px;
        }

        .innov-stat-card:last-child {
            border-bottom: none;
        }

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

        .partners-logos-grid,
        .customers-logos-grid {
            grid-template-columns: 1fr;
        }

        .sustain-us-cards-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    /* ====================================================
   MARQUEE SCROLLING – Partners Logos Marquee
   ==================================================== */
    .partners-logos-marquee-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }

    .partners-logos-marquee {
        display: flex;
        gap: 18px;
        width: max-content;
        animation: marqueeScroll 35s linear infinite;
    }

    .partners-logos-marquee-wrapper:hover .partners-logos-marquee {
        animation-play-state: paused;
    }

    .partners-logos-marquee .partner-logo-card {
        flex-shrink: 0;
        width: 150px;
        height: 90px;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ====================================================
   ANAND'S LOCATIONS – Subtle/Less-Highlighted Title
   ==================================================== */
    .map-locator-sec {
        padding: 60px 0;
        background: #f8fafc !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .map-sec-title--subtle {
        font-size: 1.15rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: #475569;
        text-transform: uppercase;
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .map-sec-line {
        width: 48px;
        height: 2px;
        background: #cbd5e1;
        margin: 8px auto 0;
    }

    /* ====================================================
   OUR OEM CUSTOMERS – Full Grid Layout (No Scroll)
   ==================================================== */
    .customers-header-block {
        max-width: 800px;
        margin-bottom: 2rem;
    }

    .customers-logos-grid-full {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
        margin-top: 2rem;
    }

    @media (max-width: 1024px) {
        .customers-logos-grid-full {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {
        .customers-logos-grid-full {
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
    }

    @media (max-width: 480px) {
        .customers-logos-grid-full {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
    }

    /* ====================================================
   SUSTAINABILITY & US – 3-Card Sub-section
   ==================================================== */
    .sustainability-us-sec {
        padding: 60px 0 70px;
        background: #FFFFFF;
    }

    .sustain-us-header {
        margin-bottom: 2rem;
    }

    .sustain-us-title {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #3d5a80;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sustain-us-chevrons {
        color: #4caf50;
        font-size: 1.1em;
        font-weight: 700;
    }

    .sustain-us-line {
        width: 100%;
        height: 1.5px;
        background: rgba(0, 0, 0, 0.12);
        margin-top: 10px;
    }

    .sustain-us-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .sustain-us-card {
        display: block;
        position: relative;
        border-radius: var(--radius-md);
        overflow: hidden;
        text-decoration: none;
        transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .sustain-us-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    }

    .sustain-us-card-img {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .sustain-us-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s var(--ease-premium);
    }

    .sustain-us-card:hover .sustain-us-card-img img {
        transform: scale(1.06);
    }

    .sustain-us-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
        z-index: 1;
    }

    .sustain-us-card-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        background: rgba(50, 50, 50, 0.85);
        padding: 12px 16px;
    }

    .sustain-us-card-label span {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        color: #ffffff;
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .sustain-us-cards-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }


    }

    /* ====================================================
   CUSTOMER LOGOS - HIDDEN CARDS & VIEW MORE TOGGLE
   ==================================================== */
    .hidden-customer-card {
        display: none !important;
    }

    .view-more-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
    }

    .view-more-btn {
        background: #01172f;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 12px 36px;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s var(--ease-premium);
    }

    .view-more-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
        transform: translateY(-2px);
    }