
    body {
      margin: 0;
      background: #000;
      font-family: 'Segoe UI', sans-serif;
    }

    .welcome-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .welcome-card {
      background: #1f2937;
      color: white;
      padding: 24px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.5);
      position: relative;
    }

    .welcome-card h2 {
      margin-bottom: 12px;
      font-size: 1.4rem;
    }

    .welcome-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 12px;
    }

    .welcome-card p {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    @keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.welcome-card {
  background: #1f2937;
  color: white;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  position: relative;
  animation: popIn 0.4s ease;
}

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-group a button {
      padding: 10px 18px;
      border: none;
      border-radius: 6px;
      background: #3b82f6;
      color: white;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.2s;
    }

    .btn-group a button:hover {
      background: #2563eb;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 22px;
      font-weight: bold;
      cursor: pointer;
    }
html {
      scroll-behavior: smooth;
    }
    
  @keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#paymentTitle, #paymentForm, #paymentForm input, #paymentForm select, #paymentForm button {
  opacity: 0;
  animation: slideFadeIn 0.6s ease-out forwards;
}

/* Animasi fade-in zoom saat muncul */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#typing-text::after {
  content: "|";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Animasi melayang pelan */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Terapkan animasi ke gambar */
.home-img {
  width: 200px; /* bebas kamu sesuaikan */
  border-radius: 50%;
  animation: fadeZoom 1.2s ease forwards, floating 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animasi muncul satu per satu, dimulai dari Nama, lalu Harga, dst */
#paymentTitle {
  animation-delay: 0.2s;
}
#name {
  animation-delay: 0.4s;
}
#product {
  animation-delay: 0.6s;
}
#feature {
  animation-delay: 0.6s;
}
#duration {
  animation-delay: 0.8s;
}
#paymentMethod {
  animation-delay: 1s;
}
#price {
  animation-delay: 1.2s;
}
#submitBtn {
  animation-delay: 1.4s;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      transition: background-color 0.3s ease;
    }
    body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  flex: 1;
}
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #888;
}
footer span {
  color: #007BFF;
}
    header {
      background: linear-gradient(90deg, #007BFF, #00c6ff);
      padding: 5px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
  .thanks-section {
    padding: 30px;
    background-color: #111;
    color: white;
    text-align: center;
  }
  
  .thanks-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .thanks-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* INI YANG FIX */
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  justify-items: center;
}
  
  .thanks-card {
    background-color: #1d1d1d;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: 0.3s;
  }
  
  .thanks-card:hover {
    transform: scale(1.03);
  }
  
  .thanks-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  
  .thanks-card h3 {
    font-size: 18px;
    margin: 0;
  }
  
  @media (min-width: 600px) {
    .thanks-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

    nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

    .logo a {
      color: white;
      text-decoration: none;
      font-size: 20px;
      font-weight: bold;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: black;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle .bar {
      width: 20px;
      height: 2px;
      margin: 2px;
      background-color: #2c3e50;
      transition: 0.3s;
    }

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

      .nav-links {
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #007BFF, #00c6ff);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
      }

      .nav-links.active {
        max-height: 300px;
        padding: 10px 0;
      }

      .nav-links li {
        margin: 10px 0;
      }
    }

 main {
      padding-top: 80px;
    }
    
    #main-content {
      padding: 30px 20px;
      text-align: center;
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-top: 50px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .content-section {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .content-section.active {
      display: block;
      opacity: 1;
    }

    #main-content h1 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    #main-content p {
      font-size: 15px;
      color: #555;
    }

    .home-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 3px solid #007BFF;
      object-fit: cover;
      margin-bottom: 15px;
      box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .home-img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 16px rgba(0, 123, 255, 0.6);
    }

.wa-button {
  margin-top: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

    .wa-button:hover {
      background-color: #1ebe57;
    }

    .wa-button:active {
      transform: scale(0.95);
    }

    .social-glass {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .icon-glass {
      width: 50px;
      height: 50px;
      margin: 5px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      font-size: 22px;
      color: #fff;
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .icon-glass:hover {
      transform: scale(1.1);
      background: rgba(255, 255, 255, 0.2);
    }

    .tiktok i { color: #000; }
    .youtube i { color: #FF0000; }
    .instagram i { color: #d62976; }
    .product-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 0 auto;
      padding: 0 10px;
      max-width: 1200px;
    }

    .product-list {
      width: 300px;
      text-align: center;
      margin-bottom: 20px;
      margin-right: 20px;
      margin-left: 20px;
      font-size: 16px;
      line-height: 1.6;
      padding: 20px;
      border: 2px solid #007BFF;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-list:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    }

    .product-list h2 {
      font-size: 22px;
      font-weight: bold;
      color: #007BFF;
      margin-bottom: 10px;
    }

    .product-list .list-heading {
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 10px;
      border-top: 2px solid #007BFF;
      border-bottom: 2px solid #007BFF;
      padding: 10px 0;
    }

    .product-list span {
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
      text-align: center;
    }
    
   .feature {
     max-width: 1200px;
      background: white-space;
      margin: auto;
      margin-bottom: 20px;
      border-radius: 10px;
      padding: 20px;
      border: 2px solid #007BFF;
      box-shadow: 0 0 12px rgba(0, 170, 255, 0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .feature:hover {
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
    }
    .feature h3 {
      margin-top: 0;
      color: #007BFF;
      
    }
   .blue-line {
      height: 2px;
      width: auto;
      background-color: #007BFF;
      box-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
      border-radius: 2px;
    }
    
    .feature-container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
        .feature-wrapper {
      max-width: 1200px;
      margin: auto;
      border: 3px solid #00aaff;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(0, 170, 255, 0.6);
      overflow: hidden;
      background-color: #fff;
    }
    .note {
      font-size: 14px;
      color: #555;
      margin-top: 5px;
    }

    .contact-box {
      margin-top: 30px;
      padding: 20px;
      border: 2px dashed #007BFF;
      border-radius: 10px;
      background-color: #f0f8ff;
      transition: all 0.3s ease;
    }

    .contact-box p {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .group-links {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .group-item {
      width: 100%;
      max-width: 400px;
      margin-bottom: 20px;
      text-align: center;
      padding: 15px;
      background-color: white;
      border: 2px solid #007BFF;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    #skill {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #111;
}

#skill h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

#skill p {
  color: #555;
  font-size: 1em;
  max-width: 500px;
  margin: 0 auto;
}

.skill-container {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  grid-template-columns: repeat(2, 150px); /* default 2 kolom */
}

@media (min-width: 768px) {
  .skill-container {
    grid-template-columns: repeat(4, 150px); /* 4 kolom saat desktop */
  }
}

.skill-card {
  background: #fff;
  border: 2px solid #222;
  border-radius: 12px;
  padding: 20px;
  width: 140px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.skill-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.skill-card h3 {
  margin: 0;
  font-size: 16px;
}

.level {
  font-weight: bold;
  font-size: 13px;
  color: #666;
}

    .group-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    }

    .group-item h3 {
      font-size: 20px;
      color: #007BFF;
      margin-bottom: 10px;
    }

    .group-item a {
      display: inline-block;
      background-color: #25D366;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      font-size: 14px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .group-item a:hover {
      background-color: ;
      transform: scale(1.05);
    }

    .group-item a:active {
      transform: scale(0.95);
    }

    @media screen and (max-width: 768px) {
      .nav-button {
        font-size: 13px;
        padding: 5px 10px;
      }

      #main-content h1 {
        font-size: 22px;
      }

      .home-img {
        width: 120px;
        height: 120px;
      }

      .product-list {
        width: 100%;
      }
      .social-links {
        gap: 10px;
      }
         .highlight-title {
      color: #25D366;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      margin-bottom: 10px;
    }
    }
    #payment {
  border: 2px solid #007BFF; /* Bingkai biru */
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  margin-top: 50px;
  margin-bottom: 50px;
}

#paymentForm input,
#paymentForm select {
  border: 1px solid #007BFF; /* Border biru pada input dan select */
}

#paymentForm input:focus,
#paymentForm select:focus {
  border-color: #0056b3; /* Warna border ketika fokus */
  
}
section {
  scroll-margin-top: 80px; /* Sesuaikan dengan tinggi header kamu */
}

.cuki-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #004aad, #00b4d8);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}conta

.cuki-button:hover {
  background-color: #00307f;
}

.project-icon {
  margin-right: 8px;
}
    
