:root {
    /* Enhanced Palette */
    --primary-color: #0f172a;
    --primary-light: #334155;
    --secondary-color: #64748b;
    
    /* Vibrant Gradients */
    --accent-color: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --accent-glow: 0 0 20px rgba(99, 102, 241, 0.5);
    
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --blur-strength: 16px;

    /* Header Height (logo 40px + padding 0.75rem*2 = ~64px) */
    --header-height: 64px;
    --header-height-mobile: 60px;

    /* Spacing & Transition */
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: rgb(255, 255, 255);
    color: var(--primary-color);
    overflow-x: hidden;
    padding-top: 0; /* REMOVED fixed padding to allow full-height backgrounds */
}
html { overflow-x: hidden; }

/* --- Typography --- */
h1.display-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(to right, #0f172a 20%, #6366f1 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================= */
/* === PRINCIPAL DESIGNER: PREMIUM NAVBAR === */
/* ============================================= */

.navbar-premium {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #0d0d0d;
    backdrop-filter: blur(20px);
    border-bottom: none;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar-premium.scrolled {
    padding: 0.5rem 0;
    background: #0a0a0a;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

/* Ensure navbar items are visible on desktop */
/* Ensure navbar items are visible on desktop */
@media (min-width: 992px) {
    .navbar-premium .navbar-collapse {
        display: flex !important;
        flex-basis: auto; /* Allow it to shrink/grow properly */
        flex-grow: 1; /* Take up remaining space after logo */
    }
    
    /* Absolute Center the Navigation */
    .navbar-premium .navbar-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); /* True Center relative to Header */
        display: flex !important;
        flex-direction: row;
        gap: 1.25rem; /* Reduced gap as requested (was 2.5rem) */
        margin: 0 !important;
    }
    
    /* Ensure styles don't conflict with mobile animation */
    .navbar-nav .nav-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* Push Actions to the End */
    .mobile-menu-content {
        display: flex;
        width: 100%;
        justify-content: flex-end; /* Pushes Actions to Right */
        position: static; /* Let Nav position relative to main Header */
    }
    
    /* Ensure Actions are visible and aligned */
    .mobile-actions {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        margin-top: 0 !important;
    }
}

/* Animated Logo */
.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.brand-icon {
    color: white;
    font-size: 1.1rem;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.navbar-brand:hover .brand-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

/* Brand Text - Force white */
.navbar-premium .navbar-brand .brand-text,
.brand-text {
    font-weight: 700;
    font-size: 1.5rem; /* Increased size */
    color: #ffffff !important;
    letter-spacing: -0.5px;
    -webkit-text-fill-color: #ffffff !important;
}

.brand-logo-glow {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo-glow {
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8));
    transform: scale(1.05);
}

.brand-accent {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

/* OVERRIDE Bootstrap .nav-link completely */
.navbar-premium .navbar-nav .nav-link,
.navbar-premium .nav-link,
.navbar-premium .nav-link-modern {
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 500;
    font-size: 1.05rem; /* Slightly larger */
    padding: 0.5rem 0.8rem !important;
    line-height: normal; /* Fix vertical cropping */
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    -webkit-text-fill-color: #ffffff !important;
}

.navbar-premium .navbar-nav .nav-link:hover,
.navbar-premium .nav-link:hover,
.navbar-premium .nav-link-modern:hover {
    color: #ffffff !important;
    opacity: 1;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link-modern:hover {
    color: white !important;
}

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

.nav-link-modern.active {
    color: white !important;
}

.nav-link-modern.active::after {
    width: 80%;
    background: linear-gradient(90deg, #a78bfa, #f472b6);
}

/* Track Link - Modern */
.nav-link-track-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-track-modern i {
    font-size: 0.9rem;
    animation: locationPulse 2s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes locationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); color: #34d399; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.3); }
    60% { transform: scale(1); }
}
.animate-heartbeat {
    animation: heartbeat 2s infinite ease-in-out;
}
.hover-white:hover { color: #fff !important; text-shadow: 0 0 8px rgba(255,255,255,0.5); }

/* Blur Utilities */
.blur-sm { filter: blur(4px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(24px); }
.blur-xl { filter: blur(40px); }
.blur-2xl { filter: blur(64px); }
.blur-3xl { filter: blur(96px); }


.nav-link-track-modern:hover {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

/* Divider */
.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    margin: 0 0.5rem;
}

/* Track Order Link */
.nav-link-track {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-icon-pulse {
    font-size: 0.9rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); color: #34d399; }
}

.nav-link-track:hover {
    color: #34d399 !important;
    background: rgba(52, 211, 153, 0.1);
}

/* Animated CTA Button */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    overflow: hidden;
    overflow: hidden;
    position: relative;
}

/* === ULTRA LUXE MOBILE MENU & SVG ANIMATION === */
.hamburger-animated {
    width: 60px; height: 60px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s ease;
}
.hamburger-svg {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-linecap: round;
    transition: all 0.5s ease;
}
.line {
    stroke-dasharray: 60 207;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.line2 { stroke-dasharray: 60 60; transition-delay: 0.1s; }
.line3 { stroke-dasharray: 60 207; transition-delay: 0.2s; }

/* Active Hamburger State (Turns to X) */
.navbar-toggler[aria-expanded="true"] .hamburger-animated { transform: rotate(90deg); }
.navbar-toggler[aria-expanded="true"] .hamburger-svg .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.navbar-toggler[aria-expanded="true"] .hamburger-svg .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}
.navbar-toggler[aria-expanded="true"] .hamburger-svg .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

@media (max-width: 991px) {
    /* Full Screen Dark Glass Overlay with Gradient Mesh */
    .navbar-collapse {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; 
        height: 100vh;
        z-index: 998;
        background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                    rgba(5, 10, 20, 0.98); /* Ultra Deep Navy */
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        padding: 6rem 1.5rem 2rem;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease;
    }
    .navbar-collapse.show {
        display: flex !important;
        animation: fadeInGlass 0.6s ease forwards;
    }
    
    /* Ensure Toggler is above the full screen menu */
    .navbar-toggler.z-50 { z-index: 1050; position: relative; }

    /* Animated List Items */
    .navbar-nav { width: 100%; text-align: center; }
    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        animation: slideUpFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        margin-bottom: 2.5vh;
    }
    .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }

    /* Ultra Luxe Link Typography - Casual / Beautiful */
    .nav-link-modern {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2rem, 4vh, 2.5rem) !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,0.5); /* Removed !important to allow active state override */
        padding: 0 !important;
        line-height: 1.4;
        letter-spacing: -0.5px;
        transition: all 0.4s ease;
        position: relative;
        text-transform: capitalize;
    }

    /* Active State - Casual Gradient Highlight */
    .nav-link-modern.active {
        background: linear-gradient(
            to right, 
            #fff, 
            #818cf8, 
            #c084fc, 
            #fff
        );
        background-size: 200% auto;
        color: #fff;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent !important; /* Force transparent for gradient */
        animation: shine 4s linear infinite;
        transform: scale(1.05);
        font-weight: 700 !important;
        opacity: 1 !important;
    }
    
    @keyframes shine {
        to {
            background-position: 200% center;
        }
    }
    
    /* Custom Active: About Page (Green Gradient) */
    .nav-link-modern.active[data-page="about"] {
        background: linear-gradient(
            to right, 
            #4ade80, 
            #22c55e, 
            #14532d, 
            #4ade80
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent !important;
        animation: shine 6s linear infinite; /* Extra slow */
    }
    
    /* Hover State */
    .nav-link-modern:hover {
        color: #ffffff !important;
        transform: translateX(5px); /* Less aggressive movement */
    }
    
    .nav-link-modern.active::before { display: none; }
    .nav-link-modern::after { display: none; } 

    /* Bottom Actions - Spacing */
    .mobile-actions {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFade 0.8s ease forwards 0.4s;
        gap: 1.25rem !important;
        margin-top: 2.5rem !important;
        width: 100%;
        max-width: 400px;
    }

    /* Track Button - Casual styling */
    .nav-link-track-modern {
        border: 1px solid rgba(255,255,255,0.15);
        padding: 0.9rem 2rem !important;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: #cbd5e1 !important;
        background: rgba(255,255,255,0.03);
        backdrop-filter: blur(10px);
        letter-spacing: 0.5px;
        text-transform: capitalize;
    }
    
    .nav-link-track-modern.active {
        background: rgba(99, 102, 241, 0.2);
        border-color: #6366f1;
        color: white !important;
    }

    /* Contact Button - Casual styling */
    .btn-nav-cta {
        width: 100%;
        border-radius: 50px;
        justify-content: center;
        padding: 1rem !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
        box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
        border: none;
        color: white !important;
    }
    
    .btn-nav-cta.active {
         box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
    }
}

@keyframes gradientShift { 
    0% { background-position: 0% 50% } 
    50% { background-position: 100% 50% } 
    100% { background-position: 0% 50% } 
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInGlass {
    0% { opacity: 0; backdrop-filter: blur(0px); }
    100% { opacity: 1; backdrop-filter: blur(25px); }
}

.btn-nav-cta::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.5s ease;
}

.btn-nav-cta:hover::before {
    left: 100%;
}

.btn-nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white !important;
}

