/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    color: #777;
}

a {
    color: #43aea0;
}

a:hover {
    color: #00d3b8;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-weight: bold;
}

/* CSS untuk mengatur tinggi carousel */
.carousel-item {
    height: 90vh; /* Tinggi default untuk carousel */
    background-size: cover; /* Membuat gambar menutupi area */
    background-position: center; /* Memusatkan gambar */
}

.carousel-indicators {
    position: absolute;
    bottom: 20px; /* Jarak dari bagian bawah gambar */
    left: 50%; /* Memusatkan indikator */
    transform: translateX(-50%); /* Mengatur indikator ke tengah */
    display: flex;
    justify-content: center;
    padding: 0; /* Menghapus padding */
    margin: 0; /* Menghapus margin */
    z-index: 15; /* Memastikan indikator di atas gambar */
}

.carousel-indicators li {
    width: 10px; /* Ukuran indikator */
    height: 10px; /* Ukuran indikator */
    border-radius: 50%; /* Membuat indikator berbentuk bulat */
    background-color: rgba(255, 255, 255, 0.7); /* Warna indikator */
    margin: 0 5px; /* Jarak antar indikator */
    transition: background-color 0.3s; /* Transisi warna saat hover */
}

.carousel-indicators .active {
    background-color: #fff; /* Warna indikator aktif */
}

/* Media Query untuk ukuran layar di atas 768px (misalnya 900px) */
@media (min-width: 769px) {
    .carousel-item {
        height: 50vh; /* Tinggi tetap untuk tampilan desktop */
    }

    .carousel-indicators {
        bottom: 20px; /* Jarak indikator dari bagian bawah gambar */
    }

    .carousel-indicators li {
        width: 10px; /* Ukuran indikator untuk tampilan desktop */
        height: 10px; /* Ukuran indikator untuk tampilan desktop */
    }
}

/* Media Query untuk ukuran layar di atas 900px */
@media (max-width: 901px) {
    .carousel-item {
        height: 50vh; /* Mengatur tinggi lebih besar untuk tampilan desktop besar */
    }

    .carousel-indicators {
        bottom: 30px; /* Jarak indikator dari bagian bawah gambar pada tampilan besar */
    }

    .carousel-indicators li {
        width: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
        height: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
    }
}

/* Media Query untuk ukuran layar di atas 900px */
@media (min-width: 901px) {
    .carousel-item {
        height: 60vh; /* Mengatur tinggi lebih besar untuk tampilan desktop besar */
    }

    .carousel-indicators {
        bottom: 30px; /* Jarak indikator dari bagian bawah gambar pada tampilan besar */
    }

    .carousel-indicators li {
        width: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
        height: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
    }
}

@media (min-width: 1280px) {
    .carousel-item {
        height: 85vh; /* Mengatur tinggi lebih besar untuk tampilan desktop besar */
    }

    .carousel-indicators {
        bottom: 30px; /* Jarak indikator dari bagian bawah gambar pada tampilan besar */
    }

    .carousel-indicators li {
        width: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
        height: 12px; /* Ukuran indikator lebih besar untuk tampilan besar */
    }
}

/* Media Query untuk ukuran layar 768px */
@media (max-width: 768px) {
    .carousel-item {
        height: 45vh; /* Mengurangi tinggi untuk tampilan mobile */
    }

    .carousel-indicators {
        bottom: 10px; /* Jarak dari bagian bawah gambar carousel untuk tampilan mobile */
    }

    .carousel-indicators li {
        width: 8px; /* Ukuran indikator lebih kecil untuk tampilan mobile */
        height: 8px; /* Ukuran indikator lebih kecil untuk tampilan mobile */
    }
}

