* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Poppins", sans-serif; color: #333; background: #f9f9f9; }

    /* NAVBAR */
    header {
      background: rgb(156, 0, 148);
      position: fixed;
      width: 100%;
      z-index: 1000;
    }
    nav {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
    }
    nav h1 { color: #fff; font-size: 24px; }
    nav a {
      color: rgb(255, 255, 255);
      text-decoration: none;
      margin: 0 12px;
      transition: 0.3s;
    }
    nav a:hover { color: #6d6d6d; }

    /* HERO */
    .hero {
      background: url('https://images.unsplash.com/photo-1527443224154-c4f4a8e0fb7c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: rgb(255, 255, 255);
      padding: 20px;
    }
  
    .hero h2 { font-size: 50px; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
    .hero p { font-size: 20px; margin-bottom: 30px; }
    .hero a {
      background: #bf00c5;
      padding: 12px 25px;
      border-radius: 30px;
      color: #000;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s;
    }
    .hero a:hover { background: #860086; }

    /* SECTION */
    section { padding: 80px 20px; max-width: 1200px; margin: auto; }
    section h2 { text-align: center; margin-bottom: 40px; font-size: 32px; }

    /* ABOUT */
    #about { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center; }
    #about img { max-width: 200px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
    #about div { flex: 1; min-width: 300px; }

    /* SERVICES */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.5s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
    }
    .card:hover { transform: translateY(-10px); }
    .card img { max-width: 100%; border-radius: 10px; margin-bottom: 15px; }
    .card h3 { margin-bottom: 10px; }
    .card.active {
      box-shadow: 0 0 0 4px #e60023;
      transition: box-shadow 0.2s;
    }
    .card.active-slide {
      transform: translateX(30px) scale(1.05);
      box-shadow: 0 8px 24px rgba(156,0,148,0.18);
      z-index: 2;
    }

    /* PRICING */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    th, td {
      border: 1px solid #ddd;
      padding: 15px;
      text-align: center;
    }
    th {
      background: #ce00c3;
      color: black;
    }

    /* FEATURES */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
    .features li {
      background: #e000c2;
      color: #000;
      padding: 15px 20px;
      border-radius: 30px;
      list-style: none;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* CONTACT */
    form {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
    }
    form input, form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    form button {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 8px;
      background: rgb(112, 0, 134);
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }
    form button:hover { background: hsl(310, 30%, 46%); }

    /* FOOTER */
    footer {
      background: #111;
      color: #ccc;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }
    footer a {
      color: #ff00f2;
      margin: 0 10px;
      font-size: 20px;
      transition: 0.3s;
    }
    footer a:hover { color: #fff; }

    /* RESPONSIVE NAV */
    @media (max-width: 768px) {
      nav { flex-direction: column; }
      .hero h2 { font-size: 32px; }
    }
    /* LOGO */

    .logo-wrapper {
    width: 100%;
    height: 100%; /* bisa disesuaikan */
    border-radius: 0%;
    border: 0px solid #9a02ffdc;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    overflow: hidden;
    padding: 20px;
    }

    .logo-wrapper img {
    width: 25%;  /* bisa disesuaikan biar pas */
    height: auto;
    }

    /* Responsive Navbar */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  margin-right: 16px;
  cursor: pointer;
}
@media (max-width: 700px) {
  nav > div {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 99;
  }
  nav > div.show-menu {
    display: flex;
  }
  .menu-toggle {
    display: inline-block;
  }
}

/* Responsive Services Card */
@media (max-width: 900px) {
  .services {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
    margin-bottom: 18px;
  }
}