/* 🌐 Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #f4f4f4;
  background: #012a4a;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: #013a63;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

.navbar ul li a {
  color: #a9d6e5;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #89c2d9;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #01497c, #014f86);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #61a5c2;
}

.hero-buttons {
  margin-top: 2rem;
}

.btn {
  background: #2a6f97;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  margin: 0 10px;
}

.btn-outline {
  border: 2px solid #89c2d9;
  color: #89c2d9;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
}

/* Services */
.services {
  padding: 4rem 2rem;
  background: #01497c;
}

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

.service-card {
  background: #013a63;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.service-card i {
  font-size: 2rem;
  color: #a9d6e5;
  margin-bottom: 1rem;
}

/* Technologies */
.technologies {
  text-align: center;
  padding: 3rem 2rem;
  background: #014f86;
}

.tech-icons i {
  font-size: 3rem;
  margin: 1rem;
  color: #89c2d9;
}

/* About */
.about {
  padding: 4rem 2rem;
  background: #2a6f97;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.about-grid div {
  background: #013a63;
  padding: 2rem;
  border-radius: 10px;
}

/* Values */
.values {
  padding: 3rem 2rem;
  background: #468faf;
  text-align: center;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.values-grid div {
  background: #013a63;
  padding: 1.5rem;
  border-radius: 10px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background: #01497c;
}

.stats div {
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: 3rem 2rem;
  background: #2c7da0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Contact */
.contact {
  padding: 4rem 2rem;
  background: #014f86;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
}

/* Footer */
footer {
  padding: 1.5rem;
  text-align: center;
  background: #013a63;
  color: #a9d6e5;
}

.footer-container {
  margin-bottom: 20px;
}

.footer-wrapper {
  max-width: 500px;   /* control width */
  margin: 0 auto;     /* center horizontally */
  text-align: left;   /* align text to left */
}


.footer-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #89c2d9; /* Highlighted heading color */
}

.footer-container p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.footer-container strong {
  color: #a9d6e5;
}

.footer-bottom {
  border-top: 1px solid #2a6f97;
  padding-top: 10px;
  font-size: 13px;
  color: #89c2d9;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}


/* Responsive */
@media (max-width: 768px) {
  .about-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .navbar.active nav {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    text-align: center;
  }

  .navbar .btn {
    margin: 10px auto;
  }

  /* Hero Section */
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Values Section */
  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  /* Stats Section */
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-wrapper {
    text-align: center;
  }
}