/* Media Query untuk ukuran layar 576px */
@media (max-width: 576px) {
    .carousel-item {
        height: 35vh; /* Mengurangi tinggi lebih lanjut untuk tampilan ponsel */
    }

    .carousel-indicators {
        bottom: 5px; /* Jarak dari bagian bawah gambar carousel untuk tampilan ponsel */
    }

    .carousel-indicators li {
        width: 6px; /* Ukuran indikator lebih kecil untuk tampilan ponsel */
        height: 6px; /* Ukuran indikator lebih kecil untuk tampilan ponsel */
    }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #00a2ff;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #00a2ff;
    transition: 0.2s ease-in-out;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
/* #header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    background: #020a20;
  }
  
  #header.header-scrolled {
    background: #020a20;
    height: 60px;
    padding: 10px 0;
  }
  
  #header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }
  
  @media (max-width: 768px) {
    #header .logo h1 {
      font-size: 28px;
      padding: 8px 0;
    }
  } */

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Logo styling */
.logo {
    height: 50px; /* Adjust height as needed */
}

/* Navbar styling */
.navbar {
    background-color: #0574b9;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link {
    margin-left: 1rem;
    font-weight: 600;
    font-size: medium;
}

.navbar-nav .nav-link.active {
    color: #ffffff !important; /* Warna teks untuk link aktif */
    font-weight: bold; /* Tambahkan font-weight jika diinginkan */
}

/* Search form styling */
.search-form {
    display: flex;
    align-items: center;
    border-radius: 50px; /* Adjust the border-radius as needed */
    overflow: hidden; /* Ensures child elements do not overflow the rounded corners */
}

.search-form .form-control {
    border-radius: 50px; /* Ensure input field has the same border-radius */
    border: 1px solid #ced4da; /* Optional: Customize border color */
}

.search-form .btn {
    border-radius: 50px; /* Ensure button has the same border-radius */
}

/* Language buttons styling */
.flag-icon {
    width: 30px; /* Adjust size as needed */
    height: auto;
}
/* Style for Donate button */
.btn-donate {
    background: linear-gradient(
        135deg,
        #f39920,
        #f39920
    ); /* Gradient background */
    color: #fff; /* Text color */
    border: none; /* Remove default border */
    border-radius: 50px; /* Rounded corners */
    padding: 10px 20px; /* Padding */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.btn-donate:hover {
    background: linear-gradient(
        135deg,
        #ffff,
        #ffff
    ); /* Reverse gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.btn-donate:active {
    background: linear-gradient(
        135deg,
        #ffffff,
        #ffffff
    ); /* Consistent color when pressed */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Shadow effect on click */
    transform: translateY(1px); /* Slight depression effect */
}

/* Responsive navbar adjustments */
@media (max-width: 767.98px) {
    .d-none.d-md-flex {
        display: none;
    }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    background: url("../img/footer-bg.png") top center;
    background-size: cover;
    position: relative;
    margin-bottom: -80px;
}

#hero:before {
    content: "";
    background: rgb(32, 57, 84, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    padding-top: 80px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 300;
}

#hero .btn-get-started {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    border: 1px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #70b9b0;
    border: 1px solid #70b9b0;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 13px;
    }

    .panels p {
        font-size: 9px;
    }

    .lead {
        font-size: 0.9rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .covid-block {
        max-height: 35vh;
        position: unset;
        width: 90%;
        margin: 9rem auto 1rem;
    }

    .covid-block .display-4 {
        font-size: 1.5rem;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 20px 0;
}

.section-bg,
.section-bg a,
.section-bg h2 {
    background-color: rgb(56, 83, 110);
    color: #ffffff !important;
}

.section-judul {
    text-align: center;
}

.section-judul h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #555;
}

.section-judul p {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #555;
}

.section-title p {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #555;
}

.section-title p {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #555;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
.about h3 {
    font-weight: 400;
    font-size: 26px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

.about ul {
    list-style: none;
    padding: 0;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

.about ul li {
    padding-bottom: 10px;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #00a2ff;
}

.about p:last-child {
    margin-bottom: 0;
}

.about .img-fluid {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Styling for the Read More button */
.btn-read-more {
    border: 2px solid #000; /* Black border */
    border-radius: 30px;
    background-color: transparent;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s, color 0.3s, outline 0.3s;
    outline: 2px solid #000; /* Black outline */
}

.btn-read-more:hover {
    background-color: #00a2ff;
    color: #fff;
    outline: 2px solid #fff; /* White outline on hover */
}

@media (max-width: 768px) {
    .about .img-fluid {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .img-main {
        padding: 8px;
    }
}


.visi-misi h3 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.visi-misi h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #00a2ff; /* Warna garis */
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.about-text,
.visi-misi {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
}

.visi-misi ul {
    list-style-type: none;
    padding-left: 0;
}

.visi-misi ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    position: relative;
    margin-bottom: 10px;
}

.visi-misi ul li::before {
    content: "\2022"; /* Bullet point */
    color: #00a2ff; /* Warna bullet */
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}

.legal-formal h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.legal-formal h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #00a2ff; /* Warna garis */
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.legal-formal ul {
    list-style-type: none;
    padding-left: 0;
}

.legal-formal ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    position: relative;
    margin-bottom: 10px;
}

.legal-formal ul li::before {
    content: "\2022"; /* Bullet point */
    color: #00a2ff; /* Warna bullet */
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}

/* Gambar utama */
.img-main {
    margin-top: 0px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; /* Gambar utama berada di bawah gambar sekunder */
}

/* Gambar sekunder yang bertumpuk */
.img-secondary {
    margin-top: 20px;
    position: absolute;
    top: 10%;
    left: 60%; /* Sesuaikan posisi */
    width: 80%;
    height: auto;
    z-index: 2; /* Gambar sekunder berada di atas gambar utama */
}

/* Atur kontainer agar gambar bertumpuk dengan rapi */
.features {
    padding: 50px 0;
    background-color: #f8f9fa; /* Background color for the entire features section */
}

.feature-wrapper {
    background-image: url("../assets/images/aboutt.jpg"); /* Add background image or color here */
    padding: 20px;
    border-radius: 10px; /* Optional: Rounded corners for the background container */
}

.feature-container {
    background-color: #ffffff; /* Background color for each container */
    border: 2px solid #ccc; /* Outline for each container */
    border-radius: 10px; /* Rounded corners for each container */
    padding: 20px;
    margin-bottom: 20px; /* Spacing between the containers */
    transition: transform 0.2s; /* Animation effect */
}

.feature-container:hover {
    transform: scale(1.05); /* Slightly increase size on hover */
    border-color: #00a2ff; /* Change border color on hover */
}

.fitur {
    background-image: url("../assets/images/about.jpg");
}

@media (max-width: 767px) {
    .feature-container {
        margin-bottom: 15px;
    }
}

.company-profile {
    padding: 50px 0;
    background-color: #8eb9d2; /* Ganti dengan warna yang diinginkan */
}

.profile-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff; /* Warna teks judul */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

.profile-text p {
    font-size: 16px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000000; /* Warna teks paragraf */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspek rasio 16:9 (lebar tinggi) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000; /* Warna background sebagai fallback */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .video-container iframe {
        width: 100%;
        height: auto;
    }
}

.kabar-terkini {
    padding: 50px 0;
    background-color: #fff;
}

.kabar-terkini h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    color: #333;
}

.news-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.news-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.news-card {
    background-color: #fff;
    /* border-radius: 10px; */
    overflow: hidden;
    flex: 0 0 300px;
    scroll-snap-align: start;
    /* border: 1px solid #ddd; */
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.n-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    height: 100%;
}

.news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    color: #333;
}

.news-card p {
    font-size: 16px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    color: #555;
    margin-bottom: 20px;
}

.read-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: auto; /* Pushes the button to the bottom */
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    color: #00a2ff;
    border: 2px solid #00a2ff;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    background-color: #00a2ff;
    color: #fff;
    text-decoration: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00a2ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: #00a2ff;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

@media (max-width: 767px) {
    .news-card {
        flex: 0 0 250px;
    }

    .news-card img {
        height: 150px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
    }
}

.program-kemitraan {
    padding: 50px 0;
    background-color: #b4efef;
}

.program-kemitraan h2 {
    text-align: center;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    margin-bottom: 30px;
    color: #333;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.program-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px; /* Set a fixed height for uniformity */
}

.program-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distortion */
    display: block;
}

.program-text {
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

.mitra-kerja-sama {
    padding: 60px 0;
    background-color: #efefef;
}

.mitra-kerja-sama h2 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.slick-slider {
    width: 100%;
}

.slick-slide {
    padding: 0 6px; /* Lebih sedikit padding antar slide untuk mendekatkan logo */
}

.mitra {
    /* Ukuran logo */
    height: 80px; /* Ukuran logo */
    object-fit: contain; /* Agar logo pas dalam ukuran */
    margin: 0 auto; /* Pusatkan logo dalam slide */
}

.slick-dots {
    bottom: -20px; /* Posisi titik navigasi */
}

.kata-mereka {
    padding: 50px 0;
    background-color: #ffffff;
}

.kata-mereka h2 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.slick-slider {
    width: 100%;
}

.slick-slide {
    padding: 10px;
}

.card.kata-mereka {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd;
    height: 350px; /* Menetapkan tinggi tetap untuk semua card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box; /* Memastikan padding tidak mengubah ukuran total */
}

.profile-img {
    border-radius: 50%;
    width: 50px; /* Set the width to make the logos smaller */
    height: 50px; /* Set the height to ensure all logos have the same size */
    margin: 0 auto; /* Center the images within each slide */
    margin-left: 10px;
    margin-bottom: 5px;
}

.kata-mereka h3 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
}

.kata-mereka p {
    font-size: 14px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    color: #777;
    margin-top: 5px;
    flex-grow: 1; /* Membuat p mengisi ruang kosong yang tersisa */
    text-align: left; /* Mengubah menjadi rata kiri */
}

.slick-dots {
    bottom: -20px;
}

.container.kt-mereka {
    background-color: #337f96;
    padding: 60px 80px;
    border-radius: 35px;
}

@media (max-width: 1200px) {
    .container.kt-mereka {
        padding: 50px 60px;
    }
}

@media (max-width: 992px) {
    .container.kt-mereka {
        padding: 40px 40px;
    }
}

@media (max-width: 576px) {
    .container.kt-mereka {
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .kata-mereka {
        padding: 30px 0;
    }
    .container.kt-mereka {
        padding: 30px 20px;
    }

    .slick-slide {
        padding: 5px;
    }

    .card.kata-mereka {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
  # visi & misi
  --------------------------------------------------------------*/
.visi-misi .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all ease-in-out 0.3s;
    height: 100%;
}

.visi-misi .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00a2ff;
}

.visi-misi .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #6c665c;
}

.visi-misi .box p {
    color: #000000;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.bg-visi {
    background: #afe0da;
}

.box {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgb(187, 188, 188);
}

.box:hover {
    box-shadow: 3px 3px 10px rgb(35, 35, 36);
    transition: 0.3s;
}

/*--------------------------------------------------------------
  # Profile
  --------------------------------------------------------------*/
.profile .img-fluid {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .profile .img-fluid {
        max-width: 60%;
        height: auto;
        border-radius: 10px;
    }
}

/*--------------------------------------------------------------
  # klien
  --------------------------------------------------------------*/
.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clients {
    background: linear-gradient(rgba(1, 41, 42, 0.5), rgba(7, 56, 57, 0.5)),
        url("../img/office.jpg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.client-item img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.client-item img:hover {
    transform: scale(1.3);
}
.client-details {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.client-details:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Our carousel
  --------------------------------------------------------------*/
/* .carousel-item {
    height: 90vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
} */
/* 
.main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.list-left {
    list-style: none;
    padding-left: 0;
}
.list-left li {
    margin-bottom: 10px;
    text-align: left;
}

.main .wrap {
    margin: 2rem;

    transform-style: preserve-3d;
    transform: perspective(100rem);

    cursor: pointer;
}

.main .container {
    --rX: 0;
    --rY: 0;
    --bX: 50%;
    --bY: 80%;

    border: 1px solid var(--background-color);
    border-radius: 1.6rem;
    padding: 4rem;

    display: flex;
    align-items: flex-end;

    position: relative;
    transform: rotateX(calc(var(--rX) * 1deg)) rotateY(calc(var(--rY) * 1deg));

    background: linear-gradient(hsla(0, 0%, 100%, 0.1), hsla(32, 57, 84));
    background-position: var(--bX) var(--bY);
    background-size: 40rem auto;
    box-shadow: 0 0 3rem 0.5rem hsla(0, 0%, 0%);

    transition: transform 0.6s 1s;
} */

/* CSS untuk card struktur organisasi */
.struktur-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.struktur-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.struktur-card-inner {
    display: flex;
    align-items: flex-start;
}

.struktur-card-img {
    width: 155px;
    height: 220px; 
    object-fit: cover;
    flex-shrink: 0; 
}

/*.struktur-card-body {*/
/*    padding: 1rem;*/
/*    flex: 1;*/
/*}*/

/*.struktur-card-title {*/
/*    font-size: 1.25rem;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.struktur-card-text {*/
/*    margin: 0;*/
/*    font-size: 1rem;*/
/*}*/




/* Media Query untuk tampilan tablet dan di atas */
/*@media (max-width: 769px) {*/
/*    .struktur-card-inner {*/
/*        flex-direction: row;*/
/*    }*/

/*    .struktur-card-img {*/
/*        width: 130px; */
/*        height: 130px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .struktur-card-inner {*/
/*        flex-direction: row; */
/*    }*/

/*    .struktur-card-img {*/
/*        width: 100px; */
/*        height: auto; */
/*    }*/

/*    .struktur-card-body {*/
/*        padding: 0.5rem; */
    /*}*/

/*    .struktur-card-title,*/
/*    .struktur-card-text {*/
/*        font-size: 0.9rem; */
/*    }*/
/*}*/




.detail-struktur-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.detail-struktur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.detail-struktur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-struktur-body {
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.detail-struktur-title,
.detail-struktur-text {
    margin-bottom: 10px;
}
/* 
.verified-badge {
  display: flex;
  align-items: center;
  background-color: #e3f2fd;
  padding: 10px;
  border-radius: 5px;
  color: #2196f3;
}

.verified-icon {
  color: #2196f3;
  font-size: 2.5rem;
  position: relative;
}

.verified-check {
  color: #ffffff;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.verified-badge {
    background-color: #e3f2fd; /* Warna latar belakang biru muda */
    border: 1px solid #90caf9; /* Garis border biru */
    border-radius: 20px; /* Radius sudut untuk tampilan badge */
    padding: 10px 10px; /* Padding di dalam badge */
    display: inline-flex; /* Menyusun ikon dan teks dalam satu baris */
    align-items: center; /* Vertikal alignment untuk ikon dan teks */
}

.verified-icon {
    color: #2196f3; /* Warna ikon */
    font-size: 2.5rem; /* Ukuran ikon bintang yang lebih besar */
    position: relative; /* Agar ikon centang dapat ditempatkan dengan benar */
}

.verified-check {
    color: #ffffff; /* Warna ikon centang */
    font-size: 1rem; /* Ukuran ikon centang */
    position: absolute; /* Posisi absolut untuk menempatkan centang di dalam bintang */
    top: 50%; /* Vertikal center */
    left: 50%; /* Horizontal center */
    transform: translate(-50%, -50%); /* Center ikon centang di dalam bintang */
}

/*--------------------------------------------------------------
  # Contact Us
  --------------------------------------------------------------*/
.contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    color: #00a2ff;
}

.contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Lato", sans-serif;
    color: #888;
}

.contact .social-links {
    padding-bottom: 20px;
}

.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #00a2ff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #00a2ff;
}

