 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        #hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 120px 20px 60px;
            margin-top: 60px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .highlight-yellow {
            color: #FFA500;
        }

        .highlight-red {
            color: #dc2626;
        }

        .highlight-green {
            color: #059669;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

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

        /* Products Section */
        #products {
            padding: 80px 20px;
            background: white;
        }

        #products h2 {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a472a;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
           object-fit: cover;
           transition: transform 0.3s ease;
       }

       .product-image:hover img {
           transform: scale(1.05);
        }

        .product-card:nth-child(1) .product-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .product-card:nth-child(2) .product-image {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .product-card:nth-child(3) .product-image {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #FFD700;
            color: #1a472a;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: #1a472a;
            margin-bottom: 0.5rem;
        }

        .product-info p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 2px solid #f0f0f0;
        }

        .price-tag {
            font-size: 1.3rem;
            font-weight: 700;
            color: #dc2626;
        }

        .order-btn {
            background: #1a472a;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .order-btn:hover {
            background: #2d5f3f;
            transform: scale(1.05);
        }

        /* Features Section */
        #features {
            background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
            padding: 80px 20px;
            color: white;
        }

        #features h2 {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

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

        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        /* Delivery Section */
        #delivery {
            background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .delivery-badge {
            display: inline-block;
            background: white;
            color: #FFA500;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

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

        #delivery h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        #contact {
            background: white;
            padding: 80px 20px;
            text-align: center;
        }

        #contact h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #1a472a;
            margin-bottom: 1rem;
        }

        #contact p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .phone-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .phone-number a {
            color: #dc2626;
            text-decoration: none;
            transition: all 0.3s;
        }

        .phone-number a:hover {
            color: #b91c1c;
        }

        /* Footer */
        footer {
            background: #1a472a;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h2 {
                font-size: 2rem;
            }

            nav ul {
                gap: 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }
