/* Logo Theme Based Root Colors */
        :root {
            --primary-red: #B22222;    /* Dark Red from Chilli */
            --primary-green: #2E7D32;  /* Leaf Green from Logo */
            --accent-yellow: #FFD700;  /* Gold/Yellow highlight */
            --bg-light: #FFF9F9;      /* Light Reddish Tint White */
        }


body { font-family: 'Poppins', sans-serif; }
        
        /* 3D Button Animation */
        .btn-3d {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 6px 0 rgb(153, 27, 27); /* Darker Red Shadow */
        }
        .btn-3d:hover {
            transform: translateY(3px);
            box-shadow: 0 2px 0 rgb(153, 27, 27);
            background-color: var(--primary-red); /* Green on hover */
        }
        .btn-3d-green {
            transition: all 0.3s ease;
            box-shadow: 0 6px 0 rgb(21, 128, 61);
        }
        .btn-3d-green:hover {
            transform: translateY(3px);
            box-shadow: 0 2px 0 rgb(21, 128, 61);
            background-color: #991b1b; /* Red on hover */
        }
/* Navbar Button */
.nav-btn {
  background: linear-gradient(135deg, var(--primary-red), #e53935);
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(178,34,34,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Shine animation */
.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(178,34,34,0.5);
}
/* HERO PRIMARY BUTTON */
.btn-3d {
  background: var(--primary-red);
  color: white;
  padding: 16px 34px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 0 #7f1d1d;
}

.btn-3d:hover {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #7f1d1d;
  background: #991b1b;
}

/* HERO SECONDARY BUTTON */
.btn-3d-green {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 16px 34px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 0 #166534;
}

.btn-3d-green:hover {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #166534;
  background: var(--primary-green);
  color: white;
}


.about-btn {
  background: var(--primary-red);
  color: white;
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 0 #7f1d1d;
  transition: all 0.35s ease;
}

.about-btn:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #7f1d1d;
  background: #991b1b;
}




.values-section {
  padding: 120px 60px;
  background: var(--bg-light);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.value-card {
  background: white;
  padding: 40px 30px 50px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transform-style: preserve-3d;
  transition: all 0.45s ease;
  opacity: 1;
  transform: translateY(80px) rotateX(10deg);
}

.value-card:hover {
  transform: translateY(-18px) rotateX(0deg) scale(1.03);
  box-shadow: 0 40px 80px rgba(178,34,34,0.35);
}

.value-img {
  width: 180px;
  height: 180px;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, var(--primary-green), #66bb6a);
}

.value-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card h3 {
  margin-top: 30px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-green);
}

.value-card p {
  margin-top: 14px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}



:root {
            --brand-red: #B22222;    /* Primary Red from logo */
            --brand-green: #2E7D32;  /* Primary Green from logo */
            --brand-yellow: #FFD700; /* Accent Yellow */
        }

        body { font-family: 'Poppins', sans-serif; }

        /* 3D Tab Button Animation */
        .tab-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .tab-active {
            background-color: var(--brand-red) !important;
            color: white !important;
            box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
            transform: translateY(-2px);
        }

        .tab-active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--brand-red);
        }

        /* Smooth Content Transition */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }



        .chilli-gallery{
  padding:80px 40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* IMAGE CARD */
.img-box{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* SCROLL ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(80px) scale(0.95);
  transition:all 0.9s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* DELAYS */
.delay1{ transition-delay:0.2s; }
.delay2{ transition-delay:0.4s; }



/* Initial state for Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
}

/* Active state when visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Zoom */
.zoom-img {
    transition: transform 1.5s ease;
}
.zoom-img:hover {
    transform: scale(1.1);
}

/* Button Color Change Animation */
.btn-animate {
    transition: all 0.4s ease;
    border-bottom: 4px solid rgba(0,0,0,0.2);
}

.btn-animate:hover {
    background-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Horizontal Scroll Fix */
.product-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-red) #f1f1f1;
}

.product-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.product-scroll-container::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 10px;
}

/* Product Card */
.product-card {
    min-width: 250px; /* Card size maintain karne ke liye */
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* Button Fixed */
.order-btn {
    width: 100%;
    background-color: var(--brand-red); /* Hamesha Red rahega */
    color: white;
    padding: 10px;
    margin-top: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.order-btn:hover {
    background-color: var(--brand-green); /* Hover par Green */
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin-top: 5px;
}

.card-info h3 {
    font-weight: 600;
    color: #444;
}


.submit-btn {
    background-color: var(--brand-red);
    box-shadow: 0 4px 0px #701414; /* 3D Effect */
}

.submit-btn:hover {
    background-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.submit-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0px transparent;
}


.map-container {
    width: 100%;
    height: 500px; /* Aap ise 100vh bhi kar sakte hain agar poora page map chahiye */
    overflow: hidden;
    border-radius: 20px; /* Modern look ke liye corners round kiye hain */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(10%) contrast(110%); /* Map ko thoda professional tone dene ke liye */
}



/* FAQ Active State Styling */
.faq-item.active {
    border-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(163, 29, 29, 0.1);
}

.faq-item.active .faq-btn {
    background-color: var(--brand-red);
    color: white;
}

.faq-item.active .faq-btn span {
    color: white;
}

.faq-item.active .faq-btn i {
    transform: rotate(180deg);
}

.faq-answer {
    transition: max-height 0.4s ease-out;
}




footer a {
    transition: all 0.3s ease-in-out;
}

/* Red Dot Animation */
footer h4 span {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Footer Newsletter Input Focus */
footer input:focus {
    box-shadow: 0 0 10px rgba(185, 28, 28, 0.3);
}



.stat-card {
    transition: transform 0.4s ease;
    padding: 20px;
    border-radius: 15px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.counter {
    display: inline-block;
}

/* Animations for revealing items */
.reveal {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.stats-section.active .reveal {
    opacity: 1;
    transform: scale(1);
}