* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
}

a {
  text-decoration: unset;
}
  
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0e27;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  width: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  gap: 3rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-center {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-center a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-center a:hover {
  color: #00f5ff;
}

.language-selector {
  position: relative;
}

.language-btn {
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  color: #0a0e27;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.language-btn:hover {
  transform: translateY(-2px);
}

.language-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: #1a1f4d;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 10px;
  padding: 0.5rem 0;
  display: none;
  min-width: 120px;
}

.language-dropdown.active {
  display: block;
}

.language-dropdown button {
  width: 100%;
  background: none;
  border: none;
  color: #e0e0e0;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.language-dropdown button:hover {
  background: rgba(0, 245, 255, 0.1);
  color: #00f5ff;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.9) 0%,
      rgba(26, 31, 77, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&h=1080&fit=crop")
      center/cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 245, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 128, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #b0b0b0;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  color: #0a0e27;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

section {
  padding: 5rem 10%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #b0b0b0;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

#about {
  background: #0f1333;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c0c0c0;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.advantages-section {
  margin: 4rem 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.05),
    rgba(0, 128, 255, 0.05)
  );
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.advantage-item h4 {
  color: #00f5ff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.advantage-item p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-image-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  border: 2px solid rgba(0, 245, 255, 0.2);
  transition: transform 0.3s, border-color 0.3s;
}

.about-image-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 245, 255, 0.5);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
  padding: 1.5rem;
  color: #00f5ff;
  font-weight: 600;
  font-size: 1.1rem;
}

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

.service-card {
  background: linear-gradient(135deg, #1a1f4d 0%, #0f1333 100%);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 245, 255, 0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

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

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1000px;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b0b0b0;
  font-size: 1.1rem;
}

#services {
  background: #0f1333;
}

#contact {
  background: #0a0e27;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1f4d 0%, #0f1333 100%);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.contact-item h3 {
  color: #00f5ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-item p {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.contact-item a {
  color: #00f5ff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #0080ff;
}

footer {
  background: #0a0e27;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  color: #b0b0b0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-center {
    gap: 1rem;
    font-size: 0.9rem;
  }

  section {
    padding: 3rem 5%;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}
