* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2d3748;
  background-color: #f7fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
  background: linear-gradient(135deg, #004c75, #00689c);
  padding: 1.2rem 3rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.8rem 3rem;
  background: #004c75;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo img {
  height: 45px;
  transition: transform 0.3s ease;
}
.navbar .logo img:hover {
  transform: scale(1.1);
}
.nav-links {
  display: flex;
  align-items: center;
}
.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}
.navbar a:hover::after {
  width: 100%;
}
.navbar .cta-button {
  background: #f44336;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
  transition: all 0.3s ease;
}
.navbar .cta-button:hover {
  background: #e53935;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 76, 117, 0.7), rgba(0, 76, 117, 0.7));
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideBackground 20s infinite ease-in-out;
  z-index: -1;
}
@keyframes slideBackground {
  0%, 20% { background-image: url('../images/doc.jpg'); opacity: 1; }
  25%, 45% { background-image: url('../images/teach.jpg'); opacity: 1; }
  50%, 70% { background-image: url('../images/farm.jpg'); opacity: 1; }
  75%, 95% { background-image: url('../images/pilot.jpg'); opacity: 1; }
  100% { background-image: url('../images/sci.jpg'); opacity: 1; }
}
.hero-content {
  text-align: center;
  color: white;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.hero .cta-button {
  background: #f44336;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
  transition: all 0.3s ease;
}
.hero .cta-button:hover {
  background: #e53935;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(244, 67, 54, 0.5);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #ffffff, #f7fafc);
  padding: 4rem 2rem;
  text-align: center;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 76, 117, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
}
.stat-card:hover::before {
  transform: scale(1.2);
}
.stat-icon {
  font-size: 2.5rem;
  color: #004c75;
  margin-bottom: 1rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #004c75;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.2rem;
  color: #718096;
  font-weight: 400;
}

/* Pathways Section */
.pathways {
  background: #f7fafc;
  padding: 4rem 2rem;
  text-align: center;
}
.pathways-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pathways-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004c75;
  margin-bottom: 3rem;
  position: relative;
}
.pathways-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #004c75, #f44336);
  border-radius: 2px;
}
.pathways-content {
  display: inline-flex;
  gap: 2rem;
}
.pathway-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 300px;
  flex-shrink: 0;
}
.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #004c75, #f44336);
  transition: all 0.3s ease;
}
.pathway-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.pathway-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.pathway-card:hover img {
  transform: scale(1.1);
}
.pathway-card h3 {
  font-size: 1.8rem;
  color: #004c75;
  margin-bottom: 1rem;
}
.pathway-card p {
  color: #718096;
  margin-bottom: 1.5rem;
}
.pathway-card .cta-button {
  background: linear-gradient(135deg, #004c75, #00689c);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pathway-card .cta-button:hover {
  background: linear-gradient(135deg, #00689c, #0084c4);
  transform: translateY(-2px);
}

/* Partners Section */
.partners {
  background: #f7fafc;
  padding: 4rem 2rem;
  text-align: center;
}
.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}
.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004c75;
  margin-bottom: 3rem;
  position: relative;
}
.partners-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #004c75, #f44336);
  border-radius: 2px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
.partner-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.partner-logo {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.partner-card:hover .partner-logo {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #004c75, #003d5b);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
footer a {
  color: #e2e8f0;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #f44336;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #004c75, #00689c);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .navbar a {
    margin: 1rem 0;
    text-align: center;
  }
  .navbar .cta-button {
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .pathways {
    padding: 2rem 1rem;
  }
  .pathways-title {
    font-size: 2rem;
  }
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    width: 80%;
    max-width: 300px;
  }
  .partners-title {
    font-size: 2rem;
  }
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .partner-logo {
    max-width: 120px;
  }
}


    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
        color: white;
      }

      .nav-links {
        flex-direction: column;
        background-color: #004c75;
        width: 100%;
        text-align: left;
        padding: 1rem 2rem;
      }

      .nav-links a {
        margin: 1rem 0;
      }

      .nav-links.active {
        display: flex;
      }
      
      .pathways-content {
        flex-direction: column;
        align-items: center;
      }

      .stats-container {
        flex-direction: column;
        align-items: center;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .partners-grid {
        grid-template-columns: 1fr;
      }
    }

