body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #d8dfdf, #1e1a22, #99939f, #6c6a6c);
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.wholesale-tagline {
  color: #ffcc33;            /* Premium gold tone */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 10px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}


h1 {
    font-style: normal;
    color: rgb(183, 163, 14);
    font-size: 100px;
    font-weight: 1800;
    text-align: center;
    
    background-image: url('wb.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    background-blend-mode: darken;       /* Blend color with image */

    padding: 200px;
}
    

h2{
    text-align: left; 
    font-family:serif;
}
p{
    text-align: center;
    font-family: serif;
    font-weight: 400;
    font-size:200%;
}
.image-row {
    display: flex;             /* Arrange images in a horizontal row */
    justify-content: center;   /* Center the whole row */
    align-items: center;       /* Align images vertically */
    gap: 20px;                 /* Space between images */
    padding: 20px;
  }
  
  .image-row img {
    width: 450px;              /* Set a fixed width for images */
    height: 1000;              /* Maintain aspect ratio */
    border-radius: 8px;        /* Optional: rounded corners */
  }
  /* === FINAL WORKING CAROUSEL === */
/* === PROFESSIONAL AUTO-FADE CAROUSEL === */
/* === PROFESSIONAL AUTO SLIDER (PURE CSS) === */

  
  /* Mobile */
 



  /* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #e0f7fa, #b2ebf2);
    padding: 40px;
    margin: 30px auto;
    border-radius: 12px;
    max-width: 1100px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    gap: 40px;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-content h2 {
    font-size: 36px;
    color: #00695c;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .hero-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00796b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
    background-color: #004d40;
  }
  
  .hero-image {
    flex: 1;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 50%;
    height: 50;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image {
      margin-top: 20px;
    }
  }
    /* Contact Page */
.contact-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px 20px;
    background: #e0f2f1;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 36px;
    color: #004d40;
    margin-bottom: 10px;
  }
  
  .contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .contact-form {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-form button {
    padding: 12px 24px;
    background-color: #00796b;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #004d40;
  }
  
  .contact-info {
    flex: 1;
    min-width: 280px;
    text-align: left;
  }
  
  .contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00695c;
  }
  
  .contact-info p {
    font-size: 16px;
    margin: 8px 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info {
      text-align: center;
    }
  }
/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3b0a45;
    padding: 15px 30px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo img {
    height: 60px;         /* adjust logo size */
    width: auto;
    display: block;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links li {
    display: inline;
  }
  
  /* NAV MENU STYLES */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;  /* spacing between menu items */
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* ---- PREMIUM UNDERLINE HOVER EFFECT ---- */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffcc33;  /* gold underline */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Hover changes */
.nav-links a:hover {
  color: #ffcc33;
  text-shadow: 0px 0px 8px rgba(255, 204, 51, 0.7);
}


.nav-links a:hover::after {
  width: 70%; /* underline expands smoothly */
}

  
  .nav-links a:hover {
    color: #b2dfdb;
  }
  
  /* Responsive Nav */
  @media (max-width: 600px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
    }
  
    .nav-links li {
      margin-bottom: 10px;
    }
  }
  .map-container {
    margin-bottom: 40px;
  }
  
  .locations {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    text-align: center;
  }
  .footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
  }
  .discount-carousel {
    overflow: hidden;
    background-color: #fff176;
    color: #000;
    border-top: 1px solid #fdd835;
    border-bottom: 1px solid #fdd835;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
    position: relative;
  }
  
  
  .testimonials {
    background: #e3f2fd;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    color: #1565c0;
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .testimonial-list blockquote {
    font-style: italic;
    background: white;
    border-left: 5px solid #42a5f5;
    padding: 15px 25px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
  }
.hero-banner {
  background-image: url('your-image.jpg'); /* Replace with your image file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin: 4px 0;
}
h2 {
    background: rgba(0, 100, 0, 0.6); /* greenish background */
    padding: 20px;
    border-radius: 15px;
    color: #fffacd; /* light yellow text */
    font-size: 2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  /* === FINAL RESPONSIVENESS FIX BLOCK === */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix for large heading */
@media (max-width: 1024px) {
  h1 {
    font-size: 60px;
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
    padding: 50px 15px;
    line-height: 1.2;
  }

  p {
    font-size: 1.1rem;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row img {
    width: 90%;
    height: auto;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .hero-image img {
    max-width: 80%;
    height: auto;
  }

  .carousel img {
    width: 100%;
    height: auto;
  }

  .discount-carousel {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
    padding: 40px 10px;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    padding: 15px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .image-row img {
    width: 95%;
  }

  .caption {
    font-size: 18px;
    padding: 8px 12px;
    bottom: 10px;
    left: 10px;
  }
}
@media (max-width: 768px) {
  .carousel {
    width: 95%;
    max-height: 280px;
  }
  .slide {
    height: 280px;
  }
}
/* === GAP FIX BELOW CAROUSEL === */
.carousel {
  margin-bottom: 0;     /* remove extra margin below */
  padding-bottom: 0;
}

.slides {
  margin-bottom: -4px;  /* removes the inline-space gap caused by images */
}

.carousel img,
.slide img {
  display: block;        /* prevents inline spacing below images */
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .slide img {
    max-height: 280px;
  }
}
/* ===== Combined Floating Round Contact Panel ===== */
#contact-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* round button */
.cp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  outline: none;
}

.cp-btn:active { transform: translateY(1px); }
.cp-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }

/* individual colors */
#cp-whatsapp { background: linear-gradient(180deg,#25D366,#128C7E); color: #fff; }
#cp-call     { background: linear-gradient(180deg,#ff9800,#f57c00); color: #fff; }
#cp-email    { background: linear-gradient(180deg,#3b82f6,#2563eb); color: #fff; }

/* icon sizes */
.cp-btn svg { width: 22px; height: 22px; }

/* mobile adjustments */
@media (max-width: 480px) {
  #contact-panel { right: 12px; bottom: 12px; gap: 10px; }
  .cp-btn { width: 48px; height: 48px; }
  .cp-btn svg { width: 20px; height: 20px; }
}
/* ===== Animated header social icons ===== */
.social-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* icon button */
.social-links li {
  --size: 36px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), background 180ms;
  transform-origin: center;
  opacity: 0;
  transform: translateY(-6px) scale(.95);
  animation: slidedown 600ms forwards;
  animation-delay: calc(0.08s * var(--i)); /* stagger */
}

.social-links li a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

/* svg sizing */
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

/* entrance keyframes */
@keyframes slidedown {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* hover - springy scale + color change */
.social-links li:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* individual brand colors on hover (subtle) */
.social-links li:hover a[href*="facebook"] svg,
.social-links li:hover a[aria-label="Facebook"] svg { color: #1877F2; }
.social-links li:hover a[href*="youtube"] svg,
.social-links li:hover a[aria-label="YouTube"] svg { color: #FF0000; }
.social-links li:hover a[href*="instagram"] svg,
.social-links li:hover a[aria-label="Instagram"] svg { color: #E1306C; }
.social-links li:hover a[href*="wa.me"] svg,
.social-links li:hover a[aria-label="WhatsApp"] svg { color: #25D366; }

/* small screens: hide icons to save space (or change to a collapsible menu) */
@media (max-width: 700px) {
  .social-links { display: none; }
}
/* ---------- Prevent social icons overlapping nav links ---------- */

/* make navbar a positioning context (if not already) */
.navbar {
  position: relative; /* required so absolute social icons are positioned relative to navbar */
  z-index: 10000;
}

/* give nav-links room on the right so icons don't sit on top of them */
.nav-links {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
  /* reserve space for desktop icons: increase if icons are wider */
  margin-right: 600px; /* <<< important — prevents overlap on desktop */
}

/* base icon styles */
.social-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.social-links li a svg {
  width: 26px;
  height: 26px;
  fill: white;
  transition: transform 0.18s ease, fill 0.18s ease;
}
/* ---------- DESKTOP: place icons inside navbar top-right (absolute) ---------- */
@media (min-width: 769px) {
  .social-links {
    position: absolute;
    right: 14px;                 /* distance from right edge of navbar */
    top: 50%;
    transform: translateY(-50%);
    flex-direction: row;
    gap: 14px;
    pointer-events: auto;
  }

  /* optional circular background for each icon, adjust if needed */
  .social-links li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.12);
  }
}

/* ---------- MOBILE: move icons to left fixed column to avoid bottom buttons ---------- */
@media (max-width: 768px) {
  /* remove the desktop margin reserve on small screens */
  .nav-links { margin-right: 0; }

  .social-links {
    position: fixed;
    left: 8px;                 /* safe left area */
    bottom: 100px;             /* sits above bottom float buttons */
    flex-direction: column;
    gap: 10px;
    padding: 4px;
    z-index: 99999;
  }

  .social-links li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.12);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }

  .social-links li a svg { width: 22px; height: 22px; }
}

/* ---------- tiny extra tweak for very small phones ---------- */
@media (max-width: 420px) {
  .social-links { left: 6px; bottom: 86px; }
  .social-links li { width: 36px; height: 36px; }
  .social-links li a svg { width: 20px; height: 20px; }
}
/* ===== BRAND COLOR HOVER EFFECTS ===== */

/* Facebook hover */
.social-links li:nth-child(1) a:hover svg {
  fill: #1877f2;  /* Facebook blue */
  transform: scale(1.2);
}

/* YouTube hover */
.social-links li:nth-child(2) a:hover svg {
  fill: #FF0000;  /* YouTube red */
  transform: scale(1.2);
}

/* Instagram hover (gradient simulation using pink-purple) */
.social-links li:nth-child(3) a:hover svg {
  fill: #E1306C;  /* Instagram pink */
  transform: scale(1.2);
}

/* WhatsApp hover */
.social-links li:nth-child(4) a:hover svg {
  fill: #25D366;  /* WhatsApp green */
  transform: scale(1.2);
}
/* inline contact next to logo */
.header-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}
.header-contact a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 2px 6px;
  border-radius: 6px;
}
.header-contact a:hover {
  background: rgba(255,255,255,0.04);
}

/* compact phone text on small screens */
@media (max-width: 860px) {
  .header-contact .phone-text { display: none; } /* hide number text, keep icon - keeps space small */
  .header-contact .mail-link { display: none; }   /* hide email if you want very compact header */
}

/* ===== Floating call bubble (optional) ===== */
.call-bubble {
  position: fixed;
  left: 18px;                 /* near left/logo area */
  top: 14px;                  /* align with header top; tweak as needed */
  z-index: 12000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg,#00c853,#00e676);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* hide bubble on very small screens if it clashes */
@media (max-width: 420px) {
  .call-bubble { left: 10px; top: 12px; width: 40px; height: 40px; }
}

/* hover */
.call-bubble:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

/* optionally hide the fixed bubble on very wide desktop if you only want inline visible */
@media (min-width: 1200px) {
  /* keep if you want both visible; comment out the next line if you'd like both */
  /* .call-bubble { display: none; } */
}



  

/* Main wrapper */
.carousel-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding-top: 0px; /* your vertical spacing */
}

/* Slide track */
.carousel-list {
  display: flex;
  gap: 0;                 /* FIXED — removed horizontal gap */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 32px 0;        /* vertical padding kept */
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Each slide */
.carousel-item {
  min-width: 100vw;        /* full screen width */
  max-width: 100vw;
  flex: 0 0 100vw;         /* FIXED — prevents trailing gap */
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;              /* FIXED — removed internal padding that caused extra width */
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide image */
.carousel-item img {
  width: 100%;
  height: 520px;
  border-radius: 0;
  display: block;           /* FIXED — removes inline gap */
  object-fit: cover;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(0,0,0,0.15);
  color: #222;
  font-size: 2rem;
  line-height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.carousel-btn-left { left: 12px; }
.carousel-btn-right { right: 12px; }
.carousel-btn:hover { background: rgba(0,0,0,0.35); }

/* Mobile */
@media (max-width: 600px) {
  .carousel-item {
      min-width: 100vw;
      max-width: 100vw;
  }
  .carousel-btn {
      width: 36px;
      height: 36px;
      font-size: 1.3rem;
      line-height: 36px;
  }
}



      
  
  