/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #ff6a00, #ffcc00);
  padding: 10px 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #333;
}

.search-box input {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height */
    overflow: hidden;
    display: flex;
}

.banner-slider .slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    animation: slideAnimation 18s infinite ease-in-out;
}

.banner-slider img,
.banner-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* No zoom/stretch */
}

@keyframes slideAnimation {
    0% { transform: translateX(0); }
    30% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    63% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    96% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}


/* ===== BRANDS ===== */
.brands {
  padding: 30px 20px;
  text-align: center;
  background: #fff;
}

.brands h2 {
  color: #ff6a00;
  margin-bottom: 20px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.brand-box {
  background: linear-gradient(145deg, #ffe259, #ffa751);
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
  color: white;
  font-weight: bold;
}

.brand-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.brand-box img {
  height: 50px;
  margin-bottom: 10px;
}

/* ===== FEATURED PRODUCTS ===== */
.featured {
  padding: 30px 20px;
  text-align: center;
  background: #fff;
}

.featured h2 {
  color: #ff6a00;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.product {
  background: linear-gradient(145deg, #89f7fe, #66a6ff);
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
  color: white;
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product img {
  max-width: 100%;
  border-radius: 8px;
}

/* ===== MAP ===== */
.map {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}

.map h2 {
  color: #ff6a00;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(to right, #ff6a00, #ffcc00);
  color: white;
  text-align: center;
  padding: 10px;
}

/* ===== WHATSAPP FLOAT (Right Side) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  height: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
/* ===== BRAND GRID ===== */
.brands {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: white;
}

.brands h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.brand-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
  color: black;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brand-box img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.brand-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* ===== BRAND PAGE PRODUCTS ===== */
.brand-page {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
}

.brand-page h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 25px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.product {
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h3 {
  font-size: 18px;
  margin: 10px 0;
}

.product p {
  font-size: 16px;
  font-weight: bold;
  color: #e91e63;
}

.product-actions {
  margin-top: 10px;
}

.product-actions .btn {
  display: inline-block;
  padding: 8px 12px;
  margin: 5px;
  background: #2196f3;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.product-actions .btn:hover {
  background: #0d47a1;
}
.products-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns desktop & mobile */
  gap: 15px;
  padding: 20px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 16px;
  color: #333;
}
.banner-video {
  width: 100%;
  height: 200px; /* Banner ki height adjust karein */
  object-fit: cover; /* Video ko crop karke banner shape me fit karega */
  display: block;
}
