* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00aeef;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - White Background with Enhanced Styling */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00aee9, #00d4ff);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00aee9;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Navigation Link */
.nav-link.active {
    color: #00aee9;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #00aee9, #0088cc);
}

.nav .cta-button {
    background: linear-gradient(135deg, #00aeef 0%, #0077b3 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.nav .cta-button::after {
    display: none;
}

.nav .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 233, 0.6);
    color: var(--white);
    background: linear-gradient(135deg, #00aee9 0%, #0088cc 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.mobile-menu-toggle:hover span {
    background: #00aee9;
}

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

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

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

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00aee9 0%, #00d4ff 100%);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 174, 233, 0.5);
}

/* Ultra Modern Hero Section - Smooth Gradient */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(to bottom, 
            #000000 0%,
            #000214 10%,
            #000428 20%, 
            #000c28 35%,
            #001838 50%, 
            #002850 65%,
            #003870 80%,
            #004e92 100%
        );
    color: var(--white);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00aeef 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0077b3 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Carousel center card pulse animation */
@keyframes centerCardPulse {
    0%, 100% { 
        box-shadow: 
            0 40px 100px rgba(0, 170, 233, 0.5),
            0 20px 60px rgba(0, 170, 233, 0.35),
            0 10px 30px rgba(0, 0, 0, 0.8),
            0 0 0 4px rgba(0, 170, 233, 0.7),
            0 0 60px rgba(0, 170, 233, 0.6),
            0 0 120px rgba(0, 170, 233, 0.3),
            inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    }
    50% { 
        box-shadow: 
            0 45px 110px rgba(0, 170, 233, 0.6),
            0 25px 70px rgba(0, 170, 233, 0.45),
            0 15px 35px rgba(0, 0, 0, 0.8),
            0 0 0 5px rgba(0, 170, 233, 0.8),
            0 0 80px rgba(0, 170, 233, 0.7),
            0 0 140px rgba(0, 170, 233, 0.4),
            inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 174, 239, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 174, 239, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Hero Content */
.hero-modern-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animated Badge */
.hero-badge-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    animation: pulse 3s infinite;
    width: fit-content;
}

.hero-badge-centered {
    /* Centered by parent flexbox with align-items: center */
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Modern Title */
.hero-title-modern {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.word-wrap {
    display: inline-block;
    margin: 0 0.1em;
}

.highlight-gradient {
    background: linear-gradient(135deg, #00aeef 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00aeef, transparent);
    border-radius: 2px;
}

/* Subtitle */
.hero-subtitle-modern {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.subtitle-large {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, #00aeef 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 300;
}

/* Hero Pills */
.hero-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-pill::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;
}

.hero-pill:hover::before {
    left: 100%;
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(0, 174, 239, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

/* Hero Framing Section */
.hero-framing-section {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-framing-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-framing-text strong {
    font-size: 1.3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-framing-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-framing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-framing-logo img {
    max-width: 130px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.4s ease;
}

.hero-framing-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.15);
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        align-items: flex-start;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link::after {
        left: 2rem;
        width: 0;
    }
    
    .nav-link.active::after,
    .nav-link:hover::after {
        width: calc(100% - 4rem);
    }
    
    .nav .cta-button {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }
}

/* Responsive for hero framing */
@media (max-width: 768px) {
    .hero-framing-text {
        font-size: 1rem;
    }
    
    .hero-framing-text strong {
        font-size: 1.15rem;
    }
    
    .hero-framing-logos {
        gap: 2rem;
    }
    
    .hero-framing-logo img {
        max-width: 100px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-framing-text {
        font-size: 0.95rem;
    }
    
    .hero-framing-logos {
        gap: 1.5rem;
    }
    
    .hero-framing-logo img {
        max-width: 80px;
        max-height: 38px;
    }
}

.pill-icon {
    font-size: 1.1rem;
    color: #00aeef;
    filter: drop-shadow(0 2px 6px rgba(0, 174, 239, 0.5));
}

.pill-text {
    letter-spacing: 0.3px;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 239, 0.5);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.3);
}

.stat-icon {
    color: #00aeef;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00aee9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 4rem 0 3rem;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #00aeef 0%, #0077b3 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.6);
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00aeef;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 4rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 25px); opacity: 0; }
}

.scroll-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Legacy Hero (keeping for fallback) */
.hero {
    background: linear-gradient(135deg, #00aeef 0%, #0077b3 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: none;
    background: none;
}

.hero-supertitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    display: none; /* Hide since we now have the logo */
}

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

.highlight {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.hero-cta {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Process Diagram Section - White Background */
.process-diagram-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.process-diagram-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.process-diagram-section .section-subtitle {
    color: var(--text-light);
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.process-image-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.process-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.08) 0%, rgba(0, 136, 204, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.process-image-card:hover::before {
    opacity: 1;
}

.process-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 174, 239, 0.25);
    border-color: rgba(0, 174, 239, 0.3);
}

.process-step-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.process-card-description {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Featured Image Section - Dark Gradient Background */
.featured-image-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            #004e92 0%,
            #0066a8 15%,
            #0088cc 30%, 
            #00aeef 50%, 
            #0088cc 70%,
            #0066a8 85%,
            #004e92 100%
        );
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.featured-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}

.featured-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-image-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 70px rgba(0, 174, 239, 0.5);
    border-color: rgba(0, 174, 239, 0.3);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.featured-image-caption {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: 600;
}

.featured-image-caption p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Why FIVE Section - Smooth Gradient Transition */
.why-five {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            #004e92 0%,
            #003870 15%,
            #002850 30%, 
            #001838 50%, 
            #000c28 70%,
            #000428 85%,
            #000428 100%
        );
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.why-five::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 15s infinite ease-in-out;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* White sections use dark text */
.guarantee-section .section-title,
.animation-section .section-title {
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* White sections use dark text */
.guarantee-section .section-subtitle,
.animation-section .section-subtitle,
.framing-systems-section .section-subtitle {
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* White sections use dark text */
.guarantee-section .section-intro,
.animation-section .section-intro {
    color: var(--text-light);
}

.section-highlight {
    text-align: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-weight: 700;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* White sections use gradient from dark colors */
.guarantee-section .section-highlight,
.animation-section .section-highlight {
    background: linear-gradient(135deg, #00aeef 0%, #0077b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.4);
    border-color: rgba(0, 174, 239, 0.4);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00aeef 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Process Section - Dark Gradient Background */
.process-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            #000428 0%,
            #001838 15%,
            #002850 30%, 
            #004e92 50%, 
            #0066a8 70%,
            #0088cc 85%,
            #00aeef 100%
        );
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.process-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.15), transparent);
    transition: left 0.6s ease;
}

.process-card:hover::before {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 174, 239, 0.5);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.3);
}

.process-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-icon svg {
    width: 100%;
    height: 100%;
    color: #00aeef;
    filter: drop-shadow(0 4px 12px rgba(0, 174, 239, 0.3));
    transition: all 0.4s ease;
}

.process-card:hover .process-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(0, 174, 239, 0.5));
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    color: #00aeef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.15) rotate(-10deg);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.process-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Coverflow Gallery Section - Dark Professional Theme */
/* ===============================================
   GALLERY CAROUSEL SECTION - REDESIGNED
   =============================================== */

.gallery-carousel-section {
    padding: 4rem 0 12rem 0;
    background: 
        /* ULTRA-IMPRESSIVE Top Glow - Brand Blue #00aee9 */
        radial-gradient(ellipse 140% 90% at top center, 
            rgba(0, 174, 233, 0.55) 0%, 
            rgba(0, 174, 233, 0.42) 12%, 
            rgba(0, 174, 233, 0.28) 25%, 
            rgba(0, 140, 200, 0.15) 40%, 
            transparent 60%
        ),
        /* Dynamic Center Accent */
        radial-gradient(ellipse 110% 70% at 50% 50%, 
            rgba(0, 174, 233, 0.12) 0%, 
            rgba(0, 140, 200, 0.06) 40%, 
            transparent 65%
        ),
        /* Subtle Bottom Accent */
        radial-gradient(ellipse 120% 65% at bottom center, 
            rgba(0, 174, 233, 0.22) 0%, 
            rgba(0, 140, 200, 0.10) 30%, 
            transparent 55%
        ),
        /* Rich Deep Dark Gradient Base */
        linear-gradient(180deg, 
            #000000 0%,
            #000a14 10%,
            #00111f 25%,
            #001628 40%,
            #001a2e 50%,
            #001628 60%,
            #00111f 75%,
            #000a14 90%,
            #000000 100%
        );
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* ULTRA-IMPRESSIVE Top Brand Blue Glow Layer */
.gallery-carousel-section .container::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 700px;
    background: radial-gradient(ellipse 110% 100% at center top, 
        rgba(0, 174, 233, 0.50) 0%, 
        rgba(0, 174, 233, 0.38) 18%,
        rgba(0, 174, 233, 0.24) 32%, 
        rgba(0, 140, 200, 0.12) 48%, 
        transparent 70%
    );
    top: -120px;
    left: -15%;
    right: -15%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
    animation: gentlePulse 8s infinite ease-in-out;
}

.gallery-carousel-section .container {
    position: relative;
    z-index: 2;
}

/* ULTRA-IMPRESSIVE Floating Brand Blue Orb - Top Right */
.gallery-carousel-section::before {
    content: '';
    position: absolute;
    width: 2000px;
    height: 2000px;
    background: radial-gradient(circle, 
        rgba(0, 174, 233, 0.42) 0%, 
        rgba(0, 174, 233, 0.32) 12%, 
        rgba(0, 174, 233, 0.20) 25%, 
        rgba(0, 140, 200, 0.12) 45%, 
        rgba(0, 120, 180, 0.06) 65%, 
        transparent 82%
    );
    top: -950px;
    right: -550px;
    border-radius: 50%;
    filter: blur(200px);
    animation: magnificentFloat 28s infinite ease-in-out, magnificentPulse 11s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

/* ULTRA-IMPRESSIVE Floating Brand Blue Orb - Bottom Left */
.gallery-carousel-section::after {
    content: '';
    position: absolute;
    width: 1700px;
    height: 1700px;
    background: radial-gradient(circle, 
        rgba(0, 174, 233, 0.28) 0%, 
        rgba(0, 174, 233, 0.18) 18%, 
        rgba(0, 140, 200, 0.11) 38%, 
        rgba(0, 120, 180, 0.05) 58%, 
        transparent 78%
    );
    bottom: -750px;
    left: -450px;
    border-radius: 50%;
    filter: blur(180px);
    animation: magnificentFloat 24s infinite ease-in-out reverse, magnificentPulse 10s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.coverflow-section .section-title,
.gallery-carousel-section .section-title {
    color: #ffffff;
    text-align: center;
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    line-height: 1;
    background: linear-gradient(180deg, 
        #ffffff 0%,
        #f0f9ff 25%,
        #d1f0ff 50%,
        #00aee9 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: brightness(1.2) contrast(1.1);
    animation: titleShimmer 4s ease-in-out infinite;
}



/* MAGNIFICENT Float Animation */
@keyframes magnificentFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-25px, 25px) scale(0.98);
    }
}

/* MAGNIFICENT Pulse Animation */
@keyframes magnificentPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.75;
    }
}

