.service-box {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
    padding-left: 0;
    min-height: 120px;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 220px;
}

.service-image-wrapper {
    position: relative;
    width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.service-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.95);
}

.service-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    position: relative;
}

.service-number {
    font-size: 22px;
    font-weight: bold;
    color: #6b34c1;
    margin-right: 10px;
}

.service-bar {
    width: 5px;
    height: 30px;
    background-color: gold;
    margin-right: 10px;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-text h5 {
    margin: 0;
    font-weight: bold;
    color: #6b34c1;
    font-size: 18px;
}

.service-desc {
    margin: 5px 0 10px;
    color: #333;
    font-size: 14px;
}

.read-more-btn {
    align-self: flex-start;
    background-color: #6b34c1;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #50269b;
}

.corner-highlight {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-top: 4px solid gold;
    border-right: 4px solid gold;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .service-box {
        flex-direction: column;
    }

    .service-image-wrapper {
        width: 100%;
        height: 150px;
        clip-path: none;
        border-radius: 10px 10px 0 0;
    }

    .service-content {
        padding: 15px;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 4px 10px;
    }
    
}

    .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-family: var(--font-exo);
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color);
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #FADB5F; /* Kuning pastel seperti gambar */
  border-radius: 1px; /* agak kotak, bisa 0 kalau mau benar-benar kotak */
}

.card-style2 {
  margin-bottom: 30px;
  border-radius: 25px;
  box-shadow: 0px 4px 8px 0px rgba(4, 0, 52, 0.1);
  border: 3px solid var(--background-color);
  padding: 20px;
}


    .service-image-wrapper2 {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .service-image-wrapper2 img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

    .overlay-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right bottom, rgba(128, 0, 255, 0.7), rgba(0, 0, 0, 0.3));
        z-index: 1;
        pointer-events: none;
        border-radius: 12px;
    }

    .service-image-wrapper3 {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .overlay-gradient2 {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right bottom, rgba(128, 0, 255, 0.7), rgba(0, 0, 0, 0.3));
        z-index: 0; /* di bawah gambar */
    }

    .service-image-wrapper3 img {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1; /* pastikan di atas gradient */
        border-radius: 12px;
    }

    .read-more-btn{
      border: none;
      text-align: center;
      background-color: var(--theme-color);
      color: var(--white-color);
      font-family: var(--body-font);
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      padding: 10px 20px;
      border-radius: 25px;
      overflow: hidden;
    }

    .read-more-btn:hover{
      color: var(--white-color);
    }

      .contact-section {
      background-color: #ffffff;
      padding: 60px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      margin-top: 50px;
    }

    .contact-info .icon {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--background-color);
      color: #fff;
      border-radius: 50%;
      margin-right: 15px;
    }

    .contact-info li {
      margin-bottom: 20px;
      list-style: none;
      display: flex;
      align-items: center;
    }

    .social-icons a {
      text-decoration: none;
      color: white;
      background-color: var(--background-color);
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 10px;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #966cd4;
    }


    iframe {
      width: 100%;
      height: 300px;
      border: none;
      margin-top: 40px;
      border-radius: 12px;
    }

    .contact-item {
      margin-top: 10px;
    }

    .contact-label {
      font-weight: 600;
      font-size: 25px;
      margin-bottom: 15px;
      color: var(--black-color);
    }

    .icon-circle {
      color: white;
      background-color: var(--background-color);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 5px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
      color: #333;
    }

  .footer-widget ul li {
    margin: 5px 0;
  }

  .footer-widget ul li a{
    margin: 5px 0;
    font-weight: 500;
    color: var(--body-color);
  }

   .footer-widget ul li a:hover{
    color: var(--theme-color);
  }