@font-face{
    font-family: "CoFo Sans";
    src: url("../font/932d2c43862bc10d3150ef2c721ee753.eot");
    src: url("../font/932d2c43862bc10d3150ef2c721ee753.eot?#iefix")format("embedded-opentype"),
        url("../font/932d2c43862bc10d3150ef2c721ee753.woff")format("woff"),
        url("../font/932d2c43862bc10d3150ef2c721ee753.woff2")format("woff2"),
        url("../font/932d2c43862bc10d3150ef2c721ee753.ttf")format("truetype"),
        url("../font/932d2c43862bc10d3150ef2c721ee753.svg#CoFo Sans")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

@font-face {
    font-family: 'Venice Blvd';
    src: url('../new-font/VeniceBlvd-Bold.woff2') format('woff2'),
        url('../new-font/VeniceBlvd-Bold.woff') format('woff'),
        url('../new-font/VeniceBlvd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



* {
    cursor: url('/assets/img/mkf-ball.cur')0 0, auto !important;
}

/* General */
body {
    font-family: "CoFo Sans";
    margin: 0;
    padding: 0;
    cursor: url('/assets/img/mkf-ball.cur')0 0, auto !important;
}

/* Navbar Default */
.navbar {
    background: transparent;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Navbar Saat di Scroll */
.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo mengecil saat scroll */
.navbar.scrolled .navbar-brand img.logo {
    width: 120px;
    height: auto;
}

/* Warna teks tetap hitam */
.navbar.scrolled .nav-link {
    color: rgb(0, 0, 0) !important;
}

.navbar-brand img.logo {
    width: 147px;
    height: auto;
    transition: all 0.3s ease-in-out;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.764));
    /* margin-top: 20px; */
}

.navbar-brand img.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px rgba(213, 166, 0, 0.6));
}

/* Menu Link */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255) !important;
    margin-left: 15px;
    font-family: "CoFo Sans";
}

.navbar-nav .nav-link:hover {
    color: #BBFE18 !important;
}

/* Tombol Get Involved */
.btn-white {
    padding: 8px 12px;
    border-radius: 10px;
    background: #3B463B;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    font-family: "CoFo Sans";
    margin: 0 10px;
}

/* .navbar.scrolled .btn-white {
    border: 1px solid #BBFE18;
} */

.btn-white:hover {
    background-color: #A8BCA4;
    color: #3B463B;
}

/* Offcanvas Navbar (Mobile) */
.offcanvas {
    background-color: #90A58D; /* Warna putih meskipun navbar utama transparan */
    max-width: 80%;
}

.offcanvas-header h5 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.offcanvas-body .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: black !important;
}

.offcanvas-body .navbar-nav .nav-link:hover {
    color: #BBFE18 !important;
}

/* Styling dropdown menu */
.custom-dropdown-menu {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9); /* semi transparan */
    backdrop-filter: blur(8px); /* efek blur */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
    min-width: 220px;
    transition: all 0.3s ease;
}

/* Dropdown item styling */
.custom-dropdown-item {
    position: relative;
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Underline effect */
.custom-dropdown-item::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0%;
    height: 2px;
    background: #3B463B;
    transition: width 0.3s ease;
}

/* Hover effect */
.custom-dropdown-item:hover {
    background: transparent;
    color: #A8BCA4;
    transform: translateX(5px); /* geser sedikit kanan */
}

.custom-dropdown-item:hover::after {
    width: calc(100% - 40px); /* garis full lebar, kurangi padding */
}

/* Optional: highlight current active */
.custom-dropdown-item.active {
    color: #fff;
    font-weight: 600;
    background-color: #3B463B;
}

/* Navbar active link */
.navbar .nav-link.active,
.navbar .nav-link.show,
.navbar .dropdown-item.active {
    color: #BBFE18 !important;
    font-weight: 600;
    position: relative;
}

.navbar.scrolled .nav-link.active,
.navbar.scrolled .nav-link.show,
.navbar.scrolled .dropdown-item.active {
    color: #3B463B !important;
}

/* Option: kasih underline animasi untuk active */
.navbar .nav-link.active::after,
.navbar .dropdown-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #9cd600;
    border-radius: 2px;
}



/* Responsiveness */
@media (max-width: 992px) {
    .navbar {
        background: white !important; /* Navbar mobile selalu putih */
    }

    .navbar-brand img.logo {
        margin-top: 0;
    }
}

/* Container sticky di bawah */
.sticky-bottom-btn {
    position: fixed;
    bottom: 0px; /* jarak dari bawah */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
    padding: 0 20px;
}

/* Tombol utama */
.cta-donation {
    background-color: #3B463B;
    color: #FFF;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 100%; /* biar ga terlalu lebar di desktop */
}

