body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.hero, .technology, .media, .awards, .contact {
  padding: 3rem 2rem;
  text-align: center;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0px;
  font-weight: bold;
  width: 250px;
}

.media-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.media-logos img {
  height: 50px;
  opacity: 0.9;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
}

button {
  padding: 0.75rem;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 8px;
}

footer {
  background: #111;
  color: #aaa;
  padding: 2rem 2rem 1rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-columns div {
  min-width: 150px;
}

footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

footer a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
}
.hero-section {
  height: 100vh;
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

#changing-word {
  color: #737373;
  display: inline-block;
  transition: all 0.5s ease;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ffffff10;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #737373;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(115, 115, 115, 0.2);
}

.hero-btn:hover {
  background: #737373;
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#changing-word {
  color: #01ffcd;
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: all 0.5s ease;
  text-decoration-color:#01ffcd;

}

.word-exit {
  opacity: 0;
  transform: translateY(15px); /* Now goes down */
}

.word-enter {
  opacity: 0;
  transform: translateY(-15px); /* Enters from top to bottom */
}

.word-visible {
  opacity: 1;
  transform: translateY(0);
}

