/* ============== GLOBAL LAYOUT SAFETY – NO HORIZONTAL SCROLL ====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* ✅ horizontal scroll hide */
}


/* ========================  ✅ MOBILE TOP NAVBAR  =========================== */
.mobile-topbar {
  display: none; /* Default hidden */
  background-color: #f61212; /* Green shade */
  color: white;
  padding: 8px 2px;
  text-align: center;
  font-weight: 500;
  font-size: .9rem;
  width: 100%;
}

.mobile-topbar .topbar-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mobile-topbar .phone-link {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.mobile-topbar .phone-link:hover {
  text-decoration: underline;
}

   /* ✅ Show only in mobile view */
@media (max-width: 883px) {
  .mobile-topbar {
    display: block;
  }

  /* Hide contact number from main menubar in mobile */
  .navbar .contact-number,
  .menu-top-contact {
    display: none !important;
  }
}

   /* Common style for both numbers */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

   /* Icon round background */
.icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  font-size: 14px;
}

   /* WhatsApp icon special color */
.icon-circle.whatsapp {
  background: #22c55e;
}

/* Text */
.phone-text {
  white-space: nowrap;
}

/* 🔹 Hover: forward + up animation + glow */
.phone-link:hover {
  transform: translateY(-3px) translateX(3px); /* forward + up */
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
}

/* ✅ Only show in mobile + tablet */
@media (max-width: 992px) {
  .mobile-topbar {
    display: block;
  }
}

/* ✅ Hide on big desktop (already default hidden, but extra sure) */
@media (min-width: 993px) {
  .mobile-topbar {
    display: none !important;
  }
}


/* ==================== Navbar Styles ===================================== */
/* ==================== Navbar Styles ===================================== */
.navbar {
  width: 100%;
  background-color: #ef5959;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  top: 0;
  z-index: 1000;
  overflow: hidden;          /* text dono side se hide hoga */
  position: relative;
}

/* Outer container: load animation + inner padding for border se gap */
.navbar-content {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 350;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
  padding: 0 30px;           /* yahan se hi right & left border se "kuch door" wala effect aayega */

  animation: growUp 0.9s ease-out forwards;
}

/* Inner span: only sliding/marquee ka kaam */
.navbar-text {
  display: inline-block;
  white-space: nowrap;

  /* 1s delay so growUp pehle chale */
  animation: marquee 15s linear infinite 1s;
}

/* 🌿 Load Animation (same logic) */
@keyframes growUp {
  0% {
    transform: scale(0.8) translateY(15px);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* 🌟 Marquee:
   - 100% se start = container ke right side se bahar
   - -100% par = left ke bahar
   Padding ki wajah se woh borders se thoda door hi dikhai / hide hoga
*/
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 📱 Mobile / tablet par bhi same effect – sirf font thoda chhota */
@media (max-width: 768px) {
  .navbar-content {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .navbar-text {
    animation: marquee 12s linear infinite 1s;
  }
}



/* ============================ CODE FOR MENU BAR  ======================= */
.menu-section nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px;
  background-color: #e9f2e7;
  /* border-bottom: 2px solid #0b6939; */
  font-family: "Poppins", sans-serif;
  position: relative;
  height: 80%;
}

.logo img { height: 130px; width: 120px; }


.menu-center ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.menu-center ul li a {
  text-decoration: none;
  color: #f61212;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-center ul li a:hover {
  color: rgba(164, 6, 182, 0.675);
}

.phone {
  margin-left: 40px;
}
.phone a {
  text-decoration: none;
  color: #f61212;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-icon {
  background-color: #f61212;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}
.hamburger span {
  height: 2px;
  width: 22px;
  background-color: #f61212;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Hamburger cross animation */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .menu-center {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 2px solid #0b6939;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .menu-center.active { display: block; }
  .menu-center ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  .hamburger { display: flex; }
  .phone { margin-left: 0; }
}

.menu-center ul li a:hover {
  color: rgba(164, 6, 182, 0.675);
}

/* 🏠 Home tag always blue rahe */
.menu-center ul li:first-child a {
  color: #f61212;
  font-weight: bold;
}

/* ✨ Baaki tags hover hone par blue ho */
.menu-center ul li a:hover {
  color: rgba(164, 6, 182, 0.675);
}

/* 🌐 Slide Menu Style */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px; /* hidden by default */
  width: 260px;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  z-index: 9999;
  padding-top: 60px;
}

/* Slide menu active state */
.side-menu.active {
  left: 0;
}

/* Menu links inside slide */
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  padding: 15px 25px;
  border-bottom: 1px solid #f1f1f1;
}

.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: normal;
  display: block;
  transition: 0.3s;
}

.side-menu ul li a:hover {
  color: blue;
}

/* ❌ Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

/* ✨ Menu Grow-up Animation */
@keyframes growUp {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* 🌿 Apply animation when page loads */
.menu-section nav,
.menu-section .logo img,
.menu-section .menu-center ul li,
.menu-section .phone {
  animation: growUp 0.8s ease-out forwards;
}

/* 🔹 Thoda delay har item me for cascading effect */
.menu-section .logo img {
  animation-delay: 0.1s;
}
.menu-section .menu-center ul li:nth-child(1) { animation-delay: 0.2s; }
.menu-section .menu-center ul li:nth-child(2) { animation-delay: 0.3s; }
.menu-section .menu-center ul li:nth-child(3) { animation-delay: 0.4s; }
.menu-section .menu-center ul li:nth-child(4) { animation-delay: 0.5s; }
.menu-section .menu-center ul li:nth-child(5) { animation-delay: 0.6s; }
.menu-section .phone { animation-delay: 0.7s; }

/* 📱 MOBILE VIEW: Hide contact number in menubar */
@media (max-width: 768px) {
  .menu-section .phone {
    display: none !important;
  }
}


/* 📟 Tablet Header Fix – menu + phone in one row */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Menu container ko thoda compact karna */
  .header-menu,
  nav ul {
    gap: 14px !important;       /* Normal gap se thoda chota */
  }

  nav ul li a {
    font-size: 14px !important; /* Text thoda chota */
    padding: 6px 10px !important;
  }

  /* Logo area ka width adjust */
  .header-logo img {
    max-width: 140px !important;
  }

  /* Phone number section ko small + tight layout */
  .header-phone,
  .contact-number,
  .top-contact {
    font-size: 13px !important;
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important; /* break na ho */
  }

  /* Number ke icon ko bhi adjust */
  .header-phone i,
  .contact-number i {
    font-size: 16px !important;
    margin-right: 4px !important;
  }

  /* Header ko allow karte hain sab cheeze fit ho ek line me */
  .header,
  .nav-bar,
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important; /* wrap bilkul nahi hoga */
  }
}

/* 📟 Tablet view (menu + phone ek hi row, no wrap) */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Nav ka side padding kam karo */
  .menu-section nav {
    padding: 0 20px !important;
  }

  /* Logo chhota */
  .logo img {
    height: 90px !important;
    width: 90px !important;
  }

  /* Menu items ke beech gap kam */
  .menu-center ul {
    gap: 16px !important;
  }

  /* Menu text chhota + ek hi line me */
  .menu-center ul li a {
    font-size: 14px !important;
    white-space: nowrap !important;  /* "About Us" ek line me */
  }

  /* Phone side thoda close + text chhota */
  .phone {
    margin-left: 10px !important;
  }

  .phone a {
    font-size: 14px !important;
  }

  /* Puri nav line ko wrap hone se rok do */
  .menu-section nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap !important;
  }
}



/*================== 🌿 Banner Section======================= */
/*================== 🌿 Banner Section =======================*/
.banner-section {
  position: relative;
  width: 100%;
  height: 80vh;           /* desktop height */
  overflow: hidden;
}

/* each slide fills the section */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease-in-out, transform 0.7s ease;
}

.banner-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* 🌈 3D Animations (single clean set) */
@keyframes rotateYIn {
  from { transform: rotateY(90deg); opacity: 0; }
  to   { transform: rotateY(0);    opacity: 1; }
}
@keyframes rotateXIn {
  from { transform: rotateX(90deg); opacity: 0; }
  to   { transform: rotateX(0);     opacity: 1; }
}
@keyframes flipIn {
  from { transform: rotateY(-180deg); opacity: 0; }
  to   { transform: rotateY(0);       opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(1.2); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes spinIn {
  from { transform: rotateZ(360deg) scale(0.8); opacity: 0; }
  to   { transform: rotateZ(0)      scale(1);   opacity: 1; }
}
@keyframes skewIn {
  from { transform: skewX(25deg); opacity: 0; }
  to   { transform: skewX(0);     opacity: 1; }
}
@keyframes rotateZoom {
  from { transform: rotateY(180deg) scale(1.3); opacity: 0; }
  to   { transform: rotateY(0)      scale(1);   opacity: 1; }
}
@keyframes fadeBlur3D {
  from { opacity: 0; transform: scale(1.1) rotateX(30deg); filter: blur(5px); }
  to   { opacity: 1; transform: scale(1)   rotateX(0);     filter: blur(0); }
}

/* ⬅️➡️ Arrows (desktop + tablet) */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(35, 34, 34, 0.3);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.arrow:hover {
  background: rgba(5, 135, 228, 0.6);
}

.arrow.left  { left: 20px;  }
.arrow.right { right: 20px; }

.arrow i {
  color: #000;
  font-size: 20px;
}

/* prev / next buttons */
#prev,
#next {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(83, 249, 8, 0.4);
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 50px;
  z-index: 9999;
  pointer-events: auto;
}

#prev { left: 15px; }
#next { right: 15px; }

.banner-section:hover #prev,
.banner-section:hover #next {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

#prev:hover,
#next:hover {
  background-color: rgba(5, 172, 243, 0.7);
  transform: translateY(-50%) scale(1.1);
}