/* Hover effect */
.cta-donation:hover {
    background-color: #A8BCA4;
    color: #3B463B;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Ball image */
.cta-ball {
    width: 20px;
    height: 20px;
    animation: bounce 1.2s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-7px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .cta-donation {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .cta-ball {
        width: 15px;
        height: 15px;
    }
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    /* justify-content: center;
    align-items: center;
    text-align: center; */
    color: white;
    padding: 100px 0;
    background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(0deg, rgba(114, 124, 110, 0.5), rgba(114, 124, 110, 0.5)),
    url('/assets/img/hero-landing.jpg'); /* Ganti dengan path gambar yang sesuai */

    background-size: cover;  /* Menyesuaikan gambar dengan ukuran layar */
    background-position: center;  /* Posisi tengah */
    background-repeat: no-repeat;  /* Hindari pengulangan gambar */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-size: 48px;
    font-family: "Venice Blvd";
    font-weight: 700;
    line-height: 1.3;
    margin: 0 auto;
}
.slide-hero.active .hero-title {
    display: block;
}
.btn-watch {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.btn-involved {
    background-color: #3B463B;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.btn-involved:hover {
    background-color: #A8BCA4;
    color: #3B463B;
}

.btn-watch {
    cursor:pointer;
}

.btn-watch:hover {
    color: #BBFE18;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
    }
}


/* Style untuk Section */
.marc-klok-section {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    z-index: -1;
}

.marc-klok-section .section-title {
    font-size: 40px;
    font-family: "CoFo Sans";
    font-weight: 700;
    padding: 0 20px;

}

.marc-klok-section .section-description {
    font-size: 20px;
    font-family: "CoFo Sans";
    font-weight: 300;
    text-align: justify;
    margin-bottom: 15px;
    margin-top: 30px;
    padding:0px 40px 0px 20px;
}

.marc-klok-section .see-impact-btn {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    background-color: #3B463B;
    border-radius: 10px;
    color: #FFF;
    margin: 30px 20px;
}

.marc-klok-section .see-impact-btn:hover {
    background-color: #A8BCA4;
    color: #3B463B;
}

/* Style untuk Elemen Gambar */
.marc-klok-section .position-relative {
    position: relative;
}

.marc-klok-section .image-mkf {
    padding: 0px;
}

.marc-klok-section .image-1 {
    width: auto;
    height: 80vh;
}

.marc-klok-section .row {
    margin-right: 0px;
    margin-left: 0px;
}

@media (max-width:990px) {
    .marc-klok-section .image-1 {
        width: 100%;
        height: auto;
    }
}


/* Section Key Programs */
.key-programs-section {
    padding: 80px 0;
    background:#3B463B ;
    text-align: center;
    overflow: visible;
}

.key-programs-section .container {
    padding-left: 60px;
    padding-right: 60px;
}

.key-programs-section .section-title h2 {
    font-weight: 700;
    font-family: "CoFo Sans";
    color: #BBFE18;
    font-size: 2.4rem;
}

.key-programs-section .section-title p {
    font-size: 16px;
    color: #ffffff;
}

@media(max-width:990px) {
    .key-programs-section .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 95%;
    }
}


/* Swiper Container */
.swiper {
    width: 100%;
    overflow: hidden;
}

/* Perbaiki tampilan Swiper agar sejajar */
.swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Swiper Slide */
.swiper-slide {
    flex: 0 0 auto;
    width: calc(100% / 3); /* 3 card per slide di desktop */
    max-width: 100%;
    padding: 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .swiper-slide {
        width: 100%; /* Hanya 1 card per slide di mobile */
    }
}

/* Program Card */
.program-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease-in-out;
}

.program-card:hover {
    transform: translateY(-5px);
}

/* Badge */
.program-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #BBFE18;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    z-index: 2;
}

/* Image */
.card-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* Maksimum 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-hover {
    background-color: #3B463B;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.card-hover .title {
    font-weight: bold;
    color: #BBFE18;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.card-hover .desc {
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    color: #FFF;
    font-size: 14px;
    text-align: left;
}

/* Hover Effects */
.card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-hover:hover .title {
    text-align: left;
    margin-bottom: 10px;
}

.card-hover:hover .desc {
    opacity: 1;
    max-height: 300px;
}

/* Join Us Button */
.btn-join {
    background: #3B463B;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    transition: 0.3s;
}

.btn-join:hover {
    background: #A8BCA4;
    color: #3B463B;
}

.keyProgramsSwiper {
  position: relative;
  padding: 0 20px; /* Tambahkan ruang untuk tombol */
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #90A58D;
  z-index: 10;
  display: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2em;
    font-weight: 800;
    display: none;
}

.swiper-button-prev {
  left: -5px; /* Bisa diganti sesuai kebutuhan */
}

.swiper-button-next {
  right: -5px;
}
.swiper-pagination-bullet {
    background: #BBFE18;
}

@media (max-width: 767px) {
    .swiper {
        padding-bottom: 20px;
    }
}