.contact .social-links a:hover {
    background: #00a2ff;
    color: #fff;
}

.contact .info {
    color: #777;
}

.contact .info i {
    font-size: 32px;
    color: #00a2ff;
    float: left;
    line-height: 1;
}

.contact .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form button[type="submit"] {
    background: #70b9b0;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #92cac3;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-section {
    margin-top: 20px;
}
.contact-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-section .form-group label {
    font-weight: bold;
    color: #333;
}

.contact-section .form-control {
    border-radius: 5px;
}

.contact-section .btn {
    background-color: transparent;
    color: #00a2ff;
    border-color: #00a2ff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: bold;
}

/*--------------------------------------------------------------
  # Footer
--------------------------------------------------------------*/
/* Footer */
#footer {
    font-size: 14px;
    background: linear-gradient(to bottom, #1969a4, #1969a4, #1969a4);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: linear-gradient(to top, #2675ad, #2675ad, #2675ad);
}

#footer .footer-contact img {
    max-width: 150px;
    margin-bottom: 20px;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 25px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}

#footer .footer-top .footer-contact span {
    font-size: 27px;
    color: rgb(250, 0, 0);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #ffffff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #1100ff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: rgb(250, 0, 0);
}

#footer .footer-top .footer-links p {
    color: #ffffff;
}

