/* =====================================================
   DOSTAR LIFT - Design System & Styles
   ===================================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Blue Brand Theme */
    --primary: #1a2744;
    --primary-light: #2c3e5a;
    --secondary: #4169E1;
    --secondary-dark: #3558C8;
    --secondary-light: #5A80F0;
    --background: #f5f7fa;
    --background-alt: #e8ecf2;
    --text: #1a2744;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --black: #0a0f1a;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-dark: rgba(26, 39, 68, 0.85);

    /* Shadows - Blue themed */
    --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.16);
    --shadow-glow: 0 0 40px rgba(65, 105, 225, 0.35);

    /* Typography - Modern Clean Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--secondary);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(212, 168, 83, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.btn-full {
    width: 100%;
}

/* =====================================================
   HEADER - Modern Minimal Design
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(26, 39, 68, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.logo-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(65, 105, 225, 0.1));
    border: 2px solid var(--secondary);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.logo:hover .logo-monogram {
    background: var(--secondary);
    color: var(--white);
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 600;
}

.logo-accent {
    color: var(--secondary);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: 40px;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::before {
    background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::before {
    background: var(--secondary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.header-phone-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: scale(1.05);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.header-cta:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
}

.header-cta svg {
    transition: transform 0.3s ease;
}

.header-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 998;
    /* Below header (1000) but above everything else */
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    text-align: center;
}

.mobile-menu-container.active {
    transform: translateX(0);
}

.mobile-menu-container .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    opacity: 1;
}

.mobile-menu-container .nav-link:hover {
    color: var(--secondary);
}

/* Blue Button Variant */
.btn-blue {
    background: #4A7CFF;
    box-shadow: 0 4px 20px rgba(74, 124, 255, 0.4);
}

