/* ===================================
   MOLOTEL - Fiber & ISP Provider
   Modern Tech-Themed Styles
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --accent-color: #00ffaa;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --light-text: #ffffff;
    --gray-text: #a0a8c0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --fiber-glow: 0 0 20px rgba(0, 212, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

    /* Light mode overrides ONLY */
    body.light-mode {
        background: #fff !important;
        color: #222 !important;
    }
    .navbar.light-mode {
        background: #fff !important;
        border-bottom: 1px solid #eee !important;
    }
    .nav-link.light-mode {
        color: #222 !important;
    }
    .footer.light-mode {
        background: #f8f8f8 !important;
        color: #222 !important;
    }
    .container.light-mode,
    .services-section.light-mode,
    .services-hero.light-mode,
    .services-grid-detailed.light-mode,
    .service-detail-card.light-mode,
    .service-detail-content.light-mode,
    .service-detail-image.light-mode,
    .partners-section.light-mode,
    .coverage-section.light-mode,
    .coverage-intro.light-mode,
    .coverage-mission.light-mode,
    .team-leadership-intro.light-mode,
    .featured-leader.light-mode,
    .hero.light-mode,
    .hero-content.light-mode,
    .hero-overlay.light-mode,
    .page-hero.light-mode {
        background: #fff !important;
        color: #222 !important;
        box-shadow: none !important;
    }
    .services-tagline.light-mode {
        color: #0077cc !important;
    }
    .services-intro.light-mode {
        color: #222 !important;
    }
    .service-detail-image.light-mode img {
        filter: none !important;
    }
    .service-detail-features.light-mode li {
        color: #222 !important;
    }
    .service-detail-overlay.light-mode {
        background: rgba(255,255,255,0.7) !important;
    }
    .coverage-intro.light-mode,
    .coverage-mission.light-mode {
        background: #f8f8f8 !important;
        color: #222 !important;
        border-color: #eee !important;
    }
    .team-leadership-intro.light-mode,
    .featured-leader.light-mode {
        background: #fff !important;
        color: #222 !important;
        border-color: #eee !important;
    }
/* Modern Service Boxes Styling */
/* Modern Service Boxes Styling - Molotel Color Scheme */
.service-box-nice {
    background: linear-gradient(135deg, #eaf6f3 0%, #e3f0fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    margin: 24px 0;
    padding: 32px 28px 24px 28px;
    transition: box-shadow 0.2s, border-left 0.2s;
    border-left: 8px solid #25D366;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-box-nice:hover {
    box-shadow: 0 8px 32px rgba(37,211,102,0.18), 0 2px 8px rgba(0,0,0,0.10);
    border-left: 8px solid #0077cc;
}
.service-box-header-nice {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0077cc;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}
.service-box-number-nice {
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(37,211,102,0.12);
}
.service-box-content-nice ul {
    margin: 0;
    padding-left: 22px;
}
.service-box-content-nice li {
    font-size: 1.05rem;
    margin-bottom: 7px;
    color: #222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(5, 8, 20, 0.98);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    animation: glow-pulse 2s ease-in-out infinite;
}

.logo-spark {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    animation: spark-blink 1.5s ease-in-out infinite;
}

@keyframes spark-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ===================================
   COMPANY LOGO BADGE
   =================================== */
.company-logo-badge {
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 999;
    transition: all 0.3s ease;
    animation: fade-in-up 0.8s ease-out;
}

.company-logo-badge:hover {
    transform: translateY(-5px);
}

.company-logo-badge img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000510 0%, #001020 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?q=80&w=2070') center/cover;
    opacity: 0.65;
    z-index: 0;
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.hero-overlay {
    /* Overlay removed for services page to fix WhatsApp CTA interactivity */
    display: none !important;
}

@keyframes pulse-glow {
    0%, 100% { 
        background: radial-gradient(circle at 50% 50%, rgba(0, 100, 255, 0.3) 0%, rgba(0, 10, 30, 0.5) 50%, rgba(0, 5, 20, 0.7) 100%);
    }
    50% { 
        background: radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.4) 0%, rgba(0, 10, 30, 0.4) 50%, rgba(0, 5, 20, 0.6) 100%);
    }
}

.fiber-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.fiber-lines::before,
.fiber-lines::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.8), rgba(0, 200, 255, 1), rgba(0, 150, 255, 0.8), transparent);
    animation: fiber-scan 4s linear infinite;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.8), 0 0 40px rgba(0, 150, 255, 0.4);
    filter: blur(0.5px);
}

.fiber-lines::before {
    top: 20%;
    animation-delay: 0s;
}

.fiber-lines::after {
    bottom: 30%;
    animation-delay: 2s;
}

@keyframes fiber-scan {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 200, 255, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(0, 200, 255, 1),
        0 0 20px rgba(0, 150, 255, 0.8),
        0 0 30px rgba(0, 100, 255, 0.6);
    animation: spark-float 3s ease-in-out infinite;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: spark-float 3s ease-in-out infinite;
}

@keyframes spark-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-person {
    position: absolute;
    left: -5%;
    bottom: 0;
    height: 85vh;
    max-height: 700px;
    z-index: 15;
    pointer-events: none;
    animation: fade-in-left 1.2s ease-out, person-glow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.6)) 
            drop-shadow(0 0 60px rgba(0, 150, 255, 0.4));
}

.hero-person::before,
.hero-person::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.4) 0%, transparent 70%);
    animation: spark-orbit 4s linear infinite;
    pointer-events: none;
}

.hero-person::before {
    width: 80px;
    height: 80px;
    top: 20%;
    left: -20px;
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.8);
}

