.wrapper {
  background: linear-gradient(135deg, #0a192f 0%, #0d1b2a 100%);
  min-height: 100vh;
  color: #fff;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.95) 0%,
    rgba(13, 27, 42, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 60vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.title-wrapper {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-section h1 {
  font-size: 4.5rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-section p {
  font-size: 1.3rem;
  color: #a8b2d1;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem 2rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  min-width: 250px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  flex: 1;
}

.stat-card h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card p {
  color: #a8b2d1;
  font-size: 1.1rem;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 6rem 2rem;
  text-align: center;
}

.mission-vision-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.mission:hover,
.vision:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-circle i {
  font-size: 2rem;
  color: #fff;
}

/* Section Headers */
section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section Containers */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.services h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card p {
  color: #a8b2d1;
  line-height: 1.6;
}

/* Values Section */
.values {
  padding: 6rem 2rem;
  text-align: center;
}

.values h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.value-card p {
  color: #a8b2d1;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1rem;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .stats-section {
    padding: 3rem 1rem 0;
    gap: 1.5rem;
  }

  .stat-card {
    min-width: 200px;
    padding: 1.5rem;
  }

  .section-container {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .services h2,
  .values h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .service-card,
  .value-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 4rem 1rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    white-space: normal;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .stats-section {
    padding: 2rem 1rem 0;
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 300px;
  }

  .services,
  .values {
    padding: 4rem 1rem;
  }

  .service-card,
  .value-card {
    padding: 1.5rem;
  }

  .service-card i,
  .value-card i {
    font-size: 2rem;
  }

  .services h2,
  .values h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
