* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #070a13;
  color: white;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
}

.logo-box {
  width: 45px;
  height: 45px;
  background:linear-gradient(135deg, #00eaff, #8a2cff);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 0 25px #00eaff;
}

.navbar a {
  color: #ddd;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #00eaff;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(7,10,19,0.75), rgba(7,10,19,0.95)),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b") center/cover;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 720px;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00eaff, #b56cff);
  color: transparent;
}

.hero p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #00eaff, #8a2cff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(0,234,255,0.5);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.08);
}

.section {
  padding: 110px 8%;
  text-align: center;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-desc {
  color: #aaa;
  margin-bottom: 45px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
  backdrop-filter: blur(15px);
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 35px rgba(0,234,255,0.25);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card h3 {
  margin: 20px 0 10px;
  color: #00eaff;
}

.card p {
  color: #bbb;
  padding: 0 20px 25px;
}

.about p {
  max-width: 900px;
  margin: auto;
  color: #ccc;
  line-height: 1.8;
  font-size: 18px;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.team-card {
  padding: 35px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(138,44,255,0.3);
}

.team-card h3 {
  color: #00eaff;
  margin-bottom: 10px;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact input,
.contact textarea {
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
}

.contact textarea {
  height: 140px;
  resize: none;
}

.contact button {
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #00eaff, #8a2cff);
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.company-list span {
  padding: 18px 35px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #00eaff;
}

footer {
  padding: 25px;
  text-align: center;
  background: #05070d;
  color: #999;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  width: 90%;
  max-width: 650px;
  background: #101522;
  border-radius: 24px;
  overflow: hidden;
  animation: modalOpen 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 50px rgba(0,234,255,0.25);
  position: relative;
}

.modal-content img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.modal-content h2 {
  padding: 25px 30px 10px;
  color: #00eaff;
}

.modal-content p {
  padding: 0 30px 35px;
  color: #ccc;
  line-height: 1.7;
}

.close {
  position: absolute;
  right: 20px;
  top: 12px;
  font-size: 35px;
  cursor: pointer;
  color: white;
  z-index: 5;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .navbar {
    text-align: center;
  }

  .navbar a {
    display: inline-block;
    margin: 7px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }
}