/* Gentle Pulse Animation for Top Glow */
@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

/* Ultra-Modern Title Backdrop with Light Glow */
.gallery-carousel-section .section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 200%;
    background: 
        radial-gradient(ellipse 100% 80% at center, 
            rgba(0, 174, 233, 0.15) 0%, 
            rgba(0, 174, 233, 0.08) 30%, 
            rgba(0, 140, 200, 0.03) 55%,
            transparent 100%
        );
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: gentlePulse 6s infinite ease-in-out;
}

/* Brilliant Light Bar Effect Behind Title */
.gallery-carousel-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 174, 233, 0.3) 15%,
        #00aee9 50%,
        rgba(0, 174, 233, 0.3) 85%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(0, 174, 233, 0.6),
        0 0 40px rgba(0, 174, 233, 0.4),
        0 0 60px rgba(0, 174, 233, 0.2);
    animation: lineGlow 3s ease-in-out infinite;
}

/* Shimmer Animation for Title */
@keyframes titleShimmer {
    0%, 100% {
        filter: brightness(1.2) contrast(1.1);
    }
    50% {
        filter: brightness(1.4) contrast(1.15);
    }
}

/* Line Glow Animation */
@keyframes lineGlow {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1.1);
    }
}

/* Gallery Header Wrapper */
.gallery-header-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

