
    .text-highlight {
    background: rgba(255, 255, 255, 0); /* putih transparan */
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px); /* efek blur kaca */
}

.text-highlight h1,
.text-highlight p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

  /* SECTION WRAPPER BG PUTIH TRANSPARAN */
  /* WRAPPER */
  .about_section {
    padding: 70px 0;
    background: #cee2ff;
    padding-top: 10%;
  }

  /* BAGIAN TEKS KIRI */
  .about-left h4 {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4c4c4cff;
    margin-bottom: 10px;
  }

  .about-left h2 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 18px;
  }

  .about-left p {
    font-size: 16px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 25px;
    max-width: 85%;
  }

  /* Tombol Biru */
  .about-left a.btn-primary {
    background: #6564ff;
    padding: 10px 25px;
    color: white;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 5px 12px rgba(101, 100, 255, 0.2);
  }

  .about-left a.btn-primary:hover {
    background: #4a49e6;
  }

  /* GAMBAR KANAN */
  .about-right .img-box {
    width: 100%;
    max-width: 900px;
    max-height: 300px;
    border-radius: 22px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    position: relative;
  }

  .about-right img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
  }

  /* PANAH NAVIGASI */
 
.img-box {
    position: relative;
    width: 80%;
    display: inline-block;
}

/* Gambar */
.img-box img {
    width: 100%;
    display: block;
    border-radius: 20px; /* opsional biar sama seperti screenshot */
}

/* Tombol navigasi */
.img-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    font-size: 38px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    z-index: 5;
}

.img-nav-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Posisi tombol kiri */
.prev-btn {
    left: 70px;
}

/* Posisi tombol kanan */
.next-btn {
    right: 70px;
}

  /* SECTION BACKGROUND LENGKUNG */
  .reason-section {
    padding: 80px 0;
    position: relative;
  }

  .reason-bg {
    width: 100%;
    height: 320px;
    background: #f7f5ff;
    border-radius: 120px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* TITLE */
  .reason-title h4 {
    font-size: 20px;
    color: #8f8f8f;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .reason-title h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #2b2b2b;
    margin-bottom: 50px;
  }

  /* CARD */
  .reason-card {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
  }

  .reason-card:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .reason-card:hover .reason-icon {
    color: white;
    transform: scale(1.2);
  }

  .reason-card:hover p {
    color: white;
  }

  /* ICON WRAPPER */
  .reason-icon {
    width: 65px;
    height: 65px;
    background: #eef0ff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-size: 26px;
    color: #4e51ff;
  }

  /* CARD TITLE */
  .reason-card h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  /* TEXT */
  .reason-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  /* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* Section jarak atas jadi 20% */
  .about_section {
    padding-top: 30% !important;
  }

  /* Pastikan gambar turun ke bawah */
  .about-left {
    order: 2;
  }

  .about-right {
    order: 1;
    margin-top: 20px; /* jarak biar rapi */
  }

  /* Atur lebar gambar biar full */
  .about-right .img-box {
    width: 100% !important;
  }

  /* Panah dikecilkan di mobile */
  .img-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }
  .reason-bg {
    border-radius: 70px;
  }
}