/* ⚪ Dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #dfe5eb;
  transform: scale(1.2);
}

/* 📱 MOBILE – full width, full image, arrows hidden */
@media (max-width: 768px) {
  .banner-section {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  .banner-slide.active {
    opacity: 1;
    position: relative;  /* active wali hi height leti hai */
  }

  .banner-dots {
    bottom: 10px;
    transform: translateX(-50%) scale(0.9);
  }

  .arrow,
  #prev,
  #next {
    display: none !important;
  }
}

/* 📟 TABLET – full width, no cut */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner-section {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 320px;
    padding: 0;
    overflow: hidden;

    /* 🔑 wrapper ke center se bahar nikal ke pure viewport pe phaila do */
    margin: 0;
    margin-left: calc(50% - 50vw);
  }

  .banner-slide {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background-size: contain !important;          /* full image visible */
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}


/* 🖥️ Desktop & larger – immersive cover */
@media (min-width: 1025px) {
  .banner-section {
    width: 100%;
    height: 80vh;
  }

  .banner-slide {
    background-size: cover !important;
    background-position: center center !important;
  }
}




/* ==================== CODE FOR SHOP BY CATEGORY SECTION =================== */

/* gap variable only */
:root {
  --cat-gap: 24px;
}

/* Section container */
.category-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: #dddada;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.category-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

/* * HOVER – color + glow */ 
.category-header h2:hover {
  color: #ff3d3d;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 61, 61, 0.3);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  cursor: pointer;
}

/* arrows – desktop / tablet */
.category-arrows {
  position: absolute;
  right: 5%;
  display: flex;
  gap: 10px;
}

.arrow-btn {
  background: transparent;
  border: 2px solid transparent;
  font-size: 22px;              /* 🔺 thoda bada desktop/tablet */
  cursor: pointer;
  color: #090909;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 8px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}

.arrow-btn:hover {
  background: #e53935;          /* 🔴 red circle on hover */
  border-color: #e53935;
  color: #fff;
  transform: scale(1.1);
}

/* container */
.category-container {
  width: 100%;
  overflow: hidden;
  justify-content: center;
  position: relative;
}

/* track */
.category-track {
  display: flex;
  gap: var(--cat-gap);
  align-items: flex-start;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(.22, .9, .3, 1);
}

/* ✅ Desktop default: exactly 7 items */
.category-item {
  flex: 0 0 calc(
    (100% - (6 * var(--cat-gap))) / 7
  );
  max-width: calc(
    (100% - (6 * var(--cat-gap))) / 7
  );
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-item:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.category-item p {
  margin-top: 8px;
  font-size: 1.2rem;
}

.category-item a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.category-item a:hover {
  color: red;
}

/*  Tablet (max-width: 1024px) – exactly 4 items  */
@media (max-width: 1024px) {
  .category-item {
    flex: 0 0 calc(
      (100% - (3 * var(--cat-gap))) / 4
    );
    max-width: calc(
      (100% - (3 * var(--cat-gap))) / 4
    );
  }

  .arrow-btn {
    font-size: 20px;
    width: 34px;
    height: 34px;
    padding: 6px;
  }
}

/* Mobile (max-width: 768px) – exactly 2 items  */
@media (max-width: 768px) {

  .category-container {
    overflow: hidden;
    padding: 0 10px;
  }

  /* 2 items per row */
  .category-item {
    flex: 0 0 calc(
      (100% - (1 * var(--cat-gap))) / 2
    );
    max-width: calc(
      (100% - (1 * var(--cat-gap))) / 2
    );
  }

  .category-item img {
    height: 120px;
    object-fit: contain;
  }

  /* Arrows left / right of image container */
  .category-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* allow click only on buttons */
  }

  .arrow-btn {
    pointer-events: auto;
    font-size: 18px;
    width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #000;
    transition: all 0.25s ease;
  }

  .arrow-btn:hover {
    background: #e53935;       /* 🔴 red circle */
    border-color: #e53935;
    color: #fff;
    transform: scale(1.05);
  }

  .category-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .category-header h2 {
    font-size: 1.5rem;
  }
}

/* (optional) old slider-track if used somewhere else */
.slider-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 20s linear infinite;
}

