/* RESET PAGE */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  overflow-x: hidden;
}
body {
  position: relative;
}
/* HERO WRAPPER */
.hero {
  position: relative;
  height: 100%;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* HERO CONTENT */
.hero-content {
  color: #fff;
  z-index: 1;
  background: rgba(204, 0, 0, 0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-links a {
  display: block;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  margin: 10px 0;
  transition: color 0.3s;
}

.hero-links a:hover {
  color: #ffcc00;
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Force override Bootstrap's caption positioning */
.carousel-caption {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 2;
}

.carousel-caption h1,
.carousel-caption p {
  color: white;
}

.hero-links a {
  margin: 10px;
}
/* Ensure carousel always fills the screen */
#heroCarousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}
.carousel-item {
  height: 100vh;
}
/* Fix Bootstrap default spacing */
.carousel-item img {
  margin: 0;
  padding: 0;
  border: none;
}
/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-links a {
    font-size: 1rem;
  }
}


.about-section {
  background-color: #f9f9f9;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0a2540;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-list {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #bf0a30;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}

.highlight {
  font-weight: 600;
  color: #bf0a30;
  margin-top: 15px;
}

/* ===== SPONSOR A CHILD SECTION ===== */
.sponsor-child {
  background-color: #fff5f5;
}

.sponsor-child .section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.sponsor-child p.lead {
  font-size: 1.1rem;
}

.sponsor-child ul {
  padding-left: 0;
}

.sponsor-child ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333;
}

.sponsor-child ul li::before {
  content: "✔";
  color: #e74c3c;
  position: absolute;
  left: 0;
  top: 0;
}

.sponsor-child .btn {
  border-radius: 30px;
  padding: 10px 30px;
}

/* 🌍 WHAT WE DO SECTION */
.what-we-do {
  background-color: #f8f9fa;
}

.what-we-do .section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.what-we-do .section-subtitle {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.what-we-do img {
  transition: transform 0.3s ease;
}

.what-we-do img:hover {
  transform: scale(1.1);
}
.what-we-do i {
  transition: transform 0.3s ease;
}

.what-we-do i:hover {
  transform: scale(1.2);
  color: #ff5722 !important;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
}