#footer .footer-top .footer-links strong {
    color: #ffffff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #ffffff;
    color: #000000;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: rgb(0, 158, 250);
    color: white;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    text-align: center;
}

#garis-putih-panjang {
    content: "";
    position: relative;
    display: block;
    max-width: 2000px;
    height: 1px;
    background: #ffffff;
    bottom: -3px;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright {
        text-align: center;
        float: none;
    }
}

/*--------------------------------------------------------------
  # program
  --------------------------------------------------------------*/
.custom-btn {
    padding-left: 20px;
    padding-right: 20px;
    font-size: medium;
}

.program-detail {
    background-color: #f9f9f9;
    padding: 30px 0; /* Menambahkan padding untuk jarak vertikal */
}

.program-description {
    text-align: center;
    margin-bottom: 30px; /* Menambahkan jarak bawah */
}

.program-buttons {
    margin-bottom: 30px;
}

.btn-program.active {
    background-color: #f39920; /* Change to your desired active color */
    color: white;
}

.btn-program {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #f39920;
    border-radius: 25px; /* Melengkungkan sudut */
    text-decoration: none;
    margin: 10px; /* Jarak antar button */
    outline: 2px solid #f39920;
    transition: background-color 0.3s ease, color 0.3s ease,
        outline-color 0.3s ease;
}

