/* RESET */
body {
  font-family: Arial;
  margin: 0;
  background: #f5f5f5;
}

/* HERO */
.hero {
  /* background: linear-gradient(to right, #000, #444); */
   background: url("hero1.png") no-repeat center/cover;
  color: white;
  padding: 30px 15px;
  text-align: center;
}

.hero h1 {
  font-size: 26px;
}

.hero p {
  font-size: 14px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 20px;
  margin-top: -20px;
  border-radius: 10px;
}

/* INPUT */
input, select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BUTTON */
button {
  padding: 12px;
  background: #ff9800;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  transition: 0.3s;
}

button:hover {
  background: #e68900;
}

/* VIDEO SECTION */
.video-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.video-container video {
 
  width: 100%; 
  max-width: 48%;
  border-radius: 10px;
  transition: 0.3s;
}

.video-container video:hover {
  transform: scale(1.05);
}

/* BENEFITS SECTION */
.benefits {
  text-align: center;
  padding: 40px 10px;
  background: #f8f8f8;
}

.benefits h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.benefit-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.benefit {
  background: white;
  padding: 20px;
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit p {
  font-size: 14px;
  color: #666;
}

/* YELLOW HIGHLIGHT */
.highlight {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000;
  font-weight: bold;
}

/* FOOTER */
.footer {
  background: url("gdp3.png") no-repeat center/cover;
  color: #fff;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 15px;
}

.footer-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.footer-content h2 {
  color: gold;
}

/* FOOTER BENEFITS (DIFFERENT CLASS - NO CONFLICT) */
.footer-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  
}

.footer-benefits span {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 20px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;

  
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  z-index: 1000;
  text-decoration: none;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 20px;
  }

  .video-container {
    flex-direction: column;
  }

  .video-container video {
    max-width: 100%;
  }

  .benefit {
    max-width: 100%;
  }
}
/* 🔥 OFFER SECTION */
.offer-section {
  padding: 40px 20px;
  background: #fff8e1;
  text-align: center;
}

.offer-box {
  max-width: 700px;
  margin: auto;
  background: linear-gradient(135deg, #fff3cd, #ffe082);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 2px dashed #ff9800;
}

.offer-box h2 {
  font-size: 30px;
  color: #d35400;
  margin-bottom: 20px;
}

.old-price {
  font-size: 20px;
  color: #555;
}

.old-price span {
  text-decoration: line-through;
  color: red;
  font-weight: bold;
}

.new-price {
  font-size: 36px;
  font-weight: bold;
  color: #27ae60;
  margin: 15px 0;
}

.discount-tag {
  font-size: 22px;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 15px;
}

.offer-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .offer-box h2 {
    font-size: 24px;
  }

  .new-price {
    font-size: 28px;
  }

  .discount-tag {
    font-size: 18px;
  }
}