/* Title Main Span */
.gallery-carousel-section .title-main {
    display: inline-block;
    position: relative;
    padding: 0 2rem;
}

.coverflow-section .section-subtitle,
.gallery-carousel-section .section-subtitle {
    text-align: center;
    font-size: 1.65rem;
    max-width: 950px;
    margin: 0 auto 5.5rem;
    position: relative;
    z-index: 10;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Subtitle Highlight - Gradient Text Effect */
.subtitle-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #e0f5ff 30%,
        #00aee9 70%,
        #0088cc 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: brightness(1.15);
    position: relative;
}

/* Subtle Underline for Highlight */
.subtitle-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 174, 233, 0.4) 25%,
        rgba(0, 174, 233, 0.8) 50%,
        rgba(0, 174, 233, 0.4) 75%,
        transparent 100%
    );
    border-radius: 1px;
}

/* Subtitle Secondary - Clean, High Contrast */
.subtitle-secondary {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    line-height: 1.65;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Gallery Carousel Wrapper - Enhanced */
.gallery-carousel-wrapper {
    position: relative;
    max-width: 1250px;
    margin: 4.5rem auto 0;
    padding: 0 110px;
    z-index: 5;
}

/* Gallery Carousel Track */
.gallery-carousel-track {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Card Base */
.gallery-card {
    position: absolute;
    width: 100%;
    max-width: 900px;
    height: 550px;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Active Card - Center Stage */
.gallery-card.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    transform: scale(1);
}

/* Gallery Card Inner Container - ULTRA-IMPRESSIVE */
.gallery-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #0a0e1e 0%, #000408 50%, #000000 100%);
    border: 4px solid rgba(0, 174, 233, 0.6);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.85),
        0 18px 55px rgba(0, 174, 233, 0.35),
        0 0 0 1px rgba(0, 174, 233, 0.4),
        0 0 90px rgba(0, 174, 233, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 2px 4px rgba(0, 174, 233, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card.active .gallery-card-inner {
    border-color: rgba(0, 174, 233, 0.9);
    box-shadow: 
        0 45px 120px rgba(0, 0, 0, 0.92),
        0 25px 70px rgba(0, 174, 233, 0.6),
        0 0 0 3px rgba(0, 174, 233, 0.7),
        0 0 110px rgba(0, 174, 233, 0.5),
        0 0 170px rgba(0, 174, 233, 0.3),
        0 0 220px rgba(0, 140, 200, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        inset 0 2px 6px rgba(0, 174, 233, 0.25);
    transform: translateY(-5px);
}

/* Image Styling - Perfect Rendering with Enhancement */
.gallery-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92) contrast(1.05);
}

.gallery-card.active .gallery-card-inner img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.08);
}

/* Gallery Card Overlay - Hidden */
.gallery-card-overlay {
    display: none;
}

/* Gallery Card Content - Hidden */
.gallery-card-content h3,
.gallery-card-content p {
    display: none;
}

/* Navigation Buttons - ULTRA-IMPRESSIVE */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 25, 45, 0.92), rgba(0, 5, 15, 0.96));
    backdrop-filter: blur(35px) saturate(220%);
    border: 3px solid rgba(0, 174, 233, 0.75);
    color: #00aee9;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 
        0 18px 50px rgba(0, 174, 233, 0.45),
        0 10px 25px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(0, 174, 233, 0.45),
        0 0 60px rgba(0, 174, 233, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.gallery-nav-prev {
    left: 0;
}

.gallery-nav-next {
    right: 0;
}

.gallery-nav-btn svg {
    filter: drop-shadow(0 3px 8px rgba(0, 174, 233, 0.7));
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: linear-gradient(145deg, rgba(0, 174, 233, 0.4), rgba(0, 140, 200, 0.35));
    border-color: #00aee9;
    transform: translateY(-50%) scale(1.18);
    box-shadow: 
        0 25px 70px rgba(0, 174, 233, 0.65),
        0 12px 35px rgba(0, 0, 0, 0.85),
        0 0 0 4px rgba(0, 174, 233, 0.65),
        0 0 70px rgba(0, 174, 233, 0.55),
        0 0 120px rgba(0, 174, 233, 0.35),
        inset 0 0 50px rgba(0, 174, 233, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.28);
}

.gallery-nav-btn:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 174, 233, 0.9));
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(1.08);
}

/* Gallery Indicators - Enhanced */
.gallery-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 4rem;
    z-index: 2;
    position: relative;
}

.gallery-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(0, 174, 233, 0.25);
    border: 2px solid rgba(0, 174, 233, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 174, 233, 0.2);
}

.gallery-dot:hover {
    background: rgba(0, 174, 233, 0.4);
    border-color: rgba(0, 174, 233, 0.65);
    transform: scale(1.35);
    box-shadow: 0 3px 12px rgba(0, 174, 233, 0.35);
}

