
/* ================= PROMO BANNER ================= */
.promo-banner-section {
  position: relative;
  padding: 60px 0;
  background: #f5f5f5;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.promo-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.promo-banner:hover img {
  transform: scale(1.05);
}

.promo-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.promo-content h2 {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
}

.promo-content p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

.promo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}

.promo-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.05);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .promo-banner img {
    height: 450px;
  }
  .promo-content {
    max-width: 90%;      /* Mobile me text width barh gayi */
    padding: 0 15px;     /* thodi side padding for better fit */
  }
  .promo-content h2 {
    font-size: 24px;
  }
  .promo-content p {
    font-size: 16px;
  }
  .promo-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
