/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rubik&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Colors ==========*/
  /* Change favorite color - Blue 210 - Purple 250 - Green 142 - Pink 340*/
  --hue-color: 210;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 96%, 54%);
  --first-color-light: hsl(var(--hue-color), 96%, 69%);
  --first-color-alt: hsl(var(--hue-color), 96%, 37%);
  --first-color-lighter: hsl(var(--hue-color), 14%, 96%);
  --title-color: hsl(var(--hue-color), 12%, 15%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --text-color-light: hsl(var(--hue-color), 12%, 65%);
  --white-color: #FFF;
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --pricing-font: 'Rubik', sans-serif;
  --biggest-font-size: 1.75rem;
  --normal-font-size: .938rem;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --tiny-font-size: .625rem;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.125rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
    --tiny-font-size: .688rem;
  }
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.container {
  max-width: 1024px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

/*==================== CARD PRICING ====================*/
.card {
  padding: 3rem 0;
}

.card__container {
  gap: 3rem 1.25rem;
}

/
/* Styling for Clients Section */

/* Container for clients section */
.container {
  max-width: 1200px; /* Adjust the maximum width as needed */
  margin: 0 auto; /* Center align the container */
  padding: 20px;
}


/* kenapa harus kami */

/* Title and subtitle styling */
.mbr-section-title {
  text-align: center;
  font-size: 3rem; /* Adjust the font size for the section title */
  margin-bottom: 20px;
}

.mbr-section-subtitle {
  text-align: center;
  font-size: 1.5rem; /* Adjust the font size for the section subtitle */
  color: #777; /* Set the color of the subtitle */
  margin-bottom: 40px;
}

/* Styling for carousel items */
.carousel-item {
  text-align: center;
  padding: 0 10px; /* Adjust padding for carousel items */
}

.clients-img {
  max-width: 100%; /* Ensure images don't exceed their container */
  height: auto; /* Maintain aspect ratio of images */
  display: inline-block;
}

/* Styling for carousel controls */
.carousel-controls {
  text-align: center;
  margin-top: 20px;
}

.carousel-control {
  width: 50px; /* Set width for carousel control buttons */
  height: 50px; /* Set height for carousel control buttons */
  border-radius: 50%; /* Make control buttons circular */
  background-color: rgba(0, 0, 0, 0.5); /* Set background color with transparency */
  color: #fff; /* Set color for control button icons */
  font-size: 1.5rem; /* Adjust icon size */
  line-height: 50px; /* Center icon vertically */
  margin: 0 10px; /* Adjust margin between control buttons */
}

/* Hover effect for carousel controls */
.carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darken background on hover */
  transition: background-color 0.3s ease; /* Smooth transition effect */
}

/* Styling for Choose Us Block */

/* Container for choose us block */
.container {
  max-width: 1200px; /* Sesuaikan lebar maksimum container */
  margin: 0 auto; /* Pusatkan container */
  padding: 20px;
}

/* Title styling */
h2 {
  font-size: 3rem; /* Sesuaikan ukuran font untuk judul */
  text-align: center;
  margin-bottom: 20px;
}

/* Subtitle styling */
h4 {
  font-size: 1.5rem; /* Sesuaikan ukuran font untuk subjudul */
  text-align: center;
  color: #777; /* Atur warna teks subjudul */
  margin-bottom: 40px;
}

/* Styling for image */
.img-responsive {
  max-width: 100%; /* Pastikan gambar tidak melebihi lebar parent */
  height: auto; /* Pertahankan rasio aspek gambar */
}

/* Styling for accordion panels */
.panel-default {
  border: none; /* Hapus border default panel */
  border-radius: 0; /* Hapus border radius */
}

.panel-title {
  font-size: 1.2rem; /* Ukuran font untuk judul panel */
}

.panel-body {
  font-size: 1rem; /* Ukuran font untuk konten panel */
  line-height: 1.6; /* Jarak baris konten panel */
}

.panel-heading {
  padding: 0; /* Hapus padding pada heading panel */
}

/* Styling for accordion links */
.accordion-toggle {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333; /* Atur warna teks link */
  background-color: #f5f5f5; /* Atur warna latar belakang link */
  border-bottom: 1px solid #ddd; /* Garis pemisah antar link */
}

.accordion-toggle:hover {
  background-color: #e5e5e5; /* Warna latar belakang saat hover */
}

/* Icon untuk accordion */
.accordion-toggle::after {
  content: '\002B'; /* Tambahkan tanda plus (+) sebagai default */
  font-size: 1.2rem;
  float: right;
  margin-right: 20px;
}

/* Icon untuk accordion saat terbuka */
.accordion-toggle.collapsed::after {
  content: '\2212'; /* Ganti tanda plus (+) dengan minus (-) saat terbuka */
}


.card__content {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
  transition: .4s;
}

.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
}

.card__header-img {
  width: 30px;
  height: 30px;
}

.card__header-circle {
  width: 40px;
  height: 40px;
  background-color: var(--first-color-lighter);
  border-radius: 50%;
  margin-bottom: var(--mb-1);
  place-items: center;
}

.card__header-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-transform: uppercase;
  margin-bottom: var(--mb-0-25);
}

.card__header-title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.card__pricing {
  position: absolute;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  width: 60px;
  height: 88px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}

.card__pricing-number {
  font-family: var(--pricing-font);
}

.card__pricing-symbol {
  font-size: var(--smaller-font-size);
}

.card__pricing-number {
  font-size: var(--h2-font-size);
}

.card__pricing-month {
  display: block;
  font-size: var(--tiny-font-size);
}

.card__pricing-number, 
.card__pricing-month {
  color: var(--white-color);
}

.card__pricing::after, 
.card__pricing::before {
  content: '';
  position: absolute;
}

.card__pricing::after {
  width: 100%;
  height: 14px;
  background-color: var(--white-color);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__pricing::before {
  width: 14px;
  height: 16px;
  background-color: var(--first-color-alt);
  top: 0;
  left: -14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.card__list {
  row-gap: .5rem;
  margin-bottom: var(--mb-2);
}

.card__list-item {
  display: flex;
  align-items: center;
}

.card__list-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-right: var(--mb-0-5);
}

.card__button {
  padding: 1.25rem;
  border: none;
  font-size: var(--normal-font-size);
  border-radius: .5rem;
  background: linear-gradient(157deg, var(--first-color-light) -12%, var(--first-color) 109%);
  color: var(--white-color);
  cursor: pointer;
  transition: .4s;
}

.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue-color), 97%, 54%, 0.2);
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  .card__content {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__content {
    grid-template-rows: repeat(2, max-content);
  }
  .card__button {
    align-self: flex-end;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .card {
    height: 100vh;
    align-items: center;
  }

  .card-atas {
    height: 50vh;
    align-items: center;
  }

  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__header-circle {
    margin-bottom: var(--mb-1-25);
  }
  .card__header-subtitle {
    font-size: var(--small-font-size);
  }
}