/* ===================== GLOBAL STYLES ===================== */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  line-height: 1.7;
}

/* Navbar */
.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  color: #1a237e !important;
  font-weight: 500;
}

/* Carousel */
.carousel-item {
  height: 500px; /* adjust as needed */
  background-size: cover;
  background-position: center;
}

/* ===================== DEFAULT HERO (VIDEO) ===================== */
.hero-section {
  padding: 0;
  overflow: hidden;
  height: 300px;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

/* Hero Overlay & Content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 73, 171, 0.5);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Boxes */
.hero-box {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(26, 35, 126, 0.9);
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  min-width: 250px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.hero-box i {
  color: rgba(26, 35, 126, 0.9);
  margin-bottom: 10px;
}

.hero-box:hover {
  transform: translateY(-5px);
}

/* ===================== CARDS ===================== */
.card-title {
  color: #1a237e;
}

.card-img-top {
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.img-fixed {
  height: 200px;
  object-fit: cover;
}

/* ===================== FOOTER (DEFAULT) ===================== */
.footer {
  background-color: #1a237e;
  color: white;
  padding: 40px 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===================== FEATURE BOXES ===================== */
.feature-box:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

/* ===================== HERO BANNER (GENERIC IMAGE) ===================== */
.hero-banner {
  background: linear-gradient(rgba(12, 38, 206, 0.7), rgba(3, 33, 230, 0.7)),
              url('../images/banner1.png');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-banner h1 {
  font-size: 48px;
  font-weight: 600;
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-section h2 {
  color: #1a237e;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

/* ===================== OFFERS PAGE OVERRIDES ===================== */
body.offers .hero-section {
  background: url('../images/banner1.png') center center/cover no-repeat;
  padding: 80px 0;
  color: white;
  text-align: center;
  background-blend-mode: multiply;
  background-color: rgba(5, 35, 116, 0.5);
}

body.offers .footer {
  background-color: #052374;
}

body.offers .footer a {
  color: white;
}

body.offers .footer a:hover {
  text-decoration: underline;
}

body.offers .instagram-embed {
  max-width: 100%;
  margin-bottom: 40px;
}

/* ===================== FAQ PAGE OVERRIDES ===================== */
body.faq .hero-section {
  background: linear-gradient(rgba(57, 73, 171, 0.7), rgba(57, 73, 171, 0.7)), 
              url('../images/banner1.png');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

body.faq .hero-section h1 {
  font-size: 48px;
  font-weight: 600;
}

body.faq .faq-section h2 {
  color: #1a237e;
  font-weight: 600;
}

body.faq .faq-section ol li {
  margin-bottom: 15px;
}

/* ===================== TERMS PAGE OVERRIDES ===================== */
body.terms .hero-section {
  background: url('../images/banner.jpg') center center/cover no-repeat;
   padding: 60px 0;   /* reduce padding */
  height: 220px; 
  color: white;
  text-align: center;
  background-blend-mode: multiply;
  background-color: rgba(5, 35, 116, 0.7);
}

body.terms .footer {
  background-color: #052374;
}

body.terms .footer a {
  color: white;
}

body.terms .footer a:hover {
  text-decoration: underline;
}

body.terms .navbar-brand img {
  max-height: 50px;
}

/* ===================== PRIVACY POLICY PAGE OVERRIDES ===================== */
body.privacy .hero-section {
  background: url('images/banner.jpg') center center/cover no-repeat;
  padding: 40px 0;
  height: 180px;
  color: white;
  text-align: center;
  background-blend-mode: multiply;
  background-color: rgba(5, 35, 116, 0.7);
}

body.privacy .hero-section h1 {
  font-size: 50px;
  font-weight: 600;
}

body.privacy .footer {
  background-color: #052374;
}

body.privacy .footer a {
  color: white;
}

body.privacy .footer a:hover {
  text-decoration: underline;
}

body.privacy .navbar-brand img {
  max-height: 50px;
}

/* ===================== CANCELLATION PAGE OVERRIDES ===================== */
body.cancellation .hero-section {
  background: url('images/banner.jpg') center center/cover no-repeat;
  padding: 60px 0;   /* reduce padding */
  height: 220px;     /* match privacy style */
  color: white;
  text-align: center;
  background-blend-mode: multiply;
  background-color: rgba(5, 35, 116, 0.7);
}

body.cancellation .hero-section h1 {
  font-size: 50px;   /* consistent with privacy */
  font-weight: 600;
}


body.cancellation .footer {
  background-color: #052374;
}

body.cancellation .footer a {
  color: white;
}

body.cancellation .footer a:hover {
  text-decoration: underline;
}

body.cancellation .navbar-brand img {
  max-height: 50px;
}
