* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 1rem 8rem;
    border-bottom: 2px solid #eee;
    top: 0;
    z-index: 1000;
    position: sticky;
}
.navbar .logo img {
    width: 150px;
}
.burger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    transition: box-shadow 0.3s ease-in-out;
}
.nav-links.active {
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.nav-links li {
    display: inline-block;
}
.nav-links a {
    color: #2f4b3c;
    text-decoration: none;
    font-size: 1.2rem;
}
.nav-links a:hover {
    color: #bb9d50;
}
.nav-links a.active {
    font-weight: bold;
    color: #d1ad4f;
}
.cta {
    display: flex;
    justify-content: center;
}
.consultation-button {
    background-color: #d1ad4f;
    color: #fff;
    padding: 16px 28px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}
.consultation-button:hover {
    background-color: #bb9d50;
}
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 34px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
@media (max-width: 1233px) {
    .navbar {
        padding: 1rem;
    }
    .burger-menu {
        display: block;
    }
    .nav-links {
        display: none;
        width: 70%;
        flex-direction: column;
        padding-top: 20px;
        padding-left: 30px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: white;
        height: 100vh;
        gap: 2rem;
    }
    .nav-links.active {
        display: flex;
    }
    .cta {
        display: none;
    }
    .consultation-button {
        width: 100%;
        text-align: center;
    }
    .close-btn {
        display: block;
    }
}
@media (min-width: 1233px) {
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        gap: 1.5rem;
    }
    .burger-menu {
        display: none;
    }
}
.logos {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .logos {
        margin-top: 0; /* Menghilangkan margin-top di tampilan HP */
        margin-bottom: 0; /* Menghilangkan margin-top di tampilan HP */
    }
}
.logos__viewport {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 0 40px;
    box-sizing: border-box;
}
.logos__track {
    display: flex;
    width: fit-content;
    animation: scroll-logos 10s linear infinite;
}
.logos__spacer {
    width: 60px;
    flex-shrink: 0;
}
.logos__img {
    flex: 0 0 auto;
    padding: 0 40px;
    transition: opacity 0.3s;
}
.logos__img img {
    height: 40px;
    width: auto;
    opacity: 0.2;
    transition: 0.3s;
}
.logos__img:hover img {
    opacity: 0.6;
}
@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 1023px) {
    .logos__img {
        padding: 0 30px;
    }
    .logos__img img {
        height: 30px;
    }
}
@media screen and (max-width: 767px) {
    .logos__viewport {
        padding: 0 20px;
    }
    .logos__img {
        padding: 0 20px;
    }
    .logos__img img {
        height: 26px;
    }
}
@media screen and (max-width: 480px) {
    .logos__img img {
        height: 22px;
    }
}
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px 40px 0 40px;
    background-color: #fff;
    gap: 40px;
    min-height: 100vh;
    flex-wrap: wrap;
    margin: 0 120px;
}
@media (max-width: 768px) {
    .hero-section {
        gap: 0;
        padding: 20px 25px;
        margin: 0;
    }
}
.hero-content {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}
a {
    text-decoration: none; /* Remove the underline */
}

.hero-button {
    width: 200px;
    background-color: #d1ad4f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .hero-button {
        margin-top: 20px; /* Set margin-top to 0 on mobile */
        margin-left: auto; /* Horizontally center the button */
        margin-right: auto; /* Horizontally center the button */
        display: block;
    }
}

.hero-button:hover {
    background-color: #555;
}
.hero-images {
    display: flex;
    flex: 1 1 400px;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}
