/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb347;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #ffb347;
}

/* About Hero */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
}

.about-text {
  max-width: 600px;
  animation: fadeInLeft 1.5s ease forwards;
}

.about-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  animation: fadeInText 2s ease forwards;
}

.about-image img {
  max-width: 500px;
  border-radius: 12px;
  animation: fadeInRight 1.5s ease forwards;
}

/* Team Section */
.team {
  text-align: center;
  padding: 80px 50px;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease forwards;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.5s;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease forwards;
}

.team-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s;
}

.team-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #ffb347;
}

.team-card .quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #eee;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease;
}

.team-card:hover .quote {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  background: rgba(255,107,107,0.2);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255,107,107,0.4);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 50px;
  background: rgba(0,0,0,0.7);
}

footer a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ffb347;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}
