/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* Import Montserrat with all weights to match Inter */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


:root {
    --primary-green: #68b53c;
    --half-primary-green: #c2f99d;
    --accent-teal: #078f99;
    --background: #ffffff;
    --text-dark: #222222;
    --text-light: #666666;
    --border-light: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --banner-height: 0px;
    /* Mobile logo size - change this value to adjust size easily */
    --mobile-logo-size: 600px;
}
/* Global brand radial background for homepage sections */
/* Remove homepage radial background overlay – keep plain white */
.home section {
    position: relative;
    overflow: visible;
}

.home section::before {
    display: none;
}

/* Ensure stacking contexts are normal */
.home section > * { position: relative; z-index: auto; }


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family:Montserrat, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}
/* Highlight text */
.highlight-text {
    color: #68b53c; /* or any color you want */
    
}

.highlight-subtext {
    color: #078f99; /* or any color you want */
}
/* Animated Scroll Line */
#scroll-line {
    position: fixed;
    top: 0;
    left: 10px; /* Initial position */
    width: 4px;
    height: 100px; /* Length of the strip */
    background-color: var(--primary-green);
    z-index: 2000;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-green);
    transition: top 0.5s ease-out, left 0.8s ease-in-out;
    pointer-events: none; /* Make sure it's not clickable */
}

.containerss {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;     
} 

