   /* 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;
  }
}

/* Contact Hero Section */
.contact-hero-section {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, #dff5e1, #a3d977);
  color: #2f4f2f;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}
.contact-hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-hero-section p {
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Section Layout */
.contact-section {
  margin-top: 60px;
}

/* Left Side: Contact Info */
.contact-info-left,
.contact-form-right {
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
}

/* Contact Info Section */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  padding: 28px 24px;
  text-align: center;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:focus,
.contact-card:hover {
  outline: none;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.contact-icon {
  font-size: 3.5rem;
  color: #4caf50;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: #2f4f2f;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus {
  color: #a3d977;
  text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
  margin-top: 70px;
  background: #f0f9f0;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(76, 175, 80, 0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  color: #4caf50;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 18px;
  font-size: 1rem;
  border: 2px solid #9bcf9b;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #4caf50;
  box-shadow: 0 0 8px #4caf50aa;
  outline: none;
}

textarea {
  min-height: 120px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 4px;
}

.btn-submit {
  background: #4caf50;
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover,
.btn-submit:focus {
  background: #3a8b3a;
  transform: scale(1.05);
  outline: none;
}

/* Form status message */
.form-status {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #4caf50;
  text-align: center;
}

/* Map Section */
.map-section {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(76, 175, 80, 0.15);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Social Connect Section */
.social-connect-section {
  margin-top: 60px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.social-connect-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #4caf50;
  margin-bottom: 14px;
}

.social-connect-section p {
  font-size: 1.1rem;
  color: #2f4f2f;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-icon {
  font-size: 2.8rem;
  color: #4caf50;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover,
.social-icon:focus {
  color: #a3d977;
  transform: scale(1.25);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .contact-info-left,
  .contact-section .contact-form-right {
    padding: 20px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .map-section iframe {
    height: 280px;
  }

  .social-icons {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-hero-section p {
    font-size: 1.1rem;
  }
}
