/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #002244;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: background 0.3s;
}

.nav-links li a.active,
.nav-links li a:hover {
  background-color: #0066cc;
  border-radius: 5px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 3.1rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #0050b3, #003366);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero .btn {
  padding: 0.7rem 1.5rem;
  background-color: white;
  color: #003366;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 3rem 2rem;
  text-align: center;
}

.about h1, .about h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.about p {
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-preview {
  background-color: #f4f4f4;
  padding: 3rem 2rem;
  text-align: center;
}

.services-preview h2,
.services-preview h1 {
  color: #003366;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
  padding: 3rem 2rem;
  text-align: center;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Contact Links */
.contact-section {
  padding: 3rem 2rem;
  text-align: center;
}

.contact-links a {
  display: inline-block;
  margin: 0.5rem 0;
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonial {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 700px;
  background-color: #f9f9f9;
  border-left: 5px solid #003366;
  border-radius: 5px;
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #002244;
  color: white;
  padding: 2rem;
  text-align: center;
}

footer .social-links a {
  margin: 0 0.5rem;
  color: white;
  text-decoration: none;
}

footer .social-links a:hover {
  text-decoration: underline;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #002244;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-container,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about p,
  .contact-section p {
    padding: 0 1rem;
  }
}
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem;
  border: none;
  background-color: #003366;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0050b3;
}
.contact-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-buttons a {
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-whatsapp { background-color: #25D366; }
.btn-whatsapp:hover { background-color: #128C7E; }

.btn-email { background-color: #6c63ff; }
.btn-email:hover { background-color: #4f49c8; }

.btn-twitter { background-color: #1da1f2; }
.btn-twitter:hover { background-color: #0d8ddb; }

.map-container {
  margin-top: 3rem;
  text-align: center;
}
.portfolio-section {
  padding: 3rem 2rem;
  text-align: center;
}

.portfolio-section .intro {
  margin: 1rem auto 2rem;
  max-width: 700px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  color: #003366;
  padding: 1rem 1rem 0.5rem;
}

.project-card p {
  padding: 0 1rem 1rem;
}
.service-icon {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}
.service-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background-color: #0050b3;
}

.quote-form {
  background-color: #f4f4f4;
  padding: 3rem 2rem;
  text-align: center;
}

.quote-form h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.quote-form p {
  margin-bottom: 2rem;
}

.quote-form select {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.about-hero {
  background: linear-gradient(to right, #002244, #004080);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-hero p {
  font-size: 1.2rem;
}

.about-main {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.core-services {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.core-services li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.core-services i {
  color: #0050b3;
  margin-right: 0.5rem;
}

.mission-box {
  background-color: #fff;
  margin: 3rem auto 0;
  padding: 2rem;
  border-left: 5px solid #003366;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mission-box h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}
.hero {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #003366, #0050b3);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero .btn {
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: #003366;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Services Section */
.home-services {
  background-color: #f0f0f0;
  padding: 3rem 2rem;
  text-align: center;
}

.home-services h2 {
  color: #003366;
  margin-bottom: 2rem;
}

/* About Preview */
.about-preview {
  padding: 3rem 2rem;
  background-color: #ffffff;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #003366;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-small {
  padding: 0.2rem 1.2rem;
  background-color: #003366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

/* Why Choose Us */
.why-us {
  background: #eef3f8;
  padding: 3rem 2rem;
  text-align: center;
}

.why-us h2 {
  color: #003366;
  margin-bottom: 1.5rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature {
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-width: 200px;
  font-weight: bold;
  color: #003366;
}

.feature i {
  margin-right: 0.5rem;
}
.logo-img {
  height: 120px;
  object-fit: contain;
}
.form-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-box input,
.form-box textarea,
.form-box button {
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-box button {
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
}

.form-box button:hover {
  background-color: #0050b3;
}
/* Animate fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered fade-in delays (optional) */
.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }

/* Smooth section transitions */
section {
  transition: all 0.4s ease;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 14px 16px;
  font-size: 24px;
  z-index: 999;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

.whatsapp-float i {
  pointer-events: none;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.bounce {
  animation: bounce 2s infinite;
}
.tech-animation {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.tech-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 3rem 0;
}
.galaxy-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  z-index: -1;
  overflow: hidden;
}

.galaxy-background::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: url('https://raw.githubusercontent.com/KunalTanwar/starfield-animation/main/stars.png');
  background-size: cover;
  animation: moveStars 90s linear infinite;
  opacity: 1.1;
}

@keyframes moveStars {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
.content-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
}
.qr-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  text-align: center;
  color: #fff;
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 12px white;
}

.qr-code {
  width: 180px;
  height: 180px;
  border: 4px solid #fff;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 15px white;
}

.qr-block p {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff; /* Force text to be white */
  margin: 0.3rem 0 0;
}
/* Simple fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




