* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

/* HERO */
.hero {
  height: 420px;
  margin-top: 115px; /* Clear fixed header */
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d")
    center/cover no-repeat;
}

.hero-overlay {
  height: 100%;
  background: linear-gradient(rgba(20,40,90,.85), rgba(20,40,90,.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  color: #fff;
  font-size: 42px;
}

.hero h1 span {
  color: #f28c28;
}

.hero p {
  margin-top: 10px;
  color: #eaeaea;
  max-width: 700px;
  font-size: 18px;
}

/* INFO SECTION */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 80px;
  background: #f6f8ff;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  transition: .3s;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card h2 {
  color: #1c2d6b;
  margin-bottom: 15px;
}

.info-card ul {
  list-style: none;
  margin-top: 20px;
}

.info-card ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f28c28;
}

/* OFFERINGS */
.offerings {
  padding: 80px;
  text-align: center;
}

.offerings h2 {
  color: #1c2d6b;
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.offer-card {
  background: #f9faff;
  padding: 30px;
  border-left: 6px solid #f28c28;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.offer-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
}

/* APPLY */
.apply {
  padding: 80px;
  background: #f6f8ff;
  text-align: center;
}

.apply h2 {
  color: #1c2d6b;
  margin-bottom: 30px;
}

.apply-item {
  background: #fff;
  margin: 15px auto;
  padding: 18px 30px;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.apply-link {
  font-weight: bold;
  color: #0056b3;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
}
/* ===== Scroll Reveal Base ===== */
.info-card,
.offer-card,
.apply-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
.hero h1 {
  animation: fadeDown 1s ease forwards;
}

.hero p {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-card:hover,
.offer-card:hover {
  box-shadow:
    0 20px 45px rgba(28, 45, 107, 0.25);
}
.apply-item {
  transition: all 0.3s ease;
}
/* ===== Interactive Apply Items ===== */
.apply-link {
  display: block;
  text-decoration: none;
  color: #0b2c54;
  font-weight: 600;
  border-left: 5px solid #f28c28;
  transition: all 0.3s ease;
}

.apply-link:hover {
  background: linear-gradient(
    90deg,
    rgba(242, 140, 40, 0.12),
    transparent
  );
  color: #0056b3;
  transform: translateX(6px);
}

/* ===== MAIN CTA BUTTON ===== */
.apply-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #0056b3, #003f8a);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 85, 170, 0.35);
  transition: all 0.35s ease;
}

.apply-cta:hover {
  background: linear-gradient(135deg, #f28c28, #ff9f43);
  box-shadow: 0 18px 40px rgba(242, 140, 40, 0.45);
  transform: translateY(-4px) scale(1.03);
}



.apply-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0, 85, 170, 0.25);
}

/* === MOBILE RESPONSIVE STYLES === */

/* Tablet */
@media (max-width: 992px) {
  .info-section {
    padding: 50px 30px;
    gap: 30px;
  }
  
  .offerings {
    padding: 50px 30px;
  }
  
  .apply {
    padding: 50px 30px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    height: 320px;
    margin-top: 105px;
  }
  
  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 15px;
  }
  
  .hero h1 span {
    display: block;
    margin-top: 5px;
  }
  
  .hero p {
    font-size: 14px;
    padding: 0 15px;
    margin-top: 15px;
  }
  
  /* Info Section */
  .info-section {
    padding: 30px 15px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .info-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .info-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .info-card p {
    font-size: 14px;
  }
  
  .info-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  /* Offerings Section */
  .offerings {
    padding: 30px 15px;
  }
  
  .offerings h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .offer-card {
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .offer-card h3 {
    font-size: 16px;
  }
  
  .offer-card p {
    font-size: 13px;
  }
  
  /* Apply Section */
  .apply {
    padding: 30px 15px;
  }
  
  .apply h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .apply-item {
    padding: 15px 20px;
    margin: 10px auto;
    font-size: 14px;
    max-width: 100%;
    border-radius: 10px;
  }
  
  .apply-cta {
    padding: 14px 18px;
    font-size: 14px;
  }
  
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    height: 280px;
    margin-top: 100px;
  }
  
  .hero h1 {
    font-size: 20px;
  }
  
  .hero p {
    font-size: 13px;
  }
  
  .info-section {
    padding: 20px 12px;
  }
  
  .info-card {
    padding: 20px 15px;
  }
  
  .offerings {
    padding: 20px 12px;
  }
  
  .apply {
    padding: 20px 12px;
  }
  
  .apply-item {
    padding: 12px 15px;
    font-size: 13px;
  }
}

