/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background: #fff;
  color: #333;
}
.section-title {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 28px;
  font-weight: 700;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar .logo img {
  height: 50px;
  width: auto;
  max-height: 60px;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f39c12;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* ================= SLIDER ================= */
.slider {
  position: relative;
  max-width: 100%;
  height: 450px;
  overflow: hidden;
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.slide.active {
  left: 0;
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}
.prev { left: 15px; }
.next { right: 15px; }
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

/* ================= PRODUCT GALLERY ================= */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px 40px;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.product-card img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  padding: 8px;
}
.product-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #222;
}
.product-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Product Cards */
@media (max-width: 992px) {
  .product-card img {
    max-height: 220px;
  }
}
@media (max-width: 576px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 15px;
  }
  .product-card img {
    max-height: 180px;
    padding: 6px;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .product-card p {
    font-size: 0.85rem;
  }
}

/* ================= PRODUCT DESCRIPTION ================= */
.product-description {
  text-align: center;
  padding: 40px 20px;
  background: #f7f7f7;
}
.product-description h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: white;
  padding: 40px 20px 20px;
  position: relative;
  border-top: 20px solid #f39c12; /* Top orange border */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 220px;
  
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color:white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color:white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: orangered;
}

.footer p {
  margin: 8px 0;
  color: white;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: orangered;
}

.footer-logo {
  max-width: 180px;   /* Standard size limit */
  height: auto;       /* Aspect ratio maintain karega */
  display: block;
}

/* Responsiveness ke liye */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 140px; /* Tablet ke liye chhota */
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-width: 110px; /* Mobile ke liye aur chhota */
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-icons a {
  color: #f39c12;
  font-size: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}


 /* product detail section 1litr can */
  
/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ================= PRODUCT DETAIL SECTION ================= */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap; /* Responsive wrapping */
}

.section img {
  width: 100%;
  max-width: 450px; /* Controls max image size */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.text-content {
  max-width: 500px;
}

.text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.text-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.text-content button {
  padding: 12px 25px;
  border: none;
  background: black;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.text-content button:hover {
  background: #444;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }
  .text-content {
    max-width: 100%;
  }
  .section img {
    max-width: 100%; /* Full width on mobile */
  }
}

/* ================= BANNER SECTION ================= */

/* ================= BANNER SECTION ================= */
.banner-section {
  width: 100%;
  overflow: hidden; /* hides extra part if image is too large */
}

.banner {
  width: 100%;          /* Full width across screen */
  height: auto;         /* Keeps aspect ratio */
  display: block;       /* Removes unwanted bottom space */
  object-fit: cover;    /* Ensures image covers the area nicely */
  max-height: 350px;    /* Limit banner height on desktop */
}

/* Mobile optimization */
@media (max-width: 768px) {
  .banner {
    max-height: 250px;  /* smaller height on mobiles */
  }
}
/* whatsapp button css */
   .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      box-shadow: 0 6px 18px rgba(37,211,102,0.24);
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 10px 24px rgba(37,211,102,0.28);
    }

    .whatsapp-float.pulse::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: rgba(37,211,102,0.18);
      animation: pulse 1.8s infinite;
      z-index: -1;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.9 }
      70% { transform: scale(1.9); opacity: 0 }
      100% { transform: scale(1.9); opacity: 0 }
    }

    @media (max-width: 420px) {
      .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
    }

    .wh-label {
      position: fixed;
      right: 92px;
      bottom: 28px;
      background: #fff;
      color: #111;
      padding: 10px 12px;
      border-radius: 24px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      font-size: 14px;
      display: none;
      z-index: 9998;
    }
  