* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #020024;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

/* 🔥 Animated Logo */
.logo img {
  height: 100px; /* ⬅️ Increased from 60px to 100px */
  vertical-align: middle;
  animation: pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #1e90ff);
  background: transparent;
  border-radius: 50%;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px #00bfff);
}


/* 🔁 Pulse Animation Keyframes */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px #1e90ff);
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px #1e90ff);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1e90ff;
}

.quote-btn {
  background-color: #1e90ff;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  gap: 50px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text h1 .blue {
  color: #1e90ff;
}

.hero-text p {
  margin: 20px 0;
  color: #ccc;
}

.points {
  margin-top: 20px;
}

.points li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.points li::before {
  content: '•';
  color: #1e90ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-btn {
  margin-top: 30px;
  display: inline-block;
  background-color: #1e90ff;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn:hover {
  background-color: #006cd8;
}

.hero-image {
  width: 400px;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 0 15px #1e90ff);
  border-radius: 50%;
}

.hero-image:hover {
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    width: 300px;
    margin-top: 30px;
  }
}

/* ======= Footer Styling ======= */
footer {
  background-color: #000428; /* dark blue-black tone */
  padding: 40px 10%;
  color: white;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.mission-section {
  background: linear-gradient(145deg, #01012b, #020024);
  color: white;
  padding: 100px 10% 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.glow-text {
  font-size: 42px;
  color: #1e90ff;
  text-shadow: 0 0 10px #1e90ff, 0 0 30px rgba(30, 144, 255, 0.5);
}

.mission-content p {
  max-width: 800px;
  margin: 20px auto 60px;
  font-size: 18px;
  color: #ccc;
}

.mission-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
}

.mission-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.3);
}

.mission-card h3 {
  color: #1e90ff;
  margin-bottom: 10px;
  font-size: 20px;
}

.mission-card p {
  font-size: 15px;
  color: #eee;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: transform 0.3s;
  padding: 12px;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.rocket-wrapper {
  animation: floatRocket 2s ease-in-out infinite;
}

@keyframes floatRocket {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.flame {
  animation: flameFlicker 0.3s infinite alternate;
}

@keyframes flameFlicker {
  from {
    transform: scaleY(1);
    opacity: 1;
  }
  to {
    transform: scaleY(1.3);
    opacity: 0.7;
  }
}

.footer-content {
  text-align: center;
  padding: 30px 10px;
  background-color: #0a0a23;
  color: white;
}

.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: #1e90ff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a img {
  width: 30px;
  margin: 0 10px;
  filter: brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #1e90ff);
}

@media (max-width: 768px) {
  .hero, .service-cards, .team-cards, .project-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .service-card, .project-card, .team-card {
    width: 90%;
    margin: 0 auto;
  }
}


