        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #0d0d0d;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
            font-size: 0.8rem;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 10px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background:black;
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 107, 53, 0.3);
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(13, 13, 13, 0.98);
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image and text */
}

.logo-img {
    width: 60px;   /* adjust width as needed */
    height: 60px;  /* adjust height as needed */
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;  /* adjust text size */
    font-weight: bold;
    color: #fff;         /* adjust based on your theme */
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            font-size: 0.75rem;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 0.8rem 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            color: #ff6b35;
            transform: translateY(-2px);
        }

        .nav-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.7rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #ff6b35;
            border: 2px solid #ff6b35;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }

        /* Pages */
        .page {
            display: none;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 120px;
            overflow: hidden;
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 50%;
            animation: particleFloat 6s ease-in-out infinite;
        }

        .hero-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 3rem;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-text h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: heroTextReveal 2s ease-out;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.8;
            animation: fadeInUp 1.5s ease 0.5s both;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            margin-bottom: 4rem;
            animation: fadeInUp 1.5s ease 1s both;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            animation: fadeInUp 1.5s ease 1.5s both;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 53, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.6s;
        }

        .stat-box:hover::before {
            left: 100%;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #ff6b35;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-main-graphic {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            position: relative;
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.4);
            background-image: url('image/hero1.avif');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        .hero-main-graphic::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: heroGraphicPulse 3s ease-in-out infinite;
        }

        /* Products Section */
        .products-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 107, 53, 0.2);
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.8s;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .product-card:hover {
            transform: translateY(-20px) rotateY(5deg);
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
            border-color: #ff6b35;
        }

        .product-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            display: block;
            animation: productIconBounce 2s ease-in-out infinite;
        }

        .product-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        .product-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: #f7931e;
            margin-bottom: 2.5rem;
        }

        .product-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Features Section */
        .features-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
        }

        .features-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
        }

        .feature-card {
            background: rgba(255, 107, 53, 0.05);
            border-radius: 25px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.6s ease;
            border: 1px solid rgba(255, 107, 53, 0.2);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
            border-color: #ff6b35;
        }

        .feature-icon {
            font-size: 5rem;
            margin-bottom: 2.5rem;
            display: block;
        }

        .feature-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ff6b35;
            text-transform: uppercase;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* About Section */
        .about-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
        }

        .about-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2.5rem;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
        }

        .about-features {
            list-style: none;
            margin-bottom: 3rem;
        }

        .about-features li {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            padding-left: 3rem;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .about-features li::before {
            content: '⚡';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-size: 1.5rem;
            animation: featureIconPulse 2s ease-in-out infinite;
        }

        .about-features li:hover {
            color: #ff6b35;
            transform: translateX(10px);
        }

        .about-visual {
            text-align: center;
            position: relative;
        }

        .about-main-icon {
            font-size: 30rem;
            animation: aboutIconFloat 4s ease-in-out infinite;
            filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
            background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services Section */
        .services-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%), url('https://images.unsplash.com/photo-1544717297-fa95b6ee9643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 107, 53, 0.05);
            border-radius: 25px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.6s ease;
            border: 1px solid rgba(255, 107, 53, 0.2);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-20px) rotateX(10deg);
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
        }

        .service-icon {
            font-size: 5rem;
            margin-bottom: 2.5rem;
            display: block;
            animation: serviceIconSwing 3s ease-in-out infinite;
        }

        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ff6b35;
            text-transform: uppercase;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        .service-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #f7931e;
            margin-bottom: 2.5rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-slider {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .gallery-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-slide {
            min-width: 100%;
            position: relative;
            overflow: hidden;
        }

        .gallery-slide img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-slide:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 4rem 3rem 3rem;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .gallery-slide:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-caption h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ff6b35;
            text-transform: uppercase;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-nav button {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 107, 53, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-nav button.active {
            background: #ff6b35;
            transform: scale(1.3);
        }

        /* Contact Section */
        .contact-section {
            padding: 10rem 3rem;
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-form {
            background: rgba(255, 107, 53, 0.05);
            border-radius: 25px;
            padding: 5rem;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .form-group {
            margin-bottom: 2.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 1rem;
            color: #ff6b35;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 15px;
            color: #ffffff;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
            transform: scale(1.02);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
            color: white;
            padding: 6rem 3rem 3rem;
            border-top: 2px solid #ff6b35;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-section h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #ff6b35;
            text-transform: uppercase;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .footer-section a:hover {
            color: #ff6b35;
        }

        .newsletter-form {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 107, 53, 0.3);
            color: rgba(255, 255, 255, 0.6);
            max-width: 1600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Modals */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
            border-radius: 25px;
            padding: 4rem;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            position: relative;
            animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #ff6b35;
            overflow-y: auto;
        }

        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #ff6b35;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: #f7931e;
            transform: rotate(90deg) scale(1.2);
        }

        .auth-form h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            text-transform: uppercase;
            font-weight: 800;
        }

        .auth-toggle {
            text-align: center;
            margin-top: 2.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .auth-toggle a {
            color: #ff6b35;
            text-decoration: none;
            cursor: pointer;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .auth-toggle a:hover {
            color: #f7931e;
        }

        .user-menu {
            display: none;
            position: relative;
        }

        .user-menu.active {
            display: block;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 20px;
            padding: 1.5rem;
            min-width: 200px;
            margin-top: 1rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        }

        .user-dropdown a {
            display: block;
            padding: 1rem;
            color: #ffffff;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .user-dropdown a:hover {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
        }

        /* Cart */
        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.8rem;
            color: #ff6b35;
            transition: all 0.3s ease;
        }

        .cart-icon:hover {
            transform: scale(1.2);
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff6b35;
            color: #ffffff;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Animations */
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes logoShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        @keyframes heroTextReveal {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes heroGraphicSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes heroGraphicPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.6; }
        }

        @keyframes particleFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        @keyframes productIconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes featureIconRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes featureIconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        @keyframes aboutIconFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes serviceIconSwing {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(10deg); }
            75% { transform: rotate(-10deg); }
        }

        @keyframes modalSlideIn {
            0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
            100% { opacity: 1; transform: scale(1) rotate(0deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-menu { display: none; }
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text h1 { font-size: 4rem; }
            .about-content { grid-template-columns: 1fr; text-align: center; }
            .about-main-icon { font-size: 12rem; }
            .section-title { font-size: 3rem; }
            .hero-main-graphic { width: 300px; height: 300px; font-size: 6rem; }
        }

        @media (max-width: 768px) {
            .hero-text h1 { font-size: 3rem; }
            .hero-stats { grid-template-columns: 1fr; }
            .hero-cta { flex-direction: column; align-items: center; }
            .product-actions { flex-direction: column; }
            .nav-container { padding: 0 1.5rem; }
            .section-title { font-size: 2.5rem; }
            .contact-form { padding: 3rem; }
        }