.btn-blue:hover {
    background: #3A6AEE;
    box-shadow: 0 6px 25px rgba(74, 124, 255, 0.5);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-centered {
    text-align: center;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 39, 68, 0.4) 0%,
            rgba(26, 39, 68, 0.8) 50%,
            rgba(26, 39, 68, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    /* Improved readability */
}

.hero-title .highlight {
    color: var(--secondary);
    /* Fallback */
    background: linear-gradient(to right, #fff, #cbd5e1);
    /* For this specific design, the highlight is actually just white/light, 
       but let's keep it consistent or make it the brand orange if requested. 
       The user asked for brand colors. Let's make "Business Goals" white to match "Websites" 
       but maybe add a subtle tint? Or keep it white as per the reference image 
       where "Business Goals" is white/grey. 
       Actually, in the reference image "Websites that fulfill" is gradient text (orange-ish/white).
       Let's stick to simple white/grey gradient for premium look.
    */
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-cta {
    margin-bottom: 60px;
}

/* Glowing Button */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;

    /* The Glow Effect */
    background: linear-gradient(to right, var(--secondary), var(--secondary-light));
    /* Brand Blue Gradient */
    color: white;
    box-shadow:
        0 0 20px rgba(65, 105, 225, 0.5),
        /* var(--secondary) with opacity */
        0 0 40px rgba(65, 105, 225, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(to right, var(--secondary-light), var(--secondary));
    box-shadow:
        0 0 30px rgba(65, 105, 225, 0.6),
        0 0 60px rgba(65, 105, 225, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Integrated Ticker (Bottom of Hero) */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0 40px;
    background: linear-gradient(to top, var(--primary) 20%, transparent 100%);
    z-index: 3;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ticker {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 80px;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    transition: all 0.3s ease;
    /* Center align images vertically */
    display: flex;
    align-items: center;
}

.ticker-item img {
    height: 50px;
    /* Uniform height for logos */
    width: auto;
    object-fit: contain;
    /* Make logos white */
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.ticker-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

/* =====================================================
   MAIN SERVICES SECTION - Premium Split Cards
   ===================================================== */
.main-services {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background: transparent;
}

/* Creative Header Styles */
.section-header-creative {
    margin-bottom: 60px;
    position: relative;
    padding-left: 20px;
}

.creative-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(65, 105, 225, 0.1);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    margin-bottom: 20px;
}

.creative-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.creative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    margin-bottom: 24px;
    border-radius: 2px;
}

.creative-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

/* Responsive adjustment for header */
@media (max-width: 768px) {
    .creative-title {
        font-size: 2.25rem;
    }
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-main-card {
    position: relative;
    height: 650px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0F172A;
    /* Fallback */
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Background Image with Zoom Effect */
.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-main-card:hover .service-bg {
    transform: scale(1.1);
}

/* Gradient Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.7) 40%,
            rgba(15, 23, 42, 0.3) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.service-main-card:hover .service-overlay {
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.4) 100%);
}

/* Content Layout */
.service-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/* Floating Icon */
.service-icon {
    position: absolute;
    top: 48px;
    left: 48px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s ease;
}

.service-main-card:hover .service-icon {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: rotate(-5deg) scale(1.05);
}

/* Typography */
.service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.service-main-card:hover .service-title {
    transform: translateY(0);
}

.service-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.service-main-card:hover .service-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Features List */
.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.service-main-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-features li {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--secondary-light);
    font-weight: 800;
}

/* Buttons */
.service-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.service-main-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

    .service-main-card {
        height: 500px;
    }

    /* Show content on mobile without hover */
    .service-main-card .service-title,
    .service-main-card .service-desc,
    .service-main-card .service-features,
    .service-main-card .service-btn {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .service-main-card {
        height: auto;
        min-height: 550px;
    }

    .service-content {
        padding: 30px 24px;
        justify-content: flex-end;
    }

    .service-icon {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        width: 64px;
        height: 64px;
        transform: none !important;
        /* Disable hover rotation on mobile */
    }

    .service-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .service-desc {
        font-size: 1rem;
        margin-bottom: 24px;
        display: block;
        /* Ensure visibility */
    }

    .service-features {
        margin-bottom: 24px;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* =====================================================
   ABOUT SECTION - Bento Card Layout
   ===================================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: #F4F7FE;
    /* Light blue-grey background */
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Larger left area */
    gap: 24px;
    align-items: stretch;
}

/* LEFT: Main Info Card */
.time-main-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(160, 174, 192, 0.1);
    position: relative;
    overflow: hidden;
}

.time-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 240, 255, 0.5) 0%, transparent 70%);
    z-index: 0;
}

.main-card-content {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: #EEF2FF;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--secondary);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

/* RIGHT: Feature Stack */
.features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stack-card {
    flex: 1;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s ease;
    min-height: 160px;
}

.stack-card:hover {
    transform: translateX(-4px);
}

/* Card Variants - Blue Gradients with Images */
.card-blue-1 {
    /* Darkest Blue + Blueprint */
    background: linear-gradient(rgba(26, 39, 68, 0.9), rgba(45, 64, 89, 0.85)), url('assets/card-design.png');
    background-size: cover;
    background-position: center;
}

.card-blue-2 {
    /* Brand Blue + Construction */
    background: linear-gradient(rgba(37, 99, 235, 0.85), rgba(29, 78, 216, 0.9)), url('assets/card-install.png');
    background-size: cover;
    background-position: center;
}

.card-blue-3 {
    /* Light Blue + Service Tools */
    background: linear-gradient(rgba(96, 165, 250, 0.9), rgba(59, 130, 246, 0.85)), url('assets/card-service.png');
    background-size: cover;
    background-position: center;
}

.stack-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stack-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.stack-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stack-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual-wrapper {
        height: 500px;
        order: -1;
        /* Image on top for tablet */
    }
}

@media (max-width: 768px) {
    .stats-strip {
        padding: 20px 10px;
    }

    .strip-num {
        font-size: 1.5rem;
    }

    .strip-label {
        font-size: 0.625rem;
    }
}


/* Old ticker section removed - integrated into Hero */

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   ABOUT SECTION - Premium Executive Design
   ===================================================== */
.about-premium {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 700px;
    background: #ffffff;
    overflow: hidden;
    margin-top: 200px;
}

/* Left Panel - Visual with Image */
.about-visual-panel {
    position: relative;
    background: linear-gradient(135deg, #1a2744 0%, #0f172a 100%);
    overflow: hidden;
}

.about-visual-bg {
    position: absolute;
    inset: 0;
}

.about-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.about-visual-panel:hover .about-visual-bg img {
    transform: scale(1.05);
}

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 39, 68, 0.85) 0%,
            rgba(15, 23, 42, 0.7) 50%,
            rgba(65, 105, 225, 0.2) 100%);
}

