@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg: #ffffff;
    --color-brand-navy: #3869B3;
    --color-brand-green: #00d084;
    --color-text-nav: #3869B3;
    --color-text-nav-hover: #6FBF4C;
    --color-button-bg: #3869B3;
    --color-button-hover: #6FBF4C;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: #333333;
    overflow-x: hidden;
    width: 100%;
}

/* Header Container */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    height: auto;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .header-container {
    padding: 10px 50px;
}

.header-container {
    position: relative;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: -10px 0;
    /* offset white padding in image */
}

/* Utilities */
body.no-scroll {
    overflow: hidden;
}

.mobile-cta {
    display: none;
}

/* Navigation Menu */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-nav);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link svg.chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Hover effects */
.nav-link:hover {
    color: var(--color-text-nav-hover);
}

.nav-link:hover svg.chevron {
    transform: translateY(2px);
    color: var(--color-text-nav-hover);
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-brand-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item:hover .dropdown-menu,
.nav-item:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu styling */
.mega-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 700px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    gap: 48px;
    z-index: 100;
}

.mega-menu-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-col h4 {
    color: var(--color-brand-navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    letter-spacing: 0.5px;
}

.mega-menu-col h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-brand-green);
}

.dropdown-link {
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.dropdown-link:hover {
    background-color: #f0fdf4;
    color: var(--color-brand-green);
    transform: translateX(4px);
}

/* Contact Us Button - Battery Design */
.cta-container {
    display: flex;
    align-items: center;
}

.battery-btn-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.battery-btn {
    background-color: var(--color-button-bg);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 29, 143, 0.2);
}

/* Battery Terminal Tip */
.battery-btn-wrapper::after {
    content: '';
    position: absolute;
    right: -5px;
    width: 6px;
    height: 16px;
    background-color: var(--color-button-bg);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    transition: var(--transition-smooth);
    box-shadow: 2px 2px 5px rgba(6, 29, 143, 0.15);
}

.battery-btn-wrapper:hover .battery-btn {
    background-color: var(--color-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 44, 213, 0.35);
}

.battery-btn-wrapper:hover::after {
    background-color: var(--color-button-hover);
    transform: translateY(-2px);
}

.battery-btn-wrapper:active .battery-btn {
    transform: translateY(0);
}

.battery-btn-wrapper:active::after {
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.burger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-brand-navy);
    position: relative;
    transition: background-color 0.3s ease;
}

.burger::before,
.burger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-brand-navy);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.burger::before {
    top: -6px;
}

.burger::after {
    top: 6px;
}

/* Active Burger State */
.mobile-toggle.active .burger {
    background-color: transparent;
}

.mobile-toggle.active .burger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.active .burger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Responsive / Mobile Drawer */
@media (max-width: 1024px) {
    .nav-list {
        gap: 16px;
    }
}

.mobile-header-action {
    display: none;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        z-index: 1010 !important;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: transparent;
        border: none;
    }

    .desktop-header-action {
        display: none !important;
    }

    .mobile-header-action {
        display: block;
        margin-top: 30px;
        width: 100%;
    }

    .main-nav {
        position: fixed;
        display: block;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1005;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        justify-content: space-between;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--color-brand-green);
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        padding: 0 0 16px 16px;
        display: none;
        width: 100%;
    }

    .nav-item.active .dropdown-menu,
    .nav-item.active .mega-menu {
        display: flex !important;
        flex-direction: column !important;
    }

    .mega-menu,
    .dropdown-menu {
        flex-direction: column;
        min-width: 100%;
        gap: 16px;
    }

    .nav-item.active .dropdown-menu,
    .nav-item.active .mega-menu {
        display: flex;
    }

    .nav-item.active .nav-link svg.chevron {
        transform: rotate(180deg);
        color: var(--color-brand-green);
    }

    .cta-container {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 24px;
        width: 100%;
        text-align: center;
    }

    .mobile-cta .battery-btn-wrapper {
        width: 100%;
        justify-content: center;
    }

    .mobile-cta .battery-btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section Styles */

.hero-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 80px;
    /* Offset for header */
}

.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
}

.info-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0, 208, 132, 0.4);
    border-radius: 8px;
    padding: 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

/* Stagger animations so they don't all float together */
.info-card:nth-child(even) {
    animation: cardFloatEven 3s ease-in-out infinite alternate;
}

.info-card:nth-child(odd) {
    animation: cardFloatOdd 3.5s ease-in-out infinite alternate;
}

.info-card h4 {
    color: var(--color-brand-green);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 4px 0;
    white-space: nowrap;
}