.btn-program:hover {
    background-color: #ffff;
    color: #fff;
    outline: 2px solid #f39920;
}

.program-content-item {
    display: none; /* Sembunyikan semua elemen secara default */
}

.program-content-item.active {
    display: block; /* Tampilkan elemen yang aktif */
}

.program-content-item img {
    width: 100%; /* Menyesuaikan lebar gambar dengan kontainer */
    height: 300px; /* Mempertahankan rasio aspek gambar */
    max-width: 500px; /* Maksimal lebar gambar, sesuaikan sesuai kebutuhan */
    border-radius: 8px; /* Radius border untuk efek sudut melengkung */
    object-fit: cover; /* Menutupi kontainer gambar tanpa merusak rasio aspek */
}

.program-content-item .btn {
    margin-top: 15px; /* Jarak antara teks dan tombol */
    display: inline-block; /* Menampilkan tombol secara inline-block */
    padding: 10px 20px; /* Padding untuk tombol */
    background-color: transparent; /* Warna latar belakang tombol */
    color: #000000; /* Warna teks tombol */
    border: none; /* Menghapus border tombol default */
    border-radius: 25px; /* Radius border untuk efek sudut melengkung */
    text-decoration: none; /* Menghapus underline dari tombol */
    text-align: center; /* Menyelaraskan teks tombol di tengah */
    outline: 2px solid #000;
}