/* Section Our Impact */
.our-impact {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    background: white;
    margin: 0 auto;
}

.container-impact {
    margin: 0 auto;
    width: 95%;
}

.impact-box {
    background: url('../img/bg-impact.png');
    background-size: cover;  /* Menyesuaikan gambar dengan ukuran layar */
    background-position: center;  /* Posisi tengah */
    background-repeat: no-repeat;  /* Hindari pengulangan gambar */
    color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Title */
.impact-title {
    font-size: 32px;
    font-family: "CoFo Sans";
    font-weight: 700;
    margin-bottom: 10px;
    color: #BBFE18;
}

/* Description */
.impact-text {
    font-size: 20px;
    font-family: "CoFo Sans";
    font-weight: 300;
    margin-bottom: 20px;
}

/* Read More Button */
.btn-readmore {
    background: #3B463B;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
}

.btn-readmore:hover {
    background: #A8BCA4;
    color: #3B463B;
}

/* Bootstrap Modal Custom */
.modal-content {
    border-radius: 10px;
}
.modal-header {
    border-bottom: none;
}
.modal-body {
    text-align: start;
    font-size: 18px;
    font-family: "CoFo Sans";
}

/* Section Quotes */
.quote-section {
    padding: 50px 20px;
    text-align: justify;
    background: white;
    width: 70%;
    margin: 0 auto;
}

/* Quote Text */
.quote-text {
    font-size: 36px;
    font-weight: 700;
    font-family: "CoFo Sans";
    color: #636B60;
    /* text-shadow: 0px 8px 4px rgb(66 85 69 / 30%); */
    margin: 0 auto;
    line-height: 1.5;
}

/* Quote Author */
.quote-author {
    font-size: 30px;
    font-weight: 500;
    font-family: "CoFo Sans";
    color: #636B60;
    margin-top: 15px;
}
@media (max-width: 995px) {
    .quote-text {
        font-size: 28px;
    }
    .quote-section {
        width: 95%;
        padding: 50px 10px;
    }
}

@media (max-width: 512px) {
    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img.logo {
        width: 100px;
        height: auto;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        margin-left: 5px;
    }

    /* Hero Section */
    .hero {
        height: 75vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
        margin-top: 100px;
    }

    .btn-involved,
    .btn-watch {
        font-size: 14px;
        padding: 8px 15px;
    }

    /* Section Key Programs */
    .key-programs-section {
        padding: 50px 10px;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .key-programs-section p {
        font-size: 12px;
    }

    .program-card {
        border-radius: 10px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 12px;
    }

    .btn-join {
        font-size: 14px;
        padding: 8px 10px;
    }

    /* Section Marc Klok */
    .marc-klok-section {
        width: 95%;
        padding: 50px 10px;
    }

    .marc-klok-section .section-title {
        font-size: 28px;
        text-align: center;
    }

    .marc-klok-section .section-description {
        font-size: 14px;
        text-align: justify;
        padding: 0px;
    }

    /* Our Impact Section */
    .our-impact {
        padding: 40px 10px;
    }

    .container-impact {
        width: 95%;
    }

    .impact-title {
        font-size: 24px;
    }

    .impact-text {
        font-size: 14px;
    }

    .btn-readmore {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Quote Section */
    .quote-section {
        width: 95%;
        padding: 30px 10px;
    }

    .quote-text {
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    .quote-author {
        font-size: 18px;
        text-align: center;
    }

    /* About Us Section */
    .about-us-section {
        padding: 40px 10px;
    }

    /* Swiper Controls */
    .swiper-button-prev,
    .swiper-button-next {
        display: none; /* Sembunyikan tombol panah pada perangkat kecil */
    }

    .swiper-pagination {
        bottom: 10px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    /* Modal */
    .modal-content {
        padding: 10px;
    }

    .modal-body {
        font-size: 14px;
    }
}



/* Section About Us */
.about-us-section {
    position: relative;
    text-align: center;
    color: white;
}

/* Carousel Images */
.about-us-section .carousel-item img {
    width: 100%;
    height: 500px; /* Atur tinggi agar proporsional */
    object-fit: cover;
}

/* Overlay hitam */
.about-us-section .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ubah angka alpha untuk intensitas overlay */
    pointer-events: none; /* Agar overlay tidak mengganggu interaksi */
  }
  

/* Title About Us */
.about-title {
    position: absolute;
    top: 50%;
    /* left: 50%; */
    font-size: 5rem;
    font-family: "Venice Blvd";
    font-weight: 700;
    color: #FFF;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
}

.about-title h1 {
    font-weight: 800;
    font-size: 4rem;
}

/* Section Our Mission & Vision */
.mission-vision-section {
    position: relative;
    background: transparent;
    z-index: 10;
    font-family: "CoFo Sans";
    width: 80%;
    margin: 0 auto;
}

/* Card Styling */
.mission-card {
    /* background: #A8BCA4; */
    border-radius: 15px;
    padding: 40px;
    /* box-shadow: -10px 10px 8px rgba(0, 0, 0, 0.25); */
}

/* Title */
.mission-vision-section .section-title {
    font-size: 32px;
    font-family: "CoFo Sans";
    font-weight: 700;
    color: #BBFE18;
    text-align: start;
    margin-bottom: 20px;
}

.mission-vision-section h3 {
    color: #BBFE18;
    font-weight: 600;
    font-size: 25px;
}

/* Content Layout */
.content {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Text */
.text {
    color: black;
    font-size: 18px;
    font-family: "CoFo Sans";
    align-items: center;
}

.vision-box {
    background: #3B463B;
    border-left: 6px solid #636B60;
}

.mission-box {
    background: #3B463B;
    border-left: 6px solid #BBFE18;
}

.realised-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3B463B;
    font-size: 15px;
    color: #333;
}


.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.video-section {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 3 / 4 * 100% = 75% */
    overflow: hidden;
}

.video-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Section Our Team */
.our-team-section {
    position: relative;
    width: 80%;
    background: transparent;
    z-index: 10;
    margin : 0px auto 0 auto;
}

.our-team-card {
    /* background: #ffffff; */
    border-radius: 15px;
    padding: 5px;
    /* box-shadow: -10px 10px 8px rgba(0, 0, 0, 0.25);
    border: 1px solid #a0a0a08d; */
}

/* Title */
.our-team-section .section-title {
    font-size: 32px;
    font-family: "CoFo Sans";
    font-weight: 700;
    color: #3B463B;
    display: inline-block;
    padding-bottom: 10px;
}

.mission-vision-section .video-section iframe {
    width: 100%; 
    height :  100%;
}

/* Founder Card */
.founder-card {
    width: 250px;
    height: auto;
}

.founder-card .team-info h3 {
    font-size: 18px;
}

/* Team Card */
.team-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(99, 99, 99, 0.2) 100%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    max-width: 250px;
    max-height: 280px;
    margin: 15px auto;
    overflow: hidden; /* Tambahkan ini untuk mencegah gambar keluar dari batas */
}

.team-card img {
    width: 100%;
    height: 200px; /* Tetapkan tinggi tetap */
    border-radius: 10px;
    object-fit: cover; /* Gambar akan dipotong agar sesuai */
    object-position: top; /* Fokus pada bagian atas gambar */
}

.team-info {
    margin-top: 10px;
}

.team-info h3 {
    font-size: 12px;
    font-family: "CoFo Sans";
    font-weight: 600;
    color: black;
    margin-bottom: 0;
}

.team-info p {
    font-size: 14px;
    color: #3B463B;
}

.partner-swiper .swiper-slide {
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card-item {
    background-color: #3B463B;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    font-size: 14px;
}

.card-item-strong {
    color: #BBFE18;
    font-size: 16px;
}

@media (max-width: 995px) {
    .our-team-section {
        width:  100%;
    }
}


@media (max-width: 512px) {
    /* About Us Section */
    .about-us-section {
        padding: 0px 0px;
    }

    .about-us-section .carousel-item img {
        height: 300px; /* Kurangi tinggi gambar agar tidak terlalu besar */
        object-fit: cover;
        margin-top: 80px;
    }

    .about-title {
        font-size: 24px; /* Kurangi ukuran font */
        top: 50%;
        text-align: center;
    }

    .about-title h1{
        font-size: 3rem;
    }

    .mission-vision-section .section-title {
        font-size: 20px;
    }

    .mission-vision-section h3 {
        font-size: 16px;
    }

    /* Section Our Mission & Vision */
    .mission-vision-section {
        margin-top: 0; /* Kurangi overlapping */
        padding: 30px 10px;
        width: 100%;
    }

    .mission-card {
        padding: 20px;
    }

    .about-us-section .section-title {
        font-size: 24px;
        text-align: center;
    }

    .content {
        flex-direction: column;
        text-align: start;
    }

    .text {
        font-size: 14px;
    }

    .mission-vision-section iframe {
        max-width: 100%;
        max-height: 100%;
        width: 520px; 
        height :  300px;
    }

    .image img {
        width: 100%;
        height: auto;
    }

    .mission-vision-section .video-section {
        height: 200px;
        width: 100%;
    }

    /* Our Team Section */
    .our-team-section {
        margin-top: -50px;
        padding: 30px 10px;
        width: 100%;
    }

    .our-team-card {
        padding: 20px;
    }

    .founder-card {
        width: 200px;
    }

    .team-card {
        max-width: 200px;
        max-height: 900px;
    }

    .team-card img {
        height: 200px;
    }

    .team-info h3 {
        font-size: 14px;
    }

    .team-info p {
        font-size: 12px;
    }

    .mission-vision-section .swiper-slide {
        width: 30% !important;
    }
}


/* ========================Donasi Section============================= */


/* Left Section */
.left-section {
    background: #f8f9fa;
    padding: 0;
    font-family: "CoFo Sans";
}


.donate-section .image-banner img {
    width: 100%;
}

.left-section .content {
    padding: 30px 90px;
}

.left-section .content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 20px;
}

.left-section .content p {
    font-size: 14px;
}

.left-section .content p span{
    font-weight: 700;
}

.nav-tabs .nav-link {
    font-weight: bold;
    color: black;
}

.nav-tabs .nav-link.active {
    color: #3B463B;
    border-bottom: 3px solid #3B463B;
}

/* Right Section */
.right-section {
    background: rgba(168, 188, 164, 0.46);
    padding: 30px 60px;
    color: black;
    font-family: "CoFo Sans";

}

.donation-form {
    margin-top: 100px;
}

.right-section .donation-form .header-right {
    width: 100%;
    padding: 3px;
}

.right-section img {
    width: 300px;
    margin: 0 auto;
}

.donation-form h2 {
    font-size: 48px;
    font-weight: bold;
}

.donation-form p {
    font-size: 20px;
}

/* Konfirmasi Button */
.btn-dark {
    background-color: #A8BCA4;
    color: #ffffff;
    font-size: 16px;
    padding: 8px 32px;
    border: none;
}

.btn-dark:hover {
    background-color: #BBFE18;
    color: #3B463B;
}

.donation-box {
    background: #DDE6D5;
    padding: 30px;
    border-radius: 10px;
}

.nominal-btn {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #FFF;
    border-radius: 10px 0 10px 0;
    padding: 0.8rem 1rem;
    font-size: 12px;
}

.nominal-btn:hover {
    background-color:#636B60 ;
    border: none;
}

.nominal-btn.active {
    background-color: #636B60;
    color: white;
    border: none;
}

#formContent .form-control {
    line-height: 2;
}

.frequently {
    font-weight: 700;
    letter-spacing: 2px;
}

.form-check-input:checked  {
    background-color: #3B463B;
    border-color: #3B463B;
}

@media (max-width: 512px) {
    /* Left Section */
    .left-section .content {
        padding: 20px 20px; /* Kurangi padding agar tidak terlalu luas */
        text-align: left !important; /* Pastikan tetap align kiri */
    }

    .left-section .content h2 {
        font-size: 28px;
        text-align: left !important;
    }

    .left-section .content p {
        font-size: 14px;
        text-align: left !important;
    }

    /* Right Section */
    .right-section {
        padding: 20px 20px;
        text-align: left !important; /* Pastikan tetap align kiri */
    }

    .donation-form h2 {
        font-size: 32px;
        text-align: left !important;
    }

    .donation-form p {
        font-size: 16px;
        text-align: left !important;
    }

    /* Donation Box */
    .donation-box {
        padding: 20px;
    }

    /* Button */
    .btn-dark {
        width: 100%; /* Agar tombol tidak kepanjangan */
        text-align: center;
    }

    /* Pastikan form tidak center */
    #formContent .form-control {
        text-align: left !important;
    }

    /* Frequently Asked */
    .frequently {
        font-size: 14px;
        text-align: left !important;
    }

    /* Image */
    .right-section img {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    .donate-section .image-banner img {
        width: 100%;
        margin-top: 80px;
    }
}

/* ===================================Program====================================== */
/* General Program Card Style */
.card-program {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);

}

.card-program:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Image Section */
.program-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-program:hover .program-img img {
    transform: scale(1.1);
}

/* Body Section */
.program-body {
    display: flex;
    flex-direction: column;
    height: 280px;
    padding: 20px;
}

.program-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.program-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 100px; /* keeps height consistent */
}