.info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-card ul li {
    font-size: 10px;
    color: var(--color-brand-navy);
    position: relative;
    padding-left: 10px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.info-card ul li::before {
    content: "•";
    color: var(--color-brand-green);
    position: absolute;
    left: 0;
    font-size: 10px;
}

@keyframes cardFloatEven {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    100% {
        transform: translate(-50%, -50%) translateY(-6px);
    }
}

@keyframes cardFloatOdd {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    100% {
        transform: translate(-50%, -50%) translateY(-4px);
    }
}

/* Animated Car Styles */
.animated-hero-car {
    position: absolute;
    width: 60px;
    /* Adjust as necessary */
    z-index: 5;
    bottom: 30%;
    left: 30%;
    animation: driveCar 8s linear infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

@keyframes driveCar {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        /* Isometric movement path roughly matching standard isometric grid, reversed */
        transform: translate(-90vw, 45vw);
        opacity: 0;
    }
}

/* Responsive scaling for cards */
@media (max-width: 1400px) {
    .info-card {
        padding: 4px 8px;
    }

    .info-card h4 {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .info-card ul li {
        font-size: 7px;
        padding-left: 6px;
        margin-bottom: 1px;
    }

    .info-card ul li::before {
        font-size: 8px;
    }
}

@media (max-width: 992px) {

    @keyframes floatAnimation {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Mobile responsive hero styling */
    @media (max-width: 992px) {
        .hero-section {
            flex-direction: column-reverse;
            padding: 120px 24px 60px;
            gap: 50px;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 40px;
            line-height: 1.15;
        }

        .hero-features {
            justify-content: center;
            max-width: 480px;
            grid-template-columns: repeat(2, auto);
            gap: 16px 24px;
        }

        .hero-buttons {
            justify-content: center;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .hero-features {
            grid-template-columns: 1fr;
            align-items: center;
        }

        .hero-buttons {
            flex-direction: column;
            gap: 12px;
        }

        .hero-buttons a {
            width: 100%;
            text-align: center;
        }
    }
}

/* =========================================
   FOOTER STYLES (GREEN DRIVE MOBILITY)
   ========================================= */

/* =========================================
   OUR MOTIVE SECTION
   ========================================= */
.motive-section {
    position: relative;
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
}

.motive-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: linear-gradient(rgba(11, 158, 67, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 158, 67, 0.4) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2);
    transform-origin: top center;
    z-index: 1;
    pointer-events: none;
}

.motive-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    /* Mask is flat so it tracks the mouse perfectly without 3D distortion */
    mask-image: radial-gradient(circle 180px at var(--x) var(--y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 180px at var(--x) var(--y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: mask-image, -webkit-mask-image;
}

.motive-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#0b9e43 2px, transparent 2px), linear-gradient(90deg, #0b9e43 2px, transparent 2px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2);
    transform-origin: top center;
}

.motive-section:hover .motive-glow {
    opacity: 1;
}

.motive-pin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(111, 191, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

@keyframes radarPing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.motive-pin::before,
.motive-pin::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(11, 158, 67, 0.6);
    animation: radarPing 2.5s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.motive-pin::after {
    animation-delay: 1.25s;
}

.pin-1 {
    top: 20%;
    left: 15%;
}

.pin-2 {
    top: 10%;
    right: 20%;
}

.pin-3 {
    top: 60%;
    right: 10%;
}

.motive-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.motive-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

.navy-text {
    color: #3869B3;
    font-size: 48px;
    font-weight: 800px;
}

.green-text {
    color: #00d084;
    font-size: 48px;
    font-weight: 800px;
}

.motive-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #222222;
    margin-bottom: 30px;
    font-weight: 500;
}

.motive-highlight {
    font-size: 20px;
    line-height: 1.6;
    color: #00d084;
    font-weight: 700;
}

@media (max-width: 768px) {
    .motive-section {
        padding: 60px 20px;
    }

    .motive-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .navy-text,
    .green-text {
        font-size: 32px;
    }

    .motive-desc,
    .motive-highlight {
        font-size: 16px;
    }

    .motive-pin {
        width: 30px;
        height: 30px;
    }

    .motive-pin::before,
    .motive-pin::after {
        width: 40px;
        height: 40px;
    }
}

.site-footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Marquee Banner */
.footer-banner {
    background-color: #0b9e43;
    padding: 12px 0;
    overflow: hidden;
    color: #ffffff;
    font-weight: 600;
    font-size: 36px;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.banner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 50px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer Main */
.footer-main {
    background: linear-gradient(0deg, #6FBF4C -100%, hsla(0, 0%, 100%, 0) 121.58%);
    padding: 120px 26px 0px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

/* SVG Hover States */
.social-icon-svg {
    transition: all 0.3s ease;
}

.social-icon-link:hover .social-icon-svg circle {
    fill: #0b9e43;
}

.social-icon-link:hover .social-icon-svg path {
    fill: #ffffff;
}

/* Links */
.footer-link-item {
    color: #111111;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.2s ease;
    line-height: 2.8;
}

.footer-link-item:hover {
    color: #0b9e43;
}

.address-row {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 12px;
}

.address-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 4px;
    color: #0b9e43;
}

.address-text {
    color: #222222;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    text-wrap: inherit;
}

.address-title {
    font-size: 18px;
    font-weight: 500;
    color: #0b9e43;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.5px;
}

.contact-title {
    font-weight: 700;
    color: #111111;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-links a {
    color: #222222;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.6;
}

.contact-links a:hover {
    color: #0b9e43;
}

.footer-separator {
    border-top: 1px solid rgba(11, 158, 67, 0.15);
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    font-size: 18px;
    color: #222222;
    font-weight: 400;
    margin-bottom: 150px;
}

.footer-tnc {
    display: flex;
    gap: 30px;
}

.footer-tnc a {
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-tnc a:hover {
    color: #0b9e43;
}

/* Large Footer Title SVG */
.footer-large-title-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 80%;
    pointer-events: none;
}

/* Footer layout specifics */
.footer-left {
    width: 10%;
    min-width: 200px;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-right {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 40px;
}

.footer-links-wrapper {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.address-col {
    max-width: 500px;
}

.contact-col {
    min-width: 180px;
}

.scroll-top {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-top {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-links-wrapper {
        justify-content: flex-start;
        gap: 60px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-address-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-large-title {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-tnc {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Analytic Count Section */
.analytic-count-section {
    position: relative;
    padding: 100px 5%;
    background-color: #3869B3;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.analytic-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    mask-image: radial-gradient(circle 180px at var(--mouse-x) var(--mouse-y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 180px at var(--mouse-x) var(--mouse-y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: mask-image, -webkit-mask-image;
}

.analytic-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#0b9e43 2px, transparent 2px), linear-gradient(90deg, #0b9e43 2px, transparent 2px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2);
    transform-origin: top center;
}

.analytic-count-section:hover .analytic-glow {
    opacity: 1;
}

.analytic-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2);
    transform-origin: top center;
    z-index: 1;
}

.analytic-pin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.analytic-pin::before,
.analytic-pin::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(111, 191, 76, 0.9);
    animation: radarPing 2.5s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.analytic-pin::after {
    animation-delay: 1.25s;
}

.analytic-pin-1 {
    top: 20%;
    left: 15%;
}

.analytic-pin-2 {
    top: 10%;
    right: 20%;
}

.analytic-pin-3 {
    top: 60%;
    right: 10%;
}

.analytic-count-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.analytic-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.analytic-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.analytic-item {
    flex: 1;
    min-width: 250px;
}

.analytic-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analytic-number .plus {
    color: var(--color-brand-green);
    font-size: 56px;
    font-weight: 700;
    margin-left: 4px;
}

.analytic-divider {
    height: 3px;
    width: 100%;
    background-color: var(--color-brand-green);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.analytic-label {
    font-size: 18px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .analytic-grid {
        flex-direction: column;
        gap: 60px;
    }

    .analytic-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .analytic-number {
        font-size: 48px;
    }

    .analytic-number .plus {
        font-size: 42px;
    }
}

/* Knowledge Hub Section */
.knowledge-hub-section {
    padding: 100px 5%;
    background-color: var(--color-bg);
}

.knowledge-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.knowledge-line {
    width: 6px;
    height: 70px;
    background-color: #5cf1a9;
    /* Bright green as in reference */
    margin: 0 auto 20px;
}

.knowledge-title {
    font-size: 42px;
    font-weight: 800;
}

.knowledge-title .navy-text {
    color: #1a43a8;
    /* Deep blue from reference */
}

.knowledge-title .green-text {
    color: #0b9e43;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.knowledge-card {
    display: flex;
    flex-direction: column;
}

.knowledge-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.knowledge-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.knowledge-card:hover .knowledge-img-wrapper img {
    transform: scale(1.05) translateZ(0);
}

.knowledge-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.knowledge-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a43a8;
}

.knowledge-arrow {
    color: #6FBF4C;
    transition: transform 0.3s ease;
    transform: translateZ(0);
}

.knowledge-card:hover .knowledge-arrow {
    transform: translateX(4px);
}

.knowledge-divider {
    height: 1.5px;
    width: 100%;
    background-color: rgba(111, 191, 76, 0.4);
    margin-bottom: 16px;
}

.knowledge-desc {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .knowledge-title {
        font-size: 32px;
    }
}

/* Services in India Section */
.services-india-section {
    padding: 100px 5%;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-india-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: linear-gradient(rgba(11, 158, 67, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 158, 67, 0.4) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2);
    transform-origin: top center;
    z-index: 0;
    pointer-events: none;
}

.services-india-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-journey-section {
    padding: 80px 0 20px 0;
    background-color: transparent;
    overflow: hidden;
}

.journey-scroll-container {
    height: 300vh;
    position: relative;
    width: 100%;
}

.journey-roadmap-wrapper {
    position: sticky;
    top: 100px;
    /* Offset for header */
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin: 0;
}

.journey-roadmap-img {
    height: 100vh;
    width: 200vh;
    max-width: none;
    display: block;
    will-change: transform;
}

.centered-map-layout {
    display: block;
    width: 100%;
}

.services-map-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
}

.india-map-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(56, 105, 179, 0.15));
}

/* Interactive Map Dots */
.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--color-brand-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.3);
    z-index: 10;
}

.map-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-brand-green);
    animation: pulseDot 2s infinite ease-out;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    border: 2px solid var(--color-brand-green);
    padding: 12px 20px;
    border-radius: 12px;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 20;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-brand-green) transparent transparent transparent;
}

.map-dot:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-tooltip h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brand-navy);
    margin-bottom: 5px;
}