.btn-nav-cta .btn-icon {
    transition: transform 0.3s ease;
}

.btn-nav-cta:hover .btn-icon {
    transform: translateX(3px);
}

/* --- Hero Section & blobs --- */
.hero-section {
    position: relative; overflow: hidden; padding: 6rem 0;
}
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6; z-index: -1;
    animation: pulseBlob 10s infinite alternate;
}
.hero-blob-1 { top: -100px; right: -100px; width: 600px; height: 600px; background: #e0e7ff; }
.hero-blob-2 { bottom: -100px; left: -100px; width: 500px; height: 500px; background: #d1fae5; animation-delay: -5s; }

@keyframes pulseBlob { 0% { transform: scale(1); } 100% { transform: scale(1.1) translate(20px, -20px); } }

/* --- Advanced Cards (3D Lift) --- */
.card-lift {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}
.card-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

/* --- Feature Icon Boxes --- */
.icon-box-xl {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    transition: var(--transition-bounce);
    background: white;
    box-shadow: var(--glass-shadow);
}
.feature-card:hover .icon-box-xl {
    transform: rotateY(180deg);
    background: var(--accent-gradient);
    color: white !important;
}

/* --- Product Cards --- */
.product-card {
    border-radius: 20px; overflow: hidden; border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    background: white;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }

.product-image-wrap {
    height: 280px; background: #f1f5f9; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.product-image-wrap i {
    font-size: 6rem; color: #cbd5e1; transition: var(--transition-bounce);
}
.product-card:hover .product-image-wrap i {
    transform: scale(1.2) rotate(-5deg); color: #3b82f6;
}
.product-overlay {
    position: absolute; inset: 0; background: rgba(15, 23, 42, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}
.product-card:hover .product-overlay { opacity: 1; }

/* --- Scroll Animations (Handled by AOS) --- */
/* .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } */
/* .reveal.active { opacity: 1; transform: translateY(0); } */

/* --- Stats Counter --- */
.stat-card {
    background: white; padding: 2rem; border-radius: 20px; text-align: center;
    box-shadow: var(--glass-shadow); border: 1px solid rgba(255,255,255,0.5);
}

/* --- Modern Buttons --- */
.btn-premium {
    background: var(--primary-color); color: white;
    padding: 1rem 2rem; border-radius: 50px; font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.4);
    color: white;
}

/* --- Status Modal (Enhanced) --- */
.status-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.status-modal-backdrop.active { opacity: 1; pointer-events: all; }
.status-modal-content {
    background: white; padding: 3rem; border-radius: 30px; text-align: center;
    max-width: 400px; width: 90%; transform: scale(0.8); transition: var(--transition-bounce);
}
.status-modal-backdrop.active .status-modal-content { transform: scale(1); }

.checkmark-circle {
    width: 80px; height: 80px; border-radius: 50%; background: #dcfce7;
    color: #16a34a; font-size: 2.5rem; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
/* --- CDO Polish: Premium Palette & Utilities --- */

:root {
    /* Primary Deep Palette */
    --primary-color: #0c1220; /* Deepest Navy */
    --primary-light: #1e293b;
    --accent-color: #4f46e5;
    
    /* Vibrant Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --gradient-glow: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    --bg-soft-blue: #f1f5f9;
    --bg-dark-gradient: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);

    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* --- Section Graphics --- */
.bg-soft-blue { background-color: var(--bg-soft-blue); }
.bg-dark-gradient { background: var(--bg-dark-gradient); }

/* --- New Lottie & Hero Helpers --- */
.bg-gradient-mesh {
    background: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
    filter: blur(60px);
}

/* --- Glassmorphism --- */
.bg-glass-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.hover-glass-light:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* --- Utilities --- */
.icon-box-sm { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.btn-glow { box-shadow: 0 0 20px rgba(79, 70, 229, 0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(79, 70, 229, 0.6); transform: translateY(-2px); }
.shadow-hover-lg:hover { box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1); }

/* --- Marquee (Restored) --- */
.marquee-scroll {
    display: flex; gap: 4rem; width: max-content;
    animation: scrollLoop 40s linear infinite;
}
.marquee-scroll:hover { animation-play-state: paused; }
@keyframes scrollLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Typewriter Effect --- */
.type-effect {
    border-right: 3px solid #4f46e5;
    animation: blink 0.75s step-end infinite;
}
@keyframes blink { 0%, 100% { border-color: transparent; } 50% { border-color: #4f46e5; } }

/* --- Spacing Fixes --- */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.section-offset { padding-top: 8rem; }
.section-offset-sm { padding-top: 6rem; }

/* ============================================= */
/* === PRINCIPAL DESIGNER: PREMIUM HERO V2 === */
/* ============================================= */

/* Animated Gradient Background */
.hero-premium {
    /* Dynamic viewport height - uses JS-set --vh */
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100vh;
    min-height: 100dvh; /* Modern browsers */
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #312e81, #0c4a6e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Content Spacing: Push down so text clears the fixed header (80px) */
    padding-top: 120px; 
    /* margin-top: -80px; REMOVED (Body padding already 0) */
    box-sizing: border-box;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -150px; right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    bottom: -100px; left: -100px;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
    opacity: 0.2;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid Pattern Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    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: 60px 60px;
    pointer-events: none;
}

/* Hero Typography */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #c084fc, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: textGradient 5s ease infinite;
}

@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Buttons */
.hero-btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px -10px rgba(99, 102, 241, 0.6);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: #34d399;
    font-size: 1.1rem;
}

/* Hero Visual Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
    min-height: 450px;
}

.hero-lottie-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    z-index: 1;
}

.hero-lottie-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
    filter: blur(50px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
}

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

/* Floating Cards Around Lottie */
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.875rem 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.85rem;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.3);
    z-index: 5;
    white-space: nowrap;
}

.floating-card-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Position cards outside the Lottie area */
.floating-card.card-1 { top: -20px; right: -30px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 40%; left: -60px; animation-delay: -2s; }
.floating-card.card-3 { bottom: -10px; right: -20px; animation-delay: -4s; }

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

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

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-premium { 
        display: block; 
        padding-top: 100px; 
        min-height: auto; 
        padding-bottom: 2rem; 
        text-align: center;
        height: auto !important;
    }
    
    /* Reorder Columns: Visual First, Text Second */
    .hero-premium .row {
        display: flex;
        flex-direction: column;
    }
    .hero-premium .col-lg-6:nth-child(2) {
        order: -1;
        margin-bottom: 1.5rem;
    }
    .hero-premium .col-lg-6:nth-child(1) {
        order: 1;
    }

    .hero-btn-group, .hero-trust-badges {
        justify-content: center;
    }
    .hero-description {
        margin-left: auto; margin-right: auto;
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }
    .hero-badge { margin-bottom: 0.75rem; }
    
    /* Restore Floating Cards with Mobile Scaling */
    .floating-card { 
        display: flex; /* Show them! */
        padding: 0.5rem 0.75rem; 
        font-size: 0.7rem; 
        border-radius: 12px;
        backdrop-filter: blur(8px);
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        white-space: nowrap;
        animation: floatCardMobile 4s ease-in-out infinite;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .floating-card-icon {
        width: 24px; height: 24px; font-size: 0.8rem;
    }

    /* Tight Positioning Refined to Avoid Overlap */
    .floating-card.card-1 { top: 10px; right: -5px; animation-delay: 0s; }
    .floating-card.card-2 { bottom: 45%; left: -15px; animation-delay: -1.5s; } /* Moved up to clear laptop */
    .floating-card.card-3 { bottom: -10px; right: 5px; animation-delay: -3s; }

    .hero-title { 
        font-size: 1.75rem; 
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .hero-visual { 
        margin-top: 0; 
        min-height: auto;
        position: relative; 
        width: 100%;
        max-width: 320px; /* Widened slightly to give cards room */
        margin-left: auto; margin-right: auto;
        padding: 1rem 0; /* Add vertical breathing room */
    }
    .hero-lottie-container {
        max-width: 200px;
        margin: 0 auto;
    }
    .hero-orb { opacity: 0.2; }
}

/* ============================================= */
/* === PREMIUM SECTION ENHANCEMENTS === */
/* ============================================= */

/* --- Gradient Text Utilities --- */
.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* --- Premium Icon Animations --- */
.icon-glow {
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.3s ease;
}

.icon-glow:hover {
    filter: drop-shadow(0 0 15px currentColor);
    transform: scale(1.1);
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

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

.icon-float {
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* --- Premium Card Effects --- */
.card-premium {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

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

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

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- Premium Icon Backgrounds --- */
.icon-bg-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.icon-bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.icon-bg-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.icon-bg-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.icon-bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

/* --- Marquee Premium Styling --- */
.marquee-premium {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border: none !important;
    padding: 3rem 0;
}

/* Enhanced Vibrant Icons (No Pill, All-Time Color) */
.icon-vibrant {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
    opacity: 0.8; /* Slight dim to allow hover pop */
}

.icon-vibrant:hover {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 20px currentColor);
    opacity: 1;
}

/* Brand Colors - Always Visible */
.marquee-premium .fa-amazon { color: #ff9900; }
.marquee-premium .fa-dhl { color: #ffcc00; }
.marquee-premium .fa-fedex { color: #a100ff; }
.marquee-premium .fa-shopify { color: #96bf48; }
.marquee-premium .fa-industry { color: #3b82f6; }
.marquee-premium .fa-warehouse { color: #10b981; }

/* --- Features Section Premium --- */
.feature-card-premium {
    background: white;
    border-radius: 28px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-premium:hover::after {
    opacity: 1;
}

.feature-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* --- Industries Section Premium --- */
.industry-card-premium {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(99,102,241,0.5), rgba(236,72,153,0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card-premium:hover::before {
    opacity: 1;
}

/* --- Industries Section Premium --- */
.industry-card-premium {
    background: rgba(255, 255, 255, 0.03); /* Ultra-subtle glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.industry-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Icon Container - White Circle */
.industry-card-premium .bg-white {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    margin-bottom: 2rem !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-card-premium:hover .bg-white {
    transform: scale(1.1);
}

/* Specific Industry Icon Colors */
.industry-card-premium .fa-truck { color: #3b82f6; } /* Logistics Blue */
.industry-card-premium .fa-shirt { color: #a855f7; } /* Garments Purple */
.industry-card-premium .fa-car { color: #ef4444; } /* Automotive Red */
.industry-card-premium .fa-bolt { color: #06b6d4; } /* Electronics Cyan */
.industry-card-premium .fa-house { color: #64748b; } /* Home Gray */

/* --- Product Cards Premium --- */
.product-card-premium {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .product-image-wrapper::before {
    opacity: 1;
}

.product-icon-large {
    font-size: 5rem;
    color: #cbd5e1;
    transition: all 0.4s ease;
}

.product-card-premium:hover .product-icon-large {
    transform: scale(1.15) rotate(5deg);
    color: #94a3b8;
}

.product-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Process Timeline Premium --- */
.process-section-premium {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Process Connector & Animation */
/* Progressive Fill Animation - Synced with circle glow timings */
@keyframes progressFill {
    0%, 5% { width: 0%; }
    10% { width: 0%; }      /* Circle 1 glows here */
    30% { width: 33%; }     /* Circle 2 glows here */
    50% { width: 66%; }     /* Circle 3 glows here */
    70% { width: 100%; }    /* Circle 4 glows here */
    85% { width: 100%; }    /* All stay lit */
    95%, 100% { width: 0%; } /* Reset */
}

/* Individual Circle Glow Animations - Each lights and STAYS lit until reset */
@keyframes glowCircle1 {
    0%, 5% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
    10% { box-shadow: 0 0 25px 8px rgba(59, 130, 246, 0.6); border-color: #3b82f6; }
    85% { box-shadow: 0 0 25px 8px rgba(59, 130, 246, 0.6); border-color: #3b82f6; }
    95%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
}

@keyframes glowCircle2 {
    0%, 25% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
    30% { box-shadow: 0 0 25px 8px rgba(99, 102, 241, 0.6); border-color: #6366f1; }
    85% { box-shadow: 0 0 25px 8px rgba(99, 102, 241, 0.6); border-color: #6366f1; }
    95%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
}

@keyframes glowCircle3 {
    0%, 45% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
    50% { box-shadow: 0 0 25px 8px rgba(139, 92, 246, 0.6); border-color: #8b5cf6; }
    85% { box-shadow: 0 0 25px 8px rgba(139, 92, 246, 0.6); border-color: #8b5cf6; }
    95%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
}

@keyframes glowCircle4 {
    0%, 65% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
    70% { box-shadow: 0 0 25px 8px rgba(236, 72, 153, 0.6); border-color: #ec4899; }
    85% { box-shadow: 0 0 25px 8px rgba(236, 72, 153, 0.6); border-color: #ec4899; }
    95%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); border-color: #e2e8f0; }
}

.process-connector {
    position: absolute;
    top: 50px;
    left: 12.5%; /* Center of 1st Column */
    width: 75%;   /* Spans to Center of 4th Column */
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 0;
    overflow: hidden;
}

/* The Fill Element - Progressive Width Growth */
.process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Starts empty */
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: inherit;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.7));
    animation: progressFill 8s ease-out infinite;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-circle::before { /* Dormant border ring */
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); /* Standard property */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Active State Animation */
.process-circle.active-step {
    animation: glowCircle1 8s infinite;
}

/* Sequential Glow - Each circle uses its own keyframe, lights and STAYS lit */
.process-step:nth-child(2) .process-circle { animation: glowCircle1 8s ease-out infinite; }  /* Consult - Lights at 10% */
.process-step:nth-child(3) .process-circle { animation: glowCircle2 8s ease-out infinite; }  /* Quote - Lights at 30% */
.process-step:nth-child(4) .process-circle { animation: glowCircle3 8s ease-out infinite; }  /* Produce - Lights at 50% */
.process-step:nth-child(5) .process-circle { animation: glowCircle4 8s ease-out infinite; }  /* Deliver - Lights at 70% */

.process-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(59,130,246,0.2);
}

.process-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(99,102,241,0.25);
}

.process-circle i {
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- FAQ Premium --- */
.faq-premium .accordion-item {
    background: white;
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-premium .accordion-button {
    background: white;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border-radius: 16px !important;
}

.faq-premium .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    color: #3b82f6;
    box-shadow: none;
}

.faq-premium .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

/* --- Testimonial Cards Premium --- */
.testimonial-card-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.star-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* --- CTA Section Premium --- */
.cta-premium {
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #312e81, #0c4a6e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99,102,241,0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236,72,153,0.2) 0%, transparent 40%);
    pointer-events: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(99,102,241,0.5);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-4px);
}

/* --- Section Headers --- */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title-premium {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* --- About Section Premium --- */
.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Animated Background Shapes --- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(59,130,246,0.3));
    top: -100px;
    right: -100px;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(139,92,246,0.2));
    bottom: -50px;
    left: -50px;
}

/* --- Responsive Premium Adjustments --- */
@media (max-width: 768px) {
    .section-title-premium { font-size: 2rem; }
    .feature-card-premium { padding: 2rem 1.5rem; }
    .testimonial-card-premium { padding: 2rem; }
    
    /* Mobile Process Connector (Horizontal line with fill) */
    .process-connector {
        display: block; /* Show on mobile */
        top: 30px; /* Adjusted for smaller circles */
        left: 25%; /* Center between 2 items */
        width: 50%; /* Span between circles */
    }
    
    .about-stats { flex-direction: column; gap: 1.5rem; }

    /* Mobile Sync - Same individual keyframes as desktop for stay-lit effect */
    .process-step:nth-child(2) .process-circle { animation: glowCircle1 8s ease-out infinite; }
    .process-step:nth-child(3) .process-circle { animation: glowCircle2 8s ease-out infinite; }
    .process-step:nth-child(4) .process-circle { animation: glowCircle3 8s ease-out infinite; }
    .process-step:nth-child(5) .process-circle { animation: glowCircle4 8s ease-out infinite; }
}

/* Added by Antigravity - Gradient Text Utilities */
.gradient-text-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-purple { background: linear-gradient(135deg, #8b5cf6, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* --- CTA Premium Section Redesign --- */
/* (Added by Agent) - Trusted By Marquee */
.marquee-premium {
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #312e81, #1e1b4b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.marquee-scroll {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-left: 0; /* Remove start padding */
    padding-right: 4rem; /* Add end padding to balance the loop math */
    animation: scrollLoop 30s linear infinite; /* sped up slightly for smoothness */
    width: max-content;
}

.marquee-scroll:hover {
    animation-play-state: paused;
}

/* Icons - Full Color & Visible */
.marquee-premium i {
    font-size: 2.5rem !important;
    margin: 0 !important;
    transition: all 0.3s ease;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.marquee-premium i:hover {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
}

/* Brand Colors - Standardized Palette */
.marquee-premium .fa-amazon { color: #FF9900 !important; }
.marquee-premium .fa-dhl { color: #fc0 !important; }
.marquee-premium .fa-fedex { color: #ffffff !important; } 

.marquee-premium .fa-shopify { color: #96bf48 !important; }
.marquee-premium .fa-industry { color: #38bdf8 !important; } /* Cyan */
.marquee-premium .fa-warehouse { color: #a78bfa !important; } /* Lavender */

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

@media (max-width: 768px) {
    .marquee-premium { padding: 1.5rem 0 !important; }
    .marquee-scroll { 
        gap: 2.5rem; 
        padding-right: 2.5rem; /* Match mobile gap */
        animation-duration: 20s; 
    }
    .marquee-premium i { font-size: 1.75rem !important; }
    .marquee-premium p { font-size: 0.7rem !important; letter-spacing: 1px !important; opacity: 0.9; }
}

/* --- Feature Cards Premium (Why Choose Us) --- */
.feature-card-premium {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px; /* Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(3deg);
}

/* Mobile Polish */
@media (max-width: 768px) {
    .feature-card-premium { padding: 2rem 1.5rem; }
    .feature-icon-wrapper { width: 70px; height: 70px; }
}

/* --- About Section Premium --- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: clamp(1.5rem, 2vw, 3rem); /* Dynamic Spacing */
    margin-top: 2rem;
}

.stat-item {
    border-left: 4px solid #3b82f6; /* Accent Border */
    padding-left: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
}

.stat-item h3 {
    font-size: clamp(2rem, 3vw, 2.5rem); /* Count Up Text */
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

/* Big Number (50L+) Dynamic Scaling */
.display-4.gradient-text-blue {
    font-size: clamp(3.5rem, 5vw, 5rem) !important;
}

/* Production Card Mobile Optimization */
@media (max-width: 768px) {
    .section-title-premium { font-size: 2rem; } /* Explicit fallback */
    .about-stats { gap: 1.5rem; }
    .stat-item h3 { font-size: 2rem; }
}

.cta-premium-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    padding: 3rem 0; /* Reduced from 6rem */
}

.cta-premium-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    border-radius: 32px;
    box-shadow: 0 24px 64px -12px rgba(30, 58, 138, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: blobFloat 10s infinite alternate;
}

.cta-blob-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.4);
}

.cta-blob-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.4);
    animation-delay: -5s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

/* Premium Buttons */
.btn-cta-primary-glow {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    color: white;
}

.btn-cta-secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-cta-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

/* Lottie Wrapper */
.cta-lottie-wrapper {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transition: transform 0.5s ease;
}

.cta-lottie-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Standard Mask Property for Compatibility */
.process-circle::before {
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* --- About Page Specific Utilities --- */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-lift-wrapper .col-md-3 {
    transition: transform 0.3s ease;
}

.hover-lift-wrapper .col-md-3:hover {
    z-index: 20;
}
/* --- Timeline Premium --- */
.timeline-premium .timeline-line {
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    opacity: 0.3;
}

.timeline-premium .timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-premium .display-6 {
    font-size: 2.5rem;
    line-height: 1;
    min-width: 100px;
}

/* Team Avatar Premium */
.glass-card img {
    transition: transform 0.5s ease;
}

.glass-card:hover img {
    transform: scale(1.1);
}

.text-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- Contact Page Premium --- */
.form-control-premium {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.accordion-premium .accordion-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-premium .accordion-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.accordion-premium .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none !important;
    font-weight: 700;
    color: #1e293b;
    padding: 1.5rem;
}

.accordion-premium .accordion-button:not(.collapsed) {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

/* Map Dark Mode Filter */
.map-dark-mode {
    filter: grayscale(100%) invert(92%) contrast(83%);
    border-radius: 24px;
}

/* --- Product Page Premium --- */
.glass-table {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-table table {
    margin-bottom: 0;
    color: #334155;
}

.glass-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    vertical-align: middle;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

.glass-table tr:hover {
    background: rgba(255, 255, 255, 0.4);
}

.product-showcase-3d {
    perspective: 1000px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-tilt {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1), 
                -20px -20px 60px rgba(255,255,255,0.5);
    border-radius: 20px;
    max-width: 100%;
}

.product-img-tilt:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Breadcrumb Premium */
.breadcrumb-premium .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-premium .breadcrumb-item.active {
    color: white;
    font-weight: 700;
}

.breadcrumb-premium .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Horizontal Product Scroll --- */
.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0.5rem 2rem 0.5rem; /* Padding added to prevent hover clip */
    margin: -1rem -0.5rem 0 -0.5rem; /* Negative margin to maintain compact alignment */
    -webkit-overflow-scrolling: touch; /* Smooth iOS scroll */
    scrollbar-width: none; /* Firefox */
}


.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-item-scroll {
    flex: 0 0 auto;
    width: 220px; /* Nicely compact for mobile */
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .product-item-scroll {
        width: 260px; /* Reduced from 300px for desktop */
        scroll-snap-align: start;
    }
}

/* Mobile Process Compact Override */
@media (max-width: 768px) {
    .process-circle {
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        margin-bottom: 0.5rem !important;
    }
    .process-circle i {
        font-size: 1.5rem !important;
        line-height: 60px !important;
    }
    .process-step h5 {
        font-size: 0.9rem !important;
        margin-top: 0.5rem !important;
    }
    .process-step p {
        font-size: 0.75rem !important;
    }
}

/* Ensure card height consistency */
.product-card-premium {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   MOBILE FOOTER PREMIUM REDESIGN
   ============================================ */

/* Footer Base */
.footer-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
    color: white;
}

/* Logo Circle */
.footer-logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Colorful Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social-icons .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons .social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}
.footer-social-icons .social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
}
.footer-social-icons .social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #3b5998);
}
.footer-social-icons .social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Links Card - Glassmorphism */
.footer-links-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.footer-links-title {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list li:last-child {
    margin-bottom: 0;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: block;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(4px);
}

/* Newsletter Card */
.footer-newsletter-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-card .form-control {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer-newsletter-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-card .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.footer-newsletter-card .btn-primary {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Support Line */
.footer-support-line a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-support-line a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
}

/* Copyright Bar */
.footer-copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Back to Top Button - Hidden by default, shown via JS when near footer */
.back-to-top {
    position: fixed;
    bottom: 85px; /* Above the mobile CTA bar */
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
    color: white;
}


