/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0a1f44;
  color: white;
  position: relative;
  z-index: 1000; /* Fix click issues */
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.navbar nav {
  display: flex;
}

.navbar nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.navbar nav a:hover {
  text-decoration: underline;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  text-align: center;
}

.hero button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: white;
  color: #007bff;
  cursor: pointer;
  border-radius: 5px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARDS */
.card,
.feature {
  padding: 20px;
  background: #f4f4f4;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover,
.feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: #eee;
  padding: 40px 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f9f9;
}

.testimonial {
  display: none;
  font-size: 18px;
}

.testimonial.active {
  display: block;
}

.controls button {
  margin: 10px;
  padding: 10px 15px;
  cursor: pointer;
}

/* CTA */
.cta {
  background: #007bff;
  color: white;
}

.cta button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: white;
  color: #007bff;
  cursor: pointer;
  border-radius: 5px;
}

/* FOOTER */
footer {
  background: #0a1f44;
  color: white;
  padding: 20px;
}

/* CONTACT PAGE */
.contact {
  text-align: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.contact-info {
  width: 48%;
  text-align: left;
}

.contact-info p {
  margin: 10px 0;
}

.socials a {
  margin-right: 10px;
  text-decoration: none;
  color: #007bff;
}

/* MAP */
.map {
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .grid {
    grid-template-columns: 1fr;
  }

  .navbar nav {
    display: none;
    flex-direction: column;
    background: #0a1f44;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    z-index: 1001;
  }

  .navbar nav a {
    display: block;
    padding: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}