.map-tooltip p {
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    margin: 0;
}

@media (max-width: 900px) {
    .services-india-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .map-tooltip {
        min-width: 150px;
        padding: 8px 12px;
    }

    .map-tooltip h4 {
        font-size: 14px;
    }

    .map-tooltip p {
        font-size: 11px;
    }
}

/* ==========================================================================
/* ==========================================================================
   Explore Our Services Section (2-Column Layout)
   ========================================================================== */
.explore-services-section {
    padding: 80px 0;
    background-color: var(--color-bg, #ffffff);
    overflow: hidden;
}

.explore-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Image */
.explore-left {
    width: 100%;
    display: flex;
    justify-content: center;
}

.explore-left img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
}

/* Right Content */
.explore-right {
    display: flex;
    flex-direction: column;
}

.explore-title {
    font-size: 32px;
    text-align: center;
    color: #1a9e4e;
    font-weight: 800;
    margin-bottom: 50px;
    font-family: var(--font-main, 'Inter', sans-serif);
}

/* Timeline Wrappper */
.services-timeline-wrap {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Vertical Line connecting nodes */
.timeline-vertical-line {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 27px;
    /* 20px padding + 7px to center */
    width: 2px;
    background-color: #e0e5eb;
    z-index: 1;
}

/* Individual Service Cards */
.service-list-card {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 16px 20px;
    margin-left: 30px;
    /* Space for the node on the timeline */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.service-list-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: #d0d7e5;
}

/* Timeline Node (Circle) */
.timeline-node {
    position: absolute;
    left: -30px;
    /* Pushes it onto the vertical line */
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e0e5eb;
    background-color: #ffffff;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Active State Styling */
.service-list-card.active {
    border: 2px solid #1a9e4e;
    box-shadow: 0 8px 30px rgba(26, 158, 78, 0.1);
}

.service-list-card.active .timeline-node {
    border-color: #1a9e4e;
    background-color: #1a9e4e;
    box-shadow: 0 0 0 4px rgba(26, 158, 78, 0.2);
    width: 18px;
    height: 18px;
    left: -31px;
}

.service-list-card.active .service-card-arrow svg {
    background-color: #1a9e4e;
    color: #ffffff;
    stroke: #ffffff;
    border-radius: 6px;
}

/* Card Internals */
.service-card-icon {
    width: 48px;
    height: 48px;
    background-color: #f7f9fc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 4px 0;
}

.service-card-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Right Arrow */
.service-card-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.service-card-arrow svg {
    width: 28px;
    height: 28px;
    padding: 4px;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.service-list-card:hover .service-card-arrow svg {
    color: #1a202c;
}

/* Responsive */
@media (max-width: 992px) {
    .explore-container {
        grid-template-columns: 1fr;
    }

    .explore-left {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Media Page Styling
   ========================================================================== */

/* Hero Section */
.media-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    /* Offset for fixed header */
}

.media-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.media-hero-content {
    position: relative;
    z-index: 2;
}

.media-hero-content h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-secondary, 'Outfit', sans-serif);
}

/* Common Section Headers */
.media-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.media-section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a9e4e;
    /* Green for "Latest" */
}

.media-section-title.dark {
    color: #3869B3;
    font-size: 48px;
    font-weight: 800;
}

/* Latest Section */
.media-latest {
    padding: 60px 0;
    background-color: #ffffff;
}

.media-pagination {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #1a9e4e;
    color: #ffffff;
    border-color: #1a9e4e;
}

.latest-card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.latest-img {
    flex: 1;
}

.latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-content {
    flex: 1;
    background-color: #111827;
    /* Dark navy/black */
    color: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.latest-content .news-date {
    color: #f59e0b;
    /* Yellow date */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a9e4e;
    /* Green title */
    margin: 0;
}

.latest-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 8px;
}

.latest-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b5563;
    cursor: pointer;
}

