
  
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #fff;
    }

    /* HEADER */
    header {
      background: #e5002b;
      color: white;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    header h1 {
      margin: 0;
      font-size: 24px;
    }

    nav a {
      color: white;
      margin-left: 20px;
      text-decoration: none;
      font-weight: bold;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: #e5002b;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 100;
      }
      nav a {
        margin: 10px 0;
      }
      .menu-toggle {
        display: block;
      }
    }

    nav.show {
      display: flex;
    }

    /* HERO SECTION */
    .hero {
      background: linear-gradient(135deg, #e5002b, #ff5c5c);
      color: white;
      text-align: center;
      padding: 80px 20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-content {
      max-width: 500px;
    }

    .hero h2 {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.6;
    }

    .hero .btn {
      margin-top: 30px;
      padding: 12px 30px;
      background-color: white;
      color: #e5002b;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 16px;
    }

    /* Gambar Tambahan */
    .hero-img {
      margin-top: 30px;
      width: 100%;
      max-width: 350px;
     
    }

    /* Desktop: text kiri, gambar kanan */
    @media (min-width: 1024px) {
      .hero {
        flex-direction: row;
        text-align: left;
        padding: 80px 100px;
      }
      .hero-content {
        flex: 1;
        padding-right: 50px;
      }
      .hero-img {
        flex: 1;
        margin-top: 0;
        max-width: 400px;
      }
    }

    /* SECTION: PENGENALAN */
    .intro {
      background: linear-gradient(135deg, #e5002b, #ff5c5c);
      padding: 60px 20px;
      color: white;
      text-align: center;
    }

    .intro h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .intro p {
      font-size: 18px;
      max-width: 700px;
      margin: auto;
      line-height: 1.6;
    }

    .intro .features {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .feature-box {
      background: white;
      color: #e5002b;
      border-radius: 16px;
      padding: 30px 20px;
      width: 280px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .feature-box img {
      width: 40px;
      margin-bottom: 15px;
    }

    /* SECTION: LANGKAH */
    .steps {
      max-width: 500px;
      margin: 40px auto;
      border-radius: 20px;
      background: linear-gradient(to bottom, #2d0d0f, #670818);
      color: white;
      padding: 20px;
    }

    .steps h2 {
      margin-top: 0;
      font-size: 20px;
      font-weight: bold;
    }

    .steps p.subtitle {
      font-size: 14px;
      color: #e0e0e0;
    }

    .step {
      background-color: white;
      border-radius: 16px;
      padding: 15px;
      margin: 20px 0;
      display: flex;
      color: black;
    }

    .step-number {
      background-color: red;
      color: white;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 10px;
    }

    .step-content p {
      font-size: 14px;
      margin: 0;
    }

    /* SECTION: VIDEO */
    .video-section {
      max-width: 800px;
      margin: 50px auto;
      text-align: center;
      padding: 20px;
    }

    .video-section h2 {
      font-size: 24px;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      margin-top: 20px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
/* TESTIMONI SECTION */
    .testimoni {
      background: #c0bdbd;
      padding: 60px 20px;
      text-align: center;
    }

    .testimoni h2 {
      font-size: 32px;
      color: #e5002b;
      margin-bottom: 40px;
    }

    .testimonial-slider {
      display: flex;
      justify-content: center;
      overflow: hidden;
      max-width: 700px;
      margin: auto;
      position: relative;
    }

    .testimonial-card {
      min-width: 100%;
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      align-items: center;
      transition: opacity 0.5s ease-in-out;
    }

    .testimonial-card.active {
      display: flex;
    }

    .avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    .message {
      font-size: 18px;
      font-style: italic;
      color: #333;
      margin-bottom: 20px;
      max-width: 500px;
    }

    .author {
      font-size: 20px;
      font-weight: bold;
      color: #e5002b;
    }

    .location {
      font-size: 14px;
      color: #666;
    }

    .dots {
      margin-top: 20px;
    }

    .dot {
      height: 15px;
      width: 15px;
      margin: 0 5px;
      background-color: #f8f2f2;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #e5002b;
    }
    /* FAQ SECTION */
    .faq {
      background: #ffffff;
      padding: 60px 20px;
      text-align: left;
    }
     .faq h2 {
      font-size: 32px;
      color: #e5002b;
      margin-bottom: 40px;
      text-align: center;
    }

.bg3 {
    background: #222222;
  }

.section-1 {
  padding: 5vmin 0vmin;
}

.section-1 .row .col-md-6 .pray img {
  position: relative;

  width: 100%;
  border-radius: 0.2em;
  right: -8vmin;
  top: 15vmin;
  box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.section-1 .row .col-md-6 .pray1 img {
  position: relative;
  opacity: 0.8;
  width: 100%;
  border-radius: 0.2em;
  left: -8vmin;
  bottom: -15vmin;

}

.section-1 .row .col-md-6:last-child {
  position: relative;
}

.section-1 .row .col-md-6 .panel {
  position: relative;
  background: rgb(85, 82, 82);
  border-radius: 3px;
  text-align: left;
  padding: 13vmin 5vmin 0vmin 10vmin;
  box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
  font-family: var(--Rubik);
}

.section-1 .row .col-md-6 .panel1 {

  background: rgb(85, 82, 82);
  border-radius: 3px;
  text-align: left;
  padding: 13vmin 5vmin 20vmin 10vmin;
  box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
  font-family: var(--Rubik);
}

.section-1 .row .col-md-6 .panel h1 {
  font-weight: bold;
  padding: 0.4em 0;
  font-size: 2em;
}

.section-1 .row .col-md-6 .panel p {
  font-size: 0.9em;
  color: black;
}

.main_footer {
  padding: 1vmin 1vmin;
  background: #e5002b;
  
  overflow-x: hidden;
}

.main_footer1 {
  padding: 1vmin 10vmin;
  background: rgba(0, 0, 0, 0.815);
  overflow-x: hidden;
}
.koko {}

.koko .wrapper img {

  z-index: 20;
  border-radius: 50%;
  display: block;
  height: 200px;
  width: 200px;
  border: 5px solid #fff;
  object-fit: cover;
  margin: 20px auto;
  transition: all 0.3s ease;

}