.program-content-item .btn:hover {
    background-color: #f39920; /* Warna latar belakang tombol saat hover */
}

.program-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .program-content-item .row {
        flex-direction: column;
    }
}

.program-kemitraan {
    background-image: linear-gradient(
            to right,
            rgba(0, 77, 64, 0.8),
            rgba(0, 150, 136, 0.8)
        ),
        url("../assets/images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff; /* Mengubah warna teks agar kontras dengan background */
    padding: 60px 20px; /* Memberi padding agar konten tidak menempel dengan tepi */
    position: relative; /* Untuk overlay efek */
}

.program-kemitraan h2 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    text-align: left; /* Menjadikan teks rata kiri */
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: bold;
}

.program-kemitraan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(
        51,
        51,
        51,
        0.311
    ); /* Overlay gelap untuk meningkatkan kontras */
    z-index: 1; /* Membuat overlay berada di depan background */
}

.program-kemitraan > * {
    position: relative;
    z-index: 2; /* Membuat konten berada di depan overlay */
}

@media (max-width: 768px) {
    .program-kemitraan {
        background-position: center;
        padding: 40px 15px;
    }
}

.donation-card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    width: 100%; /* Make the card take full width of its container */
    margin-bottom: 15px;
}

.donation-card .card-body {
    padding: 1.25rem;
}

.donation-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center; /* Center the title */
}

.account-list .row {
    display: flex;
    flex-wrap: wrap;
}

.account-list ul {
    padding-left: 0;
    list-style-type: none;
    text-align: left; /* Ensure the list is left-aligned */
}

.account-list ul li {
    margin-bottom: 0.5rem;
    text-align: left; /* Ensure the list items are left-aligned */
}

.account-list .col-md-6 {
    flex: 1 1 50%; /* Make columns take up half the width */
}

.donation-card .card-footer-note {
    font-size: 0.875rem;
    color: #1085ec;
    margin-top: 1rem;
    text-align: center; /* Center the footer note */
}

.gallery-title {
    font-size: 1.6rem;
    position: relative;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif; /* You can change this to your preferred font */
    font-weight: bold;
}

.title-underline {
    width: 100px;
    height: 4px;
    background-color: #2b8cf3; /* Blue underline color */
    margin-top: -10px;
    margin-bottom: 20px;
}

.gallery-slider {
    display: flex;
    overflow-x: scroll;
}

.gallery-item {
    flex: 0 0 auto;
    margin-right: 15px;
}

.gallery-item img {
    width: 200px;
    height: 130px;
    object-fit: cover;
}

/* program unggulan */