.latest-dots .dot.active {
    background: #1a9e4e;
}

/* All News Section */
.media-all-news {
    padding: 60px 0;
    background-color: #f9fafb;
}

.media-filters {
    display: flex;
    gap: 15px;
}

.filter-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 33px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
    font-weight: 400;
    width: 440px;
    height: 75px;
}

/* Filter Wrappers and Popovers */
.filter-wrapper {
    position: relative;
}

.filter-popover {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.filter-popover.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.timeline-popover .popover-arrow {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #d1d5db;
    border-top: 1px solid #d1d5db;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.current-year {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.year-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
}

.month-btn {
    background-color: #d1fae5;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 18px;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
}

.month-btn:hover {
    background-color: #a7f3d0;
}

.month-btn.active {
    font-weight: 700;
}

.sort-list {
    display: flex;
    flex-direction: column;
    max-height: 280px;
    overflow-y: auto;
    padding: 12px;
    gap: 4px;
}

/* Custom Scrollbar for sort-list */
.sort-list::-webkit-scrollbar {
    width: 6px;
}
.sort-list::-webkit-scrollbar-track {
    background: transparent;
}
.sort-list::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}
.sort-list::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

.sort-item, .timeline-item {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sort-item:hover, .timeline-item:hover {
    background-color: #f3f4f6;
    color: #111827;
    transform: translateX(4px);
}

.sort-item.active, .timeline-item.active {
    color: #3869B3;
    background-color: #eff6ff;
    font-weight: 600;
}

.sort-item.active::after, .timeline-item.active::after {
    content: "✓";
    font-size: 16px;
    color: #3869B3;
    font-weight: bold;
}

/* Most Read Articles Section */
.most-read-section {
    padding: 60px 0;
}

.most-read-title {
    color: #3869B3;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.most-read-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.most-read-card {
    background-color: #ffffff;
    border: 1px solid #3869B3;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 545px;
}

.mr-date {
    color: #3869B3;
    font-size: 18px;
    margin-bottom: 16px;
}

.mr-title {
    color: #3869B3;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.mr-desc {
    color: #333333;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mr-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3869B3;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
}

.mr-read-more:hover {
    text-decoration: underline;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

a.news-card, a.latest-card, a.most-read-card, a.award-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card {
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card-img {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 8px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 32px 0 0 0;
}

.blue-date {
    color: #3869B3;
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.news-card-content h4 {
    font-size: 32px;
    color: #1f2937;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #3869B3;
    border-radius: 6px;
    color: #3869B3;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background-color: rgba(5, 26, 143, 0.05);
}

.green-circle-arrow {
    width: 36px;
    height: 36px;
    background-color: #6FBF4C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scroll Animation */
.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Awards Page Styles */
.awards-page-bg {
    background-color: #e5f7ed;
    /* Light mint green */
}

.awards-main {
    padding: 200px 50px;
    padding-bottom: 80px;
}

.awards-section {
    margin-bottom: 60px;
}

.awards-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.awards-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
}

.text-green {
    color: #00d285;
}

.text-navy {
    color: #3869B3;
}

.awards-nav {
    display: flex;
    gap: 16px;
}

.award-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #3869B3;
    background: transparent;
    color: #3869B3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-nav-btn svg {
    width: 16px;
    height: 16px;
}

.award-nav-btn:hover {
    background-color: rgba(56, 105, 179, 0.1);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background: #ffffff;
    border: 2px solid #00d084;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.award-card-img {
    width: 100%;
    height: 300px;
    /* Fixed height to match first two cards */
    flex-shrink: 0;
}

.award-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.award-card-content h3 {
    color: #3869B3;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.award-card-content p {
    color: #4b5563;
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.award-brand {
    color: #00d084;
    font-size: 14px;
    font-weight: 500;
}

.awards-progress {
    width: 100%;
    height: 4px;
    background: #ffffff;
    margin-top: 40px;
    position: relative;
    border-radius: 2px;
}

.awards-progress-bar {
    width: 33%;
    height: 100%;
    background: #00d084;
    border-radius: 2px;
}

.cert-card .award-card-content h3 {
    font-size: 18px;
}

/* Certifications specifics */
.cert-card {
    background: transparent;
}

.cert-card .cert-card-img {
    padding: 20px;
    display: flex;
    justify-content: center;
    background: white;
    border-bottom: 1px solid #00d084;
}

.cert-card .cert-card-img img {
    height: 100px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .latest-card {
        flex-direction: column;
        height: auto;
    }

    .news-grid,
    .most-read-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-filters {
        flex: 1;
        justify-content: flex-end;
    }

    .filter-dropdown {
        width: 300px;
    }
}

@media (max-width: 768px) {

    .news-grid,
    .most-read-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .media-hero-content h1 {
        font-size: 28px;
    }

    .media-section-header,
    .awards-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .media-filters {
        width: 100%;
        flex-direction: column;
    }

    .filter-wrapper,
    .filter-dropdown {
        width: 100%;
    }

    .filter-dropdown {
        height: 60px;
        font-size: 16px;
    }

    .most-read-card {
        height: auto;
    }

    .awards-title {
        font-size: 32px;
    }
}

/* About Us Roadmap Container */
.roadmap-container {
    position: relative;
    text-align: center;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.roadmap-img {
    width: 100%;
    height: auto;
    display: block;
}

.roadmap-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.roadmap-animated-bike {
    position: absolute;
    width: 150px;
    height: auto;
    top: 0;
    left: 0;
    z-index: 5;
    transform-origin: center center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    /* Adjust initial placement slightly to center the bike over the point */
    margin-top: -75px;
    margin-left: -75px;
}

.roadmap-animated-bike.initialized {
    opacity: 1;
}

@media (max-width: 768px) {
    .roadmap-animated-bike {
        width: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }
}

.roadmap-text {
    position: absolute;
    text-align: left;
    background: transparent;
}

.roadmap-text h2 {
    font-size: 2vw;
    color: var(--color-brand-navy);
    font-weight: 800;
    margin-bottom: 1vw;
}

.roadmap-text h2 span,
.roadmap-text h3 span {
    color: var(--color-brand-green);
}

.roadmap-text h3 {
    font-size: 1.5vw;
    color: var(--color-brand-navy);
    font-weight: 700;
    margin-bottom: 1vw;
}

.roadmap-text p {
    font-size: 1vw;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 500;
}

.roadmap-title {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

.roadmap-step-1 {
    top: 23%;
    right: 10%;
    width: 25%;
}

.roadmap-step-2 {
    top: 41%;
    left: 8%;
    width: 25%;
}

.roadmap-step-3 {
    top: 65%;
    right: 10%;
    width: 25%;
}

.roadmap-step-4 {
    top: 80%;
    left: 8%;
    width: 25%;
}

@media (max-width: 1024px) {
    .roadmap-text h2 {
        font-size: 3vw;
    }

    .roadmap-text h3 {
        font-size: 2.5vw;
    }

    .roadmap-text p {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    .roadmap-text {
        position: static;
        width: 100% !important;
        padding: 20px;
        transform: none !important;
        text-align: center;
    }

    .roadmap-text h2 {
        font-size: 24px;
    }

    .roadmap-text h3 {
        font-size: 20px;
    }

    .roadmap-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .roadmap-img {
        margin-bottom: -20px;
    }
}

/* Scroll Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-title.fade-up-element {
    transform: translate(-50%, 30px);
}

.roadmap-title.fade-up-element.visible {
    transform: translate(-50%, 0);
}

/* Scroll-driven Bike Animation Styles */
.roadmap-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-us-bike {
    position: absolute;
    width: 80px;
    /* Adjust as needed */
    z-index: 5;
    pointer-events: none;
    top: 0;
    left: 0;
    transform-origin: center center;
    /* initial hide before JS loads */
    opacity: 0;
    transition: opacity 0.3s;
}

.about-us-bike.ready {
    opacity: 1;
}

/* Witness The Magic Unfold Section */
.magic-unfold-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.magic-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.magic-title .navy-text {
    color: var(--color-brand-navy);
}

.magic-title .green-text {
    color: var(--color-brand-green);
}

.magic-video-container {
    position: relative;
    max-width: 1500px;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 650px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    /* Placeholder bg in case image is missing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.magic-thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.magic-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
}

.play-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 6px rgba(0, 208, 132, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magic-play-btn:hover .play-icon-ring {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 208, 132, 0.4);
}

@media (max-width: 768px) {
    .magic-title {
        font-size: 28px;
    }

    .magic-video-container {
        margin: 0 20px;
        width: calc(100% - 40px); /* Adjust width to account for margins */
    }

    .play-icon-ring {
        width: 60px;
        height: 60px;
    }
}


/* =========================================
   FULLSCREEN PREMIUM JOURNEY SECTION
   ========================================= */
.fullscreen-journey {
    padding: 0;
    margin: 0;
    background: var(--color-bg);
}

.journey-scroll-track {
    position: relative;
    height: 400vh;
    /* Determines the scroll duration */
    width: 100%;
}

.journey-sticky-viewport {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.journey-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

.journey-roadmap-img {
    height: 100vh;
    width: 400vh;
    max-width: none;
    display: block;
    will-change: transform;
}

.journey-cards-layer {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 10;
    width: 40%;
    max-width: 500px;
    height: 100vh;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.journey-cards-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    will-change: transform;
    pointer-events: auto;
    padding-top: 100vh;
    padding-bottom: 20vh;
}

.journey-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 16, 158, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card-year {
    color: var(--color-brand-navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-title {
    color: var(--color-brand-green);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .journey-roadmap-img {
        height: 100vh;
        width: 200vh;
        max-width: none;
        display: block;
        will-change: transform;
    }

    .journey-cards-layer {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .journey-roadmap-img {
        height: 100vh;
        width: 200vh;
        max-width: none;
        display: block;
        will-change: transform;
    }

    .journey-cards-layer {
        width: 100%;
        padding: 0 20px;
        align-items: flex-end;
    }

    .journey-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .journey-cards-track {
        gap: 40px;
    }
}

/* Title Overlay Fixes */
.journey-title-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    z-index: 20;
    padding: 30px 0;
}

.journey-image-layer {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
}

.journey-roadmap-img {
    height: 100vh;
    width: 200vh;
    max-width: none;
    display: block;
    will-change: transform;
}

.journey-cards-layer {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
}

/* Custom Journey Card Styles */
.journey-card {
    background-color: #ffffff !important;
    border: 2px solid #3869B3 !important;
    border-radius: 8px !important;
    padding: 32px 40px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: transform 0.3s ease;
    width: 100% !important;
    max-width: 500px !important;
}

.journey-card:hover {
    transform: translateY(-4px);
}

.journey-card h4 {
    color: #3869B3 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.journey-card p {
    color: #2d3748 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.journey-card p strong {
    font-size: 20px;
    color: #1a202c;
}

/* Hide scrollbar for journey cards */
.journey-cards-overlay::-webkit-scrollbar {
    display: none;
}

.journey-cards-overlay {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    position: relative;
    scroll-behavior: smooth;
    overscroll-behavior: auto;
    height: 43.64vw;
    overflow: hidden;
    overflow-y: auto;
    gap: 3.125vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-inline: 11.25vw;
    padding-top: 1.66vw;
    padding-bottom: 1.66vw;
    z-index: 2;
}

.journey-fullwidth-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.journey-image-wrapper {
    width: 100%;
}

.journey-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 200%;
    width: 200%;
    object-fit: cover;
    overflow: hidden;
    display: block;
}

@media (max-width: 768px) {
    .journey-cards-overlay {
        height: 60vh;
        gap: 20px;
        padding-inline: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
    }
}

/* Fixed Bike in Journey Section */
.journey-fixed-bike {
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 25vw;
    max-width: 250px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .journey-fixed-bike {
        left: 10%;
        bottom: 5%;
        width: 40vw;
    }
}

/* Brand Story Section */
.brand-story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-top-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    padding: 0 50px;
}

.story-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-brand-logo {
    max-width: 250px;
    height: auto;
}

.story-text-content {
    flex: 1.5;
}

.story-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #444;
}

/* Hexagon Banner Wrapper */
.story-hexagon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

@keyframes flowGradient {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.story-hex-line {
    flex: 1;
    height: 10px;
    background: linear-gradient(90deg, #63d69c, #d5f2e3, #63d69c, #d5f2e3, #63d69c);
    background-size: 200% 100%;
    animation: flowGradient 3s linear infinite;
}

.story-hex-border {
    padding: 10px;
    background: linear-gradient(90deg, #63d69c, #d5f2e3, #63d69c, #d5f2e3, #63d69c);
    background-size: 200% 100%;
    animation: flowGradient 3s linear infinite;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    margin: 0 -6px;
    /* to overlap the straight line slightly */
}

.story-hex-inner {
    background: #ffffff;
    padding: 30px 60px;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    text-align: center;
    max-width: 1500px;
}

.story-hex-inner p {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-brand-green);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .story-top-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .story-hex-inner {
        padding: 20px 30px;
        clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    }

    .story-hex-border {
        clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    }
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.ecosystem-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.ecosystem-content {
    flex: 1;
    padding-top: 20px;
}

.ecosystem-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #3869B3;
    margin-bottom: 20px;
}

.ecosystem-title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-brand-green);
    margin-bottom: 30px;
}

.ecosystem-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #4a5568;
}

.ecosystem-cards {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ecosystem-card {
    border: 1px solid var(--color-brand-green);
    border-radius: 8px;
    padding: 30px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.1);
}

.eco-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 208, 132, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eco-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: #1a202c;
}

.eco-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-brand-green);
    margin-bottom: 15px;
}

.eco-card-underline {
    width: 30px;
    height: 3px;
    background-color: var(--color-brand-green);
    margin-bottom: 20px;
}

.eco-card-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 992px) {
    .ecosystem-grid {
        flex-direction: column;
    }

    .ecosystem-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ecosystem-cards {
        grid-template-columns: 1fr;
    }

    .ecosystem-section {
        padding: 60px 20px;
    }
}

/* =========================================
   CONTACT US PAGE
   ========================================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
    margin-top: 80px;
    /* offset for header */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 48, 80, 0.7);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    z-index: 3;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-main {
    padding: 60px 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #e6f9f0 100%);
    position: relative;
}