/* Floating Badge */
.about-floating-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    z-index: 10;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

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

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

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Glassmorphism Stats Overlay */
.about-stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.stat-glass {
    flex: 1;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Panel - Content */
.about-content-panel {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-content-inner {
    max-width: 580px;
}

/* Premium Label with Dot */
.premium-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    border: 1px solid rgba(65, 105, 225, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

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

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Headline with Gradient Text */
.about-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Signature Line */
.about-signature-line {
    width: 80px;
    height: 4px;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 2px;
    margin-bottom: 28px;
    overflow: hidden;
}

.line-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #60a5fa);
    border-radius: 2px;
    animation: lineSlide 3s ease-in-out infinite;
}

@keyframes lineSlide {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Description */
.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Service Cards Grid */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.about-service-card {
    padding: 24px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.2);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    border-radius: 14px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.about-service-card:hover .service-card-icon {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.05);
}

.service-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-card-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Premium Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, #3558C8 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(65, 105, 225, 0.35),
        0 0 0 0 rgba(65, 105, 225, 0);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 32px rgba(65, 105, 225, 0.45),
        0 0 0 4px rgba(65, 105, 225, 0.15);
}

.btn-premium svg {
    transition: transform 0.3s ease;
}

.btn-premium:hover svg {
    transform: translateX(4px);
}

/* Responsive - About Premium */
@media (max-width: 1024px) {
    .about-premium {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-visual-panel {
        min-height: 400px;
        order: -1;
    }

    .about-stats-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .stat-glass {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-content-panel {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-visual-panel {
        display: none;
    }

    .about-floating-badge {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .about-stats-overlay {
        display: none;
    }

    .stat-glass {
        padding: 16px;
    }

    .about-content-panel {
        padding: 40px 24px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-service-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .service-card-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   INDUSTRIES SECTION - Who Chose Dostar Lift
   ===================================================== */
.industries {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234169E1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.industries-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.industries-content {
    padding-right: 40px;
}

.industries-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 48px;
}

.industries-title .text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.industry-item:hover {
    background: transparent;
    transform: translateX(8px);
    box-shadow: none;
    border-color: transparent;
}

.industry-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    border-radius: 12px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(65, 105, 225, 0.3);
}

.industry-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
}

.industry-item:hover span {
    color: var(--secondary);
}

/* Visual Panel */
.industries-visual {
    position: relative;
}

.industries-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.industries-image-wrapper.no-image {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industries-image-wrapper.no-image::after {
    content: '🏗️';
    font-size: 80px;
    opacity: 0.15;
    filter: drop-shadow(0 10px 20px rgba(65, 105, 225, 0.1));
}

/* Badge */
.industries-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.3;
    max-width: 100px;
}

/* Responsive */
@media (max-width: 1024px) {
    .industries-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .industries-content {
        padding-right: 0;
    }

    .industries-visual {
        order: -1;
    }

    .industries-image-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .industries-title {
        font-size: 1.75rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-item {
        padding: 14px 16px;
    }

    .industries-badge {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .badge-number {
        font-size: 1.5rem;
    }
}

/* =====================================================
   ADVANTAGES SECTION
   ===================================================== */


/* =====================================================
   BRANDS SECTION
   ===================================================== */
.brands {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.brand-card {
    padding: 32px 24px;
    background: var(--background);
    border-radius: var(--radius-md);
    text-align: left;
    /* Changed from center to left for readability */
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-card:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.brand-card:hover .brand-logo {
    color: var(--secondary);
}

.brand-card:hover .brand-name {
    color: rgba(255, 255, 255, 0.8);
}

.brand-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
    transition: var(--transition-base);
}

.brand-name {
    font-size: 0.8125rem;
    color: var(--text-light);
    transition: var(--transition-base);
}

/* =====================================================
   PROJECTS SECTION
   ===================================================== */
.projects {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.city-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.city-tab {
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid var(--background-alt);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.city-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

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

/* Tab Count Badge */
.tab-count {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.85em;
}

/* Stats Bar */
.projects-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.stats-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stats-text span {
    font-weight: 600;
    color: var(--secondary);
}

/* Projects Pagination Dots */
.projects-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.project-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--background-alt);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-dot:hover {
    background: var(--secondary-light);
}

.project-dot.active {
    background: var(--secondary);
    width: 32px;
    border-radius: 6px;
}

/* Card Reveal Animation */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.project-card.reveal {
    animation: fadeSlideIn 0.5s ease forwards;
}

.project-card.hidden-card {
    display: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--primary-light) 100%);
}

.project-info {
    padding: 24px;
    color: var(--white);
}

.project-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.partner-logo {
    padding: 40px 24px;
    background: var(--background);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-base);
}

.partner-logo:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Partners Ticker (Full Width Slider) */
.partners-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partners-ticker-track {
    display: flex;
    gap: 60px;
    animation: partnersSlide 20s linear infinite;
    width: max-content;
}

@keyframes partnersSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-ticker-track:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    min-width: 150px;
    padding: 15px 30px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    background: rgba(65, 105, 225, 0.1);
    transform: scale(1.05);
}

.partner-logo-item img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(0.3);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    opacity: 1;
    filter: invert(1) brightness(0.15);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    color: var(--white);
}

.contact-info .section-tagline {
    color: var(--secondary);
}

.contact-info .section-title {
    color: var(--white);
}

.contact-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    color: var(--secondary);
}

.contact-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.contact-value:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--background-alt);
    border-radius: var(--radius-md);
    background: var(--background);
    color: var(--text);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--black);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
        padding-top: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

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

    .hero-stats {
        flex-direction: column;
        text-align: center;
    }

    .stat-item {
        width: 100%;
    }

    .city-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .city-tab {
        white-space: nowrap;
    }

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

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

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

    .contact-form {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

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

    .advantage-card {
        padding: 32px 24px;
    }

    .brand-card {
        padding: 24px 16px;
    }
}

/* Mobile Menu Overlay */
.nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 24px;
    gap: 24px;
    z-index: 999;
}

