body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
.hero-pattern {
  background-color: #fa7805;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    );
}

.menu a:hover {
  color: #fa7805;
}

#ubah a:hover {
  color: #fa7805;
}
.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.faq-item {
  transition: all 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.benefit-card {
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cta-button {
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 120, 212, 0.3),
    0 4px 6px -2px rgba(0, 120, 212, 0.2);
}
.material-card {
  transition: all 0.3s ease;
}
.material-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.faq-container {
  max-width: 600px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  padding: 16px 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f4f6f8;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 300px;
}

/* //.testimonial-card */
h2 {
  text-align: center;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px;
  scroll-behavior: smooth;
}

.card-container::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 auto;
  width: 80%;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.alumni-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.initial {
  background-color: orange;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.alumni-name {
  font-weight: bold;
  font-size: 16px;
}

.alumni-role {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.stars {
  color: #ffcc00;
  margin: 5px 0;
  font-size: 16px;
}

.testimonial {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.read-more {
  color: #007bff;
  cursor: pointer;
  font-size: 13px;
  margin-top: 5px;
  display: inline-block;
}

@media (min-width: 768px) {
  .card-container {
    overflow-x: hidden;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .card {
    flex: 1 0 22%;
    max-width: 22%;
  }
}
/* //.end testimonial-card */

.map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.map-wrapper iframe {
  max-width: 100%;
  width: 600px;
  height: 450px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