.hero-person::after {
    width: 60px;
    height: 60px;
    top: 60%;
    right: -30px;
    animation-delay: 2s;
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.6);
}

@keyframes spark-orbit {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes person-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.6)) 
                drop-shadow(0 0 60px rgba(0, 150, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(0, 220, 255, 0.8)) 
                drop-shadow(0 0 80px rgba(0, 180, 255, 0.6));
    }
}

.hero-person img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom left;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-left: 30%;
    margin-right: 5%;
    animation: fade-in-up 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.glitch {
    position: relative;
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    animation: fade-in-up 1s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fade-in-up 1s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.4);
    animation: fade-in-up 1s ease-out 0.9s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: mouse-scroll 1.5s ease-in-out infinite;
}

@keyframes mouse-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fade-in-up 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    filter: blur(10px);
    opacity: 0.5;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: icon-float 3s ease-in-out infinite;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Coverage Section */
.coverage-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.coverage-intro {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.coverage-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.coverage-intro p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.coverage-mission {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 153, 255, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
}

.coverage-mission p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-text);
    font-weight: 500;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

#coverageMap {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 14, 39, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 250px;
}

.map-legend h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-color.sa-coverage {
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
    opacity: 0.5;
}

.legend-color.active {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.legend-color.kzn {
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
}

.legend-color.northwest {
    background: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
}

.legend-color.capetown {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.legend-color.planned {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

/* Aim Section */
.aim-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.vision-statement {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.vision-statement p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-text);
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.vision-pillars {
    margin-top: 4rem;
}

.vision-pillars h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.aim-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.aim-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.pillar-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 212, 255, 0.2);
    line-height: 1;
}

.aim-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.aim-card:hover .pillar-number {
    color: rgba(0, 212, 255, 0.4);
}

.aim-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
}

.aim-icon i {
    font-size: 2rem;
    color: white;
}

.aim-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.aim-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-text);
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.mission-commitments {
    margin-top: 4rem;
}

.mission-commitments h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.commitment-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 212, 255, 0.2);
    line-height: 1;
}

.commitment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.commitment-card:hover .commitment-number {
    color: rgba(0, 212, 255, 0.4);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.commitment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--gray-text);
}

.service-features i {
    color: var(--accent-color);
}

/* Services Hero Section */
.services-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.services-tagline {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.services-intro {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Detailed Services Grid */
.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover .service-detail-overlay {
    opacity: 1;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.service-detail-icon i {
    font-size: 2rem;
    color: white;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.service-detail-features i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.partners-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 170, 0.2));
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.license-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.license-badge span {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.partners-intro p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.partners-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.partners-subtitle::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Horizontal Scrolling Carousel */
.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--darker-bg), transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--darker-bg), transparent);
}

.partners-carousel {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 60s linear infinite;
    width: max-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 212, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.partner-logo-item:hover::before {
    left: 100%;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
    filter: brightness(1.2) contrast(1.1);
}

.partner-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--gray-text);
}

/* ===================================
   PAGE HEADER (About, Team, Contact)
   =================================== */
.page-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
    z-index: 10;
    position: relative;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-detail-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-detail-text {
    margin-bottom: 4rem;
}

.about-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.timeline {
    margin: 4rem 0;
}

.timeline h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: rgba(0, 212, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-text);
}

.values-section {
    margin-top: 4rem;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ===================================
   TEAM PAGE
   =================================== */
.team-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.team-leadership-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.leadership-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.team-leadership-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.team-leadership-intro p:last-child {
    margin-bottom: 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.team-member {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member.featured-leader {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.team-experience-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 153, 255, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
}

.team-experience-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-text);
}

.member-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    overflow: hidden;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
}

.member-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.6);
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    padding: 0 1rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.member-bio {
    color: var(--gray-text);
    padding: 0 1rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.join-team-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.join-team-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-team-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.join-team-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.social-media {
    margin-top: 3rem;
}

.social-media h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-2);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-form-wrapper {
    background: rgba(0, 212, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .company-logo-badge {
        top: 70px;
        left: 10px;
    }
    
    .company-logo-badge img {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-person {
        height: 50vh;
        max-height: 400px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.3;
        z-index: 5;
    }
    
    .hero-content {
        margin-left: 0;
        margin-right: 0;
        z-index: 10;
        margin-top: 90px; /* Add space below navbar for mobile */
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    #coverageMap {
        height: 350px;
    }
    
    .map-legend {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    
    .partners-carousel {
        gap: 2rem;
    }
    
    .partner-logo-item {
        width: 150px;
        height: 90px;
        padding: 1rem;
    }
    
    .partners-carousel-wrapper::before,
    .partners-carousel-wrapper::after {
        width: 50px;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-detail-image {
        order: 1;
    }
    
    .service-detail-card.reverse .service-detail-content {
        order: 2;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .service-detail-content {
        padding: 2rem;
    }
    
    .service-detail-features {
        grid-template-columns: 1fr;
    }
    
    .services-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-unit {
        font-size: 1.2rem;
    }
    
    .partner-logo-item {
        width: 120px;
        height: 75px;
    }
    
    .partners-carousel {
        gap: 1.5rem;
    }
}

/* SLIDER SWITCH STYLES */
.color-toggle-slider {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.color-toggle-slider input {
  opacity: 0;
  width: 0;
  height: 0;
}
.color-toggle-slider .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: .4s;
  border-radius: 26px;
}
.color-toggle-slider .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.color-toggle-slider input:checked + .slider {
  background: #00d4ff;
}
.color-toggle-slider input:checked + .slider:before {
  transform: translateX(24px);
  background: #222;
}