/* Read More */
.read-more {
    text-decoration: none;
    font-weight: 600;
    color: #3B463B;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto; /* penting */
}

.read-more::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #BBFE18;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.read-more:hover {
    color: #9cd600;
}

.read-more:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .program-desc {
        min-height: auto;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ====================================Our Campaign============================== */

.campaign-section {
    /* padding: 50px 0; */
    background-color: #f8f9fa;
}

.campaign-section .nav-tabs .nav-link {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.campaign-section .nav-tabs .nav-link.active {
    background-color: #636B60;
    color: white;
}

.campaign-section .card-title {
    color: #636B60 ;
}

.campaign-section h5 {
    font-weight: 700;
}

.campaign-section .card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.campaign-section .card img {
    width: 100%;
    /* max-width:1200px; */
    object-fit: cover;
}

.campaign-section .card iframe {
    width: 560px;
    height: 315px;
}

.campaign-section .card-body {
    padding: 0px;
}

.campaign-section .card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.campaign-section .gallery-section {
    padding: 50px 0;
}

.campaign-section .carousel {
    max-width: 100%;
    margin: auto;
}

.campaign-section .carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top center;
}

.campaign-section .gallery-thumb {
    cursor: pointer;
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.campaign-section .gallery-thumb:hover {
    transform: scale(1.1);
}

@media (max-width : 512px) {
    .campaign-section .card iframe {
        width: 330px;
        height: 200px;
    }
}

/* =========================================== Berita Section================================== */

.news-section {
    padding: 50px 0;
}

.news-section .section-title {
    font-family: "CoFo Sans";
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
}

.news-section .news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.news-section .news-card:hover {
    transform: translateY(-5px);
}

.news-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-section .card-title {
    font-weight: bold;
}

.news-section .card-text {
    font-size: 14px;
    color: #555;
}

.news-section .news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.news-section .read-more {
    display: block;
    background-color: #3B463B;
    color: #FFF;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
}

.news-section .read-more:hover {
    background-color: #A8BCA4;
    color: #3B463B;
}

.news-section .view-all {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    display: inline-flex;
    align-items: center;
}

.news-section .view-all span {
    margin-left: 5px;
    font-size: 20px;
}


.press-coverage-section {
    background-color: #D4DED4; /* Warna latar belakang */
    padding: 50px 0;
}

.press-coverage-section .section-title {
    font-family: "CoFo Sans";
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Masonry Grid Layout */
.press-grid {
    column-count: 3; /* Membagi menjadi 3 kolom */
    column-gap: 10px; /* Jarak antar kolom */
}

.press-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px; /* Menghindari gap antar gambar */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Gambar */
.press-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Overlay Efek Hover */
.press-item::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease-in-out;
}

.press-item:hover::after {
    background: rgba(0, 0, 0, 0.5); /* Overlay hitam transparan */
}

.press-item:hover img {
    transform: scale(1.05); /* Sedikit memperbesar */
}

/* MODAL KHUSUS PRESS COVERAGE */
.press-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.press-modal-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
}

.press-close {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}


.press-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateY(-5px);
}

