body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: #111;
  border-bottom: 1px solid #222;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 65px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  color: #00d2ff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.contact-btn {
  color: #fff;
  border: 1px solid #00d2ff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
}

.hero {
  height: 80vh;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 2s ease-in-out;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #00d2ff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00aaff;
}

.sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #0c0c0c;
}

.card {
  background-color: #1c1c1c;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  border: 1px solid #00d2ff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.factory-cards .card {
  width: 220px;            /* Smaller width */
  padding: 1rem;         /* Compact padding */
  border-radius: 8px;
  font-size: 0.9rem;       /* Optional: smaller text */
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #00d2ff;
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00d2ff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 50%;
  display: none;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  border-top: 1px solid #222;
}

footer a {
  color: #00d2ff;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


.intro {
  text-align: center;
  padding: 3rem 2rem 1rem;
  background-color: #0c0c0c;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00d2ff;
}

.intro p {
  font-size: 1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.app-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 4rem;
  background-color: #0c0c0c;
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px; /* Smaller logo for mobile */
  }

  .logo-text {
    font-size: 1.5rem; /* Slightly reduced text */
  }

  .navbar {
    padding: 1rem 1.5rem; /* Optional: tighter padding for small screens */
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
  
  .factory-cards .card {
    width: 180px;
    padding: 1rem;
  }
  
}
