
        :root {
            --primary: #2c3e50;
            --secondary: #7f8c8d;
            --accent: #e74c3c;
            --gold: #f1c40f;
            --silver: #bdc3c7;
            --light-bg: #f9f9f9;
            --dark-bg: #2c3e50;
            --border-color: #e0e0e0;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            color: var(--primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a{text-decoration: none;}

        /* Top Bar - Modern */
        .top-bar {
            background: linear-gradient(90deg, var(--dark-bg), #34495e);
            color: white;
            font-size: 0.8rem;
            padding: 8px 0;
            border-bottom: 2px solid var(--accent);
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .top-bar a:hover {
            color: var(--gold);
        }

        .badge-new {
            background: var(--accent);
            color: white;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            margin-left: 10px;
        }

        /* Header - Modern */
        .main-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 5px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-link {
            color: var(--primary) !important;
            font-weight: 600;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: white !important;
            background: var(--accent);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 70%;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Hero Section - Modern */
        .hero-section {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(231, 76, 60, 0.8)),
                        url('../img/photo-1535632066927-ab7c9ab60908.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--gold), #f39c12);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-btn {
            background: linear-gradient(45deg, var(--accent), #c0392b);
            color: white;
            border: none;
            padding: 15px 45px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            color: white;
        }

        .hero-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: 0.5s;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-features {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature-box {
            text-align: center;
            padding: 15px;
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .feature-box h6 {
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .feature-box p {
            font-size: 0.8rem;
            opacity: 0.8;
            margin: 0;
        }

        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            border-radius: 2px;
        }

        .main-link {
            display: inline-block;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .main-link:hover {
            color: var(--primary);
            border-bottom-color: var(--accent);
        }

        /* Product Cards - Modern */
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
        }

        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-body {
            padding: 20px;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .product-category {
            color: var(--secondary);
            font-size: 0.85rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-price {
            color: var(--accent);
            font-weight: 800;
            font-size: 1.2rem;
            margin-top: 10px;
        }

        /* Manufacturing Steps */
        .manufacturing-section {
            background: var(--light-bg);
            padding: 100px 0;
            position: relative;
        }

        .manufacturing-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            position: relative;
            z-index: 1;
        }

        .manufacturing-step h5 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .manufacturing-step p {
            color: var(--secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Category Cards */
        .category-card {
            background: white;
            border-radius: 15px;
            padding: 30px 15px;
            text-align: center;
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .category-icon {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 15px;
            transition: var(--transition);
        }
        .category-card {
            text-decoration: none;
        }

        .category-card:hover .category-icon {
            transform: scale(1.2);
            color: var(--gold);
        }

        .category-card h6 {
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
        }

        .reason-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .reason-item:hover {
            transform: translateX(10px);
            border-left-color: var(--accent);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .reason-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-right: 20px;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .reason-item h5 {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .reason-item p {
            color: var(--secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Trust Badges */
        .trust-badgea{color: white;
            text-decoration: none}
        .trust-badges {
            padding: 80px 0;
            background: var(--dark-bg);
            color: white;
        }

        .trust-badge {
            text-align: center;
            padding: 25px 15px;
            transition: var(--transition);
            text-decoration: none;
        }

        .trust-badge:hover {
            transform: translateY(-5px);
        }

        .trust-badge i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .trust-badge p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, var(--dark-bg), #1a252f);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(45deg, white, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--gold);
        }

        .footer-about {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .contact-info p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 15px;
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--gold);
            margin-right: 15px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-heading {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .nav-link {
                padding: 10px 15px !important;
                margin: 5px 0;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .feature-box {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .product-img {
                height: 180px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(231, 76, 60, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #c0392b;
            transform: translateY(-3px);
        }