
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --saffron: #FF9933;
            --deep-red: #B71C1C;
            --golden: #FFC107;
            --cream: #FFFBF0;
            --brown: #8D6E63;
            --dark-green: #2E7D32;
        }

        body {
            font-family: 'Merriweather', serif;
            line-height: 1.7;
            color: #333;
            background: var(--cream);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--saffron), var(--golden));
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #B71C1C;
            transform: translateY(-2px);
        }

        .cart-icon {
            background: var(--deep-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
        }

        .cart-icon:hover {
            background: #8B0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--golden);
            color: var(--deep-red);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255,153,51,0.1), rgba(255,193,7,0.1)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><pattern id="spice" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="2" fill="%23FF9933" opacity="0.1"/></pattern><rect width="100" height="100" fill="url(%23spice)"/></svg>');
            padding: 160px 0 120px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-family: 'Dancing Script', cursive;
            font-size: 4rem;
            color: var(--deep-red);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            animation: fadeInDown 1s ease;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--brown);
            margin-bottom: 2.5rem;
            font-style: italic;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-cta {
            background: linear-gradient(135deg, var(--deep-red), var(--saffron));
            color: white;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(183, 28, 28, 0.3);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(183, 28, 28, 0.4);
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* update kar raha hu  */
       

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3rem;
            color: var(--deep-red);
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title::before {
            content: '❋';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -30px;
            font-size: 2rem;
            color: var(--saffron);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--saffron), var(--golden));
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--brown);
        }

        .about-text p {
            margin-bottom: 2rem;
        }

        .about-text strong {
            color: var(--deep-red);
            font-weight: 700;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, var(--saffron), var(--deep-red));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url(images/resized_enhanced_400.png);
        }

        /* Products Section */
        .products {
            background: var(--cream);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 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 ease;
            border: 3px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            border-color: var(--saffron);
        }

        .product-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(45deg, var(--golden), var(--saffron));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            position: relative;
        }

        .product-image::before {
            content: '🌾';
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 2rem;
        }

        .product-info {
            padding: 2rem;
        }

        .product-name {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-red);
            margin-bottom: 0.5rem;
        }

        .product-desc {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .product-price {
            font-size: 1.4rem;
            color: var(--saffron);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        @media screen and (max-width: 480px) {
            .product-card {
                width: 100%;
            }
            .products{
                justify-items: center;
                justify-content: center;
            }
        }

    .add-to-cart {
        background: linear-gradient(135deg, #075E54, #25D366);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        cursor: pointer;
        width: 100%;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
        text-align: center;
    }


        .add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
        }

        /* Testimonials */
        .testimonials {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--cream);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 2px solid var(--golden);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 4rem;
            color: var(--saffron);
            font-family: serif;
        }

        .stars {
            color: var(--golden);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--brown);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--deep-red);
            font-size: 1.1rem;
        }

        /* Google Reviews Widget Styling */
        .google-reviews-widget {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-bottom: 3rem;
            border: 3px solid var(--golden);
            position: relative;
        }

        .google-reviews-widget::before {
            content: "⭐ Authentic Google Reviews from Our Valued Customers";
            display: block;
            text-align: center;
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-red);
            margin-bottom: 1.5rem;
        }

        .google-reviews-widget::after {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), var(--golden));
            border-radius: 2px;
        }

        /* Responsive adjustment for Google Reviews */
        @media (max-width: 768px) {
            .google-reviews-widget {
                padding: 2rem;
                margin: 1.5rem 0;
            }

            .google-reviews-widget::before {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .google-reviews-widget {
                padding: 2rem;
                margin: 1.5rem 0;
                /* margin-left: -30px; */
                width: 94%;
            }
            
            .google-reviews-widget::before {
                font-size: 1.4rem;
            }

            .testimonials-grid{
                justify-content: center;
                justify-items: center;
            }

            .testimonial-card{
                width: 94%;
            }
        }

        /* Contact Section */
        .contact {
            background: var(--cream);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--deep-red);
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Merriweather', serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--saffron), var(--golden));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
        }

        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-info h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: var(--deep-red);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--cream);
            border-radius: 10px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--saffron);
            margin-right: 1rem;
            margin-top: 0.2rem;
            width: 30px;
        }

        .contact-item strong {
            color: var(--deep-red);
        }

        @media (max-width: 768px) {
            .contact-content {
                /* margin-left: -30px; */
                grid-template-columns: 1fr;  /* single column on small screens */
                gap: 2rem;                   /* optionally reduce gap for smaller screens */
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem; /* reduce padding on small screens */
            }
            .contact-content {
                justify-items: center;
                justify-content: center;
                grid-template-columns: 1fr;  /* single column on small screens */
                gap: 2rem;                 /* optionally reduce gap for smaller screens */
            }
            .contact-form, .contact-info {
                width: 100%;
            }
            .contact-form,
            .contact-info {
                font-size: 4vw;
                padding: 24px;
            }
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--deep-red), var(--brown));
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            text-align: center;
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: var(--golden);
        }

        .footer-section p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
            text-align: center;
        }

        .footer-section ul li a {
            color: inherit;
            font-size: 1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--golden);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            background: rgba(255, 255, 255, 0.1);
            color: inherit;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--golden);
            color: var(--deep-red);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid white;
        }

        /* Cart Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .cart-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--cream);
        }

        .cart-header h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: var(--deep-red);
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }

        .close-cart:hover {
            color: var(--deep-red);
        }

        .cart-items {
            margin-bottom: 2rem;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .item-info h4 {
            color: var(--deep-red);
            margin-bottom: 0.5rem;
        }

        .item-price {
            font-weight: 700;
            color: var(--saffron);
            font-size: 1.1rem;
        }

        .remove-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: #c82333;
            transform: translateY(-1px);
        }

        .cart-total {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin: 2rem 0;
            color: var(--deep-red);
            padding: 1rem;
            background: var(--cream);
            border-radius: 10px;
        }

        .checkout-btn {
            background: linear-gradient(135deg, var(--saffron), var(--golden));
            color: white;
            border: none;
            padding: 18px;
            border-radius: 30px;
            width: 100%;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cart-content {
                padding: 2rem;
                width: 95%;
            }
            /* image slide secttion css */
            .image-slider {
                overflow: hidden;
                width: 100%;
                height: 200px; /* Set according to your image height */
                position: relative;
            }

.slider-track {
  display: flex;
  width: calc(250px * 8); /* 8 images x image width */
  animation: scrollLeft 20s linear infinite;
}

.slider-track img {
  width: 250px;
  height: 200px;
  object-fit: cover;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000px); /* Slide left based on total width */
  }
}

        }

        /* Notification */
        .notification {
            position: fixed;
            top: 120px;
            right: 20px;
            background: linear-gradient(135deg, var(--saffron), var(--golden));
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            z-index: 3000;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }

        
            
        }