* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            overflow-x: hidden;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 3rem;
            background: linear-gradient(45deg, #00bfa5, #00695c);
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        nav a:hover {
            color: #c1f0dc;
        }
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #e0f7fa, #80cbc4);
            color: #004d40;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #004d40;
        }
        .hero button {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            background: #00796b;
            color: #fff;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hero button:hover {
            background: #004d40;
        }
        .products {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 3rem;
            background-color: #f9f9f9;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .product {
            background-color: #fff;
            border-radius: 25px;
            width: 420px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        
        }
        .product:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .product img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 0.8rem;
        }
        .product h3 {
            font-size: 1.6rem;
            color: #00796b;
            margin-bottom: 0.5rem;
        }
        .price {
            font-size: 1.5rem;
            color: #388e3c;
            font-weight: 700;
        }
        .discounted-price {
            font-size: 1rem;
            text-decoration: line-through;
            color: #d32f2f;
            margin-bottom: 1rem;
        }
        .buttons a {
            text-decoration: none;
        }
        .buttons button {
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            background: #ff9800;
            color: #fff;
            transition: all 0.3s ease;
        }
        .buttons button:hover {
            background: #ef6c00;
        }
        .contact-details {
            padding: 3rem 1rem;
            background-color: #e0f2f1;
            text-align: center;
            color: #004d40;
        }
        .contact-details h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .contact-details p {
            margin: 0.5rem 0;
        }
        .social-links a {
            margin: 0 1rem;
            font-size: 1.8rem;
            color: #00796b;
            transition: transform 0.3s ease;
        }
        .social-links a:hover {
            transform: scale(1.1);
        }
        footer {
            padding: 1.5rem 1rem;
            background: #004d40;
            color: #fff;
            text-align: center;
        }
        footer button {
            margin-top: 1rem;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            background: #00bfa5;
            color: #fff;
            cursor: pointer;
        }
        footer button:hover {
            background: #00796b;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero button {
                font-size: 0.9rem;
                padding: 0.8rem 2rem;
            }
            .products {
                padding: 2rem 1rem;
                gap: 1.2rem;
            }
            .product {
                width: 100%;
                padding: 1.2rem;
            }
            .product img {
                height: 180px;
            }
            .contact-details {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 0.9rem;
            }
            .hero button {
                font-size: 0.8rem;
                padding: 0.7rem 1.5rem;
            }
            .contact-details h3 {
                font-size: 1.5rem;
            }
            .contact-details p {
                font-size: 0.9rem;
            }
        }

        /* Marquee style for images */
        .marquee-wrapper {
            width: 100%;
            overflow: hidden;
            margin: 2rem 0;
        }
        .marquee {
            display: flex;
            flex-direction: row;
            animation: marquee 10s linear infinite;
        }
        .marquee img {
            width: 275px;
            height: 155px;
            object-fit: cover;
            margin-right: 20px;
        }
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
            
        }        

        /* Styling for Product Description Section */
        .product-description {
            background-color: #f0f8ff;
            padding: 3rem 1rem;
            text-align: center;
        }
        .description-container h2 {
            font-size: 2.2rem;
            color: #00796b;
            margin-bottom: 1rem;
        }
        .description-container p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 1rem;
        }