.slider-track img {
  width: 250px;
  height: 150px;
  margin: 0 10px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.slider-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}






/* =================== CODE FOR SINGLE BANNER SECTION =============== */

/* .fullwidth-banner {
  width: 100%;
  padding: 20px 3%;
  background-color: #f9f9f9;
  box-sizing: border-box;
} */

/* .fullwidth-banner img {
  width: 100%;
  height: 420px;              {Desktop perfect fixed banner height}
  object-fit: cover;          [FULL WIDTH dekhega]
  display: block;
  border-radius: 20px;
  border: 3px solid orange;

  transition:
    transform 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Hover effect */
/* .fullwidth-banner img:hover {
  transform: translate(-5px, -5px);
  border-top: 2px solid orange;
  border-left: 2px solid orange;
  border-right: 5px solid orange;
  border-bottom: 5px solid orange;
  filter: brightness(0.98);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
} */

/* ===========================
      TABLET VIEW
=========================== */
/* @media (max-width: 992px) {
  .fullwidth-banner img {
    height: 330px;            Tablet ke liye best height
    object-fit: cover;        Tablet me bhi full width
    border-radius: 15px;
  }
} */

/* ===========================
      MOBILE VIEW
=========================== */
/* @media (max-width: 600px) {
  .fullwidth-banner img {
    height: auto;             Mobile me auto adjustment
    max-height: 260px;        No cut, perfect visible
    object-fit: contain;      Pure image without crop
    border-radius: 10px;
  }
}============================ REMOVE SINGLE BANNER======================== */



/* ============================= CODE FOR COMBO PACK ======================= */

/* ============================= CODE FOR COMBO PACK ======================= */
:root {
  --blue-top: #29b6f6;
  --blue-bottom: #0288d1;
  --card-radius: 12px;
  --gap: 20px;
}

/* SECTION BASE */
.best-sellers {
  background: linear-gradient(180deg, var(--blue-top), var(--blue-bottom));
  padding: 40px 6%;
  color: black;
}
.best-sellers h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
/* * HOVER – color + glow */ 
.best-sellers  h2:hover {
  color: #ff3d3d;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 61, 61, 0.3);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  cursor: pointer;
}

/* GRID */
.grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* PRODUCT CARD */
.product-card {
  background: #daf2f0;
  color: #111;
  border-radius: var(--card-radius);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}
.thumb {
  flex: 0 0 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb img {
  width: 100px;
  height: 125px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.thumb-link:hover img {
  transform: scale(1.08);
}
.product-info {
  flex: 1;
  text-align: left;
}
.category {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 6px;
}
.product-info h4 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 600;
}
.title-link {
  color: #111;
  text-decoration: none;
  position: relative;
}
.title-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.25s ease;
}
.title-link:hover::after {
  width: 100%;
}


