/* ===== CSS Variables ===== */
:root {
    --primary-color: #0072BC;
    --secondary-color: #005A9C;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Language Switcher ===== */
.language-switcher {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Desktop: always show, Mobile: hide (lives inside slide menu) */
.desktop-lang { display: flex; }

.lang-btn {
    padding: 8px 18px;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
    font-size: 13px;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.lang-btn:hover:not(.active) {
    background: var(--light-color);
}

/* ===== Navigation ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
}

.navbar .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.navbar .logo-text .company-name {
    background: linear-gradient(135deg, #ffffff 0%, #4A9FDB 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.navbar .logo-text .company-tagline {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.logo-text .company-name {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #4A9FDB 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.logo-text .company-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white-color);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile menu header — hidden on desktop */
.nav-menu-header { display: none; }
.mobile-lang { display: none; }

/* ===== Mobile Menu Overlay ===== */
/* overlay removed — close handled via JS document click */
.menu-overlay { display: none !important; }

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 45%;
    z-index: 5;
    color: var(--white-color);
    text-align: left;
    padding: 0 0 0 60px;
}

.slide-badge {
    display: inline-block;
    background: rgba(0, 114, 188, 0.85);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    animation: slideUp 0.6s ease-out;
}

.slide-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slide-text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 35px;
    animation: slideUp 1s ease-out;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    opacity: 0.92;
}

.slide-btns {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-wide {
    padding: 16px 120px;
    font-size: 17px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    display: none;
}

.slider-dots {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

/* Hide scroll indicator when mobile menu is open */
body.menu-open .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--white-color);
    opacity: 0.8;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-light {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== Sections ===== */
section {
    padding: 100px 0;
    position: relative;
    background: var(--white-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== What We Do ===== */
.what-we-do {
    background: #f4f7fb;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,114,188,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wwd-header {
    text-align: center;
    margin-bottom: 70px;
}

.wwd-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(0,114,188,0.08);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.wwd-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.wwd-subtitle {
    font-size: 17px;
    color: var(--gray-color);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wwd-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 45px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.wwd-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.wwd-card:first-child { transition-delay: 0.1s; }
.wwd-card:last-child { transition-delay: 0.25s; }

.wwd-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4A9FDB);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wwd-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 114, 188, 0.13);
    border-color: rgba(0,114,188,0.15);
}

.wwd-card:hover::before {
    transform: scaleX(1);
}

.wwd-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.wwd-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), #4A9FDB);
    border-radius: 22px;
    opacity: 0.12;
    transition: all 0.4s ease;
}

.wwd-card:hover .wwd-icon-bg {
    opacity: 1;
    border-radius: 18px;
}

.wwd-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.wwd-card:hover .wwd-icon {
    color: #fff;
    transform: scale(1.1);
}

.wwd-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.wwd-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.wwd-content p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.wwd-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wwd-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
}

.wwd-features li i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

.wwd-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wwd-link i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.wwd-link:hover {
    gap: 12px;
}

.wwd-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .wwd-grid {
        grid-template-columns: 1fr;
    }
    .wwd-card {
        padding: 35px 30px;
    }
    .wwd-title {
        font-size: 30px;
    }
}

/* ===== Services Overview ===== */
.services-overview {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Why Choose Us - PREMIUM ===== */
.why-choose-us {
    background: #080f1e;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,114,188,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,159,219,0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Stats inside left column */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 0;
    margin-top: 45px;
}

.stat-item {
    text-align: left;
    padding: 22px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0,114,188,0.12);
    border-color: rgba(0,114,188,0.3);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, #4A9FDB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.stat-divider { display: none; }

/* Why Split */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* Left side */
.why-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 100px;
}

.why-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4A9FDB;
    background: rgba(74,159,219,0.12);
    border: 1px solid rgba(74,159,219,0.2);
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    width: fit-content;
}

.why-left h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.2;
}

.why-left p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A9FDB;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(74,159,219,0.3);
    padding: 14px 28px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.why-cta:hover {
    background: rgba(74,159,219,0.1);
    border-color: #4A9FDB;
    gap: 14px;
}

.why-cta i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.why-cta:hover i { transform: translateX(3px); }

/* Right: 2x2 Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-item {
    padding: 38px 30px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,114,188,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover {
    border-color: rgba(0,114,188,0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.why-item:hover::before { opacity: 1; }

.why-icon {
    width: 58px;
    height: 58px;
    background: rgba(0,114,188,0.15);
    border: 1px solid rgba(0,114,188,0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4A9FDB;
    margin-bottom: 22px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.why-item:hover .why-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,114,188,0.4);
}

.why-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .why-split { grid-template-columns: 1fr; gap: 40px; }
    .why-left {
        position: static;
        top: auto;
    }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .why-left h2 { font-size: 36px; }
}

@media (max-width: 576px) {
    .why-grid { grid-template-columns: 1fr; }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .stat-item {
        padding: 18px 16px;
    }
    .stat-number { font-size: 28px; }
}

/* Legacy */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.feature-item { position: relative; padding-left: 80px; }
.feature-number { position: absolute; left: 0; top: 0; font-size: 48px; font-weight: 800; color: var(--primary-color); opacity: 0.2; }
.feature-item h3 { font-size: 22px; margin-bottom: 10px; color: var(--dark-color); }
.feature-item p { color: var(--gray-color); line-height: 1.7; }

