/* 🌐 Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #1a1a1a;
}

/* 🔵 Hero Banner */
.rsk-marquee-container {
  position: relative;
  height: 60vh;
  overflow: visible;
}
.rsk-marquee-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  position: relative;
}

.rsk-marquee-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.rsk-marquee-overlay-card {
  max-height: 160px;       /* ⬅️ Upper limit for card height */
  overflow: hidden;        /* ⬅️ Prevents content from spilling out */
  padding: 0.5rem 1rem;     /* ⬇️ Keeps internal spacing tight */
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  z-index: 2;
}


.ps-btn-primary {
  background-color: #b31b1b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}
/* Optional: tighter child spacing */
.rsk-marquee-overlay-card h2,
.rsk-marquee-overlay-card p,
.rsk-marquee-overlay-card a {
  margin: 0.5rem 0;
}

/* 🧱 Deal Grid */
.deal-grid-section {
  padding: 4rem 2rem;
  text-align: center;
}

.deal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.deal-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem;
  max-width: 280px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.deal-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.deal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.deal-type {
  font-weight: bold;
  color: #b31b1b;
  margin-bottom: 0.5rem;
}

.deal-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.deal-details {
  font-size: 0.9rem;
  color: #555;
}

.ps-btn-text {
  display: inline-block;
  margin-top: 0.5rem;
  color: #b31b1b;
  font-weight: bold;
  text-decoration: none;
}

.ps-btn-text:hover {
  text-decoration: underline;
}

/* 🚀 CTA Banner */
.card-background-white {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* 🧭 Footer */
.ps-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.footer-links a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact {
  margin-top: 1rem;
}

.social-icons img {
  width: 24px;
  margin: 0 0.5rem;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .deal-grid,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .deal-card {
    max-width: 100%;
  }

  .rsk-marquee-overlay-card {
    width: 90%;
    padding: 1rem;
    left: auto;
    right: 5%;
    transform: translateY(-50%);
    
  }
}