.contact-main::before {
    content: '';
    display: block;
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-brand-green);
}

.contact-main-heading {
    text-align: center;
    color: #00008b;
    /* dark navy */
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
}

.contact-content-wrapper {
    width: 100%;
    max-width: 1920px;
    display: flex;
    gap: 185px;
    justify-content: center;
    padding-bottom: 230px;
    padding-top: 30px;
}

.contact-info-panel {
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 1.5625vw;
}

.contact-info-item h3 {
    margin-bottom: 32px;
    color: #00008b;
}

.contact-info-item p {
    color: #333;
    font-size: 32px;
    margin-bottom: 8px;
}

.contact-info-item::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #00008b;
    /* thin navy line */
    margin-top: 15px;
}

.contact-form-panel {
    width: 752.92px;

}

.form-heading {
    margin-bottom: 5px;
    color: #00008b;
}

.form-subheading {
    margin-bottom: 30px;
    color: #00008b;
}

.gdm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gdm-contact-form input,
.gdm-contact-form select,
.gdm-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    background-color: transparent;
    font-size: 24px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.gdm-contact-form input:focus,
.gdm-contact-form select:focus,
.gdm-contact-form textarea:focus {
    box-shadow: 0 0 0 2px rgba(0, 208, 132, 0.3);
}