/* BUY NOW button */
.buy-btn {
  margin-top: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #e63946;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.buy-btn:hover {
  background: #c42734;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.buy-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ===== RIGHT SLIDER ===== */
.right-slider {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: #daf2f0;
  border-radius: 14px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  aspect-ratio: 3 / 4;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
@media (min-width: 1101px) {
  .right-slider { aspect-ratio: 3 / 4; }
}
@media (max-width: 1100px) {
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(130px, auto);
  }
  .right-slider {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  .grid-wrap {
    grid-template-columns: 1fr;
  }
  .product-card {
    flex-direction: column;
    text-align: center;
  }
  .right-slider {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 480px) {
  .right-slider {
    aspect-ratio: 16 / 10;
  }
}

/* ===== ENQUIRY MODAL STYLES (same as other pages) ===== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.60);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 16px;
  z-index: 100000;
}
.enquiry-modal.open {
  display: flex;
}
.enquiry-modal-content {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.enquiry-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
}
.enquiry-modal-close:hover {
  color: #ef4444;
}
.enquiry-modal-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}
.enquiry-modal-subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  color: #6b7280;
}
.enquiry-modal-subtitle span {
  font-weight: 600;
  color: #ef4444;
}
.enquiry-field {
  margin-bottom: 12px;
}
.enquiry-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}
.enquiry-field label span {
  color: #ef4444;
  margin-left: 2px;
}
.enquiry-input,
.enquiry-textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-input:focus,
.enquiry-textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
}
.enquiry-textarea {
  resize: vertical;
  min-height: 70px;
}
.enquiry-purpose-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.enquiry-purpose-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.enquiry-purpose-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.enquiry-row-two {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 600px) {
  .enquiry-row-two {
    grid-template-columns: 1fr;
  }
}
.enquiry-success {
  display: none;
  margin: 6px 0 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 13px;
  border: 1px solid #bbf7d0;
}
.enquiry-submit-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.4);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.1s ease;
}
.enquiry-submit-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.5);
}
.enquiry-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4);
}





/* ======================== CODE FOR ABOUT SLIDE SECTION =======================*/
.about-section {
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
 background-color: transparent;

}

.about-container {
  background: url("new_banner.png") no-repeat center center/cover;
  border-radius: 10px;
  padding: 25px;
  /* max-width: 1200px; */
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 2px auto; /* 🔸 1–2px distance from parent container */
  background-color: transparent;

}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 65%;
  max-width: 500px;
  border-radius: 20px;
  transform: translateX(-20px);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: translateX(-5px) scale(1.1);
}

.about-text {
  flex: 1 1 50%;
  /* color: #333; */
  padding-left: 10px; /* image ke paas se start */
}

.about-text h2 {
  font-size: 30px;
  color: red;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* 🔸 Stylish Read More Button */
.read-more-btn {
  background: transparent;        /*remove white background */
  color: #e62929;                 /* text color */
  border: 2px solid #e62929;       /* orange border around text */
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 120px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;          /* remove underline */
  position: relative;
  z-index: 2;                     /* ensure it's visible above bg image */
}

.read-more-btn:hover {
  transform: scale(1.05);
  background: transparent;        /* no hover background */
  color: #eeecea;                 /* light orange on hover */
  border-color: red;
}
/* Read More Button – Shine Hover */
.read-more-btn {
  position: relative;
  overflow: hidden; /* shine effect bahar na nikle */
  display: inline-block;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: 0.5s;
}

.read-more-btn:hover::after {
  left: 100%; /* shine left → right */
}



/* ✅ Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    transform: none;
    width: 100%;
  }

  .about-text {
    padding-left: 0;
  }

  .read-more-btn {
    margin: 20px auto 0;
  }
}


/* ===================== NEW TOP SELLING PRODUCTS SLIDER (ISOLATED) ======================= */

.ts-section {
  background: #c8d286;
  padding: 10px 0;
  --ts-gap: 20px; /* <-- yeh naya variable */
}

.ts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 15px;
}

.ts-title {
  /* layout */
  display: center;      /* hover sirf text area par hi krne k liye */
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 14px;       /* underline ke liye space */
  overflow: hidden;           /* shine ko crop karne ke liye */

  /* typography */
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
  text-align: center;

  /* entry animation */
  opacity: 0;
  transform: translateY(16px);
  animation: tsTitleFadeInFinal 0.8s ease-out forwards;
}


  /* 🔻 Underline – always centered, scale se kaam hoga */
.ts-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 100%;  /* full text width base */
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #ff3d3d);

  transform: translateX(-50%) scaleX(0);   /* center se 0 length */
  transform-origin: center;                /* ⭐ CENTER ORIGIN ⭐ */
  opacity: 0;

  animation: tsTitleUnderlineScale 0.7s 0.25s ease-out forwards;
}


/* ✨ Shiny light layer (same as pehle) */
.ts-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  opacity: 0;
}

/* page load title fade-in */
@keyframes tsTitleFadeInFinal {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ page load underline: center se chhoti line (approx 35%) */
@keyframes tsTitleUnderlineScale {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(0.35);  /* ~ 35% width */
  }
}

/* HOVER – color + glow */
.ts-title:hover {
  color: #ff3d3d;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 61, 61, 0.3);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  cursor: pointer;
}

/* 🔥 HOVER – underline center se full width tak expand */
.ts-title:hover::after {
  transform: translateX(-50%) scaleX(1);  /* center se dono side expand */
  transition: transform 0.35s ease-out;
}


