body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ADD8E6, #333);
  color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fcfcfc;
  padding: 10px 20px;
}
.logo-img {
  height: 50px;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}
.nav-links a {
  color: #111240;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}

/* Blurred background image */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/images/hero-plane.jpg') center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.05); /* slightly zoom so edges don't show */
  z-index: 1;
}

/* Overlay to darken image and improve text contrast */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Content on top of blur and overlay */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.hero-content .btn {
  background: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background: #e65c00;
}
.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  background-color: #f8f9fc;
  text-align: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat {
  flex: 1 1 200px;
  max-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stat h2 {
  font-size: 3rem;
  color: #111240;
  margin: 0;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  display: inline-block;
}

.stat p {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  font-family: 'Barlow', sans-serif;
}

/* Bounce Drop Effect */
@keyframes dropBounce {
  0%   { transform: translateY(-50px); opacity: 0; }
  60%  { transform: translateY(10px); opacity: 1; }
  80%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
.cta-buttons .btn {
  background-color: #111240;
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 
    background-color 0.3s ease, 
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  display: inline-block;
}

/* Hover & focus effect */
.cta-buttons .btn:hover,
.cta-buttons .btn:focus {
  background-color: #0d0d33; /* darker brand color */
  color: #e0e0e0;
  transform: scale(1.05); /* slight grow */
  box-shadow: 0 4px 15px rgba(17, 18, 64, 0.6); /* subtle glow */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(17, 18, 64, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(17, 18, 64, 0.5);
  }
}

.cta-buttons .btn {
  animation: pulse 3s ease-in-out infinite;
}

.cta-buttons {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  gap: 20px;               /* space between buttons */
  margin: 40px 0;
  flex-wrap: wrap;         /* allow wrapping on small screens */
}

/* On smaller screens (under 600px), stack vertically */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;          /* full width buttons */
    max-width: 300px;     /* max width to avoid stretching too much */
    margin: 10px 0;       /* vertical spacing between buttons */
    text-align: center;
  }
}

.bounce {
  animation: dropBounce 0.6s ease-out;
}

.benefits {
  padding: 40px;
  background: #eaeaea;
  text-align: center;
}
.benefit-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.team {
  padding: 40px;
  text-align: center;
}
.team-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #002244;
  color: #fff;
  margin-top: 40px;
}