.nav.mobile-open .nav-link {
    font-size: 1.25rem;
    text-align: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ADVANTAGES SECTION - Split Header + Gradient Cards
   ===================================================== */
.advantages-split {
    padding: var(--section-padding) 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

/* --- Split Header --- */
.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.header-left {
    flex: 1;
    max-width: 50%;
}

.split-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-top: 16px;
    letter-spacing: -0.02em;
}

.header-right {
    flex: 1;
    max-width: 40%;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    /* Orange/Brand Color */
}

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

/* --- Split Grid --- */
.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: height;
}

.split-card {
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.split-card:hover {
    transform: translateY(-8px);
}

/* Dark Gradient Card (The 'Feature' Card) */
.card-dark-gradient {
    background-color: #0F172A;
    /* Dark Navy/Black */
    color: white;
    border: none;
    position: relative;
    z-index: 1;
}

.card-dark-gradient .gradient-mesh {
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 150%;
    height: 80%;
    background: radial-gradient(circle at 30% 80%, rgba(249, 115, 22, 0.4), transparent 60%),
        radial-gradient(circle at 70% 90%, rgba(249, 115, 22, 0.2), transparent 50%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.8;
}

.card-dark-gradient .card-label {
    color: #F97316;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.card-dark-gradient .card-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.card-dark-gradient .card-desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 90%;
}

/* Light Cards */
.card-light {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
}

.card-light .card-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-light .card-heading.text-orange {
    color: #F97316;
}

.card-light .card-desc {
    font-size: 1.125rem;
    /* Larger text for the short points as per reference */
    font-weight: 500;
    color: var(--primary);
    line-height: 1.4;
}

/* Icon Styles */
.card-icon-wrapper {
    margin-bottom: auto;
    /* Pushes content down */
    padding-bottom: 40px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-orange {
    background-color: #F97316;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-header {
        flex-direction: column;
        gap: 40px;
    }

    .header-left,
    .header-right {
        max-width: 100%;
    }

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

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

    .card-dark-gradient {
        min-height: 350px;
    }

    .split-card {
        min-height: 300px;
    }
}

/* =====================================================
   CATALOG - Stories-Style Accordion
   ===================================================== */
.catalog {
    padding: var(--section-padding) 0;
    background: #F8FAFC;
}

.catalog .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.catalog .section-title .highlight {
    color: var(--secondary);
}

.catalog-gallery {
    display: flex;
    gap: 12px;
    height: 480px;
    width: 100%;
    margin-bottom: 40px;
}

.catalog-item {
    position: relative;
    flex: 1;
    min-width: 60px;
    border-radius: 100px;
    /* Pill shape like reference */
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    /* Brand color fallback */
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.catalog-item:not(.active)::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

.catalog-item.active {
    flex: 4;
}

/* CONTENT (Visible when active) - Premium Redesign */
.catalog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    pointer-events: none;

    /* Premium Glass Effect */
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.85) 50%,
            rgba(15, 23, 42, 0.4) 80%,
            transparent 100%);

    /* Layout - Hidden by default */
    display: none;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;

    /* Hidden by default - show on active */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Show content when active */
.catalog-item.active .catalog-content {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Category Badge - Smaller */
.catalog-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.4);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.catalog-item.active .catalog-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Heading - Smaller */
.catalog-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 4px 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.catalog-item.active .catalog-content h3 {
    opacity: 1;
    transform: translateY(0);
}

/* Description - Smaller */
.catalog-desc {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.catalog-item.active .catalog-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Spec Tags */
.catalog-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;

    /* Staggered Animation */
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.5s ease 0.3s,
        transform 0.5s ease 0.3s;
}

.catalog-item.active .catalog-specs {
    opacity: 1;
    transform: translateY(0);
}

.spec-item {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(65, 105, 225, 0.3);
    border-color: rgba(65, 105, 225, 0.5);
    color: white;
}

/* Hide old buttons and labels */
.catalog-content .btn,
.catalog-label {
    display: none;
}

/* CTA Buttons below gallery */
.catalog-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.catalog-cta .btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
}

