    /* SKANDA VIM TECHNOLOGIES - Light Theme CSS */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        /* Light Theme Colors */
        --primary: #2563eb;
        --secondary: #7c3aed;
        --accent: #dc2626;
        --success: #059669;
        --dark-bg: #f8fafc;
        --dark-card: #ffffff;
        --dark-elevated: #f1f5f9;
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --text-muted: #64748b;

        /* Gradients */
        --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
        --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
        --gradient-card: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    }

    /* Smooth transitions */
    body,
    nav,
    .glass-card,
    .product-card,
    .industry-card,
    .contact-card {
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--dark-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        line-height: 1.4;
    }

    /* Scroll Snap Container - Enables section snapping when scrolling */
    html {
        scroll-snap-type: y proximity;
        scroll-behavior: smooth;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 10px;
    }

    /* Page Section - Add top margin for pages without hero */
    .page-section {
        padding-top: 120px;
    }

    /* Navigation - Premium Light Glassmorphism */
    nav {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(14, 165, 233, 0.15);
        transition: all 0.4s ease;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    }

    /* Animated gradient line at bottom of nav */
    nav::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #10b981, #0ea5e9);
        background-size: 300% 100%;
        animation: navGradient 4s linear infinite;
    }

    @keyframes navGradient {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 300% 50%;
        }
    }

    nav.scrolled {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .logo-img {
        height: 55px;
        border-radius: 10px;
        transition: all 0.4s ease;
        filter: drop-shadow(0 5px 15px rgba(14, 165, 233, 0.25));
    }

    .logo-img:hover {
        transform: scale(1.08);
        filter: drop-shadow(0 8px 25px rgba(14, 165, 233, 0.35));
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .company-name {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #8b5cf6 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1px;
        line-height: 1.2;
        animation: logoGradient 4s ease infinite;
    }

    @keyframes logoGradient {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    .company-tagline {
        font-size: 0.7rem;
        color: #64748b;
        letter-spacing: 2px;
        font-weight: 500;
        padding-top: 0.25rem;
        border-top: 1px solid rgba(14, 165, 233, 0.3);
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        color: #475569;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        padding: 0.5rem 0;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .nav-links a:hover {
        color: #0ea5e9;
    }

    .nav-links a:hover::before {
        width: 100%;
    }

    .nav-links a.active {
        color: #0ea5e9;
        position: relative;
    }

    .nav-links a.active::before {
        width: 100%;
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
    }

    .nav-cta {
        padding: 0.75rem 1.8rem !important;
        background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
        border-radius: 50px;
        color: white !important;
        font-weight: 600;
        box-shadow: 0 5px 25px rgba(14, 165, 233, 0.4);
        position: relative;
        overflow: hidden;
    }

    .nav-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .nav-cta:hover::before {
        left: 100%;
    }

    .nav-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(14, 165, 233, 0.6);
    }

    /* Dropdown Menu - Light Theme */
    .dropdown {
        position: relative;
    }

    .dropdown-icon {
        font-size: 0.7rem;
        margin-left: 0.3rem;
        transition: transform 0.3s;
        color: #64748b;
    }

    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
        color: #0ea5e9;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        min-width: 260px;
        border-radius: 16px;
        padding: 0.8rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(14, 165, 233, 0.15);
        margin-top: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        padding: 0.9rem 1.2rem;
        display: block;
        border-radius: 10px;
        margin: 0.3rem 0;
        transition: all 0.3s;
        color: #475569 !important;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 247, 0.08) 100%);
        transform: translateX(8px);
        color: #0ea5e9 !important;
    }

    .dropdown-menu a i {
        margin-right: 0.8rem;
        width: 20px;
        color: #0ea5e9;
    }

    /* Partner Logo Icons in Dropdown */
    .partner-logo-icon {
        width: 24px;
        height: 24px;
        margin-right: 0.8rem;
        object-fit: contain;
        border-radius: 4px;
    }

    .partners-dropdown a {
        display: flex !important;
        align-items: center;
    }

    /* Mega Dropdown Menu */
    .dropdown-mega {
        display: flex;
        gap: 1.5rem;
        min-width: 720px;
        padding: 1.5rem;
        right: 0;
        left: auto;
    }

    /* 5-Column Mega Dropdown for Products */
    .dropdown-mega-5col {
        min-width: 1100px;
        gap: 1rem;
        padding: 1.5rem 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
    }

    .dropdown:hover .dropdown-mega-5col {
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-mega-5col .dropdown-column {
        min-width: 180px;
        flex: 1;
    }

    .dropdown-mega-5col .dropdown-column h4 {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .dropdown-mega-5col .dropdown-column a {
        font-size: 0.82rem;
        padding: 0.5rem 0.75rem !important;
    }

    @media (max-width: 1200px) {
        .dropdown-mega-5col {
            min-width: 900px;
            gap: 0.75rem;
        }

        .dropdown-mega-5col .dropdown-column {
            min-width: 150px;
        }
    }

    @media (max-width: 1024px) {
        .dropdown-mega-5col {
            min-width: 750px;
            left: auto;
            right: 0;
            transform: translateY(10px);
        }

        .dropdown:hover .dropdown-mega-5col {
            transform: translateY(0);
        }
    }

    .dropdown-column {
        flex: 1;
        min-width: 180px;
    }

    .dropdown-column h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0ea5e9;
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(14, 165, 233, 0.2);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-column h4 i {
        font-size: 0.9rem;
        color: #8b5cf6;
    }

    .dropdown-column a {
        padding: 0.7rem 1rem !important;
        font-size: 0.9rem;
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        margin: 0.2rem 0 !important;
        color: #475569 !important;
    }

    .dropdown-column a i {
        width: 18px;
        font-size: 0.85rem;
        color: #0ea5e9;
    }

    .dropdown-column a:hover {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 247, 0.05));
        color: #0ea5e9 !important;
    }

    @media (max-width: 1200px) {
        .dropdown-mega {
            flex-direction: column;
            min-width: 280px;
            gap: 1rem;
        }

        .dropdown-column {
            min-width: 100%;
        }
    }

    /* Mobile Menu Button */
    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
    }

    .mobile-menu span {
        width: 28px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Responsive Navigation */
    @media (max-width: 1024px) {
        .nav-links {
            gap: 1.5rem;
        }

        .nav-links a {
            font-size: 0.85rem;
        }

        .nav-cta {
            padding: 0.5rem 1.2rem !important;
        }
    }

    @media (max-width: 900px) {
        .mobile-menu {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.99);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: flex-start;
            padding: 100px 2rem 2rem;
            gap: 0;
            transition: right 0.3s ease;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .nav-links>li>a {
            display: block;
            padding: 1rem 0;
            font-size: 1rem;
        }

        .nav-links a::before {
            display: none;
        }

        /* Mobile Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown>a {
            display: flex !important;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-icon {
            transition: transform 0.3s ease;
        }

        .dropdown.open .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            background: rgba(0, 0, 0, 0.02);
            margin: 0;
            padding: 0 0 0.5rem 1rem;
            min-width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .dropdown.open .dropdown-menu {
            max-height: 500px;
            padding: 0.5rem 0 0.5rem 1rem;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .dropdown-mega {
            flex-direction: column;
            min-width: 100%;
            padding: 0.5rem 0;
            gap: 0.5rem;
        }

        .dropdown-column {
            min-width: 100%;
        }

        .dropdown-column h4 {
            font-size: 0.75rem;
            padding: 0.5rem 0;
        }

        .dropdown-column a {
            padding: 0.5rem 0 !important;
            font-size: 0.9rem;
        }

        .nav-cta {
            margin-top: 1rem;
            text-align: center;
            display: block !important;
        }

        /* Mobile overlay */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Logo adjustments */
        .logo-img {
            height: 45px;
        }

        .company-name {
            font-size: 1rem;
        }

        .company-tagline {
            font-size: 0.6rem;
        }

        .nav-container {
            padding: 0 1rem;
        }
    }

    @media (max-width: 600px) {
        .logo-img {
            height: 40px;
        }

        .company-name {
            font-size: 0.9rem;
        }

        .company-tagline {
            display: none;
        }

        nav {
            padding: 0.5rem 0;
        }

        .mobile-menu span {
            width: 24px;
            height: 2px;
        }

        .nav-links {
            width: 100%;
            max-width: 100%;
            padding: 80px 1.5rem 2rem;
        }
    }

    @media (max-width: 400px) {
        .logo-text {
            display: none;
        }

        .logo-img {
            height: 45px;
        }
    }

    /* Hero Section */
    .hero {
        min-height: calc(100vh - 85px);
        height: calc(100vh - 85px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0;
        margin-top: 85px;
        overflow: hidden;
    }

    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .hero-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.30);
        z-index: 1;
        transition: background 0.3s ease;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveBackground 20s linear infinite;
        z-index: 2;
    }

    @keyframes moveBackground {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        100% {
            transform: translate(50px, 50px) rotate(360deg);
        }
    }

    .hero-gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.3;
        animation: float 20s infinite ease-in-out;
        z-index: 2;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        background: var(--gradient-primary);
        top: 10%;
        right: 10%;
        animation-delay: 0s;
    }

    .orb-2 {
        width: 400px;
        height: 400px;
        background: var(--gradient-accent);
        bottom: 20%;
        left: 10%;
        animation-delay: 7s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0);
        }

        33% {
            transform: translate(50px, -50px);
        }

        66% {
            transform: translate(-50px, 50px);
        }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        text-align: center;
        padding: 2rem;
    }

    .hero-badge {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        background: rgba(0, 217, 255, 0.2);
        border: 1px solid rgba(0, 217, 255, 0.4);
        border-radius: 50px;
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
        animation: fadeInUp 0.8s ease;
        backdrop-filter: blur(10px);
    }

    .hero h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        animation: fadeInUp 1s ease 0.2s;
        animation-fill-mode: both;
        letter-spacing: -2px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .hero h1 .gradient-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero .subtitle {
        font-size: 1.4rem;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto 3rem;
        line-height: 1.5;
        animation: fadeInUp 1s ease 0.4s;
        animation-fill-mode: both;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        animation: fadeInUp 1s ease 0.6s;
        animation-fill-mode: both;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(0, 217, 255, 0.5);
    }

    .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary);
        transform: translateY(-3px);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Section Styles */
    section {
        padding: 2.5rem 2rem;
        position: relative;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section-badge {
        display: inline-block;
        padding: 0.5rem 1.2rem;
        background: rgba(123, 47, 255, 0.1);
        border: 1px solid rgba(123, 47, 255, 0.3);
        border-radius: 50px;
        color: var(--secondary);
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .section-title .gradient-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.5;
    }

    /* Glass Card Component */
    .glass-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 24px;
        padding: 2rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .glass-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(59, 130, 246, 0.3);
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    }

    .glass-card:hover::before {
        transform: scaleX(1);
    }

    /* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .product-card {
        position: relative;
    }

    .product-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
        transition: all 0.4s ease;
        animation: iconFloat 3s ease-in-out infinite;
    }

    .product-card:nth-child(1) .product-icon {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    }

    .product-card:nth-child(2) .product-icon {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        box-shadow: 0 10px 40px rgba(240, 147, 251, 0.4);
    }

    .product-card:nth-child(3) .product-icon {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        box-shadow: 0 10px 40px rgba(79, 172, 254, 0.4);
    }

    .product-card:nth-child(4) .product-icon {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        box-shadow: 0 10px 40px rgba(67, 233, 123, 0.4);
    }

    .product-card:nth-child(5) .product-icon {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        box-shadow: 0 10px 40px rgba(250, 112, 154, 0.4);
    }

    .product-card:nth-child(6) .product-icon {
        background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        box-shadow: 0 10px 40px rgba(48, 207, 208, 0.4);
    }

    @keyframes iconFloat {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .product-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .product-card p {
        color: var(--text-secondary);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .product-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: gap 0.3s ease;
    }

    .product-link:hover {
        gap: 1rem;
    }

    /* Industries Grid */
    .industries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .industry-card {
        text-align: center;
    }

    .industry-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        display: block;
        transition: all 0.4s ease;
        animation: iconBounce 2s ease-in-out infinite;
    }

    .industry-card:hover .industry-icon {
        transform: scale(1.2) rotate(10deg);
    }

    @keyframes iconBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    .industry-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    /* Contact Section */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-card {
        text-align: center;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
        transition: all 0.4s ease;
        animation: iconPulse 2s ease-in-out infinite;
    }

    .contact-card:nth-child(1) .contact-icon {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }

    .contact-card:nth-child(2) .contact-icon {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        box-shadow: 0 15px 40px rgba(240, 147, 251, 0.5);
    }

    .contact-card:nth-child(3) .contact-icon {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        box-shadow: 0 15px 40px rgba(67, 233, 123, 0.5);
    }

    @keyframes iconPulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 217, 255, 0.6);
        }
    }

    .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .contact-card a {
        color: var(--text-secondary);
        text-decoration: none;
        display: block;
        margin: 0.5rem 0;
        transition: color 0.3s;
    }

    .contact-card a:hover {
        color: var(--primary);
    }

    .contact-card p {
        color: var(--text-secondary);
        line-height: 1.5;
    }

    /* Footer - Premium Dark Theme */
    footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        color: #fff;
        padding: 0 2rem 1.5rem;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(139, 92, 247, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .footer-wave {
        width: 100%;
        height: 60px;
        margin-bottom: 3rem;
        overflow: hidden;
    }

    .footer-wave svg {
        width: 100%;
        height: 100%;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        width: 60px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
        transition: transform 0.3s ease;
    }

    .footer-logo-img:hover {
        transform: scale(1.05);
    }

    .footer-logo-text {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .footer-company-name {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #8b5cf6 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease infinite;
    }

    @keyframes gradientShift {

        0%,
        100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    .footer-tagline {
        font-size: 0.7rem;
        color: #94a3b8;
        letter-spacing: 2px;
        font-weight: 500;
    }

    .footer-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .footer-social {
        display: flex;
        gap: 0.75rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
        border-color: transparent;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    }

    .footer-section h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding-bottom: 0.75rem;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
        border-radius: 3px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin: 0.6rem 0;
    }

    .footer-section a {
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section a i {
        font-size: 0.65rem;
        color: #0ea5e9;
        transition: transform 0.3s ease;
    }

    .footer-section a:hover {
        color: #fff;
        transform: translateX(5px);
    }

    .footer-section a:hover i {
        transform: translateX(3px);
        color: #8b5cf6;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin: 0.85rem 0;
    }

    .footer-contact li>i {
        color: #0ea5e9;
        font-size: 1rem;
        margin-top: 0.2rem;
        width: 20px;
        text-align: center;
    }

    .footer-contact a,
    .footer-contact span {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-contact a:hover {
        color: #fff;
        transform: none;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom p {
        color: #64748b;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom-links a {
        color: #64748b;
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
        color: #0ea5e9;
    }

    .footer-bottom-links span {
        color: #475569;
    }

    /* Back to Top */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 55px;
        height: 55px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
        z-index: 999;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    }

    /* Theme Toggle Button */
    .theme-toggle {
        position: relative;
        width: 60px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .theme-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--primary);
        transform: scale(1.05);
    }

    .theme-toggle::before {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        left: 3px;
        box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
    }

    [data-theme="light"] .theme-toggle {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.3);
    }

    [data-theme="light"] .theme-toggle::before {
        transform: translateX(28px);
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
    }

    .theme-toggle i {
        font-size: 0.9rem;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .sun-icon {
        color: #fbbf24;
    }

    .moon-icon {
        color: #cbd5e1;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .mobile-menu span {
        width: 28px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: all 0.3s;
    }

    /* Modal Popup Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-container {
        background: var(--dark-card);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        max-width: 550px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        transform: scale(0.8) translateY(50px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
    }

    .modal-overlay.active .modal-container {
        transform: scale(1) translateY(0);
    }

    .modal-header {
        background: var(--gradient-primary);
        padding: 2rem;
        border-radius: 24px 24px 0 0;
        text-align: center;
        position: relative;
    }

    .modal-header h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.8rem;
        color: white;
        margin-bottom: 0.5rem;
    }

    .modal-header p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .modal-body {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .form-group label .required {
        color: var(--accent);
    }

    .form-control {
        width: 100%;
        padding: 1rem 1.2rem;
        background: var(--dark-elevated);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: var(--text-primary);
        font-family: 'DM Sans', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

    select.form-control {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A9C9' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    textarea.form-control {
        min-height: 100px;
        resize: vertical;
    }

    .file-upload {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        border: 2px dashed rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        background: var(--dark-elevated);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .file-upload:hover {
        border-color: var(--primary);
        background: rgba(0, 217, 255, 0.05);
    }

    .file-upload input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        top: 0;
        left: 0;
    }

    .file-upload i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .file-upload span {
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .file-upload .file-name {
        color: var(--success);
        font-weight: 600;
        margin-top: 0.5rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1.2rem;
        background: var(--gradient-primary);
        border: none;
        border-radius: 12px;
        color: white;
        font-family: 'DM Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .success-message {
        text-align: center;
        padding: 3rem 2rem;
        display: none;
    }

    .success-message.show {
        display: block;
    }

    .success-message i {
        font-size: 5rem;
        color: var(--success);
        margin-bottom: 1.5rem;
        animation: successPop 0.5s ease;
    }

    @keyframes successPop {
        0% {
            transform: scale(0);
        }

        50% {
            transform: scale(1.2);
        }

        100% {
            transform: scale(1);
        }
    }

    .success-message h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .success-message p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    /* Light Mode Specific Adjustments */
    [data-theme="light"] nav {
        background: rgba(255, 255, 255, 0.95);
        border-bottom-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    [data-theme="light"] nav.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .glass-card {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    [data-theme="light"] .glass-card:hover {
        background: rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    }

    [data-theme="light"] .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] footer {
        background: rgba(248, 250, 252, 0.9);
        border-top-color: rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .modal-container {
        background: white;
        border-color: rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .form-control {
        background: #f8fafc;
        border-color: #e2e8f0;
        color: #0f172a;
    }

    [data-theme="light"] .file-upload {
        background: #f8fafc;
        border-color: #e2e8f0;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .hero {
            height: calc(100vh - 70px);
            min-height: calc(100vh - 70px);
            margin-top: 70px;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero .subtitle {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu {
            display: flex;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .products-grid,
        .industries-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .modal-container {
            margin: 1rem;
            max-height: 85vh;
        }
    }

    /* Mobile nav active state */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-card);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Additional Animations */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .glass-card {
        animation: slideInUp 0.6s ease-out;
    }

    /* ===========================================
   NEW HOMEPAGE SECTIONS STYLES
   =========================================== */

    /* Hero Carousel Styles */
    .hero {
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0;
        margin-top: 0;
        overflow: hidden;
        background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    }

    .hero-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 115, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .hero-gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.5;
        animation: floatOrb 20s infinite ease-in-out;
        z-index: 1;
    }

    .orb-1 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        top: -10%;
        right: -5%;
    }

    .orb-2 {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        bottom: 10%;
        left: -5%;
        animation-delay: 7s;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: 14s;
    }

    @keyframes floatOrb {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        25% {
            transform: translate(30px, -30px) scale(1.05);
        }

        50% {
            transform: translate(-20px, 20px) scale(0.95);
        }

        75% {
            transform: translate(20px, 10px) scale(1.02);
        }
    }

    .hero-carousel {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 10;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.8s ease;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        text-align: center;
        padding: 2rem;
        max-width: 1000px;
        z-index: 10;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
    }

    .hero-badge i {
        color: #4facfe;
    }

    .hero h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -2px;
    }

    .hero h1 .gradient-text {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #f5576c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero .subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }

    .btn-outline-light {
        padding: 1rem 2rem;
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

    /* Hero Carousel Navigation */
    .hero-carousel-nav {
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.75rem;
        z-index: 20;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        width: 36px;
        border-radius: 20px;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 20;
        backdrop-filter: blur(10px);
    }

    .carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-prev {
        left: 30px;
    }

    .carousel-next {
        right: 30px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        z-index: 20;
    }

    .mouse {
        width: 26px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        position: relative;
    }

    .wheel {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 4px;
        animation: scrollWheel 1.5s infinite;
    }

    @keyframes scrollWheel {
        0% {
            opacity: 1;
            top: 8px;
        }

        100% {
            opacity: 0;
            top: 20px;
        }
    }

    /* Animation Classes */
    .animate-fade-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.2s;
    }

    .delay-2 {
        animation-delay: 0.4s;
    }

    .delay-3 {
        animation-delay: 0.6s;
    }

    /* ===========================================
   STATS SECTION
   =========================================== */
    .stats-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        padding: 6rem 2rem;
        position: relative;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 24px;
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #fff;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    .stat-card:nth-child(2) .stat-icon {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
    }

    .stat-card:nth-child(3) .stat-icon {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
    }

    .stat-card:nth-child(4) .stat-icon {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        box-shadow: 0 10px 30px rgba(67, 233, 123, 0.3);
    }

    .stat-number {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .stat-description {
        font-size: 0.9rem;
        color: #64748b;
    }

    /* ===========================================
   ABOUT PREVIEW SECTION
   =========================================== */
    .about-preview-section {
        padding: 6rem 2rem;
        background: #fff;
    }

    .about-preview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1400px;
        margin: 0 auto;
        align-items: center;
    }

    .about-preview-content .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(102, 126, 234, 0.1);
        border-radius: 50px;
        color: #667eea;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .about-preview-content .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #475569;
        font-weight: 500;
    }

    .about-feature i {
        color: #43e97b;
        font-size: 1.1rem;
    }

    .core-values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);
    }

    .value-card.featured {
        grid-column: span 2;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .value-card.featured h4,
    .value-card.featured p {
        color: #fff;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 1rem;
    }

    .value-icon.integrity {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .value-icon.innovation {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .value-icon.intelligence {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .value-icon.inspiration {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    }

    .value-icon.initiative {
        background: rgba(255, 255, 255, 0.2);
    }

    .value-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.6;
    }

    /* ===========================================
   PRODUCTS SHOWCASE SECTION
   =========================================== */
    .products-showcase-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    }

    .products-showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto 3rem;
    }

    .showcase-card {
        background: #fff;
        border-radius: 24px;
        padding: 2rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .showcase-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg, var(--card-color, #667eea) 0%, rgba(118, 75, 162, 0.8) 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .showcase-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
    }

    .showcase-card:hover::before {
        transform: scaleX(1);
    }

    .showcase-card.featured {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
    }

    .showcase-card.featured .showcase-content h3,
    .showcase-card.featured .showcase-content p,
    .showcase-card.featured .showcase-features li {
        color: #fff;
    }

    .showcase-card.featured .showcase-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .showcase-card.featured::before {
        display: none;
    }

    .featured-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .showcase-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--card-color, #667eea) 0%, rgba(118, 75, 162, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
    }

    .showcase-card.featured .showcase-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .showcase-content h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 1rem;
    }

    .showcase-content p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .showcase-features {
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .showcase-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #475569;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .showcase-features li i {
        color: #43e97b;
    }

    .showcase-card.featured .showcase-features li i {
        color: rgba(255, 255, 255, 0.8);
    }

    .showcase-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #667eea;
        font-weight: 600;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .showcase-link:hover {
        gap: 1rem;
    }

    .products-cta {
        text-align: center;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    /* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
    .testimonials-section {
        padding: 6rem 2rem;
        background: #fff;
        position: relative;
        overflow: hidden;
    }

    .testimonials-wrapper {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    .testimonials-slider {
        position: relative;
        min-height: 350px;
    }

    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100px);
        transition: all 0.5s ease;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        border-radius: 24px;
        padding: 3rem;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .testimonial-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .testimonial-quote {
        position: relative;
        margin-bottom: 2rem;
    }

    .quote-icon {
        font-size: 3rem;
        color: rgba(102, 126, 234, 0.2);
        margin-bottom: 1rem;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
        color: #475569;
        line-height: 1.9;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0f172a;
    }

    .author-info p {
        font-size: 0.9rem;
        color: #64748b;
    }

    .testimonial-rating {
        margin-left: auto;
        display: flex;
        gap: 0.25rem;
    }

    .testimonial-rating i {
        color: #fbbf24;
        font-size: 1rem;
    }

    .testimonials-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid rgba(102, 126, 234, 0.2);
        background: #fff;
        color: #667eea;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .testimonial-nav-btn:hover {
        background: #667eea;
        color: #fff;
        border-color: #667eea;
    }

    .testimonial-dots {
        display: flex;
        gap: 0.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(102, 126, 234, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonial-dot.active {
        background: #667eea;
        width: 30px;
        border-radius: 10px;
    }

    /* ===========================================
   CLIENTS SECTION
   =========================================== */
    .clients-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    }

    .clients-carousel-wrapper {
        overflow: hidden;
        margin: 3rem 0;
    }

    .clients-carousel {
        width: 100%;
        overflow: hidden;
    }

    .clients-track {
        display: flex;
        gap: 3rem;
        animation: scrollClients 30s linear infinite;
        width: max-content;
    }

    @keyframes scrollClients {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .client-logo {
        flex-shrink: 0;
        width: 180px;
        height: 100px;
        background: #fff;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .client-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    }

    .logo-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: #64748b;
    }

    .logo-placeholder i {
        font-size: 2rem;
        color: #667eea;
    }

    .logo-placeholder span {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .clients-cta {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .clients-cta p {
        color: #475569;
        font-size: 1.1rem;
    }

    .btn-outline {
        padding: 0.9rem 1.8rem;
        border: 2px solid #667eea;
        color: #667eea;
        background: transparent;
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-outline:hover {
        background: #667eea;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    /* ===========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   =========================================== */
    @media (max-width: 1024px) {
        .about-preview-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .core-values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .value-card.featured {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero .subtitle {
            font-size: 1rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .carousel-arrow {
            display: none;
        }

        .hero-carousel-nav {
            bottom: 60px;
        }

        .scroll-indicator {
            display: none;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .core-values-grid {
            grid-template-columns: 1fr;
        }

        .value-card.featured {
            grid-column: span 1;
        }

        .products-showcase-grid {
            grid-template-columns: 1fr;
        }

        .testimonial-card {
            padding: 2rem;
        }

        .testimonial-quote p {
            font-size: 1rem;
        }

        .testimonial-rating {
            margin-left: 0;
            margin-top: 1rem;
            width: 100%;
        }

        .section-title {
            font-size: 2rem !important;
        }

        .section-subtitle {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }

        .hero-badge {
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
        }

        .clients-track {
            gap: 1.5rem;
        }

        .client-logo {
            width: 140px;
            height: 80px;
        }
    }

    /* ===========================================
   HERO SLIDE BACKGROUND IMAGES
   =========================================== */
    .hero-slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.75);
        transition: transform 8s ease;
    }

    .hero-slide.active .hero-slide-bg img {
        transform: scale(1.1);
    }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 12, 41, 0.5) 0%, rgba(48, 43, 99, 0.4) 50%, rgba(36, 36, 62, 0.5) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 10;
    }

    /* Particles Animation */
    .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 2;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        animation: particleFloat 20s infinite linear;
        bottom: -20px;
    }

    @keyframes particleFloat {
        0% {
            transform: translateY(0) rotate(0deg);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translateY(-100vh) rotate(720deg);
            opacity: 0;
        }
    }

    /* Pulse Animation for CTA */
    .pulse-animation {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
        }
    }

    /* ===========================================
   SHOWCASE CARD IMAGES
   =========================================== */
    .showcase-image {
        position: relative;
        height: 200px;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .showcase-card:hover .showcase-image img {
        transform: scale(1.1);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .showcase-card:hover .image-overlay {
        opacity: 1;
    }

    .overlay-btn {
        padding: 0.75rem 1.5rem;
        background: #fff;
        color: #667eea;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .showcase-card:hover .overlay-btn {
        transform: translateY(0);
    }

    /* Partner Logos in Cards */
    .partner-logos {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
        align-items: center;
    }

    .partner-logos img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .partner-logos img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .partner-text {
        font-size: 0.75rem;
        color: #64748b;
        background: #f1f5f9;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-weight: 600;
    }

    .showcase-card.featured .partner-text {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    /* ===========================================
   ADDITIONAL ANIMATIONS
   =========================================== */
    .typing-effect {
        overflow: hidden;
        border-right: 3px solid #667eea;
        white-space: nowrap;
        animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    @keyframes blink-caret {

        from,
        to {
            border-color: transparent;
        }

        50% {
            border-color: #667eea;
        }
    }

    /* Glow Effect */
    .glow-effect {
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            box-shadow: 0 0 5px #667eea, 0 0 10px #667eea, 0 0 15px #667eea;
        }

        to {
            box-shadow: 0 0 10px #667eea, 0 0 20px #667eea, 0 0 30px #667eea;
        }
    }

    /* Shimmer Effect */
    .shimmer {
        position: relative;
        overflow: hidden;
    }

    .shimmer::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    /* Bounce In Animation */
    .bounce-in {
        animation: bounceIn 0.8s ease;
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }

        50% {
            opacity: 1;
            transform: scale(1.05);
        }

        70% {
            transform: scale(0.9);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Slide In Animations */
    .slide-in-left {
        animation: slideInLeft 0.6s ease forwards;
    }

    .slide-in-right {
        animation: slideInRight 0.6s ease forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Rotate Animation */
    .rotate-animation {
        animation: rotate360 20s linear infinite;
    }

    @keyframes rotate360 {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Scale Pulse */
    .scale-pulse {
        animation: scalePulse 2s ease-in-out infinite;
    }

    @keyframes scalePulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    /* Text Gradient Animation */
    .animated-gradient-text {
        background: linear-gradient(90deg, #667eea, #f093fb, #4facfe, #667eea);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientMove 5s ease infinite;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Wave Animation */
    .wave-animation {
        animation: wave 2s ease-in-out infinite;
    }

    @keyframes wave {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(20deg);
        }

        75% {
            transform: rotate(-20deg);
        }
    }

    /* ===========================================
       COMPREHENSIVE RESPONSIVE DESIGN
       =========================================== */

    /* Tablet Responsive (768px - 1024px) */
    @media (max-width: 1024px) {
        section {
            padding: 3rem 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
        }

        .hero h1 {
            font-size: 3.5rem;
        }

        .hero .subtitle {
            font-size: 1.2rem;
        }

        .products-grid,
        .industries-grid,
        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .glass-card {
            padding: 1.5rem;
        }

        .product-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
    }

    /* Mobile Responsive (max-width: 768px) */
    @media (max-width: 768px) {
        section {
            padding: 2.5rem 1rem;
        }

        .page-section {
            padding-top: 100px;
        }

        .section-header {
            margin-bottom: 2rem;
        }

        .section-badge {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
        }

        .section-title {
            font-size: 2rem;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Hero Mobile */
        .hero {
            min-height: calc(100vh - 70px);
            height: auto;
            margin-top: 70px;
            padding: 2rem 1rem;
        }

        .hero-content {
            padding: 1rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .hero-badge {
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
        }

        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

        .hero-gradient-orb {
            display: none;
        }

        /* Grids Mobile */
        .products-grid,
        .industries-grid,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        /* Cards Mobile */
        .glass-card {
            padding: 1.25rem;
            border-radius: 16px;
        }

        .product-card h3 {
            font-size: 1.3rem;
        }

        .product-card p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .product-icon {
            width: 55px;
            height: 55px;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            border-radius: 14px;
        }

        .industry-icon {
            font-size: 3rem;
        }

        .industry-card h3 {
            font-size: 1.2rem;
        }

        /* Buttons Mobile */
        .btn {
            padding: 0.9rem 1.5rem;
            font-size: 0.95rem;
        }

        /* Contact Cards Mobile */
        .contact-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        /* Footer Mobile */
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section {
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        /* Stats Grid Mobile */
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.85rem;
        }

        /* Feature Lists Mobile */
        .feature-list {
            gap: 0.75rem;
        }

        .feature-item {
            font-size: 0.95rem;
            padding: 0.75rem;
        }

        /* Forms Mobile */
        .form-group {
            margin-bottom: 1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem 1rem;
            font-size: 1rem;
        }

        /* Tables Mobile */
        .table-responsive {
            overflow-x: auto;
        }

        table {
            min-width: 600px;
        }

        /* Testimonials Mobile */
        .testimonial-card {
            padding: 1.5rem;
        }

        .testimonial-text {
            font-size: 1rem;
        }

        /* Page Headers Mobile */
        .page-header {
            padding: 2rem 1rem;
        }

        .page-header h1 {
            font-size: 2rem;
        }

        .page-header p {
            font-size: 1rem;
        }

        /* Two Column Layouts Mobile */
        .two-column,
        .split-layout,
        .content-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* Timeline Mobile */
        .timeline-item {
            padding-left: 2rem;
        }

        .timeline-item::before {
            left: 0;
        }

        /* Pricing Cards Mobile */
        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .pricing-card {
            padding: 1.5rem;
        }

        .pricing-amount {
            font-size: 2.5rem;
        }

        /* Partners/Logo Grid Mobile */
        .partners-grid,
        .logo-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .partner-logo,
        .client-logo {
            padding: 1rem;
        }

        /* Tabs Mobile */
        .tabs-nav {
            flex-direction: column;
            gap: 0.5rem;
        }

        .tab-btn {
            width: 100%;
            text-align: center;
        }

        /* Accordion Mobile */
        .accordion-header {
            padding: 1rem;
            font-size: 1rem;
        }

        .accordion-content {
            padding: 1rem;
        }

        /* CTA Section Mobile */
        .cta-section {
            padding: 2rem 1rem;
        }

        .cta-title {
            font-size: 1.75rem;
        }

        .cta-subtitle {
            font-size: 1rem;
        }

        /* Breadcrumb Mobile */
        .breadcrumb {
            font-size: 0.85rem;
            flex-wrap: wrap;
        }
    }

    /* Small Mobile (max-width: 480px) */
    @media (max-width: 480px) {
        section {
            padding: 2rem 0.75rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero .subtitle {
            font-size: 0.95rem;
        }

        .glass-card {
            padding: 1rem;
            border-radius: 12px;
        }

        .product-card h3 {
            font-size: 1.15rem;
        }

        .btn {
            padding: 0.8rem 1.25rem;
            font-size: 0.9rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .partners-grid,
        .logo-grid {
            grid-template-columns: 1fr;
        }

        /* Hide decorative elements on small screens */
        .decorative-element,
        .float-animation,
        .parallax-element {
            display: none;
        }
    }

    /* Print Styles */
    @media print {

        nav,
        .mobile-menu,
        .nav-overlay,
        footer,
        .cta-section,
        .hero-video-container {
            display: none !important;
        }

        .hero {
            margin-top: 0;
            min-height: auto;
            padding: 2rem;
        }

        body {
            background: white;
            color: black;
        }

        .glass-card {
            box-shadow: none;
            border: 1px solid #ddd;
        }
    }

    /* ===========================================
    PREMIUM FOOTER DESIGN
    =========================================== */
    .premium-footer {
        background: #0f172a;
        color: #f8fafc;
        padding: 80px 0 0;
        position: relative;
        overflow: hidden;
    }

    .premium-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-title {
        color: #fff;
        font-family: \Space Grotesk\, sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-title::after {
        content: \\;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }

    /* Brand Column */
    .brand-column .footer-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .brand-column .footer-logo-img {
        height: 50px;
        filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
    }

    .brand-column .footer-company-name {
        display: block;
        font-size: 1.4rem;
        font-weight: 800;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
    }

    .brand-column .footer-tagline {
        font-size: 0.7rem;
        color: #94a3b8;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .footer-description {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .social-wrapper {
        display: flex;
        gap: 12px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #cbd5e1;
        text-decoration: none !important;
        transition: all 0.3s ease;
    }

    .social-btn:hover {
        transform: translateY(-5px);
        color: #fff;
        background: var(--gradient-primary);
        border-color: transparent;
        box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none !important;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-links a i {
        font-size: 0.8rem;
        color: rgba(14, 165, 233, 0.5);
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: #3b82f6;
        padding-left: 8px;
    }

    .footer-links a:hover i {
        color: #3b82f6;
    }

    /* Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        display: flex;
        gap: 15px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(14, 165, 233, 0.1);
        border-radius: 10px;
        color: #3b82f6;
        font-size: 1.1rem;
    }

    .contact-item p,
    .contact-details a {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.5;
        text-decoration: none !important;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-details a {
        color: #fff;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .contact-details a:hover {
        color: #3b82f6;
    }

    .contact-details span {
        font-size: 0.8rem;
        color: #64748b;
    }

    .site-link {
        color: #3b82f6 !important;
        font-size: 0.85rem !important;
    }

    /* Footer Bottom Bar */
    .footer-bottom-bar {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px 0;
        margin-top: 40px;
    }

    .bottom-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        color: #64748b;
        font-size: 0.9rem;
    }

    .copyright span {
        color: #94a3b8;
        font-weight: 600;
    }

    .bottom-legal {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .bottom-legal a {
        color: #64748b;
        text-decoration: none !important;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    .bottom-legal a:hover {
        color: #fff;
    }

    .divider {
        width: 1px;
        height: 12px;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Responsive Footer */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    @media (max-width: 640px) {
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .brand-column .footer-logo {
            justify-content: center;
        }

        .social-wrapper {
            justify-content: center;
        }

        .footer-links a {
            justify-content: center;
        }

        .contact-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .bottom-flex {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .bottom-legal {
            justify-content: center;
            flex-wrap: wrap;
        }
    }