/* ===== Partners - PREMIUM ===== */
.partners {
    background: var(--white-color);
    padding: 90px 0 0;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 55px;
}

.partners-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(0,114,188,0.07);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.partners-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.partners-header p {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Marquee */
.partners-marquee-wrap {
    position: relative;
    padding: 35px 0 45px;
    background: #f8fafc;
    border-top: 1px solid #eef1f5;
}

.partners-fade-left,
.partners-fade-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-fade-left {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.partners-fade-right {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.partners-marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 18px 28px;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    border-color: rgba(0,114,188,0.3);
    box-shadow: 0 10px 30px rgba(0,114,188,0.1);
    transform: translateY(-4px);
}

.marquee-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.92);
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ===== CTA Section ===== */
/* ===== CEO Section ===== */
.ceo-section {
    padding: 100px 0;
    background: #f8faff;
    overflow: hidden;
}

.ceo-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.ceo-photo-col {
    display: flex;
    justify-content: center;
}

.ceo-photo-frame {
    position: relative;
    width: 380px;
    max-width: 100%;
}

.ceo-photo-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.2), rgba(0, 90, 156, 0.1));
    border-radius: 30px;
    filter: blur(30px);
    z-index: 0;
}

.ceo-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.ceo-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), #0060a0);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0, 114, 188, 0.4);
}

.ceo-badge i {
    color: #ffd700;
}

.ceo-content-col {
    padding-bottom: 20px;
}

.ceo-label {
    display: inline-block;
    background: rgba(0, 114, 188, 0.1);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 114, 188, 0.2);
}

.ceo-name {
    font-size: 42px;
    font-weight: 800;
    color: #080f1e;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #080f1e, #0072BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.85;
}

.ceo-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ceo-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #2d3748;
}

.cred-item i {
    color: var(--primary-color);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ceo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #0060a0);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 114, 188, 0.35);
}

.ceo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 114, 188, 0.5);
}

/* ===== Our Work Section ===== */
.our-work {
    padding: 100px 0;
    background: #080f1e;
}

.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-tag {
    display: inline-block;
    background: rgba(0, 114, 188, 0.15);
    color: #60a5fa;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.work-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.work-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 188, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.work-img-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-app-icon {
    text-align: center;
    color: white;
    z-index: 1;
}

.evola-icon span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #c9a84c;
    font-family: serif;
}

