/* ========== GLOBAL CONTAINERS ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid helper */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.text-center {
  text-align: center;
}


/* ================= HERO SECTION ================= */
.page-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2a66 0%, #1a3b99 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #FFD700; /* gold accent */
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* ================= HERO PARTICLES ================= */
.particle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle-bg span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background-color: #FFD700;
  border-radius: 50%;
  opacity: 0.8;
  animation: float 10s linear infinite;
}

.particle-bg span:nth-child(odd) {
  background-color: #D32F2F; /* red particles */
  animation-duration: 12s;
}

@keyframes float {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(50px) rotate(360deg); opacity: 0; }
}

/* ================= HERO WAVE ================= */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.wave-path {
  animation: wave-move 8s ease-in-out infinite;
}

@keyframes wave-move {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-20px) translateY(2px); }
  100% { transform: translateX(0) translateY(0); }
}

/* ================= HERO CONTENT ================= */
.hero-inner {
  position: relative;
  z-index: 3; /* Above particles and wave */
}




.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin: 8px;
}

.btn-primary {
  background: #FFD700; /* gold */
  color: #0a2a66; /* dark blue text */
}

.btn-primary:hover {
  background: #D32F2F; /* red hover */
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #0a2a66;
}

/* ========== ABOUT SECTION ========== */
.section-about {
  padding: 80px 0;
  background: #ffffff; /* white background */
  color: #0a2a66;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #0a2a66;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========== MISSION SECTION ========== */
.section-mission {
  padding: 60px 20px;
  background: #0a2a66;
  color: #ffffff;
}

.section-mission h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #FFD700;
}

.section-mission p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ========== CALL TO ACTION SECTION ========== */
.section-cta {
  padding: 60px 20px;
  background: #D32F2F; /* red CTA section */
  color: #ffffff;
}

.section-cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #FFD700;
}

.section-cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ========== FADE-IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1.1rem;
  }
}

/* ================= IMAGE SLIDER ================= */

.image-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.image-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease;
}

.image-slider img.active {
  opacity: 1;
}