/* ============================================
   SUAT Fuels - Design System
   Clean White Theme
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors */
    --primary-green: #4acc9a;
    --dark-green: #3ba889;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-gray-50: #f7fafc;
    --bg-gray-100: #edf2f7;
    --bg-gray-200: #e2e8f0;
    --border-gray: #cbd5e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* --- Modern image treatment for services carousel --- */
.service-slide-image {
    /* larger and more dramatic */
    max-width: 520px;
    max-height: 360px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 320ms cubic-bezier(.2, .9, .23, 1), box-shadow 320ms ease;
    position: relative;
    display: block;
    clip-path: polygon(0 6%, 100% 0%, 100% 88%, 0% 100%);
    /* diagonal-ish top/right and soft bottom */
}

/* Slight shadow on hover for emphasis - no scale */
.service-slide:hover .service-slide-image,
.service-slide:focus .service-slide-image {
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

/* Decorative grid / lattice overlay using pseudo-element on the image container */
.service-slide-content {
    position: relative;
    overflow: visible;
}

.service-slide-content::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px, 24px 24px;
    mix-blend-mode: overlay;
    border-radius: 12px;
    opacity: 0.85;
}

/* Fallback for browsers without clip-path: use rotated mask */
@supports not (clip-path: polygon(0 0, 100% 0, 100% 100%)) {
    .service-slide-image {
        transform: rotate(-2deg);
        border-radius: 10px;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .service-slide-image {
        max-width: 420px;
        max-height: 300px;
    }

    .services-carousel-nav {
        display: none;
        /* hide right nav on smaller screens for space */
    }
}

@media (max-width: 600px) {
    .service-slide-image {
        max-width: 320px;
        max-height: 220px;
        clip-path: none;
        transform: none;
    }

    .service-slide-content::after {
        opacity: 0.5;
        background-size: 16px 16px, 16px 16px;
    }
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

/* === Container === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === Header & Navigation === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-gray);
    height: var(--header-height);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--primary-green);
    background: var(--bg-gray-50);
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-link.cta {
    background: var(--primary-green);
    color: white;
    padding: 0.625rem 1.25rem;
}

.nav-link.cta:hover {
    background: var(--dark-green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-base);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    list-style: none;
    padding: var(--spacing-xs);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all var(--transition-fast);
    display: block;
}

.dropdown-item:hover {
    background: var(--bg-gray-50);
    color: var(--primary-green);
    padding-left: 1.25rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* === Main Content === */
main {
    margin-top: var(--header-height);
}

/* === Hero Section === */
.hero {
    background: #000;
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* === Hero Modern Section with Slideshow === */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay with gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Hero Container */
.hero-modern-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

/* Hero Content */
.hero-modern-content {
    max-width: 900px;
    animation: heroFadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4acc9a;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 204, 154, 0.15);
    border-left: 3px solid #4acc9a;
    animation: heroFadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-modern-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: heroSlideIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-highlight {
    display: block;
    animation: heroSlideIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #4a90e2 0%, #63b3ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.text-gradient-green {
    background: linear-gradient(135deg, #4acc9a 0%, #68d9b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.text-gradient-blue-green {
    background: linear-gradient(135deg, #4a90e2 0%, #4acc9a 40%, #68d9b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: heroFadeIn 1s ease-out 0.7s forwards;
    opacity: 0;
}

/* CTA Buttons - Geometric Style */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8% 0, 100% 0, 100% 70%, 92% 100%, 0 100%, 0 30%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #4acc9a;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #4acc9a 0%, #3db885 100%);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-cta-primary:hover::before {
    width: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(74, 204, 154, 0.5);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8% 0, 100% 0, 100% 70%, 92% 100%, 0 100%, 0 30%);
    border: 2px solid #4a90e2;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-cta-secondary:hover::before {
    width: 100%;
}

.hero-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.5);
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-indicator.active {
    background: #4acc9a;
    width: 60px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-modern-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-modern {
        min-height: 90vh;
    }

    .hero-modern-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-indicators {
        bottom: 2rem;
    }
}

/* === OLD Hero (keeping for other pages) === */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: -40px;
    /* Slight upward adjustment */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: white;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

.btn-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === Section === */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* === Grid System === */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

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

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

/* === Card Components === */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

/* === Product Cards with Diagonal Cuts === */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--primary-green);
}

.product-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform var(--transition-base);
}

.product-card:hover .product-card-image {
    transform: scale(1.02);
}

.product-card-content {
    padding: var(--spacing-lg);
}