/* HOVER – shiny light sweep */
.ts-title:hover::before {
  animation: tsShine 0.8s ease-out forwards;
  opacity: 1;
}

/* Shine sweep animation */
@keyframes tsShine {
  0% {
    left: -120%;
    opacity: 0.2;
  }
  50% {
    left: 50%;
    opacity: 0.6;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* Slider viewport */
/* ===== Slider viewport – no half cut, fixed items per view ===== */
.ts-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;        /* center in container */
}

/* 🖥️ Desktop: exactly 4 full cards visible */
@media (min-width: 1025px) {
  .ts-slider {
    /* 4 cards × 230px + 3 gaps × var(--ts-gap) */
    max-width: calc(4 * 230px + 3 * var(--ts-gap));
  }
}

/* 📟 Tablet: exactly 3 full cards visible */
@media (min-width: 769px) and (max-width: 1024px) {
  .ts-slider {
    /* 3 cards × 210px (tumhare tablet width) + 2 gaps */
    max-width: calc(3 * 210px + 2 * var(--ts-gap));
  }
}

/* 📱 ULTIMATE MOBILE FIX — NO CUT, FULL CARD WIDTH */
@media (max-width: 768px) {

  /* Container full width */
  .ts-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Slider viewport also full width */
  .ts-slider {
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden;
  }

  /* Track gap small, so nothing sticks out */
  .ts-track {
    gap: 8px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* FULL-WIDTH CARD — REAL FIX */
  .ts-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Image height safe */
  .ts-img-wrap {
    height: 150px;
  }
}
/* 📱 Mobile – perfect centered card layout */
@media (max-width: 768px) {

  /* Container width full, but content centered */
  .ts-container {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;
  }

  .ts-slider {
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden;
  }

  /* Track spacing balanced */
  .ts-track {
    gap: 15px !important;
    padding: 0 12px !important;   /* center feel */
    box-sizing: border-box;
  }

  /* ⭐ Mobile card style – tablet/desktop jaisa clean center card */
  .ts-card {
    flex: 0 0 85% !important;    /* 90% = beautiful centered card */
    max-width: 85% !important;
    margin: 0 auto !important;   /* center align */
    border-radius: 12px;
    background: #f5d8d8;         /* same as desktop/tablet */
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  }

  /* Mobile image height safe */
  .ts-img-wrap {
    height: 160px !important;
  }
}


/* 📱 FINAL MOBILE FIX – single centered card, no next-card peek */
@media (max-width: 768px) {

  /* Section padding only top-bottom */
  .ts-section {
    padding: 30px 0;
  }

  /* Container full width, no extra side padding */
  .ts-container {
    width: 100%;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Slider viewport full width */
  .ts-slider {
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden;
  }

  /* Track: no gap, no extra padding -> pure 1-card width */
  .ts-track {
    gap: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  /* 🔑 Card width = 100% of viewport (no peek of next) */
  .ts-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    position: relative;
    background: #f5d8d8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }

  /* 👁️ Inner border/frame to give centered-box feel */
  .ts-card::before {
    content: "";
    position: absolute;
    inset: 10px;                 /* andar ka margin jaisa look */
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    pointer-events: none;
  }

  .ts-img-wrap {
    height: 160px !important;
  }
}

/* Horizontal row of cards */
.ts-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.5s ease;
}

/* Card – medium size */
.ts-card {
  background: #daf2f0;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;

  /* fixed medium width – responsive friendly */
  flex: 0 0 230px;
  max-width: 230px;
}

/* Hover effect */
.ts-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  border-color: rgba(255,165,0,0.5);
}

/* Image wrapper */
.ts-img-wrap {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* only card edge, not image crop */
  margin-bottom: 10px;
}

/* Product image – no cut */
.ts-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* image bilkul cut nahi hogi */
  transition: transform 0.3s ease;
}

/* Zoom image on card hover */
.ts-card:hover .ts-img {
  transform: scale(1.07);
}

/* Info text */
.ts-info {
  text-align: center;
  margin-top: auto;
}

.ts-cat {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 4px;
}

.ts-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 4px 0 8px;
}

.ts-price {
  font-size: 1rem;
  font-weight: 500;
}

.ts-price-new {
  color: #e63946;
  font-weight: 700;
  font-size: 1.5rem;
}

.ts-clickable {
  text-decoration: none;
  color: inherit;
}

/* Tablet – cards thoda adjust */
@media (max-width: 1024px) {
  .ts-card {
    flex: 0 0 210px;
    max-width: 210px;
  }
}