.gallery-dot.active {
    width: 52px;
    border-radius: 7px;
    background: linear-gradient(90deg, #00aee9 0%, #0088cc 100%);
    border-color: #00aee9;
    box-shadow: 
        0 5px 18px rgba(0, 174, 233, 0.6),
        0 0 30px rgba(0, 174, 233, 0.5),
        0 0 50px rgba(0, 174, 233, 0.25);
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    .gallery-carousel-section {
        padding: 3rem 0 8rem 0;
    }
    
    .gallery-carousel-section .section-title {
        font-size: 3.5rem;
        letter-spacing: -0.04em;
    }
    
    .gallery-carousel-section .section-title::after {
        width: 200px;
        height: 3px;
        bottom: -12px;
    }
    
    .gallery-carousel-section .section-subtitle {
        font-size: 1.2rem;
        max-width: 92%;
        gap: 0.5rem;
    }
    
    .subtitle-highlight {
        font-size: 1.7rem;
        margin-bottom: 0.25rem;
    }
    
    .subtitle-highlight::after {
        width: 140px;
        bottom: -6px;
    }
    
    .subtitle-secondary {
        font-size: 1.15rem;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 20px;
    }
    
    .gallery-carousel-track {
        height: auto;
        min-height: 400px;
    }
    
    .gallery-card {
        max-width: 100%;
        height: auto;
    }
    
    .gallery-card-inner {
        height: auto;
        padding-bottom: 75%;
        position: relative;
    }
    
    .gallery-card-inner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-card-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-card-content p {
        font-size: 1rem;
    }
    
    .gallery-carousel-indicators {
        gap: 0.5rem;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-dot.active {
        width: 36px;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-section .section-title {
        font-size: 2.8rem;
        letter-spacing: -0.03em;
    }
    
    .gallery-carousel-section .section-title::after {
        width: 150px;
        height: 2px;
        bottom: -10px;
    }
    
    .subtitle-highlight {
        font-size: 1.4rem;
    }
    
    .subtitle-highlight::after {
        width: 100px;
        bottom: -5px;
    }
    
    .subtitle-secondary {
        font-size: 1.05rem;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 60px;
    }
    
    .gallery-nav-btn {
        width: 55px;
        height: 55px;
    }
}

/* Old Coverflow Styles (keeping for backwards compatibility) */
.coverflow-wrapper {
    position: relative;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.coverflow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    perspective-origin: center center;
}

.coverflow-item {
    position: absolute;
    width: 650px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.75),
        0 15px 45px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 212, 255, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(135deg, #0a0a1e 0%, #000000 100%);
    border: 3px solid rgba(0, 212, 255, 0.45);
    position: relative;
}

/* Shimmer effect overlay */
.coverflow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, transparent 50%, rgba(0, 212, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

/* Center position - active/focused - ULTRA IMPRESSIVE */
.coverflow-item.center {
    z-index: 10;
    transform: translateX(0) scale(1.1) rotateY(0deg) translateZ(50px);
    opacity: 1;
    filter: blur(0px) brightness(1.08);
    box-shadow: 
        0 50px 120px rgba(0, 212, 255, 0.55),
        0 25px 70px rgba(0, 212, 255, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.85),
        0 0 0 5px rgba(0, 212, 255, 0.75),
        0 0 80px rgba(0, 212, 255, 0.65),
        0 0 140px rgba(0, 212, 255, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 5px solid #00d4ff;
    animation: centerCardPulse 3s infinite ease-in-out;
}

.coverflow-item.center::before {
    opacity: 1;
    animation: shimmer 4s ease-in-out infinite;
}



/* Left position */
.coverflow-item.left {
    z-index: 5;
    transform: translateX(-320px) scale(0.72) rotateY(30deg) translateZ(-50px);
    opacity: 0.5;
    filter: blur(1.5px) brightness(0.7);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 170, 233, 0.15);
    border-color: rgba(0, 170, 233, 0.25);
}

/* Right position */
.coverflow-item.right {
    z-index: 5;
    transform: translateX(320px) scale(0.72) rotateY(-30deg) translateZ(-50px);
    opacity: 0.5;
    filter: blur(1.5px) brightness(0.7);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 170, 233, 0.15);
    border-color: rgba(0, 170, 233, 0.25);
}

/* Hidden positions */
.coverflow-item.hidden-left {
    z-index: 1;
    transform: translateX(-400px) scale(0.5) rotateY(35deg);
    opacity: 0;
    filter: blur(4px);
    pointer-events: none;
}

.coverflow-item.hidden-right {
    z-index: 1;
    transform: translateX(400px) scale(0.5) rotateY(-35deg);
    opacity: 0;
    filter: blur(4px);
    pointer-events: none;
}

/* Hover effect on side items - ENHANCED */
.coverflow-item.left:hover {
    transform: translateX(-300px) scale(0.8) rotateY(25deg) translateZ(-25px);
    opacity: 0.8;
    filter: blur(0.5px) brightness(0.88);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.65),
        0 0 0 3px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.2);
}

.coverflow-item.right:hover {
    transform: translateX(300px) scale(0.8) rotateY(-25deg) translateZ(-25px);
    opacity: 0.8;
    filter: blur(0.5px) brightness(0.88);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.65),
        0 0 0 3px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.2);
}

.coverflow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.5s ease;
}

.coverflow-item.center .coverflow-image {
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.coverflow-item.left .coverflow-image,
.coverflow-item.right .coverflow-image {
    filter: brightness(0.65) contrast(1.05);
}

.coverflow-item.left:hover .coverflow-image,
.coverflow-item.right:hover .coverflow-image {
    filter: brightness(0.8) contrast(1.08);
}

.coverflow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: 
        linear-gradient(to top, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.85) 80%,
            transparent 100%
        );
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-top: 3px solid #00aeef;
    box-shadow: 
        0 -10px 30px rgba(0, 174, 239, 0.15),
        inset 0 2px 0 rgba(0, 174, 239, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    display: none; /* Hide captions */
}

.coverflow-item.center .coverflow-caption {
    opacity: 0; /* Keep hidden even on center card */
    display: none;
}

.coverflow-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    background: linear-gradient(135deg, #1a1a2e 0%, #00aeef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverflow-caption p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(26, 26, 46, 0.7);
    font-weight: 500;
}

.coverflow-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 20, 40, 0.85), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(30px) saturate(200%);
    border: 3px solid rgba(0, 212, 255, 0.65);
    color: #00d4ff;
    font-size: 2.8rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    z-index: 20;
    box-shadow: 
        0 18px 50px rgba(0, 212, 255, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 212, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
}

.coverflow-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(0, 170, 233, 0.3) 45deg, 
        rgba(0, 212, 255, 0.5) 90deg,
        rgba(0, 170, 233, 0.3) 135deg,
        transparent 180deg,
        transparent 360deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.coverflow-btn:hover {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.3), rgba(0, 170, 233, 0.25));
    border-color: #00d4ff;
    transform: scale(1.2) translateY(-3px);
    box-shadow: 
        0 25px 70px rgba(0, 212, 255, 0.65),
        0 12px 30px rgba(0, 0, 0, 0.75),
        0 0 0 5px rgba(0, 212, 255, 0.55),
        0 0 60px rgba(0, 212, 255, 0.5),
        0 0 100px rgba(0, 212, 255, 0.3),
        inset 0 0 50px rgba(0, 212, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.coverflow-btn:hover::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   TESTIMONIALS SECTION - Dark Cards Carousel
   ======================================== */

.testimonials-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Remove decorative elements */

.testimonials-section .section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.testimonials-section .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(26, 26, 46, 0.65);
    max-width: 650px;
    margin: 0 auto 4rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Testimonials Carousel Wrapper - Multiple Cards */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hide any orphaned quote elements */
.testimonials-carousel-wrapper > *:not(.testimonial-nav):not(.testimonials-carousel) {
    display: none !important;
}

/* Testimonials Carousel Container */
.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Card Base - Carousel Style */
.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 900px;
    padding: 4rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
}