.product-card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.product-card-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* === Category Cards (Large) === */
.category-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(74, 204, 154, 0.4) 100%);
    transition: all var(--transition-base);
    z-index: 1;
}

.category-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(74, 204, 154, 0.6) 100%);
}

.category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.category-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
    text-align: center;
    z-index: 2;
}

.category-card-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.category-card-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.category-card-cta {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.category-card:hover .category-card-cta {
    gap: 1rem;
}

/* === Carousel === */
.carousel {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.carousel-container {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform var(--transition-slow);
    scroll-behavior: smooth;
}

.carousel-item {
    flex: 0 0 calc(33.333% - var(--spacing-lg));
    min-width: calc(33.333% - var(--spacing-lg));
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1.25rem;
    color: var(--text-dark);
}

.carousel-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* === Footer === */
footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

/* === Breadcrumb === */
.breadcrumb {
    padding: var(--spacing-md) 0;
    background: var(--bg-gray-50);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
}

.breadcrumb-item::after {
    content: '›';
    margin-left: var(--spacing-xs);
    color: var(--text-light);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: var(--primary-green);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* === Utilities === */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

/* === Responsive Design === */
@media (max-width: 968px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .carousel-item {
        flex: 0 0 calc(50% - var(--spacing-lg));
        min-width: calc(50% - var(--spacing-lg));
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-gray);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-gray);
        border-radius: 0;
        display: none;
        padding-left: var(--spacing-md);
    }



    .dropdown.active .dropdown-menu {
        display: block;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

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

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-up-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-icon-svg {
    width: 35px;
    height: 35px;
}

/* === Services Icons Redesign === */
.services-grid-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.service-icon-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #4a90e2;
    /* Blue icon color */
}

.service-icon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.service-icon-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* === About Grid Redesign === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    /* Seamless */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text-col {
    background: #f9f9f9;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-col {
    position: relative;
    min-height: 400px;
}

.about-quote-col {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    /* Blue gradient */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    opacity: 0.5;
    margin-bottom: 1rem;
    font-family: serif;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-logo {
    width: 120px;
    opacity: 0.9;
}

.btn-outline-rounded {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #4a90e2;
    color: #4a90e2;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-outline-rounded:hover {
    background: #4a90e2;
    color: white;
}

/* === Global Presence (Map) Section === */
.global-presence-section {
    padding: 4rem 0 6rem 0;
    /* Reduced top padding */
    background: white;
    position: relative;
    z-index: 2;
    /* Sit above the wave */
    margin-top: -2rem;
    /* Pull up slightly */
}

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

/* === Map Redesign === */
.map-section-redesign {
    padding: 5rem 0;
    background: white;
}

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

.map-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
}

.text-blue {
    color: #4a90e2;
}

.text-green {
    color: #2ecc71;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.region-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.region-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.region-list li::before {
    content: "•";
    color: #999;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    top: 2px;
}

.map-footer-text {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.dot-green {
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

.map-container-small {
    width: 100%;
    height: 400px;
    /* Smaller height */
    position: relative;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid-icons {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .map-container-small {
        height: 300px;
    }
}

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

/* === Modern Services Carousel === */
.services-carousel-section {
    padding: 0;
    overflow: visible;
    margin-top: -120px;
    /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.services-carousel-bg {
    background: transparent;
    padding: 0 0 3rem;
}

.services-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

.services-carousel-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.services-carousel-track {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    flex-shrink: 0;
}

.service-slide.active {
    opacity: 1;
    pointer-events: all;
}

.service-slide-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    height: 100%;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

/* Remove hover border effect */
.service-slide-content:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.service-slide-image {
    width: 30%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: filter 0.3s ease;
    border-radius: 16px 0 0 16px;
    position: relative;
}

.service-slide-content:hover .service-slide-image {
    filter: drop-shadow(12px 4px 20px rgba(74, 204, 154, 0.5)) drop-shadow(6px 2px 10px rgba(0, 0, 0, 0.3));
}

.service-slide-text {
    width: 70%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-slide-text h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-slide-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
}

.service-slide-content:hover .service-link {
    color: #2ecc71;
}

.services-carousel-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Progress Bar Container - Diagonal on Image Cut */
.carousel-progress-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    /* Matches .service-slide-image width */
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.08);
    /* Create the diagonal strip shape matching the image clip-path - WIDER */
    clip-path: polygon(100% 0,
            calc(100% - 18px) 0,
            calc(85% - 18px) 100%,
            85% 100%);
    cursor: pointer;
    transition: background 0.3s ease, clip-path 0.3s ease;
}

.carousel-progress-container:hover {
    background: rgba(74, 144, 226, 0.15);
}

/* Progress Bar Fill */
.carousel-progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, #4a90e2 0%, #4acc9a 100%);
    transition: height 0.1s linear;
    /* No shadow needed as it's clipped */
}

/* Next Button - Geometric SUAT Style */
.carousel-next-btn {
    background: linear-gradient(135deg, #4acc9a 0%, #3db885 100%);
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(74, 204, 154, 0.4);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

/* Animated pulse ring */
.carousel-next-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #4acc9a;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Arrow animation on hover */
.carousel-next-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.carousel-next-btn:hover svg {
    transform: translateX(4px);
    animation: arrow-bounce 0.6s ease infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(4px);
    }

    50% {
        transform: translateX(8px);
    }
}

.carousel-next-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(74, 204, 154, 0.6);
    background: linear-gradient(135deg, #5dd9a8 0%, #4acc9a 100%);
}

.carousel-next-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .services-carousel-title {
        font-size: 2rem;
    }

    .services-carousel-section {
        margin-top: -40px;
        padding: 3rem 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .services-carousel-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .services-carousel-wrapper {
        padding: 0;
        border-radius: 16px;
        overflow: visible;
        display: block !important;
    }

    .services-carousel-track {
        height: auto;
        min-height: 450px;
        display: block !important;
        position: relative;
    }

    .service-slide {
        position: relative !important;
        display: block;
        opacity: 1 !important;
        pointer-events: all !important;
        margin-bottom: 2rem;
        height: auto !important;
    }

    .service-slide.active {
        display: block;
    }

    .service-slide:not(.active) {
        display: none;
    }

    .service-slide-content {
        flex-direction: column;
        height: auto;
        min-height: 450px;
        display: flex !important;
    }

    .service-slide-image {
        width: 100%;
        height: 220px;
        clip-path: none;
        border-radius: 16px 16px 0 0;
        object-fit: cover;
    }

    .service-slide-text {
        width: 100%;
        padding: 2.5rem 2rem;
    }

    .service-slide-text h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .service-slide-text p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: #666;
    }

    .services-carousel-nav {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0;
        margin-top: 1.5rem;
    }

    .carousel-progress-container {
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 5px;
        border-radius: 0 0 16px 16px;
        clip-path: none;
        background: rgba(0, 0, 0, 0.08);
    }

    .carousel-progress-bar {
        left: 0;
        bottom: 0;
        width: 0%;
        height: 100%;
        background: linear-gradient(to right, #4a90e2 0%, #4acc9a 100%);
        transition: width 0.3s ease;
    }

    .carousel-next-btn {
        width: 56px;
        height: 56px;
    }
}

/* === Committed to Operations Section - Ultra Modern Redesign === */
.committed-section-modern {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Decorative background pattern */
.committed-section-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60%;
    height: 120%;
    background:
        radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, transparent 48%, rgba(74, 204, 154, 0.03) 48%, rgba(74, 204, 154, 0.03) 52%, transparent 52%);
    background-size: 100% 100%, 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.committed-hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

/* --- Text Content Side --- */
.committed-hero-content {
    background: white;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: committedFadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.committed-hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.committed-hero-title .gradient-accent {
    background: linear-gradient(135deg, #4a90e2 0%, #4acc9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.committed-hero-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 95%;
}

.committed-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.35);
    width: fit-content;
}

.committed-hero-cta:hover {
    background: linear-gradient(135deg, #4a90e2 0%, #4acc9a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.45);
}

/* --- Image Side with Modern Frame --- */
.committed-hero-visual {
    position: relative;
    overflow: hidden;
    animation: committedFadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.committed-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.committed-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.05) saturate(1.1);
}

.committed-image-frame:hover img {
    transform: scale(1.08);
}

/* Diagonal accent overlay */
.committed-image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 70%, rgba(74, 144, 226, 0.15) 100%);
    pointer-events: none;
}

/* --- Quote Side with Modern Style --- */
.committed-hero-quote {
    background: linear-gradient(145deg, #4a90e2 0%, #357abd 50%, #2c6aa0 100%);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: committedFadeInRight 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* Animated gradient overlay */
.committed-hero-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 204, 154, 0.15) 0%, transparent 50%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(10%, 10%) scale(1.2);
        opacity: 0.8;
    }
}

/* Decorative pattern */
.committed-hero-quote::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.quote-icon {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.committed-quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.committed-quote-footer {
    position: relative;
    z-index: 1;
}

.committed-quote-logo {
    width: 120px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.committed-quote-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animations */
@keyframes committedFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes committedFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes committedFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .committed-hero-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .committed-hero-content {
        grid-column: 1;
        grid-row: 1;
    }

    .committed-hero-visual {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .committed-hero-quote {
        grid-column: 1;
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .committed-section-modern {
        padding: 3rem 1rem;
    }

    .committed-hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .committed-hero-content,
    .committed-hero-visual,
    .committed-hero-quote {
        grid-column: 1;
    }

    .committed-hero-content {
        grid-row: 1;
        text-align: center;
        padding: 2.5rem;
    }

    .committed-hero-cta {
        margin: 0 auto;
    }

    .committed-hero-visual {
        grid-row: 2;
    }

    .committed-image-frame {
        min-height: 300px;
    }

    .committed-hero-quote {
        grid-row: 3;
        padding: 2.5rem;
        text-align: center;
    }

    .committed-hero-title {
        font-size: 1.8rem;
    }
}

/* === OLD Committed to Operations Section (Keeping for reference) === */
/* === Committed to Operations Section (Modern & Polished) === */
.committed-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.committed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Text Column - Slide from Left */
.committed-text {
    background: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-80px);
    animation: slideInFromLeft 1s ease-out 0.2s forwards;
}

.committed-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.committed-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-read-more:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

/* Image Column */
.committed-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.4s forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Quote Column - Slide from Right */
.committed-quote {
    background: linear-gradient(135deg, #4a90e2 0%, #2980b9 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    opacity: 0;
    transform: translateX(80px);
    animation: slideInFromRight 1s ease-out 0.2s forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-mark {
    font-size: 5rem;
    line-height: 0.8;
    opacity: 0.2;
    font-family: serif;
    margin-bottom: 1.5rem;
    color: white;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.committed-quote .quote-logo {
    width: 130px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* === Core Services Section (Flow Design) === */
.core-services-section {
    padding: 6rem 0 10rem 0;
    /* Extra bottom padding for wave overlap */
    background: linear-gradient(to bottom, white, #f0f7ff);
    /* Subtle gradient to make wave visible */
    position: relative;
}

/* Wave Separator at the bottom of Core Services */
/* Core Services Section - Modern Cards */
.core-services-section {
    padding: 4rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 2;
}

/* Core Services Section - Grid with Horizontal Scroll */
.core-services-section {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5fb 100%);
    padding: 4rem 0 3rem 0;
    overflow: hidden;
}

.services-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 4rem;
}

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

.services-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.services-accent-bar {
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, #4a90e2 0%, #4acc9a 50%, #4a90e2 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.services-grid-wrapper {
    position: relative;
    width: 100%;
}

.services-grid-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.services-grid-container:active {
    cursor: grabbing;
}

.services-grid-track {
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
}

/* Hover effect: when hovering the track, shrink all cards */
.services-grid-track:hover .service-grid-card {
    flex: 0.85;
    filter: brightness(0.9);
}

/* The hovered card grows larger */
.services-grid-track .service-grid-card:hover {
    flex: 1.5;
    filter: brightness(1);
}

.service-grid-card {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: block;
    flex: 1;
}

.service-grid-card.featured {
    box-shadow: inset 0 0 0 2px #1a3a5c;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-grid-card:hover .service-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-grid-card:hover .service-card-image {
    transform: scale(1.08);
}

.service-overlay h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-grid-card:hover .service-overlay h3 {
    transform: translateY(0);
}

.service-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.service-grid-card:hover .service-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.service-grid-card:hover {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a90e2;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.core-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .core-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .core-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* What We Excel At - Mobile Responsive */
    .services-section-header {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-grid-track {
        flex-direction: column;
        gap: 0;
    }

    .services-grid-track:hover .service-grid-card {
        flex: 1;
        filter: none;
    }

    .service-grid-card {
        width: 100% !important;
        min-height: 300px;
        height: 300px;
        flex: none !important;
        border-radius: 0;
        margin-bottom: 0;
    }

    .service-grid-card:first-child {
        border-radius: 16px 16px 0 0;
    }

    .service-grid-card:last-child {
        border-radius: 0 0 16px 16px;
    }

    .service-overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
        padding: 2rem 1.5rem;
    }

    .service-overlay h3 {
        transform: translateY(0);
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .service-overlay p {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-grid-card:hover {
        flex: 1 !important;
        transform: none;
    }
}

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

    .services-section-header {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .services-accent-bar {
        width: 150px;
        height: 5px;
    }

    .service-grid-card {
        height: 280px;
        min-height: 280px;
    }

    .service-overlay {
        padding: 1.75rem 1.25rem;
    }

    .service-overlay h3 {
        font-size: 1.4rem;
    }

    .service-overlay p {
        font-size: 0.9rem;
    }
}

/* Integrated Stage Cards - Modern & Animated */
.stage-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInStagger 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 20;
    border-left: 6px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 90px;
    /* Even more compact */
}

.stage-content {
    flex: 1;
    padding: 1.25rem 1rem 1.25rem 3rem;
    /* Balanced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    /* Ensure content is above any background effects */
}

/* Staggered Layout */
.stage-item:nth-child(1) {
    margin-left: -16%;
    width: 116%;
    animation-delay: 0.2s;
    border-left-color: #4a90e2;
}

.stage-item:nth-child(2) {
    margin-left: -10%;
    width: 110%;
    animation-delay: 0.5s;
    border-left-color: #4acc9a;
}

.stage-item:nth-child(3) {
    margin-left: -4%;
    width: 104%;
    animation-delay: 0.8s;
    border-left-color: #1a3a5c;
}

.stage-item:hover {
    transform: translateX(-10px);
    box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 25;
}

/* Time Annex Design - Integrated from Right */
.stage-time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 0 3rem;
    /* Extra left padding to account for the angle */
    width: auto;
    min-width: 180px;
    font-weight: 700;
    color: white;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    /* Sharper angle for better integration */
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -30px;
    /* Pull left to overlap */
    position: relative;
    z-index: 1;
}

/* Specific Colors for Stages & Time Blocks */
.stage-1 .stage-label {
    background: #4a90e2;
}

.stage-1 .stage-time {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.stage-2 .stage-label {
    background: #4acc9a;
}

.stage-2 .stage-time {
    background: linear-gradient(135deg, #4acc9a, #3db88b);
}

.stage-3 .stage-label {
    background: #1a3a5c;
}

.stage-3 .stage-time {
    background: linear-gradient(135deg, #1a3a5c, #0f2942);
}

@keyframes slideInStagger {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.stage-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.core-icon svg {
    width: 40px;
    height: 40px;
}

.core-card:hover .core-icon {
    border-color: #4a90e2;
    background: #4a90e2;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.core-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.core-card:hover h3 {
    color: #4a90e2;
}

.core-card p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    padding: 0 1rem;
}

.core-card:hover p {
    color: #4a5568;
}

/* Responsive */
@media (max-width: 992px) {
    .core-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .core-services-grid::before {
        display: none;
        /* Hide line on tablet/mobile */
    }
}

@media (max-width: 576px) {
    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* === Stages Responsive - Mobile === */
@media (max-width: 768px) {
    /* Remove staggered layout on mobile - align all to left */
    .stage-item:nth-child(1),
    .stage-item:nth-child(2),
    .stage-item:nth-child(3) {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .stage-item {
        margin-bottom: 1.5rem;
    }

    .stage-content {
        padding: 1.5rem 1rem;
    }

    .stage-time {
        min-width: 140px;
        font-size: 0.8rem;
        padding: 0 1rem 0 2rem;
        clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
        margin-left: -20px;
    }
}

@media (max-width: 576px) {
    .roi-split {
        flex-direction: column;
    }

    .roi-left-panel,
    .roi-right-panel {
        width: 100%;
        padding: 2rem 1rem;
    }

    .roi-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .stage-header h4 {
        font-size: 1.1rem;
    }

    .stage-content p {
        font-size: 0.9rem;
    }

    .stage-time {
        font-size: 0.75rem;
        min-width: 120px;
        padding: 0 0.75rem 0 1.5rem;
    }
}

/* === Global Presence Section - Ultra Modern Redesign === */
.global-section-modern {
    position: relative;
    background: white;
    padding: 5rem 0;
    overflow: hidden;
}

/* Decorative background - tech grid pattern */
.global-section-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 70%;
    height: 120%;
    background:
        radial-gradient(circle at 50% 50%, rgba(74, 204, 154, 0.03) 0%, transparent 60%),
        linear-gradient(45deg, transparent 48%, rgba(74, 144, 226, 0.03) 48%, rgba(74, 144, 226, 0.03) 52%, transparent 52%);
    background-size: 100% 100%, 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.global-hero-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* --- Content Side --- */
.global-hero-content {
    padding-right: 1rem;
    animation: globalFadeInUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.global-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.global-hero-title .gradient-blue {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.global-hero-title .gradient-green {
    background: linear-gradient(135deg, #4acc9a 0%, #2eb87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.global-hero-description {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 95%;
    border-left: 4px solid #4a90e2;
    padding-left: 1.25rem;
    font-weight: 500;
}

.global-region-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.global-region-tags li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.global-region-tags li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
    color: #4a90e2;
}

.region-marker {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4acc9a 0%, #4a90e2 100%);
    border-radius: 50%;
}

.global-hero-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 95%;
}

/* --- Visual Side - Globe with Modern Frame --- */
.global-hero-visual {
    position: relative;
    z-index: 10;
    animation: globalFadeInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateX(30px);
    overflow: visible;
}

.globe-frame {
    position: relative;
    width: 100%;
    height: 420px;
    margin-bottom: 2rem;
}

/* The globe container with clip-path */
.globe-content {
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.globe-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}

.globe-content:hover {
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

/* Decorative dot pattern behind globe */
.globe-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#4acc9a 2px, transparent 2px);
    background-size: 20px 20px;
    border: 2px solid rgba(74, 204, 154, 0.25);
    z-index: -1;
    clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
    transition: transform 0.4s ease;
}

.globe-frame:hover::before {
    transform: translate(10px, 10px);
}

/* Gradient overlay behind for depth */
.globe-frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 204, 154, 0.1));
    z-index: -2;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* --- KPIs Modern Cards --- */
.global-kpis-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.kpi-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4acc9a 0%, #4a90e2 100%);
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 204, 154, 0.15);
}

.kpi-card .kpi-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4acc9a 0%, #2eb87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.kpi-card .kpi-text {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes globalFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .global-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .global-hero-content {
        order: 1;
        text-align: center;
        padding-right: 0;
    }

    .global-hero-title {
        font-size: 2.8rem;
    }

    .global-hero-description {
        border-left: none;
        padding-left: 0;
        margin: 0 auto 1.5rem;
        text-align: center;
    }

    .global-region-tags {
        justify-content: center;
    }

    .global-hero-text {
        margin: 0 auto;
        text-align: center;
    }

    .global-hero-visual {
        order: 2;
    }

    .globe-frame {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .global-section-modern {
        padding: 4rem 0;
        overflow-x: hidden;
    }

    .global-hero-container {
        padding: 0 1.5rem;
        overflow: visible;
        gap: 3rem;
    }

    .global-hero-content {
        padding: 0;
    }

    .global-hero-visual {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 0;
    }

    .global-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .global-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .global-hero-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .globe-frame {
        height: 320px;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .globe-content {
        clip-path: polygon(6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%, 0 6%);
        width: 100%;
        height: 100%;
    }

    .globe-content iframe {
        width: 100%;
        height: 100%;
    }

    .globe-frame::before {
        clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
    }

    .global-kpis-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .kpi-card {
        padding: 2rem 1rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
    }

    .kpi-card .kpi-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        line-height: 1;
    }

    .kpi-card .kpi-text {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.3;
    }
}

/* === OLD Global Presence Section (Keeping for reference) === */
.global-section {
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

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

/* Left Column */
.global-content {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically */
    gap: 0.75rem;
    /* Consistent gap between elements */
    height: 100%;
    padding-top: 0;
}

.global-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.global-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0;
}

.text-green {
    color: #4acc9a;
}

.text-blue {
    color: #4a90e2;
}

.text-black {
    color: #000000 !important;
}

.global-logo {
    height: 40px;
    width: auto;
    margin-top: 10px;
}

.global-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 500;
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.region-list li {
    font-size: 1.05rem;
    color: #000;
    font-weight: 600;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.region-list li:hover {
    color: #4a90e2;
}

.region-list li::before {
    content: '▸';
    color: #4a90e2;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.global-description {
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    max-width: 90%;
    font-weight: 400;
}

/* Right Column */
.global-map-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globe-wrapper {
    width: 100%;
    height: 450px;
    /* Increased size */
    position: relative;
    margin-bottom: 0.5rem;
    /* Reduced margin */
}

/* KPI Header Label */
.kpi-header-label {
    width: 100%;
    font-size: 0.75rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0;
    /* Removed negative margin to prevent overlap */
    position: relative;
    z-index: 10;
}

.kpi-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4acc9a;
    /* Green */
    border-radius: 50%;
}

/* KPIs */
.global-kpis {
    display: flex;
    justify-content: center;
    gap: 6rem;
    /* Wider spacing */
    width: 100%;
    margin-bottom: 2rem;
}

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

.kpi-number {
    display: block;
    font-size: 5.5rem;
    /* Large and prominent */
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.kpi-value {
    display: block;
    font-size: 3rem;
    /* Moderate size - balanced and readable */
    font-weight: 800;
    color: #4acc9a;
    /* Turquoise green */
    line-height: 1;
    margin-bottom: 0.75rem;
}

.kpi-label {
    font-size: 0.85rem;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legend */
.map-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    background-color: #4acc9a;
    border-radius: 50%;
}

.legend-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* === Aviation Fuel & Services Section (Branded Drop) === */
.aviation-services-section {
    padding: 8rem 0;
    background: white;
    overflow: visible;
    /* Allow drop shadow to bleed */
}

.aviation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* The SUAT Logo with Photo Background */
.logo-with-photo {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

.logo-background-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.logo-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    mix-blend-mode: normal;
}

/* The SUAT Drop Shape Container (Corrected SVG) */
.aviation-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 0.83;
    /* Matches viewBox 100 120 */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImage 6s ease-in-out infinite;
    transform: none;
    /* Ensure no rotation */
    filter: none;
}

.suat-drop-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Cleanup old classes */
.drop-shape,
.aviation-img,
.drop-shape::after {
    display: none;
}

/* Decorative blurred drop behind */
.aviation-image-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10px;
    width: 100%;
    height: 100%;
    border-radius: 0% 50% 50% 50%;
    transform: rotate(45deg) scale(0.8, 1.2);
    background: linear-gradient(135deg, #4a90e2 0%, #4acc9a 100%);
    opacity: 0.2;
    filter: blur(25px);
    z-index: 1;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
        /* No rotation - keep vertical */
    }

    50% {
        transform: translateY(-15px);
        /* Gentle float up */
    }
}

.img-decoration {
    display: none;
    /* Removed for cleaner look */
}

.aviation-content {
    /* opacity: 0; */
    /* animation: fadeInRight 1s ease-out 0.3s forwards; */
    /* Delayed animation */
}

.aviation-content .section-title {
    font-size: 3rem;
    /* Larger title */
    color: #1a1a1a;
    /* Darker black */
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
    /* letter-spacing: -0.5px; */
}

.text-blue {
    color: #4a90e2;
}

.aviation-content .section-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    font-weight: 300;
    /* Lighter weight for elegance */
}

/* Corporate List Style (Moeve inspired) */
.corporate-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.corporate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.line-accent {
    width: 20px;
    height: 2px;
    background-color: #4a90e2;
    display: block;
}

.corporate-item h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === ROI / 3 Stages Section (Integrated Design) === */
.roi-section {
    padding: 0;
    margin-top: 3rem;
    background: white;
    overflow: hidden;
}

.roi-container {
    display: flex;
    min-height: 600px;
    position: relative;
}

/* Left Panel - Angled & Integrated */
.roi-left-panel {
    width: 40%;
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 3rem;
    padding-left: 2rem;
    color: white;
    text-align: left;
    z-index: 1;
    /* LOWER z-index so stages can float over it */
    /* Create the angled cut */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    /* Shadow casting on right panel */
}

.roi-subtitle-top {
    font-size: 2.5rem;
    /* Much larger */
    font-weight: 900;
    color: #4acc9a;
    /* Striking Green */
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.roi-subtitle:hover .roi-subtitle-top {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(74, 204, 154, 0.5);
    letter-spacing: 2px;
}

.roi-subtitle {
    flex-shrink: 0;
    opacity: 0;
    animation: slideInFromLeftText 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    transition: all 0.3s ease;
    cursor: pointer;
}

.roi-subtitle:hover {
    transform: translateX(10px);
}

.roi-content-left {
    z-index: 2;
    max-width: 90%;
    text-align: left;
    align-self: flex-start;
    margin: auto 0;
    opacity: 0;
    animation: slideInFromLeftText 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.5s;
    transition: all 0.3s ease;
    cursor: pointer;
}

.roi-content-left:hover {
    transform: translateX(10px);
}

.roi-content-left:hover h2,
.roi-content-left:hover h3 {
    color: #e8f4f8;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

.percent-highlight {
    color: #ffffff;
    font-weight: 900;
    font-size: 1.15em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(74, 204, 154, 0.5);
    position: relative;
    display: inline-block;
}

.percent-highlight:hover {
    color: #ffc857;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.8);
    transform: scale(1.1);
    letter-spacing: 2px;
}

.percent-highlight.active {
    color: #ffffff;
    background: linear-gradient(135deg, #1a3a5c, #ffc857);
    padding: 2px 8px;
    border-radius: 6px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(245, 166, 35, 1);
}

.roi-content-left.highlight-mode h2,
.roi-content-left.highlight-mode h3 {
    color: #ffc857;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.6);
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.roi-content-left h2 {
    font-size: 2rem;
    /* Smaller than Fuel Efficiency title */
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    opacity: 0.9;
}

.roi-content-left h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #e2e8f0;
}

.roi-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    /* Fixed visibility: White with opacity */
    font-style: italic;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Right Panel */
.roi-right-panel {
    width: 60%;
    padding: 0 4rem 4rem 0;
    /* No left padding, stages touch the blue */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.roi-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.1;
    font-weight: 800;
    padding-left: 4rem;
    /* Indent title */
}

.stages-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

/* Integrated Stage Cards - Modern & Animated */
.stage-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInStagger 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 20;
    border-left: 6px solid transparent;
    transition: all 0.3s ease;
    overflow: visible;
    min-height: 85px;
}

.stage-content {
    flex: 1;
    padding: 1.15rem 1rem 1.15rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.stage-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    color: white;
}

.stage-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.stage-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Staggered Layout */
.stage-item:nth-child(1) {
    margin-left: -16%;
    width: 116%;
    animation-delay: 0.2s;
    border-left-color: #4a90e2;
}

.stage-item:nth-child(2) {
    margin-left: -10%;
    width: 110%;
    animation-delay: 0.5s;
    border-left-color: #4acc9a;
}

.stage-item:nth-child(3) {
    margin-left: -4%;
    width: 104%;
    animation-delay: 0.8s;
    border-left-color: #1a3a5c;
}

.stage-item:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 15px 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 25;
    border-left-width: 8px;
}

.stage-item:hover .stage-label {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stage-item:hover h4 {
    color: #0f2e4d;
    font-size: 1.25rem;
}

.stage-item:hover .stage-time {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

/* Time Block - Animated from Right, Same Height as Stage */
.stage-time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 0 2.5rem;
    width: 240px;
    /* Fixed width - same for all blocks */
    font-weight: 700;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    clip-path: polygon(25px 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -25px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(150px);
    /* Start further right */
    animation: slideInFromRight 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    /* Slower: 1.2s */
}

/* Staggered animation for time blocks - more delay */
.stage-1 .stage-time {
    animation-delay: 0.8s;
}

/* Increased delay */
.stage-2 .stage-time {
    animation-delay: 1.2s;
}

.stage-3 .stage-time {
    animation-delay: 1.6s;
}

/* Specific Colors for Stages & Time Blocks */
.stage-1 .stage-label {
    background: #4a90e2;
}

.stage-1 .stage-time {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.stage-2 .stage-label {
    background: #4acc9a;
}

.stage-2 .stage-time {
    background: linear-gradient(135deg, #4acc9a, #3db88b);
}

.stage-3 .stage-label {
    background: #1a3a5c;
}

.stage-3 .stage-time {
    background: linear-gradient(135deg, #1a3a5c, #0f2942);
}

@keyframes slideInStagger {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeftText {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Gradient Contact Bar === */
.contact-bar {
    background: #0f172a;
    /* Dark Navy */
    padding: 4rem 0;
    color: white;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-title-col h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    color: white;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.contact-icon-box {
    display: none;
    /* Removing icons */
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4a90e2;
}

.contact-details p {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .aviation-grid {
        grid-template-columns: 1fr;
    }

    .roi-container {
        flex-direction: column;
    }

    .roi-left-panel,
    .roi-right-panel {
        width: 100%;
        border-radius: 0;
        padding: 3rem;
    }

    .contact-bar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-info-col {
        justify-content: center;
        flex-direction: column;
    }
}

/* Hero Text Enhancements */
.hero h1 .text-blue {
    color: #4a90e2;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    position: relative;
    display: inline-block;
}

.hero h1 .text-green {
    color: #2ecc71;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
    position: relative;
    display: inline-block;
}

/* Optional: Gradient Text Effect for Hero */
@supports (-webkit-background-clip: text) {
    .hero h1 .text-blue {
        background: linear-gradient(135deg, #4a90e2 0%, #63a4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        /* Text shadow doesn't work well with transparent text fill */
        filter: drop-shadow(0 2px 10px rgba(74, 144, 226, 0.3));
    }

    .hero h1 .text-green {
        background: linear-gradient(135deg, #2ecc71 0%, #58d68d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        filter: drop-shadow(0 2px 10px rgba(46, 204, 113, 0.3));
    }
}

/* === Fluid Waves Section === */
.fluid-waves-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: -1px;
}

.fluid-waves-section canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Fluid Waves */
@media (max-width: 1024px) {
    .fluid-waves-section {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .fluid-waves-section {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .fluid-waves-section {
        height: 300px;
    }
}