.gdm-contact-form textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 145px;
    height: 55px;
    align-self: flex-start;
    background-color: #3869B3;
    /* dark blue */
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 4px 4px 0px #316bc2;
    /* matching the reference button shadow */
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.contact-submit-btn:hover {
    background-color: #6FBF4C;
    box-shadow: 4px 4px 0px #48af1c;
}

.contact-submit-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #00008b;
}

.contact-features-banner {
    background-color: #3869B3;
    /* navy */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #00d084;
    /* green */
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contact-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-main {
        padding: 40px 20px 0;
    }

    .contact-main-heading {
        font-size: 32px;
    }

    .contact-info-item p {
        font-size: 24px;
    }

    .contact-features-banner {
        gap: 30px;
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

/* =========================================
   Global Responsiveness & Utilities
   ========================================= */

.padded-main {
    padding: 0 50px;
}

.contact-header-text {
    font-size: 32px;
    font-weight: 700;
}

.contact-subtext {
    font-size: 32px;
}

@media (max-width: 768px) {
    .padded-main {
        padding: 0 20px;
    }

    .contact-header-text {
        font-size: 24px !important;
    }

    .contact-subtext {
        font-size: 20px !important;
    }

    /* Index Hero Overrides */
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-bottom: 40px;
        height: auto !important;
    }

    .hero-image {
        position: relative;
        max-height: 400px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .info-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 90% !important;
        max-width: 400px;
        animation: none !important;
    }

    /* Index Map Overrides */
    .services-content-wrapper.centered-map-layout {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .services-map-wrapper {
        min-width: 800px;
        /* Keep map large enough to hold dots */
        position: relative;
        overflow: hidden;
    }
}

/* Lenis Smooth Scrolling Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.burger,
.burger::before,
.burger::after {
    background-color: #00d084 !important;
}
/* ==========================================================================
   Careers Page Styles
   ========================================================================== */

/* Hero Section */
.careers-hero {
    position: relative;
    height: 400px;
    background-color: #0F2027;
    display: flex;
    align-items: center;
    justify-content: center;
}
.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.careers-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}
.careers-hero-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

/* Why Work With Us */
.why-work-section {
    padding: 80px 20px;
    background: #f8fafc;
}
.why-work-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.why-work-left {
    flex: 1;
}
.why-work-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-navy);
}
.why-work-right {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.why-icon {
    margin-bottom: 15px;
}
.why-card h3 {
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 10px;
}
.why-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* The Advantage Section */
.advantage-section {
    padding: 80px 20px;
    background: #e0f2fe; /* Light blue */
}
.advantage-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.advantage-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.adv-item-container {
    border-bottom: 1px solid #bae6fd;
    padding-bottom: 10px;
}
.adv-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--primary-navy);
    padding: 15px 0;
}
.adv-item-header h3 {
    font-size: 18px;
    font-weight: 600;
}
.adv-item-body {
    display: none;
    color: #475569;
    font-size: 14px;
    padding-bottom: 15px;
    line-height: 1.6;
}
.adv-item-container.active .adv-item-body {
    display: block;
}
.adv-item-container.active .adv-item-header h3 {
    color: var(--primary-green);
}
.advantage-image {
    flex: 1;
}
.advantage-image img {
    width: 100%;
    border-radius: 8px;
}

