   /* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html,body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: white;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 15px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo and Store Name */
    .logo-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }
    .logo-container img {
      height: 100px;
      width: auto;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    .logo-container:hover img {
      transform: scale(1.1);
    }
    .store-name {
      font-weight: 700;
      font-size: 1.5rem;
      user-select: none;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 24px;
      font-weight: 500;
    }
    nav a {
      text-decoration: none;
      color: black;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #f5c518; /* Yellow underline */
      left: 0;
      bottom: -6px;
      transition: width 0.3s ease;
    }
    nav a:hover,
    nav a:focus {
      color: #f5c518;
    }
    nav a:hover::after,
    nav a:focus::after {
      width: 100%;
    }

    /* Right section */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* Search */
    .search-box {
      position: relative;
    }
    .search-box input[type='search'] {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid #ccc;
      width: 180px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      font-size: 0.9rem;
    }
    .search-box input[type='search']:focus {
      outline: none;
      border-color: #f5c518;
      transform: scale(1.1);
    }

    /* Call Now Button */
    .call-btn {
      background: #f5c518;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      color: black;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      user-select: none;
      text-decoration: none;
    }
    .call-btn:hover,
    .call-btn:focus {
      background-color: #d4b80c;
      transform: scale(1.1);
      color: black;
    }

    /* Cart Icon */
    .cart-icon {
      position: relative;
      font-size: 1.5rem;
      color: black;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .cart-icon:hover,
    .cart-icon:focus {
      transform: scale(1.1);
    }
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: red;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 12px;
      animation: pulse 2s infinite;
      user-select: none;
    }
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.7;
      }
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      border: none;
      background: none;
      color: black;
      transition: transform 0.3s ease;
    }
    .hamburger:hover,
    .hamburger:focus {
      transform: scale(1.1);
    }

    /* Mobile menu (hidden by default) */
 .mobile-menu {
    display: none;
    position: absolute;
    top: 85px;
    text-align: center;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 9999;
}
    .mobile-menu a {
      color: black;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      transition: color 0.3s ease;
    }
    .mobile-menu a:last-child {
      border-bottom: none;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus {
      color: #f5c518;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      nav {
        display: none;
      }
      .search-box input[type='search'] {
        width: 120px;
      }
      .call-btn {
        display: none;
      }
      .hamburger {
        display: block;
      }
        .header{
        padding: 15px !important;
      }
    }

    @media (max-width: 576px) {
      .search-box {
        display: none;
      }
      .header{
        padding: 15px !important;
      }
    }




/* Footer Container and Row */
.footer-section {
  background-color: black;
  color: white;
  padding: 40px 20px 25px 20px;
  font-size: 0.9rem;
}

.footer-section .container > .row {
  display: flex;
  justify-content: space-between; /* Columns ke beech achha gap */
  flex-wrap: wrap; /* Responsive wrapping */
  gap: 20px; /* Columns ke beech thodi gap */
}

/* Each column */
.footer-section .col-md-4 {
  flex: 1 1 30%; /* 30% width with flexibility */
  min-width: 250px; /* Chhoti screens ke liye minimum width */
  text-align: left; /* Content left aligned rahe */
}

/* Footer headings */
.footer-section h5 {
  font-weight: 700;
  color: #ffeb3b; /* Yellow */
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Footer links and text */
.footer-section p,
.footer-section li,
.footer-section a {
  color: #f5f5f5;
}

.footer-section ul {
  padding-left: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

/* Footer links hover */
.footer-section ul li a {
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

.footer-section ul li a:hover {
  color: lightgoldenrodyellow !important;
  transform: scale(1.1);
  text-decoration: none;
}

/* Footer icons in contact */
.footer-section p i {
  color: #ffeb3b; /* Yellow */
  margin-right: 6px;
}

/* Footer horizontal line */
.footer-section hr {
  border-color: rgba(255, 235, 59, 0.4);
  margin-top: 25px;
  margin-bottom: 20px;
}

/* Social Icons container */
.footer-contact-social {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.footer-contact-social a {
  font-size: 1.6rem;
  color: #ffeb3b;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-social a:hover {
  color: #4caf50; /* Green accent */
  transform: scale(1.3);
  text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: center; /* Center align copyright text */
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: #f5f5f5;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-section .container > .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section .col-md-4 {
    min-width: auto;
    flex: 1 1 100%;
    margin-bottom: 25px;
  }

  .footer-contact-social {
    justify-content: center;
  }
}

/* about.html page  */

h1, h2, h3, h4 {
  margin: 0 0 12px;
}
p {
  margin: 0 0 16px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
img {
  max-width: 100%;

  border-radius: 8px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #c4e3c3, #fef9d7);
  text-align: center;
  padding: 80px 20px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-light);
}
.about-hero h1 {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 12px;
}
.about-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--primary-brown);
}

/* Mission & Vision Section */
.mission-vision {
  display: flex;
  gap: 30px;
  margin: 60px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.mv-card {
  background: white;
  flex: 1 1 320px;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px var(--shadow-light);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover, .mv-card:focus {
  transform: scale(1.05);
  box-shadow: 0 10px 25px var(--shadow-strong);
  outline: none;
}
.mv-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.mv-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-brown);
}
.mv-text {
  font-size: 1rem;
  color: #555;
}

/* Why Choose Us Section */
.why-choose {
  background: white;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px var(--shadow-light);
  margin-bottom: 60px;
}
.why-choose h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.why-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.why-card {
  background: var(--bg-light);
  flex: 1 1 220px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-light);
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-card:hover, .why-card:focus {
  box-shadow: 0 8px 20px var(--shadow-strong);
  transform: scale(1.07);
  outline: none;
}
.why-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.why-card:hover .why-icon,
.why-card:focus .why-icon {
  color: var(--accent-yellow);
}
.why-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-brown);
}

/* Team Section */
.team-section {
  margin-bottom: 60px;
}
.team-section h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
}
.team-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 18px var(--shadow-light);
  padding: 20px;
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover, .team-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-strong);
  outline: none;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  user-select: none;
  pointer-events: none;
}
.team-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 6px;
}
.team-role {
  font-weight: 500;
  color: #666;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px var(--shadow-light);
  margin-bottom: 60px;
}
.testimonials-section h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.testimonials-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: var(--bg-light);
  flex: 1 1 280px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 25px var(--shadow-strong);
  transform: scale(1.05);
  outline: none;
}
.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  user-select: none;
  pointer-events: none;
}
.testimonial-name {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.testimonial-text {
  font-style: italic;
  color: #555;
}

/* Call to Action Section */
/* Call to Action Section Improved */
.cta-section {
  background: #2e7d32; /* Darker green for better contrast */
  padding: 60px 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff; /* Pure white text */
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.7);
  margin-bottom: 80px;
  user-select: none;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.cta-button {
  background: #ffeb3b; /* Bright yellow */
  color: #2e7d32; /* Dark green text */
  border: none;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(255, 235, 59, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #fff176; /* Slightly lighter yellow */
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.9);
  transform: scale(1.05);
  outline: none;
}


/* Responsive */
@media (max-width: 900px) {
  .mission-vision {
    flex-direction: column;
  }
  .why-grid {
    flex-direction: column;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-cards {
    flex-direction: column;
  }
}
.cta-section h2 {
  font-size: 2rem;

}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cta-section h2 {
  font-size: 1.5rem;

}
}
