@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap');

body {
  background: radial-gradient(circle at top, #02131f 0%, #020d14 70%);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 31, 47, 0.85), rgba(2, 13, 22, 0.95));
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 200px;
  background: radial-gradient(circle at bottom, rgba(232,111,32,0.15), transparent);
}

.about-inner {
  max-width: 900px;
  margin: auto;
}

.about-section h1 {
  font-size: 52px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e86f20;
  margin-bottom: 10px;
}

.tagline {
  font-size: 22px;
  font-weight: 600;
  color: #f6f6f6;
  margin-bottom: 40px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #cddbe4;
  margin-bottom: 20px;
}

.about-section h2 {
  color: #fff;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission {
  color: #e86f20;
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

/* TEAM SECTION */
.team-section {
  padding: 80px 20px 120px;
  text-align: center;
}

.team-title {
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #9fb5c4;
  font-size: 18px;
  margin-bottom: 60px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(232, 111, 32, 0.4);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: all 0.5s ease;
}

.team-card:hover img {
  filter: brightness(1.1);
  transform: scale(1.08);
}

.team-info {
  padding: 25px 20px;
  text-align: left;
}

.team-info h3 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 22px;
}

.team-info .role {
  color: #e86f20;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-info .bio {
  color: #b9cbd8;
  font-size: 15px;
  line-height: 1.6;
}

/* ANIMATION ON SCROLL */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.team-card, .about-inner {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.team-card:nth-child(1) { animation-delay: 0.2s; }
.team-card:nth-child(2) { animation-delay: 0.4s; }
.team-card:nth-child(3) { animation-delay: 0.6s; }
.team-card:nth-child(4) { animation-delay: 0.8s; }

@media (max-width: 768px) {
  .about-section h1 {
    font-size: 38px;
  }
  .team-grid {
    gap: 25px;
  }
  .team-card {
    width: 90%;
  }
}