/* Light Card Style */
.testimonial-card.light {
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 170, 233, 0.1);
}

.testimonial-card.light:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 170, 233, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 170, 233, 0.3);
}

/* Dark Card Style - Enhanced */
.testimonial-card.dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: #ffffff;
    box-shadow: 
        0 20px 60px rgba(0, 170, 233, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(0, 170, 233, 0.4);
    border: 2px solid rgba(0, 170, 233, 0.5);
}

.testimonial-card.dark:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 170, 233, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(0, 170, 233, 0.7);
    border-color: rgba(0, 170, 233, 0.8);
}

/* Quote Icon */
.quote-icon {
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-card.light .quote-icon {
    color: #00aae9;
}

.testimonial-card.dark .quote-icon {
    color: #00d4ff;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: auto;
    font-style: italic;
    flex: 1;
}

.testimonial-card.light .testimonial-text {
    color: #1a1a2e;
}

.testimonial-card.dark .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Testimonial Footer */
.testimonial-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid;
}

.testimonial-card.light .testimonial-footer {
    border-color: rgba(0, 170, 233, 0.15);
}

.testimonial-card.dark .testimonial-footer {
    border-color: rgba(0, 170, 233, 0.3);
}

/* Author Info */
.testimonial-author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-card.light .author-name {
    color: #1a1a2e;
}

.testimonial-card.dark .author-name {
    color: #00d4ff;
}

.author-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-card.light .author-title {
    color: rgba(26, 26, 46, 0.7);
}

.testimonial-card.dark .author-title {
    color: rgba(255, 255, 255, 0.7);
}

.author-company {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-card.light .author-company {
    color: #00aae9;
}

.testimonial-card.dark .author-company {
    color: #00d4ff;
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 170, 233, 0.3);
    color: #00aae9;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.testimonial-nav-prev {
    left: -80px;
}

.testimonial-nav-next {
    right: -80px;
}

.testimonial-nav:hover {
    background: #00aae9;
    border-color: #00aae9;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 170, 233, 0.3);
}

/* Testimonial Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 170, 233, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background: rgba(0, 170, 233, 0.5);
    transform: scale(1.3);
}

.indicator-dot.active {
    background: #00aae9;
    width: 36px;
    border-radius: 5px;
}

.coverflow-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 
        0 8px 32px rgba(0, 174, 239, 0.15),
        0 0 0 1px rgba(0, 174, 239, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.coverflow-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 2.5px solid #00aeef;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 
        0 4px 15px rgba(0, 174, 239, 0.25),
        0 0 0 2px rgba(0, 174, 239, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.coverflow-dot:hover {
    background: rgba(0, 174, 239, 0.25);
    transform: scale(1.3);
    border-color: #00aeef;
    box-shadow: 
        0 6px 20px rgba(0, 174, 239, 0.35),
        0 0 0 3px rgba(0, 174, 239, 0.2),
        0 0 15px rgba(0, 174, 239, 0.25),
        inset 0 0 12px rgba(0, 174, 239, 0.2);
}

.coverflow-dot.active {
    background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
    border-color: #00aeef;
    width: 36px;
    height: 13px;
    border-radius: 10px;
    box-shadow: 
        0 6px 30px rgba(0, 174, 239, 0.45),
        0 0 0 4px rgba(0, 174, 239, 0.15),
        0 0 25px rgba(0, 174, 239, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

/* Videos Section - Dark Gradient Background */
.videos-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            #00aeef 0%,
            #0088cc 15%,
            #0066a8 30%, 
            #004e92 50%, 
            #002850 70%,
            #001838 85%,
            #000c28 100%
        );
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.videos-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 15s infinite ease-in-out;
}

.videos-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(0, 136, 204, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

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

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 174, 239, 0.4);
    border-color: rgba(0, 174, 239, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    border-radius: 12px;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    z-index: 1;
}

.custom-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.custom-video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.custom-video-overlay .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
}

.custom-video-overlay:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(1);
}

.custom-video-overlay .play-button {
    z-index: 2;
}

.video-embed-wrapper.playing .custom-video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.95) 0%, rgba(0, 136, 204, 0.95) 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    backdrop-filter: blur(10px);
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 174, 239, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgba(0, 174, 239, 1) 0%, rgba(0, 136, 204, 1) 100%);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.6);
    border-color: white;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.video-wrapper.playing .video-thumbnail,
.video-wrapper.playing .play-button,
.video-wrapper.playing .video-duration {
    display: none;
}

.video-card h3 {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Guarantee Section - White Background */
.guarantee-section {
    padding: 8rem 0;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

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

/* Guarantee Super Title - Impressive Headline */
.guarantee-super-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Impressive Spacer Line */
.guarantee-spacer-line {
    width: 100%;
    max-width: 600px;
    height: 4px;
    margin: 0 auto 3rem;
    position: relative;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 174, 233, 0.2) 10%,
        rgba(0, 174, 233, 0.4) 25%,
        #00aee9 50%,
        rgba(0, 174, 233, 0.4) 75%,
        rgba(0, 174, 233, 0.2) 90%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 
        0 0 15px rgba(0, 174, 233, 0.4),
        0 0 30px rgba(0, 174, 233, 0.25),
        0 0 45px rgba(0, 174, 233, 0.15);
    animation: spacerGlow 3s ease-in-out infinite;
}

/* Animated glow effect for spacer */
@keyframes spacerGlow {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
        box-shadow: 
            0 0 15px rgba(0, 174, 233, 0.4),
            0 0 30px rgba(0, 174, 233, 0.25),
            0 0 45px rgba(0, 174, 233, 0.15);
    }
    50% {
        opacity: 0.85;
        transform: scaleX(1.05);
        box-shadow: 
            0 0 20px rgba(0, 174, 233, 0.5),
            0 0 40px rgba(0, 174, 233, 0.35),
            0 0 60px rgba(0, 174, 233, 0.2);
    }
}

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

