:root {
    --bs-primary: #ff5722;
    --bs-success: #4caf50;
    --bs-danger: #e91e63;

    /* --mbd-blue-color: #10375C; */
    --mbd-blue-color: #12074e;
    --mbd-orange-color: #EB8317;
    --mbd-white-color: #EFEEEA;
}
/* ===========
    TEXT
=========== */
.text-mbd-blue {
    color: var(--mbd-blue-color) !important;
}
/* ===========
    BUTTON
=========== */
.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn.btn-primary {
    background-color: var(--mbd-blue-color);
    border-color: var(--mbd-blue-color);
    color: var(--contrast-color);
}

.btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
    border-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
    transform: translateY(-2px);
}

.btn.btn-outline {
    border: 2px solid color-mix(in srgb, var(--mbd-blue-color), transparent 70%);
    color: var(--mbd-blue-color);
    background: transparent;
}

.btn.btn-outline:hover {
    background-color: var(--mbd-blue-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.btn-demo {
  /* background: linear-gradient(to right, #1a237e, #3b4ef8); */
  background: linear-gradient(135deg, #3b4ef8 0%, #a336ff 100%);
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  font-size: 15px !important;
  padding: 10px !important;
  color: #EFEEEA !important;
  font-weight: 900 !important;
}
.btn-demo:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, var(--accent-color), transparent 15%); */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  animation: pulse 1s infinite;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  /* padding: 80px 0; */
  padding: 120px 0 60px 0;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.hero .content h2 {
  /* font-size: 3.5rem; */
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: black;
}

@media (max-width: 991px) {
  .hero .content h2 {
    font-size: 2.5rem;
  }
}

.hero .content .lead {
  /* font-size: 1.25rem; */
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
  }
}

.hero .cta-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .cta-buttons .btn.btn-primary {
  background-color: var(--mbd-blue-color);
  border-color: var(--mbd-blue-color);
  color: var(--contrast-color);
}

.hero .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
  border-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
  transform: translateY(-2px);
}

.hero .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--mbd-blue-color), transparent 70%);
  color: var(--mbd-blue-color);
  background: transparent;
}

.hero .cta-buttons .btn.btn-outline:hover {
  background-color: var(--mbd-blue-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
}

.hero .hero-image {
  position: relative;
  padding: 2rem;
}

.hero .hero-image img {
  position: relative;
  z-index: 2;
}

.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1;
}

.hero .hero-image .shape-1 {
  width: 300px;
  height: 300px;
  background-color: color-mix(in srgb, var(--mbd-blue-color), transparent 85%);
  top: -20px;
  right: -20px;
  animation: morphShape 15s linear infinite;
}

.hero .hero-image .shape-2 {
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  bottom: -20px;
  left: -20px;
  animation: morphShape 20s linear infinite reverse;
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 60px 0;
  }

  .hero .cta-buttons {
    justify-content: center;
  }

  .hero .hero-stats {
    justify-content: center;
  }

  .hero .hero-image {
    margin-top: 3rem;
  }
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}
/* =========
   CAROUSEL
============ */

/* Ukuran tombol panah */
.custom-arrow {
    width: 60px;
    height: 60px;
    transition: background-color 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
    /* Opsional: biar berbentuk lingkaran */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30% !important;
    /* transform: translateY(-50%) !important; */
}

/* Arrow default (putih) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 40px;
    height: 40px;
    transition: filter 0.3s ease;
}

/* Saat tombol di-hover -> background jadi abu gelap + arrow jadi gelap */
.custom-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.custom-arrow:hover .carousel-control-prev-icon,
.custom-arrow:hover .carousel-control-next-icon {
    filter: invert(0);
    /* jadi dark */
}
/* =========
About
========= */
.about-text-wrapper {
    column-count: 2;
    column-gap: 60px;
}

.about-text-wrapper p {
    margin: 0;
    text-align: justify;
    text-indent: 2em;/* Ukuran tab/alinea, bisa disesuaikan */
    line-height: 1.7; /* Opsional: biar paragrafnya lebih nyaman dibaca */
}
.about-image img{
  max-height: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
    .about-text-wrapper {
        column-count: 1;
    }
}
/* =========
Trusted By
========= */
.trustedby-slider .swiper-wrapper {
    display: flex !important;
    justify-content: center !important;
    /* RATA TENGAH */
    align-items: center;
}
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo */
.trust-img {
    max-height: 70px;
    width: auto;
    /* opacity: 0.7; */
    transition: 0.3s;
    /* filter: grayscale(100%); */
}

.trust-img:hover {
    opacity: 1;
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

/* =======
SEJARAH
======== */
/* batas lebar gambar ketika float kanan (desktop) */
.sejarah-img {
    max-width: 45%;
}

/* di mobile ukuran gambar harus 100% dan float dilepas */
@media (max-width: 991.98px) {
    .sejarah-img {
        max-width: 100%;
        float: none !important;
        margin: 0 0 1rem 0 !important;
        /* jarak bawah */
    }
}

/* utilitas supaya teks rapi */
.text-justify {
    text-align: justify;
}

/* ======== */
/* pricing */
/* ======== */
.pricing-card {
    border-radius: 14px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card .card-header h4 {
    font-size: 1.25rem;
}

.pricing-card ul li i {
    font-size: 1.1rem;
}

/* ==========
  service
============*/
.services-img-float {
    float: left;
    width: 50%;
    max-width: 500px;
    margin-right: 30px;
    margin-bottom: 15px;
    /* border-radius: 8px; */
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 768px) {
    .services-img-float {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  /* font-size: 26px; */
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: -5px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.testimonials .testimonial-item .profile {
    margin-top: auto;
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--mbd-blue-color);
  border-color: var(--mbd-blue-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}
/* VISI MISI */
.about .visi-misi {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about .visi-misi .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about .visi-misi .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .visi-misi .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}