.toggle-wrapper {
    margin-bottom: 20px;
  }
  
  .billing-labels {
    display: inline-block;
    margin-left: 10px;
  }
  
  .billing-labels .yearly {
    margin-right: 10px;
  }
  
  #billingToggle {
    position: relative;
    width: 50px;
    height: 25px;
    appearance: none;
    background-color: #ddd;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #billingToggle::before {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    background-color: #fff;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: 0.3s;
  }
  
  #billingToggle:checked {
    background-color: #4CAF50;
  }
  
  #billingToggle:checked::before {
    transform: translateX(25px);
  }
  
  .price-monthly {
    display: none;
  }
  
  .pricing-item ul li {
    padding: 10px 0;
    font-size: 16px;
  }
  
  .pricing-item ul li i {
    font-size: 18px;
    color: #28a745; /* Use the color that matches your theme */
  }
  
  .pricing-item ul li i.bi-info-circle {
    color: #07cc00; /* Color for info icon */
  }
  
  .pricing-item ul li span {
    font-weight: bold;
    color: #333;
  }

  
  .pricing-item ul li {
    padding: 10px 0;
    font-size: 16px;
  }
  
  .pricing-item ul li i {
    font-size: 18px;
    color: #28a745; /* Use the color that matches your theme */
  }
  
  .pricing-item ul li i.bi-info-circle {
    color: #0066cc; /* Color for info icon */
  }
  
  .pricing-item ul li span {
    color: #706f6f;
  }
  
  .pricing-item ul li span.highlight {
    font-weight: bold;
    color: #000000; /* Highlighted color (use a color that stands out) */
  }
  
  .unavailable span {
    position: relative;
    color: #b3b3b3; /* Light grey color for unavailable text */
  }
  
  .unavailable span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid #000000; /* Thicker strike-through */
    transform: translateY(-50%);
  }

  .unavailableAdd {
    text-decoration: line-through;
    color: rgb(0, 0, 0);
    text-decoration-thickness: 2px;
  }
  
  /*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 {
  --background-color: (in srgb, var(--heading-color), transparent 95%);
}

.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--contrast-color);
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
  

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}
  
/* Set a consistent size for the Lottie animation container */
.lottie-animation {
  width: 100%;
  height: 250px; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optionally, set the max-width for smaller screens */
@media (max-width: 768px) {
  .lottie-animation {
    height: 200px; /* Adjust the height for smaller screens if needed */
  }
}

.card .pricing {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  margin-top: 15px;
}

.card .pricing ul {
  padding: 0;
  margin-bottom: 10px;
}

.card .pricing ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}

.card .pricing .price {
  text-align: center;
}

.card .pricing .price span {
  font-size: 12px;
  color: #6c757d;
}

.card .pricing .price h3 {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.card .pricing .price p {
  font-size: 12px;
  color: #6c757d;
}

/* Button styling for 'Try it free' */
.btn-try {
  color: white;
  background-color: #007bff; /* Blue background */
  border: 2px solid #007bff;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button styling for 'Contact Us' */
.btn-contact {
  color: #007bff; /* Blue text */
  background-color: transparent;
  border: 2px solid #007bff;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effects */
.btn-try:hover {
  background-color: white;
  color: #007bff;
}

.btn-contact:hover {
  background-color: #007bff;
  color: white;
}

/* Center the buttons and align horizontally */
.button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  gap: 20px; /* Space between buttons */
  margin-top: 20px; /* Space from pricing */
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .price {
  margin-top: 15px;  /* Tambahkan jarak di atas bagian harga */
}

.card .btn {
  margin-bottom: 20px; /* Tambahkan jarak di bawah tombol agar tidak terlalu dekat dengan batas kartu */
}

.pricing h3 {
  margin: 10px 0 20px; /* Jarak antar harga dan teks lain lebih teratur */
}

.pricing p {
  margin: 5px 0; /* Jarak antar paragraf dalam pricing */
}

  