@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

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

img {
  width: 70%;
  display: flex;
  margin-left: 50px;
}

a {
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff6ea;
}

nav {
  max-width: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center; /* Mengatur vertikal ke tengah */
}

.nav-logo img {
  max-width: 100px;
  min-width: 100px;
}

.nav-logo1 {
  display: inline-flex;
  align-items: center; /* Mengatur vertikal ke tengah */
}

.nav-logo1 img {
  max-width: 100px;
  min-width: 100px;
}

.nav-title {
  display: inline-flex;
  margin-left: 10px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  align-items: center; /* Mengatur vertikal ke tengah */
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
}

.blur {
  position: absolute;
  box-shadow: 0 0 1000px 50px #2b5c6b;
  z-index: -100;
}

header {
  position: relative;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

header .content h4 {
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 1rem;
  font-weight: 600;
}

header .content h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
}

header .content h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

header .content p {
  margin-bottom: 3rem;
  color: #18181b;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

header .image {
  position: relative;
}

header .image::before {
  content: "o";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 38rem;
  font-weight: 400;
  line-height: 20rem;
  color: #cfb53b;
  opacity: 0.2;
  z-index: -100;
}

header .image img {
  max-width: 600px;
  margin: auto;
}

section .header {
  color: #4c376b;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
  margin-top: -4rem;
}

.container img {
  max-width: 450px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container .star-img {
  width: 120px;
  margin: 0;
}

.features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 2rem;
}

.features1 {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: space-between;
  gap: 2rem;
}

.features .card {
  display: flex;
  flex: 1;
  background: linear-gradient(135deg, #432e6e 0%, #2f7071 100%);
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.features .card .blue {
  background: #316477;
}

.features .card .white {
  background: #fefefe;
}

.features1 .card {
  width: inherit;
  display: flex;
  flex: 1;
  background: linear-gradient(135deg, #432e6e 0%, #2f7071 100%);
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
  justify-self: center;
}

.features .card .content,
.features1 .card .content {
  display: flex;
  flex-direction: column;
  max-width: 334px;
}

.features .card span,
.features1 .card span {
  display: flex;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(50, 95, 111, 1) 0%,
    rgba(98, 124, 130, 1) 20%,
    rgba(120, 152, 159, 1) 40%,
    rgba(120, 152, 159, 1) 60%,
    rgba(98, 124, 130, 1) 80%,
    rgba(50, 95, 111, 1) 100%
  );
  padding: 2px;
  margin: 10px 26px 10px 10px;
  font-size: 120px;
  color: #000000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 150px;
  border: 3px solid #000000;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
}

.features .card h4,
.features1 .card h4 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.features .card p,
.features1 .card p {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

.features1 .card p {
  font-size: 0.9rem;
}

.features .card a,
.features1 .card a {
  color: #fff;
  transition: all 0.3s ease;
}

.features .card a:hover,
.features1 .card a:hover {
  color: #cfb53b;
}

.sub-header {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: #ccc;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.pricing {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing .card {
  padding: 3rem 2rem;
  background-color: #27272a;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pricing .card:hover {
  background-color: #323232;
  border-color: #fff;
}

.pricing .card .content {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing .card h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

.pricing .card h5 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: justify; /* Mengatur teks menjadi rata kanan dan kiri */
  text-justify: distribute-all-lines; /* Pilihan tambahan untuk penyebaran yang lebih merata */
  line-height: 1.5; /* Mengatur jarak antar baris agar lebih legible */
  letter-spacing: 0.5px;
}

.pricing .card h3 {
  color: #fff;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 2px dashed #fff;
}

.pricing .card p {
  color: #fff;
  margin-bottom: 0.75rem;
}

.pricing .card p i {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 0.3rem;
}

.pricing1 .card .warna {
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #cfb53b;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 1px 10px 14px rgba(0, 0, 0, 0.1);
}

footer {
  position: relative;
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 2rem;
}

footer .column .logo {
  max-width: 100px;
  margin-bottom: 2rem;
}

footer .column p {
  color: #18181b;
  margin-bottom: 2rem;
}

footer .column .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .column .socials a {
  color: #18181b;
  border: 1px solid #18181b;
  padding: 5px 10px;
  font-size: 1.25rem;
  border-radius: 100%;
  transition: all 0.3s ease;
}

footer .column .socials a:hover {
  color: #fff;
  background-color: #2b5c6b;

  border-color: #2b5c6b;
}

footer .column h4 {
  color: #18181b;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
}

footer .column > a {
  display: block;
  color: #18181b;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

footer .column > a:hover {
  color: #2b5c6b;
}

.copyright {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  color: #18181b;
  font-size: 0.8rem;
  text-align: center;
}

#contact {
  padding: 40px 20px;
  text-align: center;
  border-bottom: 2px solid #aeaaaa;
  align-items: center; /* Menengahkan konten secara horizontal */
  justify-content: center; /* Menengahkan konten secara vertikal */
  height: 100%;
  color: rgb(201, 193, 193);
  border: 5px solid #27272a; /* Menyesuaikan lebar border */
  border-radius: 15px; /* Menambahkan radius sudut untuk border */
  transition: all 0.3s ease; /* Efek transisi untuk perubahan hover */
  background-color: #27272a;
  width: 50%; /* Menyesuaikan lebar elemen dengan textarea */
  margin: auto; /* Menengahkan elemen */
}

#contact h2 {
  margin-bottom: 20px;
  color: #e0e0e0;
}

#contact label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #b5afaf;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 50%;
  padding: 8px;
  margin-bottom: 15px;
  border: none; /* Remove default border */
  border-radius: 5px; /* Add rounded corners */
  font-size: 1.1em;
}

.message-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

#contact textarea {
  height: 50px;
  resize: vertical;
  text-align: left;
  font-size: 1.1em;
  font-family: inherit;
  margin: auto; /* Untuk membuat textarea berada di tengah */
  display: block; /* Untuk memastikan textarea memiliki display block */
  width: 50%; /* Atur lebar sesuai kebutuhan Anda */
  padding: 8px; /* Atur padding untuk membuatnya lebih rapih */
  box-sizing: border-box; /* Agar padding tidak menambah lebar textarea */
}

#contact button {
  padding: 10px 20px;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    135deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(207, 181, 59, 1) 0%,
    rgba(148, 27, 63, 1) 90%
  );
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  display: block; /* Membuat tombol menjadi blok */
  margin: auto; /* Untuk membuat tombol berada di tengah */
  width: 10%; /* Atur lebar sesuai kebutuhan Anda */
  text-align: center; /* Agar teks di tengah tombol */
  margin-top: 10px;
}