.catalog-cta .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-light);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
}

.catalog-cta .btn-outline:hover {
    background: var(--text);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .catalog-gallery {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .catalog-item {
        height: 70px;
        min-width: auto;
        border-radius: 40px;
        flex: none;
        transition: height 0.4s ease;
    }

    .catalog-item.active {
        height: 350px;
        flex: none;
    }

    .catalog-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================================
   WHY US - BENTO GRID REDESIGN
   ===================================================== */
.why-us-section {
    padding: var(--section-padding) 0;
    background-color: #F0F2F5;
    /* Slightly darker than white for depth */
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    grid-auto-flow: dense;
}

/* Base Card Style */
.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Card Sizes (Spans) */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* --- Card Specific Styles --- */

/* 1. Experience Card (Main) */
.card-experience {
    background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    color: var(--white);
    justify-content: flex-end;
    /* Text at bottom */
}

.card-experience .bento-content {
    z-index: 2;
}

.card-experience h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff, #a8c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-experience p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
}

.bento-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    line-height: 1;
}

/* 2. Distributor & Service Cards */
.bento-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bento-icon {
    font-size: 2rem;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.bento-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.bento-tags li {
    background: rgba(var(--secondary-rgb), 0.1);
    /* Assuming variable or fallback */
    background: #FFF3E0;
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* 3. Projects Stat Card */
.card-projects {
    background: var(--secondary);
    color: var(--black);
    /* Contrast against orange */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-projects .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.card-projects .stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.card-projects .stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 4. Quality/Terms Wide Card */
.card-quality {
    justify-content: center;
}

.bento-content-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-block h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.info-block p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-separator {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

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

    .bento-large,
    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide,
    .bento-medium,
    .bento-tall {
        grid-column: span 1;
        grid-row: auto;
    }

    .card-experience h3 {
        font-size: 2.5rem;
    }

    .bento-content-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .info-separator {
        width: 100%;
        height: 1px;
    }
}

/* =====================================================
   WHY US - PREMIUM VERSION
   ===================================================== */
.why-us-premium {
    padding: 200px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.why-us-premium::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.why-us-premium::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(30px, 20px);
    }
}

.why-us-premium .section-header {
    color: var(--primary);
    margin-bottom: 60px;
}

.why-us-premium .section-title {
    color: var(--primary);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

/* Base Card */
.whyus-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whyus-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

/* Overlay for image cards */
.whyus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.whyus-card:hover .whyus-overlay {
    opacity: 0.75;
}

/* Content */
.whyus-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

/* Icon Styling */
.whyus-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whyus-card:hover .whyus-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.5);
}

.whyus-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.whyus-card:hover .whyus-icon svg {
    transform: scale(1.1);
}

/* Grid Spans */
.whyus-hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.whyus-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 240px;
    background-size: cover;
    background-position: center;
}