.image-left,
.image-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.image-left {
    justify-content: center;
}
.image-left img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.image-right img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
}
.value-sections {
    padding: 0px 30px 50px 30px;
}
@media (max-width: 768px) {
    .value-sections {
        padding: 0px 30px 0 30px;
    }
}
@media (max-width: 576px) {
    .value-section {
        padding: 0 30px;
    }
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.image-containers {
    flex: 1;
}
.image-container {
    display: flex;
    justify-content: center; /* Memusatkan secara horizontal */
    align-items: center; /* Memusatkan secara vertikal */
    padding-right: 20px;
}

/* .image-container {
    flex: 1;
    padding-right: 20px;
} */
.text-container {
    flex: 1;
    padding-left: 20px;
}
.section-title {
    font-size: 22px;
    color: #d1ad4f;
    font-weight: bold;
}
.value-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid #fff;
}
.value-video {
    width: 250px;
    /* height: 460px; */
    border-radius: 20px;
    border: 5px solid #fff;
}
.value-images {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid #fff;
}
.value-section {
    padding: 50px 30px;
    color: #fcfcfd;
    background-color: #5c4e2b;
}
.value-title {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0;
    color: #ffffff;
}
.value-titles {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0;
    color: #2c3e50;
}
.value-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}
.value-texts {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}
.header-galery {
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .image-container {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .text-container {
        padding-left: 0;
        padding-bottom: 10px;
    }
    .section-title {
        font-size: 18px;
    }
    .value-title {
        font-size: 24px;
    }
    .value-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .value-texts {
        /* font-size: 16px; */
        margin-bottom: 0;
    }
    .hero-button {
        margin-bottom: 20px;
    }
}
.package-sections {
    padding: 0 0.5rem 2rem 0.5rem;
}
.package-section {
    padding: 2rem 0.5rem;
}
.package-section-detail {
    padding: 20px 125px;
}
.package-section-detail h2 {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}
.header-paket-page h2 {
    font-size: 28px !important;
}
.package-sections h2 {
    font-size: 20px;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
    width: 100%;
    display: inline-block;
}
.package-section h2 {
    font-size: 20px;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
    width: 100%;
    display: inline-block;
}
.price-title h2 {
    font-size: 20px;
    margin-top: 0;
    text-align: center;
    margin-bottom: 0;
    font-weight: bold;
    color: #333;
    width: 100%;
    display: inline-block;
}
.package-content {
    padding: 10px;
}
.package-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.package-containeri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.package-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s;
    background-color: #fcfcfd;
    border: 1px solid #ddd;
}
.package-card img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.package-card:hover {
    transform: scale(1.05);
}
.package-info {
    padding: 1rem;
    text-align: start;
    max-width: 600px;
    margin: auto;
}
.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
.info {
    flex-wrap: wrap;
    justify-content: space-between;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-basis: 30%;
}
.info-item i {
    font-weight: 400;
    margin-right: 10px;
}
.info-text p {
    font-size: 14px;
    color: #666;
}
.details-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #d1ad4f;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
}
.details-button:hover {
    background-color: #fff;
    color: #d1ad4f;
    border: 2px solid #d1ad4f;
}
@media (max-width: 1200px) {
    .package-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-containeri {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .package-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-containeri {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 733px) {
    .package-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .package-containeri {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 600px) {
    .package-container {
        grid-template-columns: 1fr;
    }
    .package-containeri {
        grid-template-columns: 1fr;
    }
    .info-wrapper {
        justify-content: none;
        width: 100%;
    }
}
.info-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.info-left,
.info-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 15px;
}
.detail-row {
    align-items: center;
    color: #555;
    font-size: 12px;
}
.detail-row-harga {
    font-size: 20px;
    align-items: center;
    color: #555;
    font-weight: bold;
    color: #333;
}
.text-detail h2 {
    font-size: 25px;
    align-items: center;
    color: #555;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}
.detail-row i {
    margin-right: 8px;
    color: #d1ad4f;
    min-width: 20px;
    text-align: center;
}
.detail-row span,
.detail-row strong {
    color: #444;
}
.detail-value {
    color: #333;
}
@media (max-width: 468px) {
    .detail-row span,
    .detail-row strong,
    .detail-value {
        font-size: 12px;
    }
}
.detail-value-harga {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}
.detail-value.stars {
    color: #f39c12;
}
.detail-value.red {
    font-weight: bold;
    color: red;
}
@media (max-width: 600px) {
    .info-wrapper {
        gap: 1rem;
    }
    .info-right {
        text-align: left;
    }
    .detail-value {
        text-align: left;
    }
}
.gallery-foto {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* padding: 20px 60px; */
    padding: 0 60px;
}
.scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    position: relative;
    flex-wrap: nowrap;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scroll-container {
    scrollbar-width: none;
}
.stat-gallery {
    padding: 7px;
    text-align: center;
    /* width: 22%; */
    background-color: #fcfcfd;
    flex: 0 0 auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 140px;
}
.stat-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 1024px) {
    .stat-gallery {
        width: 30%;
    }
}
@media (max-width: 768px) {
    .stat-gallery {
        width: 65%;
    }
    .scroll-buttons button {
        padding: 12px;
    }
}
@media (max-width: 480px) {
    .gallery-foto {
        padding: 10px;
        margin: 0;
    }
    .stat-gallery {
        width: 80%;
    }
    .scroll-buttons button {
        padding: 10px;
        font-size: 18px;
    }
}
.ustadz-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 768px) {
    .ustadz-container {
        padding: 10px 30px 30px 30px;
    }
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.package-content h2 {
    font-size: 20px;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
    width: 100%;
    display: inline-block;
}
h2 {
    font-size: 26px;
    font-weight: bold;
}
.see-more-btn p {
    color: #d1ad4f !important;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}
.see-more-btn a {
    text-decoration: none;
}
p {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    p {
        font-size: 1rem;
    }
}
.ustadz-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ustadz-card {
    width: 270px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    padding: 10px;
}
.ustadz-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.ustadz-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
}
.ustadz-info {
    padding: 10px 0;
}
.ustadz-info h3 {
    font-size: 1rem;
    color: rgb(44, 62, 80);
    padding: 5px;
}
.ustadz-info p {
    font-size: 1rem;
    color: #6c757d;
}
.ustadz-card:hover {
    transform: translateY(-10px);
}
.see-more-btns {
    margin-top: 20px;
    display: none;
}
.see-more-btns p {
    color: #d1ad4f !important;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .see-more-btn {
        display: none;
    }
    .see-more-btns {
        display: block;
    }
    .ustadz-cards {
        justify-content: center;
    }
    .ustadz-card {
        width: 100%;
    }
}
footer {
    background-color: white;
    margin: 80px 20px 20px 20px;
    padding: 40px 0;
    color: #333;
    border-top: 1px solid #ddd;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    /* margin: 0 auto; */
    margin: 0 auto 30px auto;
    padding: 0 20px;
    width: 100%;
    gap: 150px;
}
@media (max-width: 768px) {
    .footer-container {
        margin-bottom: 0; /* Menghilangkan margin-top di tampilan HP */
    }
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}
.footer-logo img {
    width: 200px;
}
.footer-logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d1ad4f;
}
.footer-logo p {
    font-size: 1rem;
    color: #6c757d;
}
.footer-column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.footer-column ul {
    list-style-type: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #2c3e50;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
.social-links {
    display: flex;
    gap: 10px;
}
.footer__social-link {
    font-size: 1.5rem;
    transition: 0.3s;
}
.footer__social-link:hover {
    color: #d1ad4f;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
}
.footer-bottom p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}
.footer-column {
    flex: 1 1 0;
    text-align: left;
}
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-logo {
        margin-right: 50px;
    }
    .footer-links {
        flex-direction: row;
        width: 100%;
    }
    .footer-column {
        width: auto;
        flex: 1 1 150px;
        min-width: 100px;
    }
}
@media (max-width: 768px) {
    footer {
        margin: 40px 20px 20px 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px 0 0 0;
        gap: 0;
    }
    .footer-logo {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-logo img {
        width: 200px;
        margin-right: 10px;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .footer-column {
        text-align: left;
        margin-bottom: 15px;
        flex: 1 1 150px;
        min-width: 100px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }
    .footer-bottom p {
        color: #6c757d;
        width: 100%;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}
.about-us {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 128px 0 128px;
}
.image-box,
.text-box {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}
.image-box {
    background-color: #fcfcfd;
}
.image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
@media (min-width: 769px) and (max-width: 1217px) {
    .image-box img {
        height: 100%;
    }
}
.text-box {
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-box h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}
.text-box p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
}
.statistics {
    display: flex;
    justify-content: space-between;
    padding: 20px 125px;
}
.stat-box {
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    /* width: 22%; */
}
.des-box {
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 30%;
}
.stat-box h2 {
    font-size: 2rem;
    color: #d1ad4f;
    margin-bottom: 10px;
}
.des-box h2 {
    font-size: 2rem;
    color: #d1ad4f;
    margin-bottom: 10px;
}
.stat-box p {
    font-size: 1rem;
    color: #7f8c8d;
}
.des-box p {
    font-size: 1rem;
    color: #7f8c8d;
}
.journey {
    padding: 20px 125px;
    border-radius: 10px;
    margin: 0 auto;
}
.journey h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}
.journey p {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
}
.highlight {
    color: #f39c12;
    font-weight: bold;
}
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 20px;
    }
    .image-box,
    .text-box {
        width: 100%;
    }
    .statistics {
        flex-direction: column;
        padding: 0 20px;
    }
    .gallery-foto {
        flex-direction: column;
    }
    .stat-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .des-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .stat-box-paket {
        width: 100%;
    }
    .journey {
        padding: 20px;
    }
    .gallery-foto {
        padding: 0 10px;
    }
}
@media (max-width: 480px) {
    .text-box h2 {
        font-size: 1.5rem;
    }
    .text-box p {
        font-size: 0.9rem;
    }
    .stat-box h2 {
        font-size: 1.5rem;
    }
    .des-box h2 {
        font-size: 1.5rem;
    }
    .stat-box p {
        font-size: 0.9rem;
    }
    .des-box p {
        font-size: 0.9rem;
    }
    .journey h2 {
        font-size: 2rem;
    }
    .journey p {
        font-size: 1rem;
    }
}
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 10px;
    margin: 40px 20px;
}
.centered-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.paket-header h2 {
    font-size: 24px !important;
}
.paket-img {
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    padding: 20px;
}
.centered-image-paket {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 10px;
    margin: 40px 20px;
}
.centered-image-paket img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
@media (max-width: 601px) {
    .centered-image {
        margin: 10px 20px;
        height: 200px;
    }
    .centered-image-paket {
        margin: 10px 20px;
    }
    .journey h2 {
        font-size: 25px;
    }
    .journey p {
        font-size: 1rem;
    }
}
.category-section {
    padding: 40px 120px;
}
.category-sections {
    padding: 40px 220px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.header h2 {
    color: #2c3e50;
}
.header-galery {
    margin-bottom: 20px;
}
.header-galery p {
    color: #7f8c8d;
}
.view-all {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.view-all:hover {
    background-color: #e67e22;
}
.post-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
.post {
    width: 30%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    padding: 10px;
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.date {
    font-size: 0.9rem;
    color: #7f8c8d;
    padding: 10px;
}
.post h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 0 10px 10px 10px;
    font-weight: bold;
}
@media (max-width: 1024px) {
    .post {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .post {
        width: 100%;
    }
    .category-section {
        padding: 30px;
    }
    .category-sections {
        padding: 30px;
    }
}
.paket-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.paket-left {
    flex: 1;
    max-width: 450px;
}
.paket-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.paket-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    min-width: 280px;
    max-width: 300px;
    word-break: normal;
    white-space: normal;
}
.stat-box-paket {
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: start;
}
.stat-box-paket h2 {
    margin: 0;
    color: #d4af37;
    font-size: 20px;
}
.stat-box-paket p {
    margin-top: 5px;
    color: #667;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .paket-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
    }
    .paket-left,
    .paket-right {
        max-width: 100%;
        width: 100%;
    }
    .paket-right {
        align-items: stretch;
    }
    .stat-box-paket {
        width: 100%;
    }
}
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}
.floating-whatsapp i {
    font-size: 20px;
    margin-right: 10px;
}
.map-section {
    align-items: center;
    margin: 30px 180px 0 180px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .map-section {
        margin: 30px 30px 0 30px;
    }
}
.map-container iframe {
    border-radius: 10px;
}