.evola-icon small {
    font-size: 11px;
    color: rgba(201, 168, 76, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.helmy-icon span {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.helmy-icon small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.work-app-logo {
    max-height: 110px;
    max-width: 200px;
    object-fit: contain;
}

.work-img-cover {
    padding: 0 !important;
    overflow: hidden;
}

.work-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Blend dark backgrounds to disappear */
.work-img-blend-dark .work-cover-img {
    mix-blend-mode: screen;
    background: transparent;
}

/* Contain mode for logos that shouldn't be cropped */
.work-img-contain .work-cover-img {
    object-fit: contain;
    padding: 20px;
}

.work-info {
    padding: 24px;
}

.work-type {
    display: inline-block;
    font-size: 11px;
    color: #60a5fa;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.work-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.work-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* CEO + Work responsive */
@media (max-width: 968px) {
    .ceo-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .ceo-photo-frame {
        width: 280px;
        margin: 0 auto;
    }

    .ceo-photo {
        height: 350px;
    }

    .ceo-credentials {
        text-align: left;
    }

    .work-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .ceo-name {
        font-size: 32px;
    }

    .work-header h2 {
        font-size: 30px;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #002a5c 0%, #004e8a 50%, #003d70 100%);
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cta-stat span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.cta-stat small {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* ===== Footer ===== */
.footer {
    background: #06080f;
    color: var(--white-color);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.footer-logo-big {
    max-width: 200px;
    width: auto;
}

.footer-tagline {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.7;
    max-width: 290px;
}

.footer-logo-text span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-logo-text small {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-col ul li a:hover {
    color: white;
    gap: 12px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Navbar on inner pages (not hero) - always dark fixed */
body:not(.home-page) .navbar,
.page-navbar {
    position: fixed;
    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
}

/* ===== Arabic RTL Support ===== */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

/* Navbar always LTR - never changes position in Arabic */
html[dir="rtl"] .navbar,
html[dir="rtl"] .nav-wrapper,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .logo,
html[dir="rtl"] .language-switcher {
    direction: ltr;
    text-align: left;
}

/* Nav links stay in same order on desktop */
html[dir="rtl"] .nav-links {
    flex-direction: row;
}

/* But inside slide menu — always column regardless of language */
html[dir="rtl"] .nav-menu .nav-links {
    flex-direction: column;
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .slide-content {
    left: 0;
    right: auto;
    text-align: left;
    padding: 0 0 0 60px;
    direction: ltr;
}

html[dir="rtl"] .feature-item {
    padding-left: 0;
    padding-right: 80px;
}

html[dir="rtl"] .feature-number {
    left: auto;
    right: 0;
}

html[dir="rtl"] .slider-btn.prev {
    left: auto;
    right: 30px;
}

html[dir="rtl"] .slider-btn.next {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .contact-info li {
    flex-direction: row-reverse;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0;
        margin-top: 30px;
    }
    .stat-divider { display: none; }
    .stat-item { flex: unset; }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -110%;
        left: auto;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #0a1628 0%, #060c1a 100%);
        border-left: 1px solid rgba(0,114,188,0.25);
        box-shadow: -20px 0 60px rgba(0,0,0,0.7);
        transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
        padding: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .nav-menu.active {
        right: 0;
        left: auto;
    }

    /* Decorative top blue line */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0072bc, #60a5fa, #0072bc);
        z-index: 1;
    }

    /* ── Menu Header ── */
    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 20px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .nav-menu-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-menu-logo img {
        height: 52px;
        width: auto;
        filter: drop-shadow(0 0 10px rgba(0,114,188,0.6));
    }

    .nav-menu-logo span {
        font-size: 19px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 2px;
    }

    .nav-menu-close {
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.85);
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .nav-menu-close:hover {
        background: rgba(0,114,188,0.3);
        border-color: rgba(0,114,188,0.5);
        color: #fff;
    }

    /* ── Nav Links ── */
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        flex: 1;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 16px 22px;
        color: rgba(255,255,255,0.9);
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: all 0.22s ease;
        position: relative;
        letter-spacing: 0.3px;
        text-align: left;
        box-sizing: border-box;
    }

    .nav-links li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #60a5fa, #0072bc);
        border-radius: 0 3px 3px 0;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: #fff;
        background: rgba(0,114,188,0.13);
        padding-left: 30px;
    }

    .nav-links li a:hover::before,
    .nav-links li a.active::before {
        opacity: 1;
    }

    .nav-links li a.active {
        color: #60a5fa;
        font-weight: 600;
    }

    /* ── Language Section ── */
    .nav-menu .mobile-lang {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 22px 26px;
        border-top: 1px solid rgba(255,255,255,0.07);
        background: rgba(0,0,0,0.15);
    }

    .nav-menu .mobile-lang span {
        font-size: 12px;
        color: rgba(255,255,255,0.45);
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .nav-menu .mobile-lang .language-switcher {
        display: flex !important;
        position: static;
        transform: none;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        width: auto;
        padding: 4px;
        border-radius: 30px;
        gap: 4px;
        box-shadow: none;
    }

    .nav-menu .mobile-lang .lang-btn {
        padding: 9px 26px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        border-radius: 25px;
    }

    .nav-menu .mobile-lang .lang-btn.active {
        background: #0072bc;
        color: #fff;
        box-shadow: 0 2px 12px rgba(0,114,188,0.45);
    }

    .logo img { height: 40px; }
    .logo-text { display: flex; }
    .logo-text .company-name { font-size: 16px; }
    .logo-text .company-tagline { font-size: 7px; }

    /* Hide desktop language switcher — it moves inside mobile slide menu */
    .language-switcher { display: none; }
    .desktop-lang { display: none !important; }

    .slide-content {
        width: 90%;
        padding: 0 0 0 25px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-text {
        font-size: 15px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-indicator i {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-stats {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Work grid 2-col on tablet */
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    /* CTA buttons stack */
    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    /* Partners */
    .partners-header h2 {
        font-size: 28px;
    }

    /* CEO section */
    .ceo-name {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .hamburger { display: flex; }
    .desktop-lang { display: none !important; }
    .language-switcher { display: none; }

    .logo img { height: 36px; }
    .logo-text { display: flex; }
    .logo-text .company-name { font-size: 13px; }
    .logo-text .company-tagline { font-size: 6.5px; }

    .slide-content {
        width: 95%;
        padding: 0 0 0 20px;
    }

    .slide-title { font-size: 26px; }
    .slide-text { font-size: 14px; }

    .btn { padding: 12px 25px; font-size: 14px; }

    section { padding: 60px 0; }

    .section-title { font-size: 26px; }

    /* Work grid single col on phone */
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    /* CTA */
    .cta-content h2 { font-size: 28px; }
    .btn-cta-primary, .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    /* Footer single col */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Why cards 1 col */
    .why-grid { grid-template-columns: 1fr; }
}