#contact button:hover {
  background-color: #cfb53b;
}

/* CSS untuk Efek Modal */
.modal {
  display: none; /* Modal defaultnya disembunyikan */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Latar belakang semi-transparan */
  z-index: 1000; /* Z-index tinggi untuk memastikan modal muncul di atas elemen lain */
  overflow: auto; /* Memungkinkan scrolling jika konten melebihi viewport */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto; /* Membuat modal muncul di tengah layar */
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* Lebar modal */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Tombol close di pojok kanan atas */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#name,
#email,
#message {
  background-color: #888;
  color: white;
}

.image {
  text-align: center; /* Untuk memastikan gambar berada di tengah secara horizontal */
  margin-bottom: 20px; /* Spasi bawah */
  display: flex;
  justify-content: center; /* Memposisikan secara horizontal di tengah */
  align-items: center; /* Memposisikan secara vertikal di tengah */
  height: 300px; /* Contoh ketinggian, sesuaikan sesuai kebutuhan Anda */
  margin-top: 100px;
}

.custom-container {
  position: relative;
  width: clamp(95%, 90%, 80%);
  overflow: hidden;
  max-width: 2200px;
  margin: auto;
  padding: 5rem 2rem;
}

.custom-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.custom-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.custom-slides {
  display: flex;
  width: 100%;
}

.custom-slide {
  min-width: 100%;
  flex: 0 0 100%;
  text-align: center;
  padding: 40px 20px;
  transition: opacity 0.5s ease-in-out;
}

.custom-slide h1 {
  color: #4c376b;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: right;
  margin-right: 5%;
}

.custom-slide p {
  padding: 20px 40px; /* Tambahkan ruang di dalam paragraf */
  color: #18181b;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8; /* Memberikan jarak antar baris agar lebih nyaman dibaca */
  border-radius: 50px; /* Membuat sudut lebih halus */
  background-color: transparent; /* Warna latar belakang lembut untuk kontras */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); /* Tambahkan efek bayangan ringan */
  margin-top: 50px;
  border: 3px solid #cfb53b;
  justify-content: center;
}

.custom-image img {
  max-width: 65%; /* Lebar gambar */
  height: auto; /* Mengatur ketinggian gambar sesuai proporsi aslinya */
  float: middle; /* Menggeser gambar ke sisi kiri */
  margin-right: auto;
}

.custom-image img:hover {
  transform: scale(1.05);
}

/* Tombol Navigasi */
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent; /* Menghilangkan background */
  color: #4c376b;
  border: none; /* Menghapus border */
  padding: 12px 15px;
  cursor: pointer;
  font-size: 32px; /* Perbesar panah agar lebih terlihat */
  transition: 0.3s ease;
}

/* Efek saat hover */
.custom-prev:hover,
.custom-next:hover {
  color: #1a3a48; /* Warna sedikit lebih gelap saat hover */
}

/* Jarak lebih jauh ke samping */
.custom-prev {
  left: 15px;
}
.custom-next {
  right: 15px;
}