.guarantee-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--text-light);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #00aeef 0%, #0077b3 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 174, 239, 0.3);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.3);
    transition: all 0.4s ease;
}

.guarantee-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
    border-color: rgba(0, 174, 239, 0.5);
    box-shadow: 0 15px 50px rgba(0, 174, 239, 0.5);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* Responsive Styles for Guarantee Super Title */
@media (max-width: 768px) {
    .guarantee-super-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
        margin-bottom: 1.5rem;
    }
    
    .guarantee-spacer-line {
        max-width: 400px;
        height: 3px;
        margin-bottom: 2.5rem;
    }
    
    .guarantee-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .guarantee-super-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .guarantee-spacer-line {
        max-width: 280px;
        height: 2px;
        margin-bottom: 2rem;
    }
    
    .guarantee-content h2 {
        font-size: 1.7rem;
    }
}

/* CTA Section - Smooth Gradient Transition */
.cta-section {
    padding: 8rem 0;
    background: 
        linear-gradient(to bottom, 
            #00d4ff 0%,
            #00aeef 20%,
            #0088cc 40%, 
            #0066a8 60%, 
            #004e92 80%,
            #002850 100%
        );
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Animation Section - White Background */
.animation-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.animation-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.animation-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 174, 239, 0.2);
}

.surefit-animation {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section - Smooth Gradient Transition */
.contact-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

/* Decorative Elements */
.contact-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 174, 233, 0.08) 0%, transparent 70%);
    top: -400px;
    right: -300px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s infinite ease-in-out;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 174, 233, 0.06) 0%, transparent 70%);
    bottom: -350px;
    left: -250px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 22s infinite ease-in-out reverse;
    z-index: 0;
}

/* Section Title Styling */
.contact-section .section-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
    position: relative;
    z-index: 1;
}

.contact-section .section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 750px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 174, 233, 0.15);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 174, 233, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(0, 174, 233, 0.35);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 15px 40px rgba(0, 174, 233, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 174, 233, 0.15);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(108, 117, 125, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00aee9;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(0, 174, 233, 0.1),
        0 4px 12px rgba(0, 174, 233, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #00aee9 0%, #0088cc 100%);
    color: var(--white);
    padding: 1.3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 12px 35px rgba(0, 174, 233, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

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

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 18px 50px rgba(0, 174, 233, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #00d4ff 0%, #00aee9 100%);
}

.submit-button:hover::before {
    left: 100%;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 2.8rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 5rem 0;
    }
    
    .contact-section .section-title {
        font-size: 2.2rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 1.1rem;
        font-size: 1.05rem;
    }
}

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

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 20, 40, 0.85) 30%,
        rgba(0, 40, 80, 0.75) 60%,
        rgba(0, 20, 40, 0.85) 100%
    );
    z-index: 2;
}

/* Override styles for bottom hero with video background */
.hero-modern-bottom .container {
    position: relative;
    z-index: 3;
}

.hero-modern-bottom .hero-modern-content {
    position: relative;
    z-index: 3;
}

/* Adjust text colors for video background contrast */
.hero-modern-bottom .hero-title-modern {
    color: #ffffff;
    text-shadow: 
        0 0 60px rgba(0, 174, 239, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-modern-bottom .word-wrap {
    color: #ffffff;
}

.hero-modern-bottom .highlight-gradient {
    background: linear-gradient(135deg, #00aeef 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 174, 239, 0.8));
}

.hero-modern-bottom .subtitle-large {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-modern-bottom .gradient-text {
    color: #00aeef;
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.6);
}

.hero-modern-bottom .subtitle-description {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-modern-bottom .hero-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 174, 239, 0.4);
    color: #ffffff;
    box-shadow: 
        0 8px 32px rgba(0, 174, 239, 0.3),
        inset 0 0 20px rgba(0, 174, 239, 0.1);
}

.hero-modern-bottom .hero-pill:hover {
    background: rgba(0, 174, 239, 0.2);
    border-color: #00aeef;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 174, 239, 0.5),
        inset 0 0 30px rgba(0, 174, 239, 0.2);
}

.hero-modern-bottom .pill-icon {
    color: #00aeef;
    text-shadow: 0 0 15px rgba(0, 174, 239, 0.8);
}

.hero-modern-bottom .pill-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive for bottom hero */
@media (max-width: 768px) {
    .hero-modern-bottom {
        min-height: 80vh;
    }
    
    .hero-video-background iframe {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Video Background Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 20, 40, 0.8) 30%,
        rgba(0, 40, 80, 0.7) 60%,
        rgba(0, 20, 40, 0.8) 100%
    );
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #00aeef 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 80px rgba(0, 174, 239, 0.5),
        0 0 120px rgba(0, 174, 239, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 40px rgba(0, 174, 239, 0.6));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 60px rgba(0, 174, 239, 0.8));
    }
}

