/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #111;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00eaff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00eaff;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #0d7377);
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
}

.btn {
  background: #00eaff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #00b6c9;
}

/* Services */
.services {
  padding: 3rem 2rem;
  background: #121212;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.service-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00eaff;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Sectors */
.sectors {
  padding: 3rem 2rem;
  background: #181818;
}

.sectors h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.sector-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sector-card {
  background: #222;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.sector-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  padding: 2rem;
  text-align: center;
  background: #0f0f0f;
}

/* === Previous styles remain unchanged === */

/* Scroll Animation (hidden by default) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: #000;
  padding: 3rem 2rem;
  color: #ccc;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

footer h3, footer h4 {
  color: #00eaff;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #00eaff;
}

.social-links a {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00eaff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* Newsletter */
.newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.newsletter button {
  padding: 0.6rem 1rem;
  border: none;
  background: #00eaff;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: #00b6c9;
}

#newsletter-msg {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #00eaff;
}


/* Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
