html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Responsive adjustments */
@media only screen and (max-width: 1200px) {
    body {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

/* Ensure all elements stay within the viewport */
* {
    box-sizing: border-box;
    max-width: 100%;
}

  
    .hamburger div {
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .hamburger.active .bar1 {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar2 {
      opacity: 0;
    }
    
    .hamburger.active .bar3 {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  }
  
  .menu.show {
  max-height: 500px; /* Atur tinggi maksimum sesuai kebutuhan */
  opacity: 1;
  transition-delay: 0.2s; /* Menambahkan delay sebelum menu muncul */
  }
  
    .text-blue-600 {
      background: linear-gradient(90deg, #1e3a8a, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
    .bg-blue-600 {
      background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    }
  
    .bg-blue-700 {
      background: linear-gradient(90deg, #1d4ed8, #2563eb);
    }
  
    .hover\:bg-blue-700:hover {
      background: linear-gradient(90deg, #2563eb, #3b82f6);
    }
  
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }
  
    .bounce {
      animation: bounce 1s infinite;
    }
  
    .sticky-nav {
      position: fixed;
      top: 0;
      z-index: 50;
      width: 100%; /* Pastikan elemen menggunakan lebar penuh */
      background-color: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    

  
    /* Add shadow when scrolling */
    .scrolled {
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: move 5s linear infinite;
    opacity: 0.7;
  }
  
  .circle-1 {
    width: 50px;
    height: 50px;
    top: 20%; /* Posisi awal dari atas */
    left: 20%; /* Posisi awal dari kiri */
    animation-delay: 0s;
  }
  
  .circle-2 {
    width: 70px;
    height: 70px;
    top: 30%; /* Posisi awal dari atas */
    left: 70%; /* Posisi awal dari kiri */
    animation-delay: 1s;
  }
  
  .circle-3 {
    width: 60px;
    height: 60px;
    top: 20%; /* Posisi awal dari bawah */
    left: 50%; /* Posisi awal dari kiri */
    animation-delay: 2s;
  }
  
  .circle-4 {
    width: 80px;
    height: 80px;
    bottom: 30%; /* Posisi awal dari bawah */
    right: 20%; /* Posisi awal dari kanan */
    animation-delay: 3s;
  }
  
  @keyframes move {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(100px, 0); /* Gerakan ke kanan */
    }
    50% {
      transform: translate(100px, 100px); /* Gerakan ke kanan dan bawah */
    }
    75% {
      transform: translate(0, 100px); /* Gerakan ke kiri dan bawah */
    }
    100% {
      transform: translate(0, 0); /* Kembali ke posisi awal */
    }
  }
/* Footer Styles */
footer {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  color: #F3F4F6;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section ul li {
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #60A5FA;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #D1D5DB;
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #374151;
}

@media screen and (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
  }

  .footer-section {
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }
}
  
  .fab {
    font-size: 1.5rem; /* Ukuran ikon sosial */
  }
  
  /* Efek hover untuk ikon sosial */
  a:hover {
    transform: scale(1.1);
  }
  /* Gaya untuk label di formulir kontak */
  label {
      display: block;
      font-weight: 600; /* Tebal */
      color: #4A5568; /* Warna teks */
      margin-bottom: 0.5rem; /* Jarak di bawah label */
      transition: color 0.3s ease; /* Transisi warna */
    }
    
    /* Gaya untuk input dan textarea */
    input, textarea {
      width: 100%; /* Lebar penuh */
      padding: 0.5rem; /* Padding di dalam */
      border: 1px solid #CBD5E0; /* Warna border */
      border-radius: 0.375rem; /* Sudut melengkung */
      transition: border-color 0.3s ease; /* Transisi border */
    }
    
    /* Efek saat input dan textarea fokus */
    input:focus, textarea:focus {
      border-color: #63B3ED; /* Warna border saat fokus */
      outline: none; /* Menghilangkan outline default */
    }
    
    /* Gaya untuk tombol kirim */
    button {
      background-color: #f7fafd; /* Warna latar belakang tombol */
      color: white; /* Warna teks tombol */
      padding: 0.5rem 1rem; /* Padding tombol */
      border: none; /* Menghilangkan border default */
      border-radius: 0.375rem; /* Sudut melengkung */
      cursor: pointer; /* Menunjukkan pointer saat hover */
      transition: background-color 0.3s ease; /* Transisi warna latar belakang */
    }
    
    /* Efek saat tombol hover */
    button:hover {
      background-color: #f7f8f8; /* Warna latar belakang saat hover */
    }
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000; /* Pastikan tombol berada di atas elemen lain */
    }
    
    .whatsapp-logo {
      width: 60px; /* Ukuran logo */
      height: 60px;
      transition: transform 0.3s;
    }
    
    .whatsapp-button:hover .whatsapp-logo {
      transform: scale(1.1); /* Efek memperbesar saat dihover */
    }
    
    /* Media query untuk layar kecil */
    @media (max-width: 768px) {
      .whatsapp-logo {
        width: 50px; /* Ukuran lebih kecil di layar mobile */
        height: 50px;
      }
    }
    /* CSS for Premium Package container */
.premium-package-container {
  margin: 40px auto;       /* Menjaga jarak atas dan bawah */
  padding: 20px;           /* Memberikan ruang di dalam */
  max-width: 1400px;        /* Lebar maksimal lebih besar */
  width: 90%;              /* Lebar dinamis, mengambil 90% dari lebar layar */
  box-sizing: border-box;   /* Pastikan padding tidak mempengaruhi lebar total */
}


  /* General Styles */
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  h2 {
    color: #1a202c;
  }

  /* FAQ Section Styling */
  .bg-white {
    background-color: #ffffff;
  }

  .rounded-lg {
    border-radius: 0.75rem;
  }

  .shadow-lg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .p-6 {
    padding: 1.5rem;
  }

  .text-gray-600 {
    color: #718096;
  }

  /* Responsive for small screens */
  @media (max-width: 768px) {
    .grid-cols-2 {
      grid-template-columns: 1fr;
    }

    .space-y-8 > div {
      margin-bottom: 2rem;
    }
  }


    