/* Values That Drive Us */
.values-section {
    padding: 80px 20px;
    background: white;
}
.values-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-arrows {
    display: flex;
    gap: 10px;
}
.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-navy);
}
.nav-arrow:hover {
    background: #f1f5f9;
}
.nav-arrow.border-white {
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.nav-arrow.border-white:hover {
    background: rgba(255,255,255,0.1);
}
.values-layout {
    display: flex;
    background: #0f172a; /* Dark navy */
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}
.values-image {
    flex: 1;
}
.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.values-content {
    flex: 1;
    padding: 50px;
    color: white;
}
.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.value-header h3 {
    font-size: 24px;
    color: white;
}
.yellow-text {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.value-item p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}
.values-pagination {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}
.values-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #475569;
}
.values-pagination .dot.active {
    background: var(--primary-green);
}

/* Employee Insights */
.insights-section {
    padding: 80px 20px;
    background: #1e3a8a; /* Deep blue */
    position: relative;
    overflow: hidden;
}
.insights-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.insights-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.insights-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255,255,255,0.2);
}
.insights-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insights-quote {
    color: white;
}
.quote-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}
.quote-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}
.quote-author p {
    font-size: 14px;
    color: #93c5fd;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: #ecfdf5; /* Light green */
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .why-work-layout, .advantage-layout, .values-layout, .insights-content {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insights-content {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .why-work-right {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