.video-hero-tagline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tagline-accent {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: 1rem 2rem;
    background: rgba(0, 174, 239, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #00aeef;
    border-radius: 8px;
    box-shadow: 
        0 0 30px rgba(0, 174, 239, 0.4),
        inset 0 0 20px rgba(0, 174, 239, 0.1);
    transition: all 0.3s ease;
}

.tagline-accent:hover {
    background: rgba(0, 174, 239, 0.2);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(0, 174, 239, 0.6),
        inset 0 0 30px rgba(0, 174, 239, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .video-hero-title {
        font-size: 3.5rem;
    }
    
    .tagline-accent {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .video-hero-background iframe {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@media (max-width: 480px) {
    .video-hero-title {
        font-size: 2.5rem;
    }
    
    .tagline-accent {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .video-hero-tagline {
        gap: 1rem;
    }
}

/* Stats Trust Bar - Minimalist */
.stats-bar {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #00aee9;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Responsive for stats bar */
@media (max-width: 768px) {
    .stats-bar {
        padding: 3rem 0;
    }
    
    .stats-grid {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-item::after {
        right: -1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Frame Manufacturers Section */
.frame-manufacturers-section {
    background: var(--white);
    padding: 4rem 0 5rem;
}

.frame-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Same gradient as Process section "How SureFit Guarantees Perfect Fit." */
.frame-manufacturers-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.frame-manufacturers-section .section-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Legacy styles - keeping for backwards compatibility */
.frame-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.frame-headline strong {
    color: #00aee9;
}

.frame-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.frame-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.frame-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.frame-logo-item img {
    max-width: 140px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.frame-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
}

.frame-more-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Responsive for frame manufacturers */
@media (max-width: 768px) {
    .frame-manufacturers-section {
        padding: 3rem 0;
    }
    
    .frame-manufacturers-section .section-title {
        font-size: 2.5rem;
    }
    
    .frame-manufacturers-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .frame-headline {
        font-size: 1.5rem;
    }
    
    .frame-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .frame-logos-row {
        gap: 2.5rem;
    }
    
    .frame-logo-item img {
        max-width: 110px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .frame-manufacturers-section {
        padding: 2.5rem 0;
    }
    
    .frame-headline {
        font-size: 1.3rem;
    }
    
    .frame-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .frame-logos-row {
        gap: 2rem;
    }
    
    .frame-logo-item img {
        max-width: 90px;
        max-height: 42px;
    }
}

/* Alternative Hero Design - Video Background (For Comparison) */
.alt-video-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.alt-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.alt-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    pointer-events: none;
}

.alt-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 25, 50, 0.75) 50%,
        rgba(0, 50, 100, 0.85) 100%
    );
    z-index: 2;
}

.alt-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.alt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 170, 233, 0.25);
    border: 2px solid rgba(0, 170, 233, 0.7);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 170, 233, 0.3);
}

.alt-hero-badge:hover {
    background: rgba(0, 170, 233, 0.35);
    border-color: #00d4ff;
    box-shadow: 0 0 40px rgba(0, 170, 233, 0.5);
}

.badge-icon {
    font-size: 1.2rem;
    color: #00d4ff;
}

.alt-hero-title {
    font-size: 7rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #00aae9 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 170, 233, 0.5);
    animation: altTitleGlow 3s ease-in-out infinite;
}

@keyframes altTitleGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 40px rgba(0, 170, 233, 0.6));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 80px rgba(0, 170, 233, 0.8));
    }
}

.alt-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.4s ease;
}

.feature-line:hover {
    transform: scale(1.08);
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 170, 233, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 170, 233, 0.4);
}

.feature-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    transition: all 0.4s ease;
}

.feature-line:hover .feature-dot {
    background: #00d4ff;
    border-color: #00d4ff;
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.9),
        0 0 50px rgba(0, 170, 233, 0.5);
}

.feature-line:hover .feature-dot::before {
    width: 20px;
    height: 20px;
    opacity: 0;
}

.feature-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    position: relative;
}

.feature-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00aae9, transparent);
    transition: width 0.4s ease;
}

.feature-line:hover .feature-text {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 170, 233, 0.6);
    letter-spacing: 0.2em;
}

.feature-line:hover .feature-text::after {
    width: 100%;
}

.feature-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 170, 233, 0.7), 
        transparent
    );
    margin: 0 1.5rem;
    transition: all 0.4s ease;
}

.feature-line:hover + .feature-separator,
.feature-separator:has(+ .feature-line:hover) {
    background: linear-gradient(90deg, 
        rgba(0, 170, 233, 0.5), 
        #00aae9, 
        rgba(0, 170, 233, 0.5)
    );
    box-shadow: 0 0 10px rgba(0, 170, 233, 0.6);
}



.alt-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.alt-cta-primary,
.alt-cta-secondary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alt-cta-primary {
    background: linear-gradient(135deg, #00aae9, #0088cc);
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 170, 233, 0.4);
}

.alt-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 170, 233, 0.6);
    background: linear-gradient(135deg, #0088cc, #00aae9);
}

.alt-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.alt-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00aae9;
    transform: translateY(-5px);
}

/* Responsive for alternative hero */
@media (max-width: 1024px) {
    .alt-hero-title {
        font-size: 5rem;
    }
    
    .feature-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .alt-hero-title {
        font-size: 3.5rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .feature-separator {
        width: 40px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .alt-hero-title {
        font-size: 2.5rem;
    }
    
    .alt-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .feature-separator {
        width: 3px;
        height: 50px;
        margin: 0.5rem 0;
        background: linear-gradient(to bottom, 
            transparent, 
            rgba(0, 170, 233, 0.7), 
            transparent
        );
    }
    
    .feature-line:hover + .feature-separator,
    .feature-separator:has(+ .feature-line:hover) {
        background: linear-gradient(to bottom, 
            rgba(0, 170, 233, 0.5), 
            #00aae9, 
            rgba(0, 170, 233, 0.5)
        );
    }
}

/* ===============================================
   CLIENT TESTIMONIALS SECTION - SUPER IMPRESSIVE CAROUSEL
   =============================================== */

/* Section Background - Clean White */
.client-testimonials-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.client-testimonials-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
    color: #00aee9; /* Fallback color */
    background: linear-gradient(135deg, 
        #00aee9 0%,      /* Brand cyan */
        #00aee9 50%,     /* Brand cyan to midpoint */
        #006b8a 75%,     /* Darker blue-cyan */
        #003d5c 100%     /* Deep navy end */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.client-testimonials-section .section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 400;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 80px;
}

/* Carousel Track */
.testimonials-carousel-track {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

/* Premium Dark Card - Carousel Style */
.testimonial-card-premium {
    position: absolute;
    width: 100%;
    max-width: 950px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100px) scale(0.85) rotateY(15deg);
    pointer-events: none;
    z-index: 1;
}

/* Active Card - Center Stage */
.testimonial-card-premium.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 10;
}

/* Card Inner Styling */
.testimonial-card-premium .card-inner {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f1729 100%);
    border-radius: 28px;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(0, 212, 255, 0.15),
        0 0 80px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Card Enhancement */
.testimonial-card-premium.active .card-inner {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.4),
        0 20px 50px rgba(0, 212, 255, 0.25),
        0 0 100px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Animated Gradient Overlay */
.testimonial-card-premium .card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, transparent 50%, rgba(0, 212, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-card-premium.active .card-inner::before {
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
}

/* Shimmer Animation */
@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Large Quote Icon */
.quote-icon-large {
    font-size: 6rem;
    line-height: 1;
    color: #00d4ff;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

/* Testimonial Content Text */
.testimonial-content {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #e8e8f0;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Elegant Divider */
.testimonial-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #00aae9 100%);
    margin: 2.5rem 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.4);
}

/* Author Section */
.testimonial-author-premium {
    position: relative;
    z-index: 1;
}

.author-name-premium {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.author-role {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.author-company-premium {
    font-size: 1.15rem;
    color: #00d4ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Floating Glow Effect (Background Orb) */
.testimonial-card-premium::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    top: -175px;
    right: -175px;
    pointer-events: none;
    animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
    z-index: 0;
}

/* Pulse Animation for Orb */
@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===============================================
   PREMIUM NAVIGATION BUTTONS
   =============================================== */

.testimonial-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.15), rgba(0, 170, 233, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-carousel-btn:hover {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.25), rgba(0, 170, 233, 0.25));
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-carousel-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.5));
}