.whyus-stat {
    grid-column: span 1;
    grid-row: span 1;
    background: var(--primary);
}

.whyus-wide {
    grid-column: span 2;
    grid-row: span 1;
    background: var(--primary);
}

/* Hero Card Specifics */
.whyus-hero .whyus-content {
    justify-content: flex-end;
}

.whyus-hero .whyus-stat {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #fff, #94A3B8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.whyus-hero h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.whyus-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

/* Medium Card Styling */
.whyus-medium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.whyus-medium p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* Tags */
.whyus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.whyus-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-light);
    border: 1px solid rgba(65, 105, 225, 0.3);
}

/* Stat Card */
.whyus-stat .whyus-content {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.whyus-stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.whyus-stat h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.whyus-stat p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Wide Card */
.whyus-row {
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.whyus-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.whyus-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.whyus-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.whyus-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

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

    .whyus-hero {
        grid-column: span 2;
        min-height: 400px;
    }

    .whyus-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .whyus-grid {
        grid-template-columns: 1fr;
    }

    .whyus-hero,
    .whyus-wide {
        grid-column: span 1;
    }

    .whyus-hero .whyus-stat {
        font-size: 3.5rem;
    }

    .whyus-row {
        flex-direction: column;
        gap: 32px;
    }

    .whyus-divider {
        width: 100%;
        height: 1px;
    }
}

/* =====================================================
   BRANDS SECTION - PREMIUM CAROUSEL
   ===================================================== */
.brands-carousel {
    background: #FAFBFC;
    position: relative;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    padding: 80px 24px 40px;
}

.brands-header .section-title {
    color: var(--primary);
}

/* Slider Wrapper */
.brands-slider-wrapper {
    position: relative;
    height: 600px;
}

.brands-slider {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slide */
.brand-slide {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

.brand-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Dark Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.85));
    transition: opacity 0.4s ease;
}

.brand-slide:hover .slide-overlay {
    opacity: 0.9;
}

/* Slide Content */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    z-index: 2;
}

/* Badge */
.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(65, 105, 225, 0.3);
    border: 1px solid rgba(65, 105, 225, 0.5);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

/* Logo */
.slide-logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Tagline */
.slide-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Details (Hidden by default, reveal on hover) */
.slide-details {
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.brand-slide:hover .slide-details {
    opacity: 1;
    transform: translateY(0);
}

.slide-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* CTA Button */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
}

