body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.menu-toggle span {
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #111;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}

.hero {
  background-image: url('/img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

/*.hero h1 {
  font-size: 3rem;
  color: #00aea8;
  margin-bottom: 1rem;
  animation: slideIn 1.5s ease-out;
}*/

.hero h1 {
  font-size: 2rem;
  color: #00aea8;
  margin-top: 230px;
  animation: slideIn 2s ease-out;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeIn 2.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 60px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  font-size: 0.9rem;
}
#about {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0a0a;
  color: #fff;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00aea8;
}

.about-content p {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.service-card {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 2.5rem;
  color: #00aea8;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.5;
}
.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(72%) saturate(532%) hue-rotate(135deg) brightness(100%) contrast(92%);
}
/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
#portfolio {
  padding: 80px 20px;
  text-align: center;
  background-color: #0b0b0b;
  color: #fff;
}

#portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00aea8;
}

#portfolio p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  background-color: #111;
  border: 1px solid #00aea855;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px #00aea822;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00aea8aa;
}

.portfolio-card h3 {
  color: #00aea8;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.portfolio-card p {
  font-size: 1rem;
  color: #aaa;
}
#industries {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0a0a;
  color: #fff;
}

#industries h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00aea8;
}

#industries p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background-color: #111;
  border: 1px solid #00aea844;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px #00aea822;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00aea8aa;
}

.industry-card h3 {
  color: #00aea8;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.industry-card p {
  color: #aaa;
  font-size: 1rem;
}
#contact {
  padding: 80px 20px;
  background-color: #0b0b0b;
  text-align: center;
  color: #fff;
}

#contact h2 {
  font-size: 2.5rem;
  color: #00aea8;
  margin-bottom: 1rem;
}

#contact p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #00aea844;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00aea8;
  box-shadow: 0 0 10px #00aea855;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #00aea8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #009b97;
  transform: translateY(-2px);
}