.testimonial-carousel-prev {
    left: 0;
}

.testimonial-carousel-next {
    right: 0;
}

/* Rotating Border Effect on Hover */
.testimonial-carousel-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #00aae9, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
}

.testimonial-carousel-btn:hover::before {
    opacity: 0.6;
}

/* ===============================================
   ELEGANT INDICATOR DOTS
   =============================================== */

.testimonial-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(90deg, #00d4ff, #00aae9);
    border-color: #00d4ff;
    box-shadow: 
        0 4px 12px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3);
}

/* Pulsing Effect on Active Dot */
.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: inherit;
    opacity: 0.5;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   =============================================== */

@media (max-width: 768px) {
    .client-testimonials-section {
        padding: 5rem 0;
        overflow: hidden;
    }
    
    .client-testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .client-testimonials-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 5rem;
        padding-bottom: 1.5rem;
    }
    
    .testimonials-carousel-container {
        padding: 0 20px;
        margin-top: 2rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .testimonials-carousel-track {
        height: auto;
        min-height: 550px;
        overflow: visible;
    }
    
    .testimonial-card-premium {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .testimonial-card-premium.active {
        transform: none !important;
    }
    
    .testimonial-card-premium .card-inner {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .quote-icon-large {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-content {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .testimonial-divider {
        width: 60px;
        margin: 2rem 0;
    }
    
    .author-name-premium {
        font-size: 1.3rem;
    }
    
    .author-role {
        font-size: 1rem;
    }
    
    .author-company-premium {
        font-size: 1rem;
    }
    
    .testimonial-carousel-btn {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-carousel-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .testimonial-carousel-indicators {
        margin-top: 2.5rem;
        gap: 0.75rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 32px;
    }
}

/* Footer - Glassmorphism */
.footer {
    background: linear-gradient(135deg, #000000 0%, #001428 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 174, 239, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    border-radius: 50%;\n    filter: blur(80px);
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    background: transparent;
}

.footer-logo p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    /* Modern Hero Mobile */
    .hero-modern {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 300px;
        height: 300px;
    }
    
    .hero-badge-modern {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .subtitle-large {
        font-size: 1.3rem;
    }
    
    .subtitle-description {
        font-size: 1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-pills {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-pill {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-supertitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }

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

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

    .coverflow-wrapper {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }

    .coverflow-container {
        height: 380px;
        max-width: 100%;
        perspective: 1000px;
    }

    .coverflow-item {
        width: 85vw;
        max-width: 420px;
        height: 300px;
        border-radius: 16px;
    }

    /* Simplified mobile positioning - Still Impressive */
    .coverflow-item.center {
        transform: translateX(0) scale(1.02) rotateY(0deg);
        box-shadow: 
            0 30px 70px rgba(0, 170, 233, 0.5),
            0 15px 40px rgba(0, 0, 0, 0.7),
            0 0 0 3px rgba(0, 170, 233, 0.7),
            0 0 50px rgba(0, 170, 233, 0.5);
    }

    .coverflow-item.left {
        transform: translateX(-110%) scale(0.65) rotateY(25deg);
        opacity: 0.45;
        filter: blur(1.2px) brightness(0.7);
    }

    .coverflow-item.right {
        transform: translateX(110%) scale(0.65) rotateY(-25deg);
        opacity: 0.45;
        filter: blur(1.2px) brightness(0.7);
    }

    .coverflow-item.hidden-left,
    .coverflow-item.hidden-right {
        display: none;
    }

    .coverflow-caption {
        padding: 1.2rem;
    }

    .coverflow-caption h3 {
        font-size: 1.1rem;
    }

    .coverflow-caption p {
        font-size: 0.9rem;
    }
    
    .coverflow-btn {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
    }
    
    .coverflow-section .section-title {
        font-size: 2.8rem;
    }
    
    .coverflow-section .section-subtitle {
        font-size: 1.1rem;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section .section-title {
        font-size: 2.2rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }

    .testimonials-carousel-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }

    .testimonials-carousel {
        height: auto;
        min-height: 500px;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        position: relative;
    }

    .testimonial-card.active {
        position: relative;
    }

    .quote-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonial-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .author-title {
        font-size: 0.9rem;
    }

    .author-company {
        font-size: 0.9rem;
    }

    .testimonial-nav {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .testimonial-nav-prev {
        left: -10px;
    }

    .testimonial-nav-next {
        right: -10px;
    }

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

    .indicator-dot.active {
        width: 28px;
    }

    .coverflow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .coverflow-indicators {
        margin-top: 2rem;
        gap: 0.6rem;
    }

    .coverflow-dot {
        width: 10px;
        height: 10px;
    }

    .coverflow-dot.active {
        width: 28px;
    }

    .videos-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-icon {
        width: 80px;
        height: 80px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 1rem;
        right: 1rem;
    }

    .process-diagram-section .section-title {
        font-size: 2.5rem;
    }
    
    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        max-width: 100%;
    }

    .process-image-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 2rem;
    }
    
    .footer-logo {
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem;
    }

    .footer-links {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links h4 {
        text-align: center;
    }
    
    .footer-links a {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form success message */
.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #28a745;
    margin-bottom: 2rem;
    text-align: center;
    display: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.form-success strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.form-success.show {
    display: block;
    animation: slideDown 0.4s ease;
}

.form-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #dc3545;
    margin-bottom: 2rem;
    text-align: center;
    display: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.form-error strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.form-error.show {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}