.slide-cta:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    gap: 14px;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--secondary);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-slider-wrapper {
        height: 380px;
    }

    .slide-content {
        padding: 24px 16px;
    }

    .slide-badge {
        padding: 5px 12px;
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .slide-logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .slide-tagline {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .slide-details p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .slide-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .slide-cta svg {
        width: 14px;
        height: 14px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }

    .slide-details {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   REVIEWS/CERTIFICATES SECTION - Premium Glassmorphism
   ===================================================== */
.reviews-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay at top */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
            rgba(65, 105, 225, 0.3) 0%,
            rgba(96, 165, 250, 0.15) 50%,
            transparent 100%);
    animation: gradientPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientPulse {

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

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(65, 105, 225, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.reviews-section .section-tagline {
    color: var(--secondary-light);
}

.reviews-section .section-title {
    color: #ffffff;
}

.reviews-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Slider Wrapper */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-slider-track::-webkit-scrollbar {
    display: none;
}

/* Certificate Card - Glassmorphism */
.cert-card {
    flex: 0 0 calc(50% - 16px);
    min-width: 380px;
    height: 420px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow:
        0 20px 60px rgba(65, 105, 225, 0.3),
        0 0 40px rgba(65, 105, 225, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cert-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cert-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

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

/* Hover Overlay */
.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-zoom-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.3);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-zoom-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.cert-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Navigation Arrows */
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.5);
}

.reviews-prev {
    left: 0;
}

.reviews-next {
    right: 0;
}

/* Lightbox */
.cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cert-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cert-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 400px;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    background: #1a2744;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg);
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.5);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-slider-wrapper {
        padding: 0 16px;
    }

    .cert-card {
        flex: 0 0 240px;
        height: 320px;
    }

    .reviews-arrow {
        display: none;
    }

    .lightbox-close {
        top: -40px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* =====================================================
   SPHERES SECTION - Premium Grid Redesign
   ===================================================== */
.premium-spheres {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.spheres-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spheres-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    border-radius: 2px;
    margin-top: 24px;
}

.spheres-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.spheres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Premium Sphere Card */
.sphere-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.sphere-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 40px rgba(65, 105, 225, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Icon */
.sphere-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(65, 105, 225, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--secondary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.sphere-card:hover .sphere-icon-wrap {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.25);
}

.sphere-icon-wrap svg {
    transition: transform 0.4s ease;
}

.sphere-card:hover .sphere-icon-wrap svg {
    transform: scale(1.1);
}

/* Content */
.sphere-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.sphere-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Decorative Glow on Hover */
.sphere-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sphere-card:hover::before {
    opacity: 1;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .spheres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

    .sphere-card {
        padding: 32px 24px;
    }

    .sphere-title {
        font-size: 1.25rem;
    }
}

/* =====================================================
   SPHERES SECTION - 3D CAROUSEL (Revised)
   ===================================================== */
.spheres-3d-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    /* Reduced height for smaller cards */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
    margin-top: -20px;
}

.spheres-3d-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.sphere-card-3d {
    position: absolute;
    width: 280px;
    height: 380px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-origin: center center;
    will-change: transform, opacity, opacity;
}

.sphere-card-3d.active {
    z-index: 10;
    opacity: 1;
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
    /* Transform handled by JS, but this adds the glow */
}

.sphere-card-3d:not(.active) {
    opacity: 0.7;
}

.sphere-card-3d:not(.active):hover {
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.9);
}

/* 3D Card Content Styles */
.sphere-card-3d .sphere-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.sphere-card-3d .sphere-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.sphere-card-3d .sphere-desc {
    font-size: 0.9rem;
}

/* =====================================================
   3D CAROUSEL - COVER FLOW EFFECT
   ===================================================== */
.industries-3d-section {
    padding: 80px 0;
    overflow: hidden;
}

.industries-3d-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.carousel-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.carousel-3d-card {
    position: absolute;
    width: 220px;
    height: 300px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: grab;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform-origin: center center;
    will-change: transform, opacity;
}

.carousel-3d-card:active {
    cursor: grabbing;
}

.carousel-3d-card.active {
    z-index: 10 !important;
    box-shadow:
        0 30px 60px rgba(65, 105, 225, 0.25),
        0 0 0 2px rgba(65, 105, 225, 0.3);
}

.carousel-3d-card:not(.active):hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.card-3d-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(65, 105, 225, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.carousel-3d-card.active .card-3d-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3);
}

.card-3d-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-3d-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-3d-container {
        height: 380px;
    }

    .carousel-3d-card {
        width: 180px;
        height: 260px;
        padding: 24px 16px;
    }

    .card-3d-icon {
        width: 56px;
        height: 56px;
    }

    .card-3d-title {
        font-size: 1rem;
    }
}

