/* Reset dan Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: poppins ,sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    justify-content: space-between;
    align-items: center;
    background-color: #0066CC;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
.logo {
    text-decoration: none;
    color: inherit; 
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
}


.nav-links a:hover {
    color: #ffcc00;
}
  
  .navbar ul li a:hover {
    color: #e74c3c;
  }

  .login-btn {
    background-color: #ffcc00;
    padding: 8px 15px;
    border-radius: 5px;
    color: black !important;
    font-weight: bold;
}

.login-btn:hover {
    background-color: #ff9900;
}
  /* Hero Section */
  .hero {
    background-color: #0066CC;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Service Section */
  .service-container {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .service-container h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  
  .subtext {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
  }
  
  .android-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    padding-top: 1rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  
  .service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #34495e;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .btn {
    background: #0066CC;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #2980b9;
  }
  
  /* Footer */
footer {
    background: #0066CC;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    bottom: 0;
    z-index: 10;
}

  
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar nav ul {
      flex-direction: column;
      width: 100%;
      margin-top: 1rem;
    }
  
    .navbar nav ul li {
      margin-bottom: 0.5rem;
    }
  
    .android-services {
      grid-template-columns: 1fr;
    }
  }
  

  /* Animasi saat muncul */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
  }
  
  .service-card.show {
    opacity: 1;
    transform: translateY(0);
  }
  
 .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  text-align: center;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-wa {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Animasi Modal */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}
  