        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            font-family: "Poppins", serif;
        }

        section{
            width: 100%;
            height: 100vh;
            
        }

        /* Navigation */
        header {
            background-color: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }


        .hero .blur{
            background-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
            width: 100%;
            height: 100%;
            left: 0;
            position: absolute;
            z-index: -1;
            filter:blur(0px)
        }

        .nav-content {
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-content .logo{
            margin: 0 5%;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            background-image: url('https://images.pexels.com/photos/1957478/pexels-photo-1957478.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: left;
            padding: 2rem;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 5%;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        /*cards conatiner*/
        .cards-container {
            position: relative;
            width: 100%;
        }

        .cards-container .card-list{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: absolute;
            z-index: 1000;
            width: 90%;
            height: 100%;
            top: -150px;
            margin: 0 5%;

        }
        .cards-container .card{
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            width: 30%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: left;
            flex-direction: column;
            text-align: center;
        }









        /* About Section */
        .about {
            padding: 5rem 2rem;
            background-color: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text{
            margin: 0 5%;
        }

        .about img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            border: 1px solid #d39743;
        }

        /* Products Section */
        .products {
            padding: 5rem 2rem;
            background-color: #f5f5f5;
            display: flex;
            align-items: start;
            flex-direction: column;
            justify-content: left;
            width: 100%;
            height: 100vh;
        }

        .products h2{
            margin: 0 5%;
        }

        .products-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .product-card {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: left;
            flex-direction: column;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            border-radius: 8px;

        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 2rem;
            background-color: white;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: start;
            flex-direction: column;
            justify-content: left;
        }
        .testimonials h2{
            margin: 0 5%;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            padding: 2rem;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            margin-top: 20%;
        }

        .testimonial-card cite{
            font-style: normal;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            margin-top: 20px;
        }

        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 1rem;
            border: 1px solid #d39743;
        }


        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: #e4a853;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #00b64c;
            box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hero{
                align-items: center;
                justify-content: center;
            }
            .hero .blur{
                background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
            }
            .hero-content{
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }
            .products{
                height: auto;
            }

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

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

            .cards-container{
                height: 70vh;
            }
            .cards-container .card-list{
                position: relative;
                top:0;
            }

            .cards-container .card{
                width: 100%;
                gap: 1rem;
                height: 150px;
            }
        }