* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f8ff;
  color: #222;
}

/* Hero */
.hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 80px 10%; background: linear-gradient(135deg,#0052D4,#65C7F7,#9CECFB);
  color: white; flex-wrap: wrap;
}
.hero h1 { font-size: 48px; animation: fadeInDown 1.2s ease; }
.hero p { max-width: 500px; margin: 20px 0; animation: fadeInUp 1.2s ease; }
.hero .btn {
  background: white; color: #0052D4; padding: 12px 28px;
  border-radius: 30px; text-decoration: none; font-weight: 600;
  transition: 0.3s;
}
.hero .btn:hover { background: #003f9a; color: #fff; }
.hero-img img { width: 250px; animation: float 3s ease-in-out infinite; }

/* Sections */
section { padding: 70px 10%; text-align: center; }
h2 { font-size: 32px; margin-bottom: 40px; position: relative; }

/* Choose Cards */
.cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.card {
  background: white; padding: 25px; border-radius: 12px;
  width: 280px; box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s; animation: fadeInUp 1s ease;
}
.card i { font-size: 40px; color: #0052D4; margin-bottom: 15px; }
.card:hover { transform: translateY(-10px); }

/* Timeline */
.timeline { display: flex; justify-content: space-around; flex-wrap: wrap; }
.step {
  background: white; border-left: 6px solid #0052D4; padding: 20px;
  border-radius: 8px; margin: 15px; width: 250px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}
/* ===== Program Roadmap ===== */
.timeline {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px; justify-items: center;
}

.step:hover { transform: scale(1.05); transition: 0.3s ease-in-out;}

/* Careers */
.career-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.career-card {
  background: white; padding: 20px; border-radius: 10px;
  width: 200px; text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.career-card i { font-size: 40px; color: #0052D4; margin-bottom: 10px; }
.career-card:hover { transform: scale(1.05); }

/* Infra */
.infra-gallery { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.infra-item { width: 380px; overflow: hidden; border-radius: 12px; box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.infra-item img { width: 100%; display: block; transition: 0.4s; }
.infra-item:hover img { transform: scale(1.1); }
.infra-item p { padding: 10px; background: #fff; }

/* Testimonials */
.testimonials { background: #0052D4; color: white; padding: 70px 10%; }
.testimonial-box {
  background: rgba(255,255,255,0.1); padding: 30px; border-radius: 12px;
  font-style: italic; animation: fadeIn 1.2s ease;
}

/* Explore */
.explore-links { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.explore-links a {
  background: white; padding: 12px 24px; border-radius: 8px;
  text-decoration: none; color: #0052D4; font-weight: 600;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1); transition: 0.3s;
}
.explore-links a:hover { background: #0052D4; color: white; }

/* Animations */
@keyframes fadeInUp { from {opacity:0; transform:translateY(40px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeInDown { from {opacity:0; transform:translateY(-40px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* Responsive */
@media(max-width:768px){
  .hero { flex-direction: column; text-align: center; }
  .hero-img img { margin-top: 20px; }
}