/* ANIMASI */

.hero-images .image-left img,
.hero-images .image-right img {
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInImage 1s forwards;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-button {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    animation: fadeInText 1s forwards 0.5s;
}

.image-containers {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 1s forwards 0.5s;
}

.value-images {
    transition: transform 0.5s ease;
}

.value-section .image-container img {
    animation: zoomIn 0.5s forwards 1s;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

.map-section {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.map-container iframe {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 1s forwards 1.5s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ustadz-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.ustadz-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    animation: fadeInUp 1s forwards;
}

.ustadz-card img {
    width: 100%;
    transition: transform 0.3s ease;
}

.ustadz-card:hover img {
    transform: scale(1.05);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-sections {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}
.package-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    animation: fadeInUp 1s forwards;
}

.package-card img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling hanya untuk konten artikel */
.article-content p {
    font-size: 16px;
    color: #333;
    letter-spacing: 1px;
}
/* .article-content img {
    width: 300px;
    height: 300px;
} */
.article-content img {
    display: block;

    margin: 10px auto;
    width: 400px;
    height: auto;
}

.article-content figcaption {
    display: none;
}
.article-content strong {
    letter-spacing: 0px;
    margin-top: 10px;
    color: #2c3e50;
}

.article-content h1 {
    font-size: 24px;
    color: #2c3e50;
}

.article-content a {
    color: #2c3e50;
    text-decoration: none;
}

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

.article-content li {
    font-size: 16px;
    color: #2c3e50;

    line-height: 1.6;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.article-content ul,
.article-content ol {
    margin-left: 20px;
}