.pricing1 .card .warna1 {
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #115aff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing1 .card .warna2 {
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing1 .card .warna3 {
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #4d3a89;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container .img3 {
  height: auto;
  display: flex; /* Untuk menghilangkan margin bawah default */
  justify-content: center; /* Membuat margin kanan otomatis (diatur ke 'auto') */
  align-items: center;
}

section .header3 {
  color: #4c376b;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  margin-top: 2rem;
  text-align: center;
}

.pricing1 {
  margin-top: -4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pricing1 .card {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #432e6e 0%, #2f7071 100%);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pricing1 .card .content {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing1 .card h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.pricing1 .card h5 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: justify; /* Mengatur teks menjadi rata kanan dan kiri */
  text-justify: distribute-all-lines; /* Pilihan tambahan untuk penyebaran yang lebih merata */
  line-height: 1.5; /* Mengatur jarak antar baris agar lebih legible */
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.ketua {
  margin-top: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.wakil {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wakil-wrap {
  margin-top: 4em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card_img {
  width: 180px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.card_wrapper-0 {
  border-radius: 1.25rem;
  overflow: hidden;
  width: inherit;
}

.card_image-0 {
  position: relative;
  background-color: #cbb989;
  padding-top: 1.5rem;
  margin-bottom: -0.75rem;
  transition: all 0.3s ease;
}

.card_image-0:hover {
  background-color: #323232;
}

.card_data-0 {
  background-color: #cbb989;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.card_data-0:hover {
  background-color: #323232;
}

.card_box {
  color: #18181b;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card_title {
  margin-bottom: 0.5rem;
  color: #18181b;
  height: 5vh;
  font-size: calc(1vw + 13px);
}

.card_name {
  height: 3vh;
  font-size: var(--h2-font-size);
  color: #18181b;
  margin-bottom: 0.75rem;
}

.j-header {
  color: #4c376b;
  margin-top: -2rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 4rem;
  justify-content: center; /* Memposisikan teks di tengah secara horizontal */
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-item {
  min-width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content9 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  margin-top: 120px;
}
.content9 .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    /* Bayangan utama */ 2px 2px 6px rgba(0, 0, 0, 0.5),
    /* Bayangan yang sedikit lebih tebal */ 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.content9 .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  color: #fefefe;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    /* Bayangan utama */ 2px 2px 6px rgba(0, 0, 0, 0.5),
    /* Bayangan yang sedikit lebih tebal */ 2px 2px 8px rgba(0, 0, 0, 0.5);
  text-align: justify;
}
.content9 button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
  border-radius: 10px;
  background-color: #4c376b;
  color: whitesmoke;
}

.button1 {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button1 button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
}

.button1 button:hover {
  background: #ababab;
  color: #fff;
}

.img-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-coba {
  position: relative;
  margin-top: 3em;
  width: 300px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  padding: 30px 50px;
  background: rgb(208, 172, 77);
  background: linear-gradient(
    90deg,
    rgba(208, 172, 77, 1) 10%,
    rgba(226, 204, 142, 1) 40%,
    rgba(226, 204, 142, 1) 60%,
    rgba(208, 172, 77, 1) 90%
  );
  cursor: pointer;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.5),
    /* Bayangan utama */ 1px 1px 5px rgba(0, 0, 0, 0.5),
    /* Bayangan yang sedikit lebih tebal */ 1px 1px 7px rgba(0, 0, 0, 0.5);
}
.deskripsi {
  text-shadow: none;
  font-weight: 30px;
  font-family: "Poppins", sans-serif;
}

.card-coba:hover {
  height: 400px;
}

.imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-80px);
  z-index: 99;
}

.content1 {
  padding: 10px 20px;
  text-align: center;
  transform: translateY(-450px);
  opacity: 0;
  transition: 0.3s;
}

.card-coba:hover > .content1 {
  opacity: 1;
  transform: translateY(-180px);
}

.content1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content1 h2 {
  color: #cfb53b;
  width: 250px;
}

.content1 p {
  margin-top: 10px;
}

.container-f {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 2rem;
}

.imgbox img {
  max-width: 171px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

@media (width < 1200px) {
  .slide .item:nth-child(5) {
    left: calc(50%);
    opacity: 0;
  }
  .slide .item:nth-child(n + 6) {
    left: calc(50%);
    opacity: 0;
  }
  .features {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (width < 900px) {
  .img-1 {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .panel-k {
    grid-template-columns: repeat(1, 1fr);
  }
  .slide .item:nth-child(3) {
    left: 60%;
  }
  .slide .item:nth-child(4) {
    left: calc(60% + 150px);
  }
  .pricing1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wakil-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    grid-template-columns: repeat(1, 1fr);
  }
  header .image {
    grid-area: 1/1/2/2;
  }
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    grid-template-columns: 1fr 200px;
  }
  .j-header {
    font-size: 2rem; /* Mengurangi ukuran font */
    line-height: 3rem; /* Mengurangi ketinggian baris */
  }
}

@media (width < 600px) {
  header .image::before {
    display: none;
  }

  .features {
    grid-template-columns: repeat(1, 1fr);
  }

  .pricing {
    grid-template-columns: repeat(1, 1fr);
  }

  footer {
    grid-template-columns: 1fr 150px;
  }
  .j-header {
    font-size: 1.5rem; /* Mengurangi ukuran font lebih jauh */
    line-height: 2.5rem; /* Mengurangi ketinggian baris lebih jauh */
  }
}

@media only screen and (max-width: 500px) {
  .image img {
    max-width: 100%; /* Adjust max-width for smaller screens */
    float: none; /* Remove float for smaller screens */
  }

  section .header1,
  .sub1-header {
    float: none; /* Remove float for smaller screens */
    text-align: center; /* Center-align header and sub-header text for smaller screens */
  }

  .pricing1 .card {
    width: 100%; /* Set width to 100% for responsiveness */
  }
  .j-header {
    font-size: 1.5rem; /* Mengurangi ukuran font lebih jauh */
    line-height: 2.5rem; /* Mengurangi ketinggian baris lebih jauh */
  }
}

@media (width < 1200px) {
  .slide .item:nth-child(5) {
    left: calc(50%);
    opacity: 0;
  }
  .slide .item:nth-child(n + 6) {
    left: calc(50%);
    opacity: 0;
  }
  .features {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (width < 1000px) {
  .img-1 {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .panel-k {
    grid-template-columns: repeat(1, 1fr);
  }
  .slide .item:nth-child(3) {
    left: 60%;
  }
  .slide .item:nth-child(4) {
    left: calc(60% + 150px);
  }
  .pricing1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wakil-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    grid-template-columns: repeat(1, 1fr);
  }
  header .image {
    grid-area: 1/1/2/2;
  }
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    grid-template-columns: 1fr 200px;
  }
}

@media (width < 700px) {
  .slide .item:nth-child(4) {
    left: calc(10% + 150px);
    opacity: 0;
  }

  .item .content {
    left: 10px;
  }
}

@media (width < 600px) {
  header .image::before {
    display: none;
  }

  .features {
    grid-template-columns: repeat(1, 1fr);
  }

  .slide .item:nth-child(3) {
    left: 60%;
    opacity: 0;
  }

  .pricing {
    grid-template-columns: repeat(1, 1fr);
  }

  footer {
    grid-template-columns: 1fr 150px;
  }
}
.hero-section0 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
  z-index: -1;
}

.hero-container0 {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content Styling */
.hero-content0 {
  padding: 2rem 0;
}

.hero-badge0 {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #432e6e;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 2rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-title0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.title-highlight0 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle0 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #94a3b8;
}

.hero-description0 {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-actions0 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-primary0,
.btn-secondary0 {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary0 {
  background: #4c376b;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: white;
}

.btn-primary0:hover {
  transform: translateY(-2px);
}

.btn-secondary0 {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary0:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.play-icon0 {
  width: 20px;
  height: 20px;
}

/* Video Styling */
.hero-video0 {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.video-card0 {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper0 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper0 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-decoration0 {
  position: absolute;
  border-radius: 1.5rem;
  z-index: -1;
}

.video-decoration0-1 {
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(147, 51, 234, 0.2) 100%
  );
  filter: blur(40px);
}

.video-decoration0-2 {
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.2) 0%,
    rgba(239, 68, 68, 0.2) 100%
  );
  filter: blur(40px);
}

/* Background Elements */
.hero-background0 {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  /* or you can use: */
  /* width: calc(100% - 4rem);
    height: calc(100% - 4rem); */
  overflow: hidden;
  z-index: 1;
  border-radius: 3rem;
  background: linear-gradient(135deg, #432e6e 0%, #2f7071 100%);
}

.bg-gradient0 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.bg-gradient0-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.4) 0%,
    transparent 70%
  );
}

.bg-gradient0-2 {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.3) 0%,
    transparent 70%
  );
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container0 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content0 {
    text-align: center;
  }

  .hero-badge0 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions0 {
    justify-content: center;
  }

  .title-highlight0 {
    font-size: 2.5rem;
  }

  .title-subtitle0 {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-section0 {
    padding: 2rem 1rem;
  }

  .title-highlight0 {
    font-size: 2rem;
  }

  .title-subtitle0 {
    font-size: 1.125rem;
  }

  .hero-description0 {
    font-size: 1rem;
  }

  .hero-actions0 {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary0,
  .btn-secondary0 {
    width: 100%;
    justify-content: center;
  }
}
