
        /* CSS Variables for easy theme management */
        :root {
            --primary-color: #0d2c54;
            --secondary-color: #fca311;
            --accent-color: #14213d;
            --background-color: #ffffff;
            --light-gray-bg: #f8f9fa;
            --text-color: #343a40;
            --heading-font: 'Poppins', sans-serif;
            --body-font: 'Roboto', sans-serif;
            --border-radius: 12px;
            --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *, *::before, *::after { 
            box-sizing: border-box; 
            margin: 0;
            padding: 0;
        }
        
        html { 
            scroll-behavior: smooth; 
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--body-font);
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .loader-logo {
            font-family: var(--heading-font);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Enhanced Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: var(--transition);
            transform: translateY(0);
        }
        
        .header.scrolled { 
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            background: rgba(255, 255, 255, 0.98);
        }
        
        .header .container { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        
        .logo {
            font-family: var(--heading-font);
            font-weight: 800;
            font-size: 2.2rem;
            color: var(--primary-color);
            text-decoration: none;
            position: relative;
            transition: var(--transition);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            transition: width 0.5s ease;
        }

        .logo:hover::after {
            width: 100%;
        }
        
        .nav-links { 
            list-style: none; 
            display: flex; 
            align-items: center; 
        }
        
        .nav-links li { 
            margin-left: 40px; 
        }
        
        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-family: var(--heading-font);
            transition: var(--transition);
            position: relative;
            padding: 10px 0;
            overflow: hidden;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.2), transparent);
            transition: left 0.5s;
        }

        .nav-links a:hover::before {
            left: 100%;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover::after { 
            width: 100%; 
            left: 0; 
        }
        
        .menu-toggle { 
            display: none; 
            font-size: 1.8rem; 
            cursor: pointer; 
            color: var(--primary-color);
            transition: var(--transition);
        }

        .menu-toggle:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
            color: #fff;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: scale(1.1);
        }
        
        .carousel-slide.active { 
            opacity: 1; 
            transform: scale(1);
        }
        
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 44, 84, 0.8), rgba(20, 33, 61, 0.6));
        }
        
        .slide-content { 
            z-index: 2; 
            max-width: 900px; 
            padding: 40px;
            animation: slideInUp 1s ease-out 0.5s both;
        }
        
        .slide-content h1 {
            font-family: var(--heading-font);
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .slide-content p { 
            font-size: 1.4rem; 
            margin-bottom: 35px;
            font-weight: 300;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--secondary-color), #ffb347);
            color: var(--primary-color);
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-family: var(--heading-font);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(252, 163, 17, 0.3);
        }

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

        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover { 
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(252, 163, 17, 0.4);
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--secondary-color);
            transform: scale(1.3);
        }

        /* Statistics Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
            font-family: var(--heading-font);
        }

        .stat-label {
            font-size: 1.2rem;
            margin-top: 10px;
            font-weight: 300;
        }

        /* Enhanced Section Styling */
        .section { 
            padding: 120px 0; 
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-family: var(--heading-font);
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            font-weight: 800;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 80px auto;
            color: #6c757d;
            font-weight: 300;
            line-height: 1.8;
        }

        /* Enhanced Products Section */
        #products { 
            background: linear-gradient(135deg, var(--light-gray-bg), #f0f2f5);
            position: relative;
        }

        #products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 45,15 45,35 30,45 15,35 15,15" fill="none" stroke="rgba(13,44,84,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .product-card {
            background: var(--background-color);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(13, 44, 84, 0.08);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(252, 163, 17, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-image-container { 
            position: relative; 
            overflow: hidden;
            height: 250px;
        }
        
        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        
        .product-card:hover img { 
            transform: scale(1.15) rotate(2deg);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 44, 84, 0.8), rgba(252, 163, 17, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

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

        .view-details {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info { 
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .product-info h4 {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            margin: 0 0 15px 0;
            color: var(--primary-color);
            font-weight: 700;
        }

        .product-info p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .feature-tag {
            background: rgba(252, 163, 17, 0.1);
            color: var(--primary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Enhanced Quality Section */
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            text-align: center;
            margin-top: 80px;
        }
        
        .quality-item { 
            padding: 40px 30px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            background: white;
            box-shadow: var(--shadow);
            border: 1px solid rgba(13, 44, 84, 0.08);
        }

        .quality-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(252, 163, 17, 0.05), rgba(13, 44, 84, 0.05));
            border-radius: var(--border-radius);
            opacity: 0;
            transition: var(--transition);
        }
        
        .quality-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .quality-item:hover::before {
            opacity: 1;
        }
        
        .quality-item .icon {
            font-size: 4rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
            display: inline-block;
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .quality-item:hover .icon {
            transform: scale(1.1) rotateY(360deg);
        }
        
        .quality-item h3 {
            font-family: var(--heading-font);
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .quality-item p {
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }

        /* Enhanced Contact Section */
        #contact { 
            background: linear-gradient(135deg, var(--light-gray-bg), #f0f2f5);
            position: relative;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(13,44,84,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            background: white;
            padding: 60px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(13, 44, 84, 0.08);
        }
        
        .contact-form h3 { 
            font-family: var(--heading-font);
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .form-group { 
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border-radius: 8px;
            border: 2px solid #e9ecef;
            font-family: var(--body-font);
            font-size: 1rem;
            transition: var(--transition);
            background: #fafbfc;
        }
        
        .form-group input:focus, .form-group textarea:focus { 
            border-color: var(--secondary-color);
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.1);
        }
        
        .form-group textarea { 
            resize: vertical; 
            min-height: 140px; 
        }
        
        .submit-btn {
            width: 100%;
            border: none;
            padding: 18px;
            font-size: 1.1rem;
            cursor: pointer;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: #fff;
            border-radius: 8px;
            font-family: var(--heading-font);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

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

        .submit-btn:hover::before {
            left: 100%;
        }
        
        .submit-btn:hover { 
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(13, 44, 84, 0.3);
        }

        .contact-details h3 { 
            font-family: var(--heading-font);
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .contact-details p { 
            font-size: 1.1rem;
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .contact-details p:hover {
            background: rgba(252, 163, 17, 0.05);
        }
        
        .contact-details .icon {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-right: 20px;
            width: 25px;
            text-align: center;
            padding-top: 5px;
        }
        
        .contact-details a { 
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .contact-details a:hover { 
            color: var(--secondary-color);
        }

        /* Enhanced Footer */
        .footer { 
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: #fff;
            padding: 80px 0 40px 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .footer-col h4 { 
            font-family: var(--heading-font);
            font-size: 1.6rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .footer-col p, .footer-col li { 
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .footer-col ul { 
            list-style: none;
        }
        
        .footer-col ul li { 
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .footer-col ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-col ul a { 
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-col ul a:hover { 
            color: var(--secondary-color);
        }
        
        .footer-bottom { 
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            opacity: 0.8;
            position: relative;
            z-index: 2;
        }

        /* Back to Top Button */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(45deg, var(--secondary-color), #ffb347);
            color: var(--primary-color);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(252, 163, 17, 0.3);
            transition: var(--transition);
            z-index: 1000;
        }
        
        #back-to-top:hover { 
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(252, 163, 17, 0.4);
        }

        /* Enhanced Animations */
        .animate-on-scroll { 
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .animate-on-scroll.visible { 
            opacity: 1;
            transform: translateY(0);
        }

        .animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

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

        /* Particle Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 50%;
            opacity: 0.6;
            animation: particleFloat 15s infinite linear;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.5s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-wrapper { 
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 40px;
            }
            .footer-grid { 
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .slide-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-carousel { 
                height: 80vh; 
            }
            .slide-content {
                padding: 20px;
            }
            .slide-content h1 { 
                font-size: 2.8rem; 
            }
            .section-title { 
                font-size: 2.5rem; 
            }
            .section { 
                padding: 80px 0; 
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                width: 100%;
                text-align: center;
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
                padding: 30px 0;
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active { 
                display: flex; 
            }
            .nav-links li { 
                margin: 20px 0; 
            }
            .menu-toggle { 
                display: block; 
            }
            .footer-grid { 
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            .product-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .quality-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .slide-content h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .contact-wrapper {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
    