/* =====================================================
   Mobile Projects Section - Blur Overlay & Scroll Button
   ===================================================== */

/* Default: Hide mobile-only elements on desktop */
.projects-blur-overlay {
    display: none;
}

/* Projects Grid Wrapper */
.projects-grid-wrapper {
    position: relative;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .projects-grid-wrapper {
        max-height: 820px;
        overflow: hidden;
        position: relative;
        transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .projects-grid-wrapper.expanded {
        max-height: 4000px;
        overflow: visible;
    }

    .projects-grid-wrapper.expanded .projects-blur-overlay {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* Blur Overlay */
    .projects-blur-overlay {
        display: flex;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.85) 40%,
                rgba(255, 255, 255, 1) 100%);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 30px;
        z-index: 10;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* Premium Scroll Button - Compact */
    .projects-scroll-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 10px 20px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        cursor: pointer;
        box-shadow:
            0 6px 20px rgba(102, 126, 234, 0.35),
            0 3px 10px rgba(118, 75, 162, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        overflow: hidden;
    }

    .projects-scroll-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
        transition: left 0.6s ease;
    }

    .projects-scroll-btn:hover::before {
        left: 100%;
    }

    .projects-scroll-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 12px 40px rgba(102, 126, 234, 0.5),
            0 6px 20px rgba(118, 75, 162, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .projects-scroll-btn:active {
        transform: translateY(-1px) scale(0.98);
    }

    .scroll-arrow {
        display: flex;
        width: 14px;
        height: 14px;
        animation: pulseArrow 2s ease-in-out infinite;
    }

    .scroll-arrow svg {
        width: 100%;
        height: 100%;
        stroke-width: 2.5;
    }

    .scroll-text {
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    @keyframes pulseArrow {

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

        50% {
            transform: translateY(5px);
            opacity: 0.8;
        }
    }
}

/* =====================================================
   CATALOG SECTION - TEXT SIZE ADJUSTMENTS ONLY
   ===================================================== */
.catalog-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
}

.catalog-item h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 6px;
}

.catalog-desc {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.catalog-desc strong {
    font-size: 0.7rem;
}

.spec-item {
    font-size: 0.6rem;
    padding: 3px 6px;
}

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}

.partners .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.partners-ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-ticker-track {
    display: flex;
    gap: 80px;
    animation: partnersTicker 35s linear infinite;
    width: max-content;
}

@keyframes partnersTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 90px;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-item:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* Specific styling for new logos if needed, though grayscale handles most */
.partner-logo-item .logo-white-bg {
    /* If logos have white bg, let's try to mix them or invert if needed on light bg */
    /* Since section is light (#f8fafc), white bg logos might look odd if they have a non-transparent box. 
       If they are transparent pngs with black text, they work.
       If they are transparent pngs with white text (like for hero), they will be invisible on light bg!
    */
    filter: invert(1);
    /* Invert white logos to black for light section */
}

/* Logic:
   Hero Ticker = Dark Background -> Needs Light/White Logos.
   Partners Section = Light Background -> Needs Dark Logos.
   
   If the provided logos are White-on-Transparent (for Hero):
   - Hero: Perfect.
   - Partners: Invisible. Need `filter: invert(1)` to make them black.
   
   If the provided logos are Black-on-Transparent:
   - Hero: Invisible unless `filter: invert(1)` (which .ticker-item does).
   - Partners: Perfect.
   
   Let's verify what .ticker-item does in styles.css.
   .ticker-item img { filter: brightness(0) invert(1); } -> Makes everything WHITE.
   So if we upload Black or Colored logos -> they become White for Hero. Good.
   
   For Partners section (Light bg):
   .partner-logo-item { filter: grayscale(1) opacity(0.6); }
   We need them to be visible. If the uploaded logos are "White", grayscale white is white. On light bg = invisible.
   So for Partners section, we should INVERT white logos to make them dark.
*/
