/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0f172a;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00c6ff, #6a11cb);
  -webkit-background-clip: text;
  color: transparent;
}

.logo i {
  font-size: 2.2rem;
  color: #00c6ff;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #00c6ff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 100px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00c6ff, #6a11cb);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #94a3b8;
}

.about-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.section-title p {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00c6ff;
}

.about-text p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.floating-card {
  position: absolute;
  background: #1e1e1e;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2e3440;
  text-align: center;
  transition: transform 0.5s ease;
}

.floating-card:hover {
  transform: translateY(-10px);
}

.floating-card i {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 10px;
}

.floating-card h4 {
  font-size: 1.1rem;
  color: #f5f5f5;
  margin-bottom: 8px;
}

.floating-card p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.card-1 { top: -20px; left: -30px; animation: float 6s ease-in-out infinite; }
.card-2 { bottom: -20px; right: -30px; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.team-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  margin: 40px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background: #1e1e1e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #2e3440;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.member-image { width: 150px; 
  height: 150px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; 
  border: 4px solid #6a11cb; background: linear-gradient(135deg, #00c6ff, #6a11cb); 
  display: flex; align-items: center; justify-content: center; }

.member-image i {
  font-size: 4rem;
  color: #fff;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.member-role {
  color: #00c6ff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.member-bio {
  color: #94a3b8;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00c6ff;
  color: #fff;
  transform: translateY(-3px);
}

.mission-section {
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #2e3440;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.mission-card .mission-icon i {
  font-size: 2.5rem;
  color: #00c6ff;
  margin-bottom: 10px;
}

footer {
  padding: 60px 0 30px;
  background: #1e1e1e;
  border-top: 1px solid #2e3440;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #f5f5f5;
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00c6ff;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-grid,
  .mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    gap: 30px;
  }

  .floating-card {
    width: 150px;
    padding: 15px;
  }

  .mission-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .logo i {
    font-size: 1.8rem;
  }

  .nav-links {
    text-align: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .floating-card {
    display: none;
  }

  .member-image {
    width: 120px;
    height: 120px;
  }

  .member-image i {
    font-size: 3rem;
  }

  footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
}


.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* zoom-out */
  object-position: center;
}



