* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #03a9f4;
}

.nav-links a:active {
  color: #03a9f4;
}

.nav-links a[href='about.html'] {
  color: #60a5fa;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 8rem 1rem 5rem;
  text-align: center;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 9999px;
  color: #60a5fa;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
}

/* Story Section */
.story {
  padding: 3rem 1rem;
}

.story-card {
  background: linear-gradient(
    to bottom right,
    rgba(30, 41, 59, 0.5),
    rgba(30, 58, 138, 0.3)
  );
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid rgba(71, 85, 105, 0.5);
  backdrop-filter: blur(8px);
}

.section-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  margin: 0 auto 2rem;
}

.story-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.story-text:last-child {
  margin-bottom: 0;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 5rem 1rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: linear-gradient(
    to bottom right,
    rgba(30, 41, 59, 0.5),
    rgba(30, 58, 138, 0.3)
  );
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid rgba(71, 85, 105, 0.5);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: all 0.3s;
}

.mv-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.2),
    rgba(34, 211, 238, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #60a5fa;
}

.mv-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.mv-description {
  color: #cbd5e1;
  line-height: 1.8;
}

/* Team Section */
.team {
  padding: 5rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  color: #cbd5e1;
  max-width: 42rem;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(71, 85, 105, 0.5);
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.team-image {
  margin-bottom: 1.5rem;
}

.avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.2),
    rgba(34, 211, 238, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #60a5fa;
  border: 2px solid rgba(96, 165, 250, 0.3);
}

.team-name {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #60a5fa;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Values Section */
.values {
  padding: 5rem 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(71, 85, 105, 0.5);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.value-title {
  font-size: 1.25rem;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.value-description {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 2rem 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.5);
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .story-card,
  .mv-card {
    padding: 2rem 1.5rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