/* Image */
.press-img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.press-item:hover .press-img {
    transform: scale(1.1);
}

/* Overlay */
.press-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.press-item:hover::before {
    opacity: 1;
}

/* Text Content */
.press-item h6,
.press-item p {
    position: absolute;
    left: 20px;
    right: 20px;
    color: white;
    margin: 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    text-align: left;
}

.small {
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Maksimum 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Title */
.press-item h6 {
    bottom: 70px;
    font-weight: 600;
}

/* Description */
.press-item p {
    bottom: 20px;
    font-size: 0.9rem;
}

/* When Hover: show */
.press-item:hover h6,
.press-item:hover p {
    opacity: 1;
    transform: translateY(0);
}



/* ================================Social Media Feed============================ */
.social-media-feed {
    margin-top: 10px;
    padding: 35px 5px;
}

.social-media-feed h2 {
    font-family: "CoFo Sans";
    font-weight: 700;
    font-size: 24px;
}

.social-media-feed .container {
    width: 90%;
}

.social-feed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social-feed img {
    width: 200px; /* Ukuran gambar default */
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}
.social-feed img:hover {
    transform: scale(1.2); /* Membesarkan gambar saat hover */
    z-index: 2;
}


/* Navbar */
.navbar-brand img {
    height: 40px;
}

/* Banner Berita */
.banner-news img {
    height: 400px;
    object-fit: cover;
}

/* Latest News */
.latest-news {
    background-color: #D4DED4;
    border-radius: 10px;
}

.latest-item img {
    border-radius: 5px;
    object-fit: cover;
}

/* Kategori */
.category {
    background-color: #D4DED4;
    border-radius: 10px;
}

.category ul {
    padding-left: 15px;
}

.category ul li {
    margin-bottom: 10px;
}

.category ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 512px) {
    /* NEWS SECTION */
    .news-section {
        padding: 30px 10px;
    }

    .news-section .section-title {
        font-size: 22px;
        text-align: center;
    }

    .news-section .news-card {
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .news-section .card-img-top {
        height: 150px;
    }

    .news-section .card-title {
        font-size: 16px;
    }

    .news-section .card-text {
        font-size: 12px;
    }

    .news-section .news-meta {
        font-size: 10px;
        flex-direction: column;
        text-align: left;
    }

    .news-section .read-more {
        font-size: 14px;
        padding: 8px;
    }

    .news-section .view-all {
        font-size: 14px;
    }

    /* PRESS COVERAGE SECTION */
    .press-coverage-section {
        padding: 30px 10px;
    }

    .press-grid {
        column-count: 2; /* Ubah ke 2 kolom di mobile agar lebih proporsional */
        column-gap: 8px;
    }

    .press-item {
        margin-bottom: 8px;
    }

    .press-item img {
        border-radius: 8px;
    }

    .press-item:hover img {
        transform: scale(1.02); /* Perkecil efek hover di mobile */
    }

    /* MODAL PRESS COVERAGE */
    .press-modal-content {
        max-width: 95%;
        max-height: 90%;
    }

    /* Social Media Feed */
.social-media-feed {
    padding: 40px 10px;
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gambar per baris di desktop */
    gap: 10px;
    justify-content: center;
}

/* Ukuran Gambar */
.social-feed a {
    display: flex;
    justify-content: center;
}

.social-feed img {
    width: 100%; /* Pastikan gambar proporsional */
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

    /* BANNER NEWS */
    .banner-news img {
        height: 250px;
    }

    /* LATEST NEWS */
    .latest-news {
        margin-top: 50px;
        border-radius: 8px;
        padding: 15px;
    }

    .latest-item img {
        border-radius: 5px;
    }

    /* KATEGORI */
    .category {
        border-radius: 8px;
        padding: 10px;
    }

    .category ul {
        padding-left: 10px;
    }

    .category ul li {
        font-size: 14px;
    }

    .category ul li a:hover {
        text-decoration: underline;
    }
}




/* ==================================Testimonials========================= */


/* Athletes & Influencers Section */
.athletes-section {
    background-color: #F8F9FA;
    padding: 50px 0;
    margin: auto;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 10px;
    /* padding: 15px; */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    height: 700px;
    min-width: 345px;
    width: 100%;
}

.video-card:hover {
    transform: scale(1.05);
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Video Info */
.video-info {
    margin-top: 15px;
}

.video-info h5 {
    font-weight: bold;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 14px;
    color: #6c757d;
}


/* ==========================================Footer============================= */

/* Footer Section */
.footer-section {
    background-color: white;
    padding: 30px 0;
    
    /*margin-top: 30px; */
    box-shadow: 0px 6px 1000px rgba(0, 0, 0, 0.25); /* Bayangan hanya ke bawah */
}

/* Footer Top: Logo, Social Media, Address */
.footer-top {
    display: flex;
    flex-direction: column;
    margin: 0px;
}

/* Logo */
.footer-logo img {
    width: 200px;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a img {
    width: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-social a img:hover {
    transform: scale(1.1);
}

/* Address */
.footer-address {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

/* Footer Box Container (HORIZONTAL) */
.footer-box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Box */
.footer-box {
    width: 33.3333%;
    padding: 20px;
    border-radius: 15px;
}


.footer-box h5 {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #BBFE18;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 5px;
    text-align: start;
}

.footer-box ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: color 0.3s;
    font-size: 14px;
}

.footer-box ul li a:hover {
    color: #D2DF54;
}

/* Footer Bottom */
.footer-line {
    border-top: 1px solid black;
    margin-top: 30px;
}

.footer-bottom {
    font-size: 14px;
    color: #333;
    text-align: start;
    margin-top: auto;
    margin-bottom: 0px;
}
@media (max-width:995px) {
        /* Footer Section */
    .footer-section {
        padding: 30px 10px; /* Kurangi padding agar tidak terlalu besar */
        text-align: left !important; /* Pastikan teks tetap kiri */
    }

    /* Footer Top */
    .footer-top {
        flex-direction: column;
        align-items: center !important; /* Tetap rata kiri */
        margin: 20px 0px;
    }

    /* Logo */
    .footer-logo img {
        width: 150px; /* Perkecil logo agar tidak terlalu besar */
    }

    /* Social Media */
    .footer-social {
        justify-content: flex-center; /* Tetap kiri */
        margin-top: 10px;
    }

    /* Address */
    .footer-address {
        text-align: center !important;
        font-size: 14px; /* Perkecil font */
        width: 100%;
    }

    /* Footer Box Container (VERTIKAL di Mobile) */
    .footer-box-container {
        /* flex-direction: column; */
        align-items: flex-start; /* Tetap kiri */
        gap: 15px;
        margin-top: 20px;
    }

    /* Footer Box */
    .footer-box {
        width: 33.3333%;
        padding: 15px;
        text-align: left !important; /* Pastikan isi tetap kiri */
        height: 250px;
    }

    .footer-box h5 {
        font-size: 20px;
    }

    .footer-box ul li {
        text-align: left !important; /* Pastikan teks tetap kiri */
    }

    .footer-box ul li a {
        font-size: 14px;
    }

    /* Footer Bottom */
    .footer-bottom {
        font-size: 14px;
        text-align: center !important;
    }

    .footer-line {
        margin-top: 20px;
    }

}

@media (max-width: 512px) {
    /* Footer Section */
    .footer-section {
        padding: 30px 10px; /* Kurangi padding agar tidak terlalu besar */
        text-align: left !important; /* Pastikan teks tetap kiri */
    }

    /* Footer Top */
    .footer-top {
        flex-direction: column;
        align-items: center !important; /* Tetap rata kiri */
        margin: 20px 0px;
    }

    /* Logo */
    .footer-logo img {
        width: 150px; /* Perkecil logo agar tidak terlalu besar */
    }

    /* Social Media */
    .footer-social {
        justify-content: flex-center; /* Tetap kiri */
        margin-top: 10px;
    }

    /* Address */
    .footer-address {
        text-align: center !important;
        font-size: 12px; /* Perkecil font */
        width: 100%;
    }

    /* Footer Box Container (VERTIKAL di Mobile) */
    .footer-box-container {
        flex-direction: column;
        align-items: flex-start; /* Tetap kiri */
        gap: 15px;
        margin-top: 20px;
    }

    /* Footer Box */
    .footer-box {
        width: 100%;
        padding: 15px;
        text-align: left !important; /* Pastikan isi tetap kiri */
        height: 150px;
    }

    .footer-box h5 {
        font-size: 16px;
    }

    .footer-box ul li {
        text-align: left !important; /* Pastikan teks tetap kiri */
    }

    .footer-box ul li a {
        font-size: 12px;
    }

    /* Footer Bottom */
    .footer-bottom {
        font-size: 12px;
        text-align: center !important;
    }

    .footer-line {
        margin-top: 20px;
    }
}

/* ======================================Contact Us======================== */

.mission-vision-section .maps-contact iframe {
    width: 100%;
    height: 300px; /* Sesuaikan tinggi sesuai kebutuhan */
    border: 0;
}

/* Styling untuk contact-box */
.contact-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Efek shadow */
    padding: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-box:hover {
    transform: translateY(-5px); /* Efek hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Styling untuk informasi kontak */
.contact-info h5 {
    font-weight: bold;
    color: #3B463B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* Styling ikon */
.contact-info i {
    font-size: 20px;
    color: #3B463B;
}

/* Style untuk Google Maps */
.maps-contact iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

/* Styling untuk Form */
.contact-form label {
    font-weight: 600;
    color: #333;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Tombol Submit */
.contact-form button {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 768px) {
    .contact-box {
        padding: 20px;
    }

    .maps-contact iframe {
        height: 250px;
    }
}

.testim {
		width: 100%;
        margin-top: 50px;
		/* position: absolute;
		top: 50%; */
		/* -webkit-transform: translatey(-50%); */
		/* -moz-transform: translatey(-50%);
		-ms-transform: translatey(-50%);
		-o-transform: translatey(-50%); */
		/* transform: translatey(-50%); */
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.arrow {
    display: block;
    position: absolute;
    color: #90A58D;
    cursor: pointer;
    font-size: 2em !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 222;
}

.arrow:before {
		cursor: pointer;
}

.arrow:hover {
    color: #90A58D;
}
    

.arrow.left {
    left: 0px;
}

.arrow.right {
    right: 0px;
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #3B463B;
    font-size: 1.25em;
    margin: 15px 0;
    font-weight: 600;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #585858;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@media (max-width:990px) {
    .testim .cont div .img img {
        width: 70px;
        height: 70px;
    }
    .testim .cont div p {
        font-size: 0.75em;
    }
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #000000;
        box-shadow: 0px 0px 0px 0px #000000;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #000000;        
        box-shadow: 0px 0px 10px 5px #000000;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #90A58D;        
        box-shadow: 0px 0px 10px 5px #90A58D;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #90A58D;        
        box-shadow: 0px 0px 0px 0px #90A58D;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #000000;
        box-shadow: 0px 0px 0px 0px #000000;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #000000;        
        box-shadow: 0px 0px 10px 5px #000000;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #90A58D;        
        box-shadow: 0px 0px 10px 5px #90A58D;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #90A58D;        
        box-shadow: 0px 0px 0px 0px #90A58D;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #000000;
        box-shadow: 0px 0px 0px 0px #000000;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #000000;        
        box-shadow: 0px 0px 10px 5px #000000;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #90A58D;        
        box-shadow: 0px 0px 10px 5px #90A58D;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #90A58D;        
        box-shadow: 0px 0px 0px 0px #90A58D;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #000000;
        box-shadow: 0px 0px 0px 0px #000000;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #000000;        
        box-shadow: 0px 0px 10px 5px #000000;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #90A58D;        
        box-shadow: 0px 0px 10px 5px #90A58D;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #90A58D;        
        box-shadow: 0px 0px 0px 0px #90A58D;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #000000;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #000000;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #90A58D;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #90A58D;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
ize: 1em;
	}


}


/* Fullscreen overlay */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Bola */
.loader-ball {
    width: 50px;
    height: 50px;
    background-image: url('/assets/img/mkf-ball.png'); /* ganti dengan gambar bola kamu */
    background-size: cover;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
}

#loader-wrapper {
    transition: all 0.5s ease;
}


/* Animasi memantul */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}