/* Mobile – mostly ek card view, thoda narrow */
@media (max-width: 768px) {
  .ts-section {
    padding: 30px 0;
  }

  .ts-card {
    flex: 0 0 75vw;   /* narrow but readable */
    max-width: 75vw;
  }

  .ts-img-wrap {
    height: 150px;
  }
}

/* 🔹 Buy Now button styling for Top Selling slider */
.ts-buy-btn {
  margin-top: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #e63946;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.ts-buy-btn:hover {
  background: #c42734;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.ts-buy-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ================= TOP SELLING ENQUIRY MODAL (SEPARATE) ================= */

.ts-enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.ts-enquiry-modal.open {
  display: flex;
}

.ts-enquiry-modal-content {
  width: 90%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.35);
  position: relative;
  animation: tsModalPopIn 0.25s ease-out;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@keyframes tsModalPopIn {
  from {
    transform: scale(0.86) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.ts-enquiry-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.ts-enquiry-close:hover {
  color: #111;
}

#tsEnquiryProductTitle {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e63946;
}

.ts-enquiry-subtitle {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #6b7280;
}

.ts-field-group {
  margin-bottom: 10px;
}

.ts-field-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #374151;
}

.ts-field-group input,
.ts-field-group textarea {
  width: 100%;
  padding: 8px 9px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ts-field-group input:focus,
.ts-field-group textarea:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 1px rgba(230,57,70,0.4);
}

.ts-two-cols {
  display: flex;
  gap: 10px;
}

.ts-two-cols .ts-field-group {
  flex: 1;
}

.ts-purpose-row {
  display: flex;
  gap: 16px;
  font-size: 0.86rem;
}

.ts-purpose-row label {
  font-weight: 500;
}

.ts-purpose-row input[type="checkbox"] {
  margin-right: 4px;
}

.ts-enquiry-submit {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #f97316, #ea580c, #e11d48);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(248,113,113,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ts-enquiry-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(248,113,113,0.45);
}

.ts-enquiry-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(248,113,113,0.3);
}

.ts-enquiry-success {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #16a34a;
  text-align: center;
}









/* ============================ KC PRODUCTS ON AMAZON SECTION ============================ */
.amazon-section {
  background: #ffffff;
  padding: 40px 6%;
}

.amazon-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 40px;
}

/* LEFT TEXT */
.amazon-text {
  flex: 1 1 45%;
}

.amazon-tag {
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 8px;
}

.amazon-heading {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #111827;
}

.amazon-sub {
  margin: 0 0 12px;
  font-weight: 600;
  color: #4b5563;
  font-size: 1.4rem;
}

.amazon-desc {
  margin: 0 0 22px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 1.2rem;
}

/* BUTTON with red outline + shine */
.amazon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #d52b2b;
  color: #d52b2b;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.amazon-btn-text {
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
}

/* shine strip */
.amazon-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: 0.45s ease;
}

.amazon-btn:hover {
  background: #d52b2b;
  color: #ffffff;
  transform: translateY(-1px);
}

.amazon-btn:hover::after {
  left: 110%;          /* left → right white light */
}

/* RIGHT BANNER */
.amazon-banner {
  flex: 1 1 55%;
}

.amazon-banner img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .amazon-container {
    flex-direction: column;
    padding: 24px 20px;
  }

  .amazon-text,
  .amazon-banner {
    flex: 1 1 100%;
    text-align: center;
  }

  .amazon-heading {
    font-size: 1.8rem;
  }

  .amazon-banner img {
    max-height: 260px;
  }
}


/* 🔹 Tablet View */
@media (max-width: 992px) {
  .deals-container {
    flex-direction: row;
    align-items: stretch; /* 🟢 image and text same height */
  }

  .deals-text {
    flex: 1;
    text-align: left;
    padding-left: 10px;
  }

  .deals-banner {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .deals-banner img {
    width: 100%;
    height: 100%; /* 🟢 image fills full height of text column */
    max-width: none;
    object-fit: cover;
    border-radius: 0px;
  }
}

/* 🔹 Mobile View */
@media (max-width: 768px) {
  .deals-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .deals-text {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }

  .deals-banner {
    order: 2;
    width: 100%;
  }

  .deals-banner img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    object-fit: cover;
  }
}



/* ============================ CODE FOR TESTIMONIALS ============================ */
.testimonial-section {
  background: #f8f9fa;
  padding: 10px 0;
}

.testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-container h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* * HOVER – color + glow */ 
.testimonial-container h2:hover {
  color: #ff3d3d;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 61, 61, 0.3);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  cursor: pointer;
}

.testimonial-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  background: #daf2f0;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #f4b400;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  min-height: 70px;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 15px 0;
}

.testimonial-card h4 {
  margin-top: 5px;
  font-weight: 600;
  color: #222;
}

@media (max-width: 992px) {
  .testimonial-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .testimonial-card {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


/* ================================== Footer Section ==================================*/
.footer-section {
  background: linear-gradient(to bottom, #d9dedc, #e7e3e3);
  color: #3a3838;
  font-family: "Poppins", sans-serif;
  padding-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 3px solid red;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-map {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 115px;
  margin: 0 auto -30px;
  display: block;
}

.footer-heading,
.footer-links h4,
.footer-contact h4,
.footer-map h4 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 22px;
  color: red;
}

.footer-heading-green {
  color: #0b6939;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 19px;
}

.footer-about p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: center;
}
.footer-about .read-more-btn .read-text:hover{
  color: white;
}
.footer-about .read-more-btn .arrow-btn:hover{
  color: white;
}


/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  padding: 9px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more-btn .read-text {
  color: #df830c;
}

.read-more-btn .arrow-btn {
  /* background: #d52b2b; */
  color: #df830c;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.read-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #e31e1e;
  color: white
}
/* .read-more-btn .read-text a:hover{
  color: #007bff;

} */


/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-left: 0;
}

.footer-links{
  text-align: left;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 600;
}

.footer-links ul li a:hover {
  color: #f61212;
}

.footer-links ul li a.green-link {
  color: #f61212;
  font-weight: 700;
}

/* Follow Us Section */
.footer-follow-heading {
  color: #f61212;
  font-size: 21px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f61212;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #212221;
  transform: scale(1.1);
}

/* Contact */
/* Contact section improved style */
.footer-contact .contact-item  {
  margin-bottom: 20px;

}

.footer-contact i {
  font-size: 22px;
  color: #f61212;
  display: block;
  margin-bottom: 5px;
}

.footer-contact .contact-label {
  display: block;
  color: #f61212;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}


/* Map */
.footer-map iframe {
  border-radius: 8px;
}

/* Copyright */
.footer-bottom {
  background: #f61212;
  text-align: center;
  padding: 10px 0;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    justify-items: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-map {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-logo {
    margin: 0 auto -40px;
  }
  .social-icons {
    justify-content: flex-start;
  }
}
/* ✅ Footer layout for large screens */
@media (min-width: 993px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns side by side */
    align-items: flex-start;
    gap: 70px;
    padding: 0 0px 40px;
    border-bottom: 3px solid #f61212;
  }

  /* Quick Links */
  .footer-links {
    text-align: left;
  }

  .footer-links h4 {
    color: #f61212;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-links ul {
    margin-top: 10px;
  }

  .footer-links ul li {
    margin-bottom: 12px;
  }

  .footer-links ul li a {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links ul li a:hover {
    color: #f61212;
  }

  /* Follow Us Section */
  .footer-follow-heading {
    color: #f61212;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: left;
  }

  .social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
  }

  .social-icons a {
    color: #f0f1f1;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.2);
    color: #f61212;
  }

  /* Contact Info */
  .footer-contact {
    text-align: left;
  }

  .footer-contact h4 {
    color: #f61212;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .footer-contact p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .footer-contact i {
    color: #f61212;
    margin-right: 10px;
  }

  /* Location */
  .footer-map {
    text-align: left;
  }

  .footer-map h4 {
    color: #f61212;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  /* Footer Map Section */
.footer-map iframe {
  width: 100%;
  height: 230px; /* 🔹 Increased height from 160px to 230px */
  border-radius: 10px;
  border: 2px solid #f61212;
  }
}
@media (max-width: 992px) {
  .footer-map iframe {
    height: 280px; /* 🔹 Tablet view me thoda aur bada */
  }
}



/* =========================🌿 Floating WhatsApp Icon ============================== */
.whatsapp-float {
  position: fixed !important;     /* <<< SCROLL KE BAAD BHI FIXED */
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;

  border-radius: 50%;
  text-align: center;
  font-size: 28px;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 999999 !important;     /* <<< HAR CHEEZ KE UPAR DIKHNE KE LIYE */
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* Mobile view */
@media (max-width: 992px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}







/* ================================== CODE FOR DUMMY CHECKUP ======================================================= */



