/* Jump Animation Keyframes for 60fps smooth transitions */
@keyframes navbarJump {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes navbarItemJump {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Aceternity Style Navigation */
.navbar-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 100%;
    max-width: 1000px;
    padding: 0 12px;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: top;
}

.navbar-menu {
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid #e5e7eb;
    border-radius: 9999px; /* make navbar circular/pill across all pages */
    padding: 6px 8px; /* preserve height, reduce horizontal width only */
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, items centered (via flex), CTA right */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-menu:hover {
    background: #ffffff;
    border-color: #e5e7eb;
}

.navbar-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 38px; /* smaller logo size */
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 11px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

.navbar-items-container {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-items {
    display: flex;
    align-items: center;
    gap: 1.1rem; /* add a bit more gap between About Us, Services, Insights, Advisory */
    list-style: none;
    margin: 0;
    flex-direction: row;
    justify-content: flex-start;
}

.navbar-item {
    position: relative;
}

/* Ensure desktop navbar styles are preserved */
@media (min-width: 769px) {
    .navbar-items {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 1.1rem !important;
    }
    
    .navbar-item {
        text-align: left !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    /* Hide mobile submenus on desktop */
    .mobile-submenu {
        display: none !important;
    }
}

.navbar-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem; /* restore size */
    padding: 6px 8px; /* restore height, keep narrower width */
    border-radius: 8px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: block;
    font-family: 'Montserrat', sans-serif; /* Ensure consistent font across all pages */
}
/* Navbar CTA button */
.navbar-cta-container { margin-left: 11px; }
.navbar-cta-container { margin-top: 4px; }
.navbar-cta-container { margin-bottom: 4px; }
.navbar-cta { margin-left: 12px; }
.hamburger { margin-left: 8px; }
.navbar-cta {
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    text-decoration: none;
    padding: 7px 12px; /* restore height, narrower width */
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-cta:hover { 
    background: var(--accent-teal); 
    border-color: var(--accent-teal); 
    color: #ffffff;
}

/* Arrow indicator for dropdown parents */
.navbar-item[data-item] .navbar-link {
    position: relative;
    padding-right: 28px; /* space for arrow */
}

.navbar-item[data-item] .navbar-link::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px !important;
    height: 8px !important;
    border-right: 2px solid var(--text-dark) !important;
    border-bottom: 2px solid var(--text-dark) !important;
    transform: translateY(-50%) rotate(45deg) !important;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-sizing: border-box !important;
}

.navbar-item:hover > .navbar-link::after {
    border-color: var(--primary-green);
}

.navbar-link:hover {
    color: var(--primary-green);
    background: rgba(104, 181, 60, 0.08);
}

/* Hide old dropdowns */
.navbar-dropdown {
    display: none;
}
/* GIF icons used inside mega dropdown big cards (Who we are) */
.mega-big-card-icon-gif {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 0 8px 0; /* space below the icon */
}

/* Small GIF icons used inside mega-card-grid-small (Strategic Engagement etc.) */
.mega-card-small-gif {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

/* Mega Dropdown Styles */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 10px); /* Position below the navbar */
    left: 0;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    will-change: opacity, transform;
    z-index: -1;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.mega-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1000;
}

/* Prevent body scroll when mega dropdown is active */
body.mega-dropdown-active {
    overflow: hidden;
}

/* Custom scrollbar for mega dropdown */
.mega-dropdown::-webkit-scrollbar {
    width: 8px;
}

.mega-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-dropdown::-webkit-scrollbar-thumb {
    background: #68b53c;
    border-radius: 10px;
}

.mega-dropdown::-webkit-scrollbar-thumb:hover {
    background: #5a9a32;
}

.mega-dropdown-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mega-dropdown-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

.mega-dropdown-column a.dropdown-link {
    margin: 0;
    padding: 8px 0;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: block;
    margin: 0 10px;
}

.dropdown-link:hover {
    color: var(--primary-green);
    background: rgba(104, 181, 60, 0.1);
    transform: translateX(5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Prevent body scroll when mobile navbar is open */
    body.mobile-navbar-active {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    .navbar-items-container {
        display: contents;
    }

    .navbar-container {
        top: 10px;
        padding: 0 15px;
    }
    
    .navbar-menu {
        padding: 6px 12px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .navbar-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        backdrop-filter: none;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 20px;
        margin-top: 10px;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .navbar-items.active {
        display: flex;
    }
    
    /* Center align navbar items on mobile only */
    .navbar-items {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
    }
    
    .navbar-item {
        text-align: center !important;
        width: 100% !important;
        margin: 0.25rem 0 !important;
    }
    
    /* Hide mega dropdown on mobile, as items are in the hamburger menu */
    .mega-dropdown {
        display: none;
    }

    /* Mobile accordion-style submenu */
    .mega-dropdown.mobile-active {
        display: none !important;
    }

    /* Mobile submenu directly in navbar items */
    .navbar-item.mobile-submenu-open .mobile-submenu {
        display: block !important;
    }

    .mobile-submenu {
        display: none !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
        margin-top: 0.5rem !important;
        overflow: hidden !important;
        max-height: 300px !important;
        overflow-y: auto !important;
        width: calc(100vw - 30px) !important;
        position: relative !important;
        left: calc(-50vw + 50%) !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-submenu-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid #e5e7eb !important;
        text-decoration: none !important;
        color: var(--text-dark) !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        gap: 0.5rem !important;
    }

    .mobile-submenu-item:last-child {
        border-bottom: none !important;
    }

    .mobile-submenu-item:hover {
        background: rgba(104, 181, 60, 0.08) !important;
        color: var(--primary-green) !important;
    }

    /* Small icons for mobile submenu items */
    .mobile-submenu-item::before {
        content: "•" !important;
        font-size: 0.7rem !important;
        color: var(--primary-green) !important;
        margin-right: 0.25rem !important;
        font-weight: bold !important;
    }

    /* Custom scrollbar for mobile submenu */
    .mobile-submenu::-webkit-scrollbar {
        width: 3px !important;
    }

    .mobile-submenu::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .mobile-submenu::-webkit-scrollbar-thumb {
        background: rgba(104, 181, 60, 0.3) !important;
        border-radius: 2px !important;
    }

    .mobile-submenu::-webkit-scrollbar-thumb:hover {
        background: rgba(104, 181, 60, 0.5) !important;
    }

    /* COMPLETELY HIDE ALL CARD ELEMENTS ON MOBILE */
    .mega-dropdown.mobile-active .mega-big-cards-grid,
    .mega-dropdown.mobile-active .mega-card-grid-small {
        display: none !important;
    }

    .mega-dropdown.mobile-active .mega-big-card,
    .mega-dropdown.mobile-active .mega-card-small,
    .mega-dropdown.mobile-active .mega-card-horizontal {
        display: none !important;
    }

    /* Create simple text-only list for mobile */
    .mega-dropdown.mobile-active .mega-right-content {
        position: relative !important;
    }

    .mega-dropdown.mobile-active .mega-right-content::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: white !important;
        z-index: 1 !important;
    }

    /* Mobile simple list - inline submenu style */
    .mega-dropdown.mobile-active .mobile-simple-list {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
        margin-top: 0.5rem !important;
        max-height: 300px !important;
        overflow-y: auto !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-item {
        display: block !important;
        padding: 0.75rem 1rem !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid #e5e7eb !important;
        text-decoration: none !important;
        color: var(--text-dark) !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
        width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-item:last-child {
        border-bottom: none !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-item:hover {
        background: rgba(104, 181, 60, 0.08) !important;
        color: var(--primary-green) !important;
    }

    /* Custom scrollbar for mobile list */
    .mega-dropdown.mobile-active .mobile-simple-list::-webkit-scrollbar {
        width: 3px !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-list::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-list::-webkit-scrollbar-thumb {
        background: rgba(104, 181, 60, 0.3) !important;
        border-radius: 2px !important;
    }

    .mega-dropdown.mobile-active .mobile-simple-list::-webkit-scrollbar-thumb:hover {
        background: rgba(104, 181, 60, 0.5) !important;
    }

    /* No close button needed for inline submenus */
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #6b7280;
        border-radius: 2px;
        transition: var(--transition);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Hero Section */
/* Old video hero was removed from index in favor of white hero */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    background: radial-gradient(125% 125% at 50% 10%, #fff 40%, #63e 100%);
    z-index: -2;
    background-size: cover;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.company-name {
    display: block;
    margin-bottom: 0.5rem;
}

.animated-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* New White Theme Hero (matches landing hero layout) */
.hero-white {
    min-height: 100vh;
    display: flex;
    margin-top: 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0; /* remove lateral padding to eliminate gaps */
    text-align: center;
    background: radial-gradient(125% 125% at 50% 10%, #fff 40%, var(--primary-green) 100%);
    /* Optimized transitions for 60fps */
    will-change: background;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Hero content optimization */
.hero-white-content {
    will-change: transform, opacity;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Hero Transition Effects - Optimized */
.hero-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    will-change: opacity;
    transform: translateZ(0);
}

.section-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(104, 181, 60, 0.05) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
    transform: translateZ(0);
}

/* Section Reveal Animation - Optimized for 60fps */
.home section:not(.hero-white) {
    opacity: 0;
    transform: translate3d(0, 30px, 0); /* Use translate3d for GPU acceleration */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Reduced duration for snappier feel */
    will-change: opaciaty, transform;
}

.home section:not(.hero-white).section-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Ensure hero section is always visible */
.hero-white {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Optimize for smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Reduce repaints and reflows */
.hero-white, .hero-white-content, .hero-transition-overlay {
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-white-content { 
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    text-align: center;
    margin-top: 8rem;
}

.hero-white .hero-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-white-title {
       font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-white-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-white-cta {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.hero-white-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-hover); 
    background: var(--accent-teal);
}

.hero-white-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px; /* extend more so it touches the next section */
    background: linear-gradient(
        to top,
        rgba(104, 181, 60, 0.12) 0%,
        rgba(7, 143, 153, 0.06) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Ensure translated token is visible and green inside hero headings */
.hero-white-title .translated-word--green,
.hero-white-title .arabic-word.translated-word--green,
h1.hero-white-title .translated-word--green,
h1.hero-white-title .arabic-word.translated-word--green {
    color: #0f9d58 !important;
    font-weight: 600 !important;
}

/* Hero text word transition */
.translatable-word {
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
    color: var(--primary-green);
    font-weight: 800;
    vertical-align: middle; /* Vertically center the word on the line */
}

.translatable-word.fading {
    opacity: 0;
}


@media (max-width: 768px) {
    .hero-white-title { font-size: 2.5rem; }
    .hero-white-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-white-title { font-size: 2rem; }
    .hero-white-cta { padding: 0.8rem 2rem; font-size: 1rem; }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding: 6rem 0 2rem 0; /* reduce top and especially bottom padding to close gap */
    background: #ffffff;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Masonry Grid Layout */
.services-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid positioning */
.services-grid-masonry .card-small:nth-child(1) { grid-column: 1; grid-row: 1; }
.services-grid-masonry .card-small:nth-child(2) { grid-column: 1; grid-row: 2; }
.services-grid-masonry .card-tall { grid-column: 2; grid-row: 1 / span 2; }
.services-grid-masonry .card-small:nth-child(4) { grid-column: 3; grid-row: 1; }
.services-grid-masonry .card-small:nth-child(5) { grid-column: 3; grid-row: 2; }

/* Modern Service Cards */
.services-section .service-card {
    background: #ffffff !important;
    border: none;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* Disable wave effects for services section */
.services-section .service-card.card-wave {
    background: #ffffff !important;
    overflow: visible !important;
}

.services-section .service-card .wave {
    display: none !important;
}

.services-section .card-wave {
    background: #ffffff !important;
    overflow: visible !important;
}

.services-section .card-wave .wave {
    display: none !important;
}

.services-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.078);
}

.services-section .service-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

/* GIF icon replacement for capabilities (matches .service-icon sizing) */
.service-icon-gif {
    width: 44px; /* slightly larger */
    height: 44px;
    object-fit: contain;
    display: inline-block;
}

/* Mega dropdown small card GIF icons */
.mega-card-icon-gif {
    width: 48px;
    height: 48px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
    display: inline-block;
}

.services-section .service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.services-section .service-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.services-section .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.services-section .service-link:hover {
    color: var(--accent-teal);
    gap: 0.6rem;
    text-decoration: none;
}

.services-section .service-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.services-section .service-card:hover .service-link i {
    transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .services-grid-masonry .card-small:nth-child(1) { grid-column: 1; grid-row: 1; }
    .services-grid-masonry .card-small:nth-child(2) { grid-column: 2; grid-row: 1; }
    .services-grid-masonry .card-tall { grid-column: 1 / span 2; grid-row: 2; }
    .services-grid-masonry .card-small:nth-child(4) { grid-column: 1; grid-row: 3; }
    .services-grid-masonry .card-small:nth-child(5) { grid-column: 2; grid-row: 3; }
}

@media (max-width: 640px) {
    .services-grid-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
    }
    
    .services-grid-masonry .card-small:nth-child(1) { grid-column: 1; grid-row: 1; }
    .services-grid-masonry .card-small:nth-child(2) { grid-column: 1; grid-row: 2; }
    .services-grid-masonry .card-tall { grid-column: 1; grid-row: 3; }
    .services-grid-masonry .card-small:nth-child(4) { grid-column: 1; grid-row: 4; }
    .services-grid-masonry .card-small:nth-child(5) { grid-column: 1; grid-row: 5; }
}

/* Featured Masonry-like layout to match the reference */
.services-grid-featured {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr; /* two rows */
}

/* Explicit placement to avoid gaps and center the tall card */
.services-grid-featured .card-left-big { grid-column: 1; grid-row: 1; }
.services-grid-featured .card-left-small { grid-column: 1; grid-row: 2; }
.services-grid-featured .card-center-tall { grid-column: 2; grid-row: 1 / span 2; }
.services-grid-featured .card-right-small { grid-column: 3; grid-row: 1; }
.services-grid-featured .card-right-big { grid-column: 3; grid-row: 2; }

/* Make cards stretch to fill their grid area */
.services-grid-featured .service-card { height: 100%; display: flex; flex-direction: column; }

@media (max-width: 1024px) {
    .services-grid-featured { grid-template-columns: repeat(2, 1fr); }
    .services-grid-featured .card-center-tall { grid-row: auto; }
}

@media (max-width: 640px) {
    .services-grid-featured { grid-template-columns: 1fr; }
}

.services-overview .service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px; /* more rounded like the reference */
    text-align: left; /* align content to left */
    box-shadow: 0 2px 6px rgba(16,24,40,0.06), 0 1px 2px rgba(16,24,40,0.04);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.services-overview .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16,24,40,0.10), 0 2px 8px rgba(16,24,40,0.06);
    border-color: #e5e7eb;
}

/* Soft inner highlight on hover */
/* Plain white card background (remove decorative overlay) */
.services-overview .service-card::after {
    content: none !important;
}

/* Remove animated wave decoration from service cards */
.services-overview .card-wave .wave { display: none !important; }
.services-overview .card-wave { background: #ffffff !important; }

.services-overview .service-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border: 2px solid #eaeaea;
    border-radius: 14px; /* subtle rounded square like reference */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0; /* left aligned */
    color: var(--text-dark);
    font-size: 1.6rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.services-overview .service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.services-overview .service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Learn more link */
.services-overview .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto; /* stick to bottom when possible */
    font-size: 0.9rem;
    color: var(--accent-teal);
    font-weight: 500;
    transition: gap 0.2s ease, color 0.2s ease;
}

.services-overview .service-card:hover .learn-more { gap: 0.6rem; color: var(--primary-green); }

/* Responsive tuning for the new card look */
@media (max-width: 768px) {
    .services-overview .service-card { padding: 1.5rem; }
    .services-overview .service-icon { width: 56px; height: 56px; font-size: 1.4rem; }
}

/* Mobile Carousel for Capabilities */
.capabilities-carousel-wrapper {
    position: relative;
}

.carousel-controls {
    display: none; /* Hidden by default, shown on mobile */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-controls .prev-btn,
.carousel-controls .next-btn {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-controls .prev-btn,
.carousel-controls .next-btn {
    /* This will be overridden on mobile to hide them */
    display: block;
}

.carousel-controls .prev-btn:hover,
.carousel-controls .next-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary-green);
    width: 24px;
    border-radius: 9999px;
}

@media (max-width: 640px) {
    .capabilities-carousel-wrapper {
        overflow: hidden;
    }
    .services-grid-masonry {
        display: flex;
        overflow-x: visible; /* Allow scrolling */
        -webkit-overflow-scrolling: touch;
        gap: 0; /* Remove gap to ensure only one card is visible */
        padding: 0; /* Remove padding to hide other cards */
        margin: 0; /* Remove margin */
        transition: transform 0.5s ease-in-out; /* Smoother transition */
    }
    .services-grid-masonry .service-card {
        flex: 0 0 100%; /* Each card takes up 100% of the container width */
        scroll-snap-align: center; /* Keep for manual swipe */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add shadow for mobile view */
    }
    .carousel-controls {
        display: flex;
    }
    /* Hide arrows on mobile */
    .carousel-controls .prev-btn,
    .carousel-controls .next-btn {
        display: none;
    }
}

/* Strategic Engagement */
.strategic-engagement {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Desktop Layout - Video with Labels */
.engagement-diagram.desktop-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strategic-diagram-scale {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

/* Strategic Video Frame - Fixed Container for Desktop */
.strategic-video-frame {
    position: relative;
    width: 1200px;
    max-width: none;
    height: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    will-change: transform;
}

.strategic-video-frame video,
.strategic-video-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.strategic-video-frame iframe {
    z-index: 1;
}

.strategic-video-frame video {
    z-index: 0;
}

/* Responsive adjustments for the strategic video frame */
@media (min-width: 1440px) {
    .strategic-video-frame {
        max-width: 1400px;
        height: 700px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .strategic-video-frame {
        max-width: 1100px;
        height: 650px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .strategic-video-frame {
        max-width: 950px;
        height: 550px;
    }
}

/* Mobile Layout - Cards */
.mobile-cards-layout {
    display: none;
}

.engagement-diagram.desktop-layout.is-hidden {
    display: none !important;
}

.mobile-cards-layout.is-visible {
    display: block !important;
}

.strategic-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.strategic-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(104, 181, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;

    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.strategic-card:hover::before {
    transform: scaleX(1);
}

.strategic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.card-icon {
    width: 80px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.strategic-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(104, 181, 60, 0.3);
}

.strategic-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.strategic-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-link:hover {
    background: var(--accent-teal);
    text-decoration: none;
    transform: translateX(4px);
}

/* Individual card colors */


/* Responsive behavior */
@media (max-width: 1024px) {
    .strategic-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .strategic-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .strategic-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .strategic-card h3 {
        font-size: 1.1rem;
    }
    
    .strategic-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .strategic-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .strategic-card h3 {
        font-size: 1rem;
    }
    
    .strategic-card p {
        font-size: 0.85rem;
    }
}

/* Mobile Carousel for Strategic Engagement */
@media (max-width: 1024px) {
    #strategic-carousel-wrapper {
        overflow: hidden;
        position: relative;
    }
    #strategic-cards-grid {
        display: flex;
        transition: transform 0.5s ease-in-out;
        /* The JS will handle the transform */
    }
    #strategic-cards-grid .strategic-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #strategic-controls {
        display: flex;
    }
    /* Hide arrows on mobile, only show dots */
    #strategic-controls .prev-btn,
    #strategic-controls .next-btn {
        display: none;
    }
}

.circle-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform;
    z-index: 10;
}

.label {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.75rem, 0.9rem, 1rem);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(104, 181, 60, 0.2);
    width: clamp(200px, 25%, 300px);
    max-width: 300px;
    min-width: 200px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    pointer-events: auto;
    transition: all 0.3s ease;
    transform-origin: center center;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.label:hover {
    background: var(--half-primary-green);
    color: rgb(0, 0, 0);
    text-decoration: none;
}

/* Position labels around the circles - using more precise positioning for zoom resistance */
.label-1 { 
    top: 1%; 
    left: 50%; 
    transform: translate(-50%, 0);
    transform-origin: center top;
} /*Strategic Advisory Framework*/    
.label-2 { 
    top: 19%; 
    right: 8%; 
    transform: translateX(0);
    transform-origin: right center;
} /*Licensing Advisory Framework*/
.label-3 { 
    top: 49.5%; 
    right: 2%; 
    transform: translate(0, -50%);
    transform-origin: right center;
} /*Innovation*/
.label-4 { 
    bottom: 20%; 
    right: 8%; 
    transform: translateX(0);
    transform-origin: right center;
} /*Implementation Services*/
.label-5 { 
    bottom: 0.5%; 
    left: 50%; 
    transform: translate(-50%, 0);
    transform-origin: center bottom;
} /*Business As Usual*/
.label-6 { 
    bottom: 19%; 
    left: 22%; 
    transform: translateX(-50%);
    transform-origin: left center;
}/*Professional Services*/
.label-7 { 
    top: 50%; 
    left: 2%; 
    transform: translate(0, -50%);
    transform-origin: left center;
} /*ESG*/
.label-8 { 
    top: 19%; 
    left: 20%; 
    transform: translateX(-50%);
    transform-origin: left center;
}/*value Realisation Services*/

.strategic-engagement::before {
    display: none;
}

.engagement-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.highlighted-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
@media (max-width: 768px) {
    .highlighted-heading {
        font-size: 2rem; /* smaller font for mobile */
        text-align: center; /* center align for better mobile appearance */
        margin-bottom: 0.75rem; /* add a bit more space */
        display: block; /* easier layout handling on small screens */
    }
}

@media (max-width: 480px) {
    .highlighted-heading {
        font-size: 2rem; /* even smaller for very small devices */
    }
}

.highlighted-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    opacity: 0;
    animation: highlightSweep 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes highlightSweep {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
}

.centered-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.engagement-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.engagement-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.engagement-features {
    list-style: none;
}

.engagement-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.engagement-features i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.engagement-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Advisory */
.advisory {
    padding: 5rem 0;
    background: #ffffff;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advisory-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advisory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advisory-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.advisory-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advisory-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Company Video */
.company-video {
    padding: 5rem 0 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px; /* Ensure container is rectangular */
    overflow: hidden; /* Hide any overflowing content from the iframe */
    box-shadow: none; /* Remove any shadow */
}

/* Phone-like sizing on desktop: cap width */
.company-video .video-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .company-video .video-container {
        max-width: 100%;
        margin: 2rem auto 0;
    }
}

/* Enforce horizontal rectangle for company video */
.company-video .video-container {
    height: auto;
    padding-bottom: 0; /* override generic 16:9 padding hack */
    aspect-ratio: 16 / 9; /* modern browsers */
}
.company-video .video-container video {
    position: relative; /* override absolute */
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Insights Carousel Mobile Styles */
.insights-carousel-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .insights-carousel-wrapper {
        overflow: hidden;
    }
    #insights-grid {
        display: flex;
        overflow-x: visible;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -0.5rem;
        transition: transform 0.5s ease-in-out;
    }
    #insights-grid .insight-card {
        flex: 0 0 90%; /* Each card takes 90% of width */
        scroll-snap-align: center;
    }
    #insights-controls {
        display: flex; /* Show controls on mobile */
    }
    #insights-controls .prev-btn,
    #insights-controls .next-btn {
        display: none; /* Hide arrows, only show dots */
    }
}

/* Newsletters Carousel Mobile Styles */
.newsletters-carousel-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .newsletters-carousel-wrapper {
        overflow: hidden;
    }
    #newsletters-grid {
        display: flex;
        overflow-x: visible;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -0.5rem;
        transition: transform 0.5s ease-in-out;
    }
    #newsletters-grid .insight-card {
        flex: 0 0 90%; /* Each card takes 90% of width */
        scroll-snap-align: center;
    }
    #newsletters-controls {
        display: flex; /* Show controls on mobile */
    }
    #newsletters-controls .prev-btn,
    #newsletters-controls .next-btn {
        display: none; /* Hide arrows, only show dots */
    }
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill frame without black bars */
    background: #000;
}

/* Blogs */
.blogs {
    padding: 2rem 0 2rem;
    background: #ffffff;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* Case Studies */
.case-studies {
    padding: 2rem 0 5rem;
    background: #ffffff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.case-study-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-study-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-study-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.case-study-link:hover {
    gap: 1rem;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    background: linear-gradient(to bottom right, #dff0d8, #a6d785);
    color: #000000;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1.2fr 0.9fr 1.2fr 0.8fr;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .footer-content {
        grid-template-columns: 1.5fr 1.2fr 1fr 1.2fr 0.8fr;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.6;
    padding-left: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.footer-logo {
    max-width: 230px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    margin-left: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.small-footer {
    color: #000000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.small-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.small-footer-left p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.small-footer-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #666666;
    text-align: left;
    font-style: italic;
    opacity: 0.8;
}

.small-footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.small-footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.small-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .small-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .small-footer-links {
        gap: 1rem;
    }

    .small-footer-title {
        font-size: 2.5rem;
    }
}

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

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-size: 1.5rem;
}

.chatbot-toggle:hover {
    background: var(--accent-teal);
    transform: scale(1.1);
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: var(--primary-green);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message {
    background: #f0f0f0;
    color: var(--text-dark);
    align-self: flex-start;
}

.user-message {
    background: var(--primary-green);
    color: white;
    align-self: flex-end;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chatbot-input button {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background: var(--accent-teal);
}
/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(104, 181, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Post Section */
.featured-post {
    padding: 4rem 0;
    background: #ffffff;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

/* Blog Categories */
.blog-categories {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 4rem 0;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-teal);
    gap: 0.75rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    text-align: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.signup-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Sticky Banner */
.sticky-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.sticky-banner.visible {
    transform: translateY(0);
}

.sticky-banner .banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-banner .banner-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.sticky-banner a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.sticky-banner a:hover {
    opacity: 0.9;
}

.sticky-banner .banner-close {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sticky-banner .banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Card Waves (brand-colored) */
.card-wave {
    position: relative;
    overflow: hidden;
    background: white;
}

.card-wave .wave {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.15;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, var(--primary-green), var(--accent-teal) 60%);
    border-radius: 40%;
    animation: wave 55s infinite linear;
    pointer-events: none;
}

.card-wave .wave:nth-child(2),
.card-wave .wave:nth-child(3) {
    top: 210px;
}

.card-wave .wave:nth-child(2) { animation-duration: 50s; }
.card-wave .wave:nth-child(3) { animation-duration: 45s; }

.card-wave.playing .wave { animation-duration: 3000ms; }
.card-wave.playing .wave:nth-child(2) { animation-duration: 4000ms; }
.card-wave.playing .wave:nth-child(3) { animation-duration: 5000ms; }

@keyframes wave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
  color: #222222;
}

.loading-container svg {
  --spin-duration: 2000ms;
  --infinity-duration: 2000ms;
  --hsl-base-h: 5deg;
  --hsl-base-s: 70%;
  --hsl-base-l: 50%;
  animation: spin81213 var(--spin-duration) linear infinite;
  width: 200px;
  height: 100px;
}

.loading-text {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

/* New ripple loader specific to index.html */
.loader {
  --cell-size: 52px;
  --cell-spacing: 1px;
  --cells: 3;
  --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
  display: flex;
  flex-wrap: wrap;
  width: var(--total-size);
  height: var(--total-size);
}

.cell {
  flex: 0 0 var(--cell-size);
  margin: var(--cell-spacing);
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 4px;
  animation: 1.5s ripple ease infinite;
}

.cell.d-1 { animation-delay: 100ms; }
.cell.d-2 { animation-delay: 200ms; }
.cell.d-3 { animation-delay: 300ms; }
.cell.d-4 { animation-delay: 400ms; }

.cell:nth-child(1) { --cell-color: #00FF87; }
.cell:nth-child(2) { --cell-color: #0CFD95; }
.cell:nth-child(3) { --cell-color: #17FBA2; }
.cell:nth-child(4) { --cell-color: #23F9B2; }
.cell:nth-child(5) { --cell-color: #30F7C3; }
.cell:nth-child(6) { --cell-color: #3DF5D4; }
.cell:nth-child(7) { --cell-color: #45F4DE; }
.cell:nth-child(8) { --cell-color: #53F1F0; }
.cell:nth-child(9) { --cell-color: #60EFFF; }

@keyframes ripple {
  0% { background-color: transparent; }
  30% { background-color: var(--cell-color); }
  60% { background-color: transparent; }
  100% { background-color: transparent; }
}

.eight {
  --eight-length-px: 60.84563446044922px;
  --offset: calc(var(--order) * 5px);
  animation: infinity8123 var(--infinity-duration) linear infinite;
  d: path("m5 5a1 1 0 0110 0c0 4-10 6-10 10a1 1 0 0010 0c0-4-10-6-10-10");
  fill: none;
  stroke: color-mix(in srgb, #68b53c calc(var(--order) * 50%), #078f99);
  stroke-dasharray: 6px calc(var(--eight-length-px) - 6px);
  stroke-linecap: round;
  stroke-width: calc(1 - var(--order) / 10);
}

@keyframes infinity8123 {
  0% {
    stroke-dashoffset: calc(var(--eight-length-px) + var(--offset));
  }

  100% {
    stroke-dashoffset: var(--offset);
  }
}

@keyframes spin81213 {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview {
    padding: 5rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefits-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.implementation-process {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-element {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(104, 181, 60, 0.1);
}

.submit-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

/* Contact Page Styles */
.main-content {
    min-height: calc(100vh - 400px);
    padding-top: 2rem;
}

.contact-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(104, 181, 60, 0.05) 0%, rgba(7, 143, 153, 0.05) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.meeting-scheduler-section {
    padding: 4rem 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meeting-scheduler-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.scheduler-header {
    text-align: center;
    margin-bottom: 3rem;
}

.scheduler-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.scheduler-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.meeting-scheduler-container {
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: #ffffff;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0 1.5rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .meeting-scheduler-section {
        padding: 2rem 0;
    }
    
    .scheduler-header h2 {
        font-size: 1.5rem;
    }
    
    .meeting-scheduler-container {
        min-height: 500px;
    }
}

.industries-served {
    padding: 5rem 0;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Admin Portal Styles */
.admin-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.admin-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.admin-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.admin-dashboard {
    padding: 3rem 0;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
    overflow-x: auto;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: var(--primary-green);
}

.tab-button.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.content-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.add-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-button:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.content-item:hover {
    box-shadow: var(--shadow-hover);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.item-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.item-meta .author {
    color: var(--primary-green);
    font-weight: 500;
}

.item-meta .date {
    color: var(--text-light);
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-published {
    background: #d4edda;
    color: #155724;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-archived {
    background: #f8d7da;
    color: #721c24;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

.edit-button,
.delete-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-button {
    background: var(--accent-teal);
    color: white;
}

.edit-button:hover {
    background: #056b73;
}

.delete-button {
    background: #dc3545;
    color: white;
}

.delete-button:hover {
    background: #c82333;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--primary-green);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-weight: 600;
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-form {
    padding: 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cancel-button,
.save-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cancel-button {
    background: #6c757d;
    color: white;
}

.cancel-button:hover {
    background: #5a6268;
}

.save-button {
    background: var(--primary-green);
    color: white;
}

.save-button:hover {
    background: var(--accent-teal);
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-overview {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.our-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.quick-links {
    padding: 5rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: inherit;
}

.link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.link-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.link-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Leadership Team Styles */
.leadership-team {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.position {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.leadership-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.values-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.values-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.values-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.values-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Company History Styles */
.company-history {
    padding: 5rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.history-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.company-milestones {
    padding: 5rem 0;
    background: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 0 2rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.company-stats {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.org-structure {
    padding: 5rem 0;
    background: #f8f9fa;
}

.structure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.structure-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.structure-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.departments {
    display: grid;
    gap: 1.5rem;
}

.department {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.department h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.department h4 i {
    color: var(--primary-green);
}

.department p {
    color: var(--text-light);
    line-height: 1.6;
}

.structure-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Request Form Styles */
.request-form {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.request-form-element {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
}

.next-steps {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Additional Page Styles */
.why-work-with-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.open-positions {
    padding: 5rem 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.position-type {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-details {
    margin-bottom: 1rem;
}

.position-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-details i {
    color: var(--primary-green);
    width: 16px;
}

.position-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.apply-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.apply-button:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.company-culture {
    padding: 5rem 0;
    background: #f8f9fa;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.culture-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.culture-values {
    display: grid;
    gap: 1.5rem;
}

.culture-value h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.culture-value h4 i {
    color: var(--primary-green);
}

.culture-value p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefits {
    padding: 5rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.application-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--primary-green);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-green);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.office-locations {
    padding: 5rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 1.5rem;
}

.location-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.location-address,
.location-phone,
.location-hours {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Advisory Page Styles */
.advisory-overview {
    padding: 5rem 0;
}

.advisory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advisory-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.advisory-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.advisory-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.advisory-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service card styles are now handled by .services-overview .service-card above */

/* Service icon styles are now handled by .services-overview .service-icon above */

/* Service card h3 and p styles are now handled by .services-overview .service-card above */

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.advisory-process {
    padding: 5rem 0;
}

.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    text-align: center;
}

/* Blog Page Styles */
.featured-post {
    padding: 5rem 0;
    background: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    width: 100%;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.featured-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.featured-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.featured-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.post-meta .author {
    color: var(--primary-green);
    font-weight: 500;
}

.post-meta .date,
.post-meta .read-time {
    color: var(--text-light);
}

.read-more-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.blog-categories {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.blog-posts {
    padding: 5rem 0;
    background: #f8f9fa;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta .author {
    color: var(--primary-green);
    font-weight: 500;
}

.blog-meta .read-time {
    color: var(--text-light);
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-green);
}

.newsletter-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    text-align: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.signup-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Case Studies Page Styles */
.featured-case-study {
    padding: 5rem 0;
    background: #f8f9fa;
}

.featured-case-study .featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-case-study .featured-image {
    width: 100%;
}

.featured-case-study .featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.featured-case-study .featured-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.featured-case-study .featured-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.case-meta .industry {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.case-meta .company-size,
.case-meta .duration {
    color: var(--text-light);
}

.read-case {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-case:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.case-studies-filter {
    padding: 3rem 0;
    background: white;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.case-studies-grid {
    padding: 5rem 0;
}

.case-studies-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 1.5rem;
}

.case-industry {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.case-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.case-studies-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    text-align: center;
}

.case-studies-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-studies-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Whitepapers Page Styles */
.featured-whitepaper {
    padding: 5rem 0;
    background: #f8f9fa;
}

.featured-whitepaper .featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-whitepaper .featured-image {
    width: 100%;
}

.featured-whitepaper .featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.featured-whitepaper .featured-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.featured-whitepaper .featured-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.whitepaper-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.whitepaper-meta .pages,
.whitepaper-meta .read-time,
.whitepaper-meta .date {
    color: var(--text-light);
}

.download-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.whitepapers-categories {
    padding: 5rem 0;
}

.whitepapers-grid {
    padding: 5rem 0;
    background: #f8f9fa;
}

.whitepapers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.whitepaper-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whitepaper-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whitepaper-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.whitepaper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.whitepaper-card:hover .whitepaper-image img {
    transform: scale(1.05);
}

.whitepaper-content {
    padding: 1.5rem;
}

.whitepaper-category {
    background: var(--accent-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.whitepaper-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.whitepaper-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.whitepaper-content .whitepaper-meta {
    margin-bottom: 1.5rem;
}

.download-whitepaper {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.download-whitepaper:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Newsletters Page Styles */
.newsletter-signup-main {
    padding: 5rem 0;
    background: #f8f9fa;
}

.newsletter-signup-main .signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-signup-main .signup-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-options {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.newsletter-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-option:hover {
    box-shadow: var(--shadow-hover);
}

.newsletter-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green);
    margin-top: 0.2rem;
}

.option-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.option-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.subscribe-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.newsletter-archive {
    padding: 5rem 0;
}

.newsletters-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.newsletter-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.newsletter-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.newsletter-card:hover .newsletter-image img {
    transform: scale(1.05);
}

.newsletter-content {
    padding: 1.5rem;
}

.newsletter-type {
    background: var(--accent-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.newsletter-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-meta .date,
.newsletter-meta .read-time {
    color: var(--text-light);
}

.read-newsletter {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-newsletter:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.newsletter-benefits {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }

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

    .animated-text {
        font-size: 1.8rem;
    }

    .hero-video {
        object-position: center center;
    }

    .section-title {
        font-size: 2rem;
    }

    .engagement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .advisory-grid,
    .blogs-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .chatbot-container {
        width: 300px;
        height: 400px;
    }

    .container {
        padding: 0 15px;
    }

    /* Service Pages Responsive */
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-text h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Admin Portal Responsive */
    .admin-header h1 {
        font-size: 2.5rem;
    }

    .admin-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        justify-content: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .tab-button.active {
        border-left-color: var(--primary-green);
        border-bottom-color: transparent;
    }

    .content-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .content-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .item-actions {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-image {
    height: 44px;
    margin-top: 10px;
    }
    
    .logo-link {
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .animated-text {
        font-size: 1.5rem;
    }

    .hero-video {
        object-position: center center;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card,
    .advisory-card {
        padding: 1.5rem;
    }

    .chatbot-container {
        width: 280px;
        height: 350px;
    }
}


.card {
        width: 253px;
    height: 326px;
    border-radius: 20px;
    /* This will be the radius for both the card and the border */
    position: relative;
    padding: 1.8rem;
    border: 2px solid transparent;
    /* Keep border transparent */
    /* Create two background layers. The outer one is the gradient, the inner one is the card's background. */
    background: linear-gradient(to bottom, #ffffff, #d7fac3) padding-box,
      /* Inner background */
      linear-gradient(to bottom, #d7fac3, #ffffff) border-box;
    /* Outer border gradient */
    background-clip: padding-box, border-box;
    transition: 0.5s ease-out;
    overflow: hidden; /* Changed from visible to hidden to contain button */

    font-family: 'Montserrat', sans-serif;
  }


  .card-details {
    color: black;
    height: 100%;
    gap: .5em;
    display: grid;
    place-content: center;
    text-align: center;
  }

  .card-button {
    transform: translate(-50%, 50%);
    width: 60%;
    border-radius: 1rem;
    border: none;
    background-color: #68b53c;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s ease-out;
    text-decoration: none;
  }

  .text-body {
    color: rgb(0, 0, 0);
    font-family: 'Inter', sans-serif;
  }

  /*Text*/
  .text-title {
    font-size: 1.5em;
    font-weight: bold;
  }

  /*Hover*/
  .card:hover {
    border-color: #75c845;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  }

  .card:hover .card-button {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  .capabilities-section {
    padding: 5rem 0;
    background: #f8f9fa;
  }
  
  .capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
  }
  


  /* New Card Style */
  .card.teal {
    /* Background Gradient: linear-gradient(to bottom, #ffffff, #c5fff8) */
    /* Border Gradient: linear-gradient(to right, #bafff7, #159d8d) */
    background: linear-gradient(to bottom, #ffffff, #aefcf3) padding-box,
      linear-gradient(to bottom, #aefcf3, #ffffff) border-box;
    background-clip: padding-box, border-box;
  }

  .card.teal .card-button {
    background-color: #159d8d;
  }

  .card.teal:hover {
    border-color: #159d8d;
  }

/* Mega menu (panel-based) */
.mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
    z-index: 1000;
    min-height: 400px;
    width: 100%;
}

.mega-dropdown.active { display: block; }

.navbar-menu { position: relative; }
.navbar-items-container { position: static; }

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    min-width: 0;
    overflow: visible;
}

.mega-panel-left {
    flex: 0 0 280px;
    min-width: 240px;
}

.mega-panel-right {
    flex: 1 1 auto;
    min-width: 0;
    overflow: visible;
    max-width: 100%;
}

.mega-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.mega-panel-link {
    display: block;
    padding: 0.75rem 0;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.2s ease;
}

.mega-panel-link:hover {
    color: #68b53c;
}

.mega-subsection {
    margin-bottom: 2rem;
}

.mega-subsection h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.mega-left-section {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #f9fafb;
    will-change: transform, background-color;
}

.mega-left-section:hover {
    background: var(--accent-teal);
    color: rgb(250, 247, 247) !important;
    border-color: #68b53c !important;
    transform: translateX(4px) translateY(-2px);
    animation: navbarItemJump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mega-left-section.active {
    background: #f9fafb ;
    border-color: #e5e7eb;
    color: #0f172a;
}
.mega-left-section.active:hover {
    background: var(--accent-teal);
    border-color: #e5e7eb;
    color: #0f172a;
}

.mega-left-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.mega-left-section p {
    font-size: 0.875rem;
    color: inherit;
    opacity: 0.8;
    margin: 0;
}

.mega-right-content {
    display: none;
    animation: fadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.mega-right-content.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(8px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.mega-card-grid-small {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
}

.mega-card-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 1.4rem;
    height: 100%;
}
.mega-card-small1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 1px solid #ffffff00;
    border-radius: 8px;
    background: #f9fafb00;
    text-decoration: none;
    color: #ffffff00;
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 1.4rem;
}

.mega-card-small:hover {
    transform: translateY(-4px);
    border-color: #68b53c;
    box-shadow: 0 8px 24px rgba(104, 181, 60, 0.15);
}

.mega-card-small i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mega-card-small span {
    font-size: 0.875rem;
    font-weight: 500;
}

.mega-card-small span:empty {
    display: none;
}

.mega-card-small .mega-card-logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 1rem);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Remove border and background for logo card */
.mega-card-small:has(.mega-card-logo-img),
a.mega-card-small:has(img.mega-card-logo-img) {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 1rem;
}

.mega-card-small:has(.mega-card-logo-img):hover {
    transform: none;
    border: none !important;
    box-shadow: none !important;
}

.mega-big-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.mega-big-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
    min-height: 220px;
    margin-top: 3.3rem;
}

.mega-big-card:hover {
    transform: translateY(-4px);
    border-color: #68b53c;
    box-shadow: 0 8px 24px rgba(104, 181, 60, 0.15);
}

.mega-big-card-icon {
    font-size: 2rem;
    color: #68b53c;
    margin-bottom: 1rem;
}

.mega-big-card-icon .mega-card-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.mega-big-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
    
}

.mega-big-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    flex-grow: 1;
}

.mega-big-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #68b53c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-big-card-cta:hover {
    color: #4a8a2a;
}

.mega-career-card {
    grid-column: span 1;
}

.mega-career-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mega-stat {
    text-align: center;
}

.mega-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #68b53c;
}

.mega-stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* Horizontal career card */
.mega-card-horizontal {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto; /* body then CTA */
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: linear-gradient(to right, #ffffff, #f9fafb);
    text-decoration: none;
    color: #0f172a;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    margin-top: 1.8rem;
}

.mega-card-horizontal:hover {
    border-color: #cfe9b8;
    box-shadow: 0 10px 24px rgba(104,181,60,.15);
    transform: translateY(-2px);
}

.mega-card-horizontal-media i {
    font-size: 2rem;
    color: #68b53c;
}

.mega-card-horizontal-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 .25rem 0;
}

.mega-card-horizontal-body p {
    margin: 0 0 .5rem 0;
    color: #64748b;
}

.mega-card-horizontal-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .85rem;
    color: #475569;
}

.mega-card-horizontal-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #68b53c;
    font-weight: 600;
    grid-column: 1 / -1; /* span full width */
    justify-self: end; /* stick to bottom-right */
    margin-top: .5rem;
}

@media (max-width: 768px) {
    .mega-card-horizontal {
        grid-template-columns: 56px 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .mega-panel-content {
        flex-direction: column;
    }
    
    .mega-card-grid-small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .mega-big-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        position: static;
        box-shadow: none;
        border: 0;
        padding: 1rem;
        min-height: auto;
    }
    
    .mega-card-grid-small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .mega-big-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mega-card-grid-small {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Apply Montserrat font to About Us page to match homepage */
body.about-us-page,
body.about-us-page *,
body.about-us-page .navbar-link,
body.about-us-page .navbar-item,
body.about-us-page .navbar-cta,
body.about-us-page .mega-dropdown,
body.about-us-page .mega-panel,
body.about-us-page h1,
body.about-us-page h2,
body.about-us-page h3,
body.about-us-page h4,
body.about-us-page h5,
body.about-us-page h6,
body.about-us-page p,
body.about-us-page span,
body.about-us-page a,
body.about-us-page button,
body.about-us-page div,
body.about-us-page section {
    font-family: 'Montserrat', sans-serif !important;
}

/* About Us Hero Section */
.aboutus-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #68b53c 0%, #078f99 100%);
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.aboutus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.aboutus-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: white;
}

.hero-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.aboutus-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.aboutus-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.hero-white-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
}

/* Common Section Styles */
.aboutus-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #68b53c 0%, #078f99 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.aboutus-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.aboutus-section-subtitle {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.aboutus-section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.aboutus-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.aboutus-two-column.aboutus-reverse {
    direction: rtl;
}

.aboutus-two-column.aboutus-reverse > * {
    direction: ltr;
}

/* SECTION 1: Mission Section */
.aboutus-mission-section {
    padding: 9rem 2rem 7rem;
    background: #ffffff;
}

.aboutus-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.aboutus-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: #2d3748;
    font-weight: 500;
}

.aboutus-highlight-item i {
    color: #68b53c;
    font-size: 1.5rem;
}

.aboutus-visual-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f0f7 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.aboutus-large-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.aboutus-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-mini-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #68b53c;
    margin-bottom: 0.5rem;
}

.stat-mini-item p {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

/* SECTION 2: Vision Section */
.aboutus-vision-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aboutus-vision-visual {
    position: relative;
}

.aboutus-vision-overlay {
    margin-top: 2rem;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.vision-point:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vision-point i {
    font-size: 1.5rem;
    color: #68b53c;
}

.vision-point span {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.aboutus-quote {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #68b53c 0%, #078f99 100%);
    border-radius: 16px;
    position: relative;
}

.aboutus-quote i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.aboutus-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin: 0;
}

/* SECTION 3: Values Section */
.aboutus-values-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

.aboutus-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aboutus-values-header .aboutus-section-badge {
    margin-bottom: 1.5rem;
}

.aboutus-values-header .aboutus-section-title {
    margin-bottom: 1rem;
}

.aboutus-values-header .aboutus-section-subtitle {
    max-width: 900px;
    margin: 0 auto;
}

/* Business Model Diagram Styles */
.business-model-diagram {
    position: relative;
    padding: 4rem 0 3rem;
    margin-top: 3rem;
}

.connection-lines {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

.connection-lines path {
    animation: dashAnimation 20s linear infinite;
}

@keyframes dashAnimation {
    to {
        stroke-dashoffset: -1000;
    }
}

.model-components {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.model-component {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.model-component::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-color: #68b53c;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.model-component:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(104, 181, 60, 0.25);
    border-color: transparent;
    
}

.model-component:hover::before {
    opacity: 1;
}

.component-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.component-icon-wrapper {
    margin: 1.5rem 0;
    position: relative;
}

.component-hexagon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.model-component:nth-child(1) .component-hexagon { animation-delay: 0s; }
.model-component:nth-child(2) .component-hexagon { animation-delay: 0.2s; }
.model-component:nth-child(3) .component-hexagon { animation-delay: 0.4s; }
.model-component:nth-child(4) .component-hexagon { animation-delay: 0.6s; }
.model-component:nth-child(5) .component-hexagon { animation-delay: 0.8s; }

.model-component:hover .component-hexagon {
    transform: rotate(360deg) scale(1.1);
    animation: none;
}

.component-hexagon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.component-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.component-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a202c;
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
}

.component-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.component-number {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(104, 181, 60, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.model-component:hover .component-number {
    transform: scale(1.2) rotate(360deg);
}




.value-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-gif-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .model-component {
        padding: 2rem 1.2rem;
    }
    
    .component-hexagon {
        width: 100px;
        height: 100px;
    }
    
    .component-icon {
        width: 50px;
        height: 50px;
    }
    
    .component-title {
        font-size: 1.2rem;
    }
    
    .component-description {
        font-size: 0.88rem;
    }
}

@media (max-width: 1024px) {
    .aboutus-hero-title {
        font-size: 2.75rem;
    }
    
    .aboutus-two-column {
        gap: 3rem;
    }
    
    .aboutus-section-title {
        font-size: 2.25rem;
    }
    
    /* Business Model Diagram - Tablet */
    .model-components {
        flex-wrap: wrap;
        gap: 3rem 1.5rem;
    }
    
    .model-component {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 280px;
    }
    
    .connection-lines {
        display: none;
    }
    
    
}

@media (max-width: 768px) {
    .aboutus-hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 400px;
    }
    
    .aboutus-hero-title {
        font-size: 2.25rem;
    }
    
    .aboutus-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .aboutus-mission-section {
        padding: 6rem 1.5rem 4rem;
    }
    
    .aboutus-vision-section,
    .aboutus-values-section {
        padding: 4rem 1.5rem;
    }
    
    .aboutus-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .aboutus-two-column.aboutus-reverse {
        direction: ltr;
    }
    
    .aboutus-section-title {
        font-size: 2rem;
    }
    
    .aboutus-section-text {
        font-size: 1.07rem;
    }
    
    .aboutus-stats-mini {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Business Model Diagram - Mobile */
    .business-model-diagram {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .model-components {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .model-component {
        flex: 1 1 auto;
        min-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .component-hexagon {
        width: 100px;
        height: 100px;
    }
    
    .component-icon {
        width: 50px;
        height: 50px;
    }
    
    .component-title {
        font-size: 1.2rem;
    }
    
    .component-description {
        font-size: 0.9rem;
    }
    
    .component-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: -12px;
        right: -12px;
    }
    
    
    .aboutus-large-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .aboutus-hero-title {
        font-size: 1.875rem;
    }
    
    .aboutus-hero-subtitle {
        font-size: 1rem;
    }
    
    .aboutus-section-title {
        font-size: 1.75rem;
    }
    
    .aboutus-visual-card {
        padding: 2rem;
    }
    
}


.cta-section {
    position: relative;
    text-align: center;
    overflow: hidden; /* Prevent overflow from absolutely positioned image */

    padding-top: 207px;      /* space above */
    padding-bottom: 200px;   /* PREVENT OVERLAP with footer */
}


/* Background Logo (centered behind text) */
.cta-bg-logo {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 1500px;     /* increased width */
    height: 1500px;    /* increased height */
    max-width: 100vw; /* Prevent exceeding viewport width */
    max-height: 100vh; /* Prevent exceeding viewport height */
    object-fit: contain;

    opacity: 1;       /* FULL OPACITY */
    z-index: 1;
    pointer-events: none;
}

/* Mobile Background Logo (hidden by default, shown only on mobile) */
.cta-bg-logo-mobile {
    display: none;
}

/* Foreground content */
.cta-content {
    position: relative;
    z-index: 5;
}

/* Title */
.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

/* Input + Button container */
.cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Input field */
.cta-form input {
    width: 330px;
    height: 48px;
    padding: 0 15px;
    font-size: 16px;
    border: 2px solid #d3d3d3;
    border-radius: 6px;
    outline: none;
}

/* Button styling */
.cta-form button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 0 22px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    height: 48px;
    font-weight: 600;
}

.cta-form button:hover {
    background-color: #45a049;
}
/* ---------------------------------------
   TABLET (768px – 1024px)
---------------------------------------- */
@media (max-width: 1024px) {
    .cta-section {
        padding-top: 170px;
        padding-bottom: 250px;
    }

    .cta-bg-logo {
        width: 800px;
        height: 800px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-form input {
        width: 280px;
        height: 46px;
    }

    .cta-form button {
        height: 46px;
        padding: 0 20px;
    }
}

/* ---------------------------------------
   MOBILE LARGE (481px – 767px)
---------------------------------------- */
@media (max-width: 767px) {
    .cta-section {
        padding-top: 140px;
        padding-bottom: 220px;
    }

    /* Hide desktop logo on mobile */
    .cta-bg-logo {
        display: none;
    }

    /* Show mobile logo - adjustable size via CSS variable */
    .cta-bg-logo-mobile {
        display: block !important;
        position: absolute !important;
        top: 43% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 1000px !important; /* Direct value - change this or use CSS variable */
        min-width: 1000px !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        opacity: 1 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    /* Keep form horizontal like desktop */
    .cta-form {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 20px;
    }

    .cta-form input {
        width: 250px;
        height: 46px;
        font-size: 15px;
    }

    .cta-form button {
        height: 46px;
        padding: 0 20px;
        font-size: 15px;
    }
}

/* ---------------------------------------
   MOBILE SMALL (≤ 480px)
---------------------------------------- */
@media (max-width: 480px) {
    .cta-section {
        padding-top: 120px;
        padding-bottom: 180px;
    }

    /* Hide desktop logo on mobile */
    .cta-bg-logo {
        display: none;
    }

    .cta-bg-logo-mobile {
        display: block !important;
        position: absolute !important;
        top: 43% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 1000px !important;
        min-width: 1000px !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        opacity: 1 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .cta-content h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
        padding: 0 20px;
    }

    /* Keep form horizontal like desktop */
    .cta-form {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 15px;
    }

    .cta-form input {
        width: 200px;
        height: 44px;
        font-size: 14px;
    }

    .cta-form button {
        height: 44px;
        font-size: 14px;
        padding: 0 18px;
    }
}
