:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
}
:root {
    --background-color: #ffffff; 
    --default-color: #222222;
    --heading-color: #172a28; 
    --accent-color: #FFBB0C; 
    --surface-color: #ffffff;
    --contrast-color: #ffffff; 
}
:root {
    --nav-color: #ffffff; 
    --nav-hover-color: #005621; 
    --nav-mobile-background-color: #ffffff; 
    --nav-dropdown-background-color: #ffffff; 
    --nav-dropdown-color: #01433c;
}
.light-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
}
.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
.accent-background {
    --background-color: #FFBB0C;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #FFBB0C;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: #222222;
    background-color: #ffffff;
    font-family: var(--default-font);
    font-display: swap;
}
h1, h2, h3, h4, h5, h6, p, span, div, li, ul, ol, a {
    user-select: text;
}
a {
    color: #FFBB0C;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, #FFBB0C, transparent 25%);
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        #FFBB0C 50%,
        color-mix(in srgb, #FFBB0C, transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #FFBB0C, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.pulsating-play-btn:hover:after {
    border-left: 15px solid #FFBB0C;
    transform: scale(20);
}
@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
.php-email-form .loading {
    display: none;
    background: #ffffff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #FFBB0C;
    border-top-color: #ffffff;
    animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #f5f7f8;
    --heading-color: #45474b;
    color: #45474b;
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}
.header .topbar {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}
.header .topbar .contact-info i {
    font-style: normal;
    color: #45474b;
}
.header .topbar .contact-info i a, .header .topbar .contact-info i span {
    padding-left: 5px;
    color: #45474b;
}
@media (max-width: 575px) {
    .header .topbar .contact-info i a, .header .topbar .contact-info i span {
        font-size: 13px;
    }
}
.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}
.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}
.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}
.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}
.header .branding {
    min-height: 60px;
    padding: 10px 0;
}
.header .logo {
    line-height: 1;
}
.header .logo img {
    max-height: 50px;
    margin-right: 8px;
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #45474b;
}
.header .logo span {
    font-size: 32px;
    margin-left: 2px;
    color: var(--nav-hover-color);
}
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu > ul > li {
        white-space: nowrap;
        padding: 8px 20px;
    }
    .navmenu > ul > li:last-child {
        padding-right: 0;
    }
    .navmenu a, .navmenu a:focus {
        color: #45474b;
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i, .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before, .navmenu li:hover > a:before, .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    } 
    .navmenu .dropdown ul li {
        min-width: 200px;
    }  
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }  
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .navmenu .dropdown-active #dropdownitemm.active, .navmenu #dropdownitemm.active  {
          background-color: #1D7E05;
          color: #FFF;
    }
    .navmenu .dropdown ul li:hover {
        background-color: #1D7E05;
    }
    .navmenu .dropdown ul li a:hover {
        color: #fff; 
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }    
    #login-button {
        background-color: #1D7E05;
        color: white;
        border: none;
        padding: 10px 30px;
        border-radius: 5px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    #login-button:hover {
        background: #FFBB0C;
    }
}
@media (max-width: 1200px) {
    .mobile-nav-toggle {
        color: #45474b;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, #222222, transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a, .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i, .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }
    .navmenu a i:hover, .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i, .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .navmenu .navmenu .dropdown-active #dropdownitemm.active, .navmenu #dropdownitemm.active  {
        background-color: #1D7E05;
        color: #fff;
    }
    .navmenu .dropdown ul li:hover {
        background-color: #1D7E05;
    }
    .navmenu .dropdown ul li a:hover {
        color: #fff; 
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
    .login-button{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #login-button {
        background-color: #1D7E05;
        color: white;
        border: none;
        margin-left: 20px;
        margin-top: 60px;
        padding: 10px 30px;
        border-radius: 5px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    #login-button:hover {
        background: #FFBB0C;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #ffffff;
    background-color: #002B14;
    font-size: 15px;
    position: relative;
}
.footer h1 {
    font-size: 17px;
    padding-bottom: 10px;
    text-align: center; 
    border-bottom: 4px solid #FFD700;
}
.footer .footer-top {
    padding-top: 50px;
    padding-bottom: 2rem;
}
.footer-logo {
    width: fit-content;
    max-height: 90px;
    background-color: #f3f3f3;
    padding: 15px;
    border-radius: 15px;
}
.footer-address {
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 15px;
}
.jadwal p {
    font-size: 15px;
}
.footer-contact a {
    color: #f3f3f3;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
    transition: 0.3s;
}
.social-links a:hover {
    color: white;
    border-color: white;
}
.footer .copyright {
    background-color: #f3f3f3;
    color: #002B14;
    margin-top: 2rem;
    font-size: 16px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #ccc;
}
.footer .copyright p {
    margin-bottom: 0;
}
.sitename {
    color: #002B14;
}
@media (max-width: 767px) {
    .footer-map iframe {
        display: none;
    }
    .footer-logo {
        max-height: 90px;
        padding: 10px;
    }
    .copyright p {
        font-size: 12px;
    }
}
.keluhan-btn {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #e6c200; 
    text-decoration: none;
    color: #002B14 !important;  
    display: inline-block;
    transition: 0.3s;
}
.keluhan-btn:hover {
    background-color: #FFBB0C;
    color: #fff !important;
    text-decoration: none !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.6s ease-out;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: #45474B;
    background-color: #ffffff;
    position: relative;
}
.page-title .heading {
    padding: 100px 0 0 0;
    border-top: 1px solid
        color-mix(in srgb, #45474B, transparent 90%);
}
.page-title .heading h1 {
    font-size: 38px;
    color: #45474B;
    font-weight: 700;
}
.page-title nav {
    background-color: color-mix(in srgb, #ffffff, transparent 80%);
    padding: 10px 0;
    color: #006400;
}
.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    padding: 0px;
    word-break: break-word;
}
.page-title nav ol a {
    color: #45474B;
}
.page-title nav ol a:hover {
    color: #006400;
}
.page-title nav ol li + li {
    padding-left: 10px;
}
.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: #45474B;
}
@media (max-width: 750px) {
    .breadcrumbs ol{
        padding: 10px;
    }
    .page-title .heading h1 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
    color: #222222;
    background-color: #ffffff;
    padding: 20px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}
@media (max-width: 1200px) {
    section, .section {
        scroll-margin-top: 100px;
    }
}
@media (max-width: 750px) {
    .section{
        padding: 10px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
    margin-bottom: 0;
}
@media (max-width: 750px) {
    .section-title h2 {
        font-size: 24px;
        font-weight: 700;
        position: relative;
        margin-top: 80px;
    }
}
.img-fluid {
    width: 100%; 
    height: auto; 
    max-width: 800px; 
}
img.fixed-dimension {
    width: 800px;
    height: 600px; 
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    height: auto; 
    display: block; 
    z-index: 10;
}
.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 40%; 
}
#hero .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#hero .swiper-wrapper {
    align-items: center;
}
#hero .swiper-button-prev, #hero .swiper-button-next {
    width: 40px;
    height: 40px;
}
#hero .swiper-button-prev:after, #hero .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
#hero .swiper-button-prev:hover:after, #hero .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 1400px) {
    #hero {
        height: 700px;
    }
}
@media (max-width: 1200px) {
    #hero .image-container {
        padding-top: 56.25%; 
    }
}
@media (max-width: 992px) {
    #hero {
        padding: 0;
        height: 460px; 
    }
    #hero .image-container {
        padding-top: 56.25%; 
    }
}
@media (max-width: 750px) {
    #hero .swiper-button-prev, #hero .swiper-button-next {
        display: none;
    }
    #hero .image-container {
        padding-top: 56.25%; 
    }
    #hero {
        margin-top: 50px;
        height: 300px; 
    }
}
@media (max-width: 576px) {
    #hero .image-container {
        padding-top: 56.25%; 
    }
    #hero {
        margin-top: 50px;
        height: 200px; 
    }
}
#hero .swiper-pagination {
    position: absolute;
    bottom: 20px; 
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10; 
}
#hero .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8); 
    opacity: 1;
}
#hero .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FFBB0C;
}

/*--------------------------------------------------------------
# Icon Box Section
--------------------------------------------------------------*/
.icon-boxes {
    padding-bottom: 20px;
    padding-top: 0%;
    z-index: 11;
    background-color: rgba(255, 255, 255, 0);
}
.row {
    margin-top: 0 !important;
}
.icon-box {
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    background-color: #F5F7F8;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    border: solid 1px rgba(0, 86, 33, 0.1);
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}
.icon-box p {
    color: #45474B;
}
.icon-box .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}
.icon-box .title a {
    color: #45474B;
    transition: 0.3s;
}
.icon-box .btn-btn-primary {
    color: #1D7E05; 
    background: #F5F7F8;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1.5px solid #1D7E05; 
}
.icon-box:hover {
    background-color: color-mix(in srgb, #F5F7F8, white 10%);
}
.icon-box:hover .btn-btn-primary {
    color: #ffffff;
    background: #1D7E05;
}
@media (min-width: 1200px) {
    .icon-boxes {
    margin-top: -120px;
    z-index: 12;
}
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
    padding: 10px 0;
}
.clients .swiper-wrapper {
    height: auto;
}
.clients .swiper-slide img {
    transition: 0.3s;
    width: 70%; 
}
@media (max-width: 768px) {
    .clients .swiper-slide img {
        width: 70%; 
    }
}
@media (max-width: 480px) {
    .clients .swiper-slide img {
        width: 100%; 
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background-color: transparent;
}
.call-to-action .container {
    padding-top: 40px;
    padding-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 15px);
}
.video-container, .instagram-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px; 
    background-color: white;
    border: solid 3px rgba(0, 86, 33, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.video-container {
    width: 100%;
    padding-bottom: 56.25%; 
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.instagram-container {
    width: 100%;
}
.instagram-container iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .video-container, .instagram-container {
        width:100%;
    }
    .video-container {
        height: 50%;
    }
}

/*--------------------------------------------------------------
# campaign-unggulan Section
--------------------------------------------------------------*/
.campaign-unggulan .section-title h2 {
    margin-top: 20px;
}
.campaign-unggulan .campaign-unggulan-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}
.campaign-unggulan .campaign-unggulan-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.campaign-unggulan .campaign-unggulan-filters li:hover, .campaign-unggulan .campaign-unggulan-filters li.filter-active {
    color: var(--accent-color);
}
.campaign-unggulan .campaign-unggulan-filters li:first-child {
    margin-left: 0;
}
.campaign-unggulan .campaign-unggulan-filters li:last-child {
    margin-right: 0;
}
@media (max-width: 575px) {
    .campaign-unggulan .campaign-unggulan-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
    .campaign-unggulan .section-title h2 {
        margin-top: 20px;
    }
}
.campaign-unggulan .campaign-unggulan-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.campaign-unggulan .campaign-unggulan-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
    width: 100%; 
    height: auto; 
    aspect-ratio: 16 / 9; 
    object-fit: cover;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info {
    background-color: #ffffff;
    border-top: 1px solid
        color-mix(in srgb, #222222, transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info .btn-btn-primary{
    color: #f2f9f9;
    background: #1D7E05;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-top: 20px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    display: flex;
    padding: 5px 15px;
    border-radius: 10px;
    transition: 0.3s;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info .btn-btn-primary:hover {
    background: #FFBB0C;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info h3 {
    font-size: 16px;
    font-weight: 700;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info h3 a:hover {
    color: var(--accent-color);
}
.campaign-unggulan .campaign-unggulan-content .campaign-unggulan-info p {
    color: color-mix(in srgb, #222222, transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}
.progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}
.progress {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.progress-bar {
    height: 100%;
    background-color: #FFBB0C;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
} 
.progress-start, .progress-end {
    display: flex;
    flex-direction: column;
}
.progress-end {
    text-align: right;
}
.progress-start {
    text-align: left;
}
.amount {
    font-size: 14px;
    color: #1D7E05;
    font-weight: 600;
    margin-top: 5px;
}
.days-left {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}
.Durasi {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 10px;
}
.sisa-hari {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.jumlah {
    font-size: 14px;
    color: #1D7E05;
    font-weight: bold;
    margin-top: 5px;
}
.campaign-unggulan .button-wrapper {
    text-align: center; 
    margin-top: 30px; 
}
.campaign-unggulan .button-selengkapnya {
    color: #f2f9f9;
    background: #1D7E05;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px; 
    display: inline-block; 
    align-items: center;
    justify-content: center;
    padding: 10px 100px; 
    border-radius: 10px;
    transition: 0.3s;
}
.campaign-unggulan .button-selengkapnya:hover {
    background: #FFBB0C;
}
@media (max-width: 768px) {
    .campaign-unggulan .button-selengkapnya {
        font-size: 12px;
        width: 100%; 
        box-sizing: border-box;
    }
}

/*--------------------------------------------------------------
# Pengumuman Section
--------------------------------------------------------------*/
.pengumuman article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.pengumuman .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}
.pengumuman .title {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; 
    line-height: 1.4em; 
    word-break: break-word;
}
.pengumuman .title a {
    color: var(--heading-color);
    transition: 0.3s;
}
.pengumuman .title a:hover {
    color: var(--accent-color);
}
.pengumuman .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.pengumuman .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}
.pengumuman .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(#878787), transparent 90%);
    margin-bottom: 0;
}
.pengumuman .button-wrapper {
    text-align: center; 
    margin-top: 30px; 
}
.pengumuman .button-selengkapnya {
    color: #f2f9f9;
    background: #1D7E05;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px; 
    display: inline-block; 
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
    border-radius: 10px;
    transition: 0.3s;
}
.pengumuman .button-selengkapnya:hover {
    background: #FFBB0C;
}
  
@media (max-width: 768px) {
    .pengumuman .button-selengkapnya {
        font-size: 12px;
        width: 100%; 
        box-sizing: border-box;
    }
}
/* kategoti */
.post-category {
    font-size: 10px;
    color: color-mix(in srgb, var(#45474B), transparent 80%);
    margin: 0%;
    font-weight: 500;
}
.category {
    display: inline-block;
    background-color: #FFD700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}
.recent-posts .title {
    font-size: 14px !important;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; 
    line-height: 1.4em; 
    word-break: break-word;
}
.recent-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}
.recent-posts .title a:hover {
    color: var(--accent-color);
}
.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}
.recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(#878787), transparent 90%);
    margin-bottom: 0;
}
.recent-posts .button-wrapper {
    text-align: center; 
    margin-top: 30px; 
}
.recent-posts .button-selengkapnya {
    color: #f2f9f9;
    background: #1D7E05;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px; 
    display: inline-block; 
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
    border-radius: 10px;
    transition: 0.3s;
}
.recent-posts .button-selengkapnya:hover {
    background: #FFBB0C;
}
@media (max-width: 768px) {
    .recent-posts .button-selengkapnya {
        font-size: 12px;
        width: 100%; 
        box-sizing: border-box;
    }
}

/*--------------------------------------------------------------
# Profil Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: #005621;
}
.about .fst-italic {
    color: color-mix(in srgb, #222222, var(--contrast-color) 50%);
}
.about .content p {
    text-align: justify;
    font-size: 14px;
    font-weight: 400 !important;
}
.about .content p:last-child {
    margin-bottom: 0;
} 
.about .content .position-relative img {
    position: relative;
    padding: 16px;
    background-color: white; 
    border: solid 2px rgba(0, 86, 33, 0.1); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 
.menu-list {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}
.menu-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.menu-list a:last-child {
    border-bottom: none;
}
.menu-list a:hover, .menu-list a.active {
    background: #ddd;
    color: #005500;
}
.menu-list a:hover::before, .menu-list a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #004400; 
}
.rekening-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}    
.rekening-container:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}   
.rekening-container img {
    box-shadow: none !important;
    border: none !important;
}
.logo-bsi {
    width: 100px;
    height: auto;
    margin-right: 15px;
    padding: 0pc !important;
    border: none;
}    
.rekening-info p {
    margin: 5px 0;
    font-size: 18px !important;
}   
.rekening-info p strong{
    font-weight: 600;
}
.bsi-bold {
    font-weight: 700;
    color: #005621;
}
@media (max-width: 576px) {
    .logo-bsi {
        width: 50px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    .rekening-info p {
        margin: 5px 0;
        font-size: 12px !important;
    }   
    .rekening-info p strong{
        font-weight: 400;
    }
}
    
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.blog-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}
.blog-posts .title {
    font-size: 14px !important;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left !important;
}
.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}
.blog-posts .title a:hover {
    color: var(--accent-color);
}
.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}
.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(#878787), transparent 90%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, #222222, transparent 40%);
}
.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}
.blog-pagination li a {
    color: color-mix(in srgb, #222222, transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-pagination li a.active, .blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
.blog-pagination li a.active a, .blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}
.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    padding: 30px;
}
.blog-details .title {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
    text-align: center;
}
.widgets-container {
    margin: 20px 0 30px 0 !important;
}
@media (max-width: 767px) {
    .blog-details .content img {
        max-width: 100%;
        height: auto;
    }
    .blog-details .title {
        font-size: 18px;
    }

    .blog-details .content p{
        font-size: 10px;
    }
}
.blog-details .content {
    margin-top: 20px;
}
.blog-details .content img {
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}.blog-details .content p, li {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.blog-details .content p{
    text-align: justify;
}
.blog-details .content h1,strong{
    font-size: 16px !important;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.blog-details .article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    text-align: left;
}
.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, #222222, transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.blog-details .content blockquote p {
    color: #222222;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, #222222, transparent 40%);
}
.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog-details .meta-top ul li + li {
    padding-left: 20px;
}
.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb,#222222, transparent 40%);
}
.blog-details .meta-top a {
    color: color-mix(in srgb, #222222, transparent 40%);
    font-size: 10px;
    display: inline-block;
    line-height: 1;
}
.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, #222222, transparent 90%);
}
.blog-details .meta-bottom i {
    color: color-mix(in srgb, #222222, transparent 40%);
    display: inline;
}
.blog-details .meta-bottom a {
    color: color-mix(in srgb, #222222, transparent 40%);
    transition: 0.3s;
}
.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}
.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
.blog-details .meta-bottom .cats li {
    display: inline-block;
}
.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
.blog-details .meta-bottom .tags li {
    display: inline-block;
}
.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: #222222;
    content: ",";
}
.tag-section .container h1, strong{
    font-size: 22px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.blog-details .meta-bottom .share {
    font-size: 16px;
}
.blog-details .meta-bottom .share i {
    padding-left: 5px;
}
.wp-block-buttons {
    display: flex;
    justify-content: center; 
    margin: 1em 0;
}
.wp-block-button {
    display: inline-block;
    margin: 0.5em 0;
    width: 100%; 
}
.wp-block-button__link {
    display: block; 
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    color: #ffffff !important;
    background-color: #1D7E05;
    border: none;
    cursor: pointer;
    width: 100%; 
    box-sizing: border-box;
}
.wp-block-button__link:hover {
    background-color: #FFBB0C;
}
.share-container {
    display: flex;
    align-items: center ;
}
.share-container i {
    margin-right: 8px; 
    size: 2px;
}
#share-instagram {
    background-color: #E4405F;
    border-radius: 10px;
}
#share-whatsapp {
    background-color: #25D366;
    border-radius: 10px;
}
#share-facebook {
    background-color: #1877F2 ;
    border-radius: 10px;
}
#copy-link {
    background-color: #e3e3e3 ;
    border-radius: 10px;
}
.share-buttons {
    margin-top: 15px;
    justify-content:flex-end !important;
}
.share-buttons p{
    padding-right: 30px;
    font-weight: 700 !important;
}
.share-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
}
.share-buttons .bi {
    font-size: 20px; 
}
.copy-btn {
    position: relative;
    display: inline-block;
  }
.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #006400;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #006400 transparent transparent transparent;
}
.copy-btn.show-tooltip .tooltip-text {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 767px) {
    .share-buttons .bi {
        font-size: 15px; 
    }
}
/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}
.blog-comments .comments-count {
    font-weight: bold;
}
.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}
.blog-comments .comment .comment-img {
    margin-right: 14px;
}
.blog-comments .comment .comment-img img {
    width: 60px;
}
.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.blog-comments .comment h5 a {
    font-weight: bold;
    color: #222222;
    transition: 0.3s;
}
.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}
.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, #222222, transparent 20%);
}
.blog-comments .comment h5 .reply i {
    font-size: 20px;
}
.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, #222222, transparent 40%);
    margin-bottom: 5px;
}
.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;

}
.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}
.comment-form form p {
    font-size: 14px;
}
.comment-form form input {
    background-color: var(--surface-color);
    color: #222222;
    border: 1px solid color-mix(in srgb, #222222, transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}
.comment-form form input:focus {
    color: #222222;
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}
.comment-form form input::placeholder {
    color: color-mix(in srgb, #222222, transparent 50%);
}
.comment-form form textarea {
    background-color: var(--surface-color);
    color: #222222;
    border: 1px solid color-mix(in srgb, #222222, transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}
.comment-form form textarea:focus {
    color: #222222;
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}
.comment-form form textarea::placeholder {
    color: color-mix(in srgb, #222222, transparent 50%);
}
.comment-form form .form-group {
    margin-bottom: 25px;
}
.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #1D7E05;
    color: var(--contrast-color);
}
.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, #1D7E05, transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}
.widget-item {
    margin-bottom: 40px;
}
.widget-item:last-child {
    margin-bottom: 0;
}
.search-widget form {
    background:#ffffff;
    border: 1px solid color-mix(in srgb,#222222, transparent 70%);
    padding: 3px 10px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}
.search-widget form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: #ffffff;
    color: #222222;
}
.search-widget form input[type="text"]:focus {
    outline: none;
}
.search-widget form button {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}
.search-widget form button i {
    line-height: 0;
}
.search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.categories-widget ul li {
    padding-bottom: 10px;
}
.categories-widget ul li:last-child {
    padding-bottom: 0;
}
.categories-widget ul a {
    color: color-mix(in srgb, #222222, transparent 20%);
    transition: 0.3s;
}
.categories-widget ul a:hover {
    color: var(--accent-color);
}
.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, #222222, transparent 50%);
    font-size: 14px;
}
.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}
.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}
.recent-post-img {
    width: 85px; 
    height: 65px; 
    object-fit: cover; 
    margin-right: 10px; 
    border-radius: 10px;
}
.recent-posts-widget .post-item h4 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.0;
    max-height: 3.6em; 
    overflow: hidden;
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.recent-posts-widget .post-item h4:hover {
    color: var(--accent-color);
}
.recent-posts-widget .post-item h4 a {
    font-size: 12px;
    font-weight: bold;
    color: #222222;
    transition: 0.3s;
}
.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}
.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 12px;
    color: color-mix(in srgb, #45474B, transparent 20%);
}
.tags-widget {
    margin-bottom: -10px;
}
.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tags-widget ul li {
    display: inline-block;
}
.tags-widget ul a {
    color: color-mix(in srgb, #222222, transparent 30%);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid color-mix(in srgb, #222222, transparent 60%);
    display: inline-block;
    transition: 0.3s;
}
.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
}
.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, #222222, transparent 60%);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/
.program-filters {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 30px;
}
#filter-select {
    width: 100%; 
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#filter-select:focus {
    border-color: #1D7E05;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}
.program .program-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    border-radius: 20px;
    margin-bottom: 20px; 
}
.program .program-content img {
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.program .program-content:hover img {
    transform: scale(1.1);
}
.program-image {
    max-width: 30%; 
    height: auto;
    margin: 0 auto 20px; 
    display: block;
    border-radius: 10px; 
}
#program-content {
    font-size: 16px;
    line-height: 1.6;
    padding: 40px; 
    background-color: #ffffff;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    border: solid 1px rgba(0, 86, 33, 0.1);
}
@media (min-width: 1200px) {
    .col-lg-2-4 {
        width: 20%;
    }
}
@media (max-width: 1199px) {
    .col-lg-2-4 {
        width: 25%;
    }
}
@media (max-width: 768px) {
    .col-lg-2-4 {
        width: 50%; 
    }
}
@media (max-width: 576px) {
    .col-lg-2-4 {
        width: 50%; 
    }
}
.program .container {
    min-height: 400px; 
    margin-bottom: 50px;
}
.program .program-item {
    padding: 15px; 
}
.program img {
    object-fit: cover; 
    height: 200px;
    width: 1
}
  
/*--------------------------------------------------------------
# Visi Section
--------------------------------------------------------------*/
.visi .icon-boxes .container .row {
    display: flex;
    justify-content: center;
}
.visi .icon-boxes .container .row .visi-box {
    background: color-mix(in srgb, #1D7E05, transparent 30%);
    color: #FFF;
}
.visi-box {
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
    border: solid 1px rgba(0, 86, 33, 0.1);
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: justify;
}
.visi-box p {
    color: #fff;
     
}
.visi-box h4 {
    display: flex;
    justify-content: center;
    color: #fff;
    padding-bottom: 20px;
     
}
.visi-box .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}
.visi-box .title a {
    color: #45474B;
    transition: 0.3s;
}
.visi-box:hover {
    background-color: color-mix(in srgb, #F5F7F8, white 10%);
}

/*--------------------------------------------------------------
# Fokus Program
--------------------------------------------------------------*/
.fokus-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.fokus-box p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px !important;
}

.title {
    font-weight: 700;
    font-size: 28px;
    color: #005621;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}
.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.focus-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes rotateHover {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(15deg);
    }
}
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 3px solid #002d19;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    animation: bounceIn 0.6s ease-in-out;
}
.icon-circle:hover {
    animation: rotateHover 0.3s ease-in-out;
    transform: rotate(15deg);
}
.icon-circle i {
    font-size: 22px;
    color: #002d19;
    transition: transform 0.3s ease-in-out;
}
.icon-circle:hover i {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .focus-list li {
        flex-direction: row;
        align-items: flex-start;
    }
    .icon-circle {
        width: 45px;
        height: 45px;
    }
    .icon-circle i {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Struktur Organisasi Section
--------------------------------------------------------------*/
.gambar {
    display: flex;
    justify-content: center; 
    align-items: center; 
}
.gambar img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    cursor: zoom-in;
}

/*--------------------------------------------------------------
# Dokumen Section
--------------------------------------------------------------*/
.filter-section {
    margin-bottom: 20px;
}
.filter-section .container {
    display: flex;
    justify-content: center;
}
.filter-section .d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%; 
}
.filter-section .form-select, .filter-section .form-control, .filter-section .btn {
    height: 50px;
}
.filter-section .form-select {
    flex: 1; 
    min-width: 120px; 
}
.filter-section .form-control {
    flex: 2; 
    min-width: 200px;
}
.filter-section .btn {
    flex: 0 0 auto; 
    min-width: 80px;
    padding: 10px 15px;
    background-color: #006400; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.filter-section .btn:hover {
    background-color: #004d00; 
}
@media (max-width: 767px) {
    .filter-section .d-flex {
        flex-direction: row;
        width: 100%; 
    }
    .filter-section .form-select, .filter-section .form-control, .filter-section .btn {
        flex: 1; 
        min-width: 0; 
        margin-bottom: 0; 
    }
    .filter-section .btn {
        flex: 0 0 auto;
    }
}
.dokumen .kumpulan-dokumen {
    background-color: #fff;
    padding: 20px !important;
    border-radius: 10px;
    margin: 15px 10px 0 10px;
    border: solid 1px rgba(0, 86, 33, 0.2);
}
.dokumen .icon-and-details {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: relative;
}
.dokumen .btn {
    font-size: 12px; 
    color: #fff;
    border: none; 
    background-color: #006400; 
    margin: 0% !important;
    cursor: pointer; 
}
.dokumen .btn:hover {
    background-color: #1D7E05; 
    color: #fff;
}
.dokumen .details {
    flex: 1;
}
.dokumen .dokumen-name {
    margin: 10px 0 20px 0 !important;
    font-size: 12px;
    color: #333;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; 
    line-height: 1.4em; 
    word-break: break-word;
}
.dokumen .text-muted {
    font-size: 10px;
    color: #494949;
    font-weight: bold;
}
.dokumen-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%; 
}
.dokumen .date {
    margin-top: 5px;
    color: #9a9999;
    font-size: 14px;
}
@media (max-width: 575px) {
    .dokumen .dokumen-name {
        font-size: 10px;
    }
    .dokumen .date {
        font-size: 8px;
    }
    .dokumen .kumpulan-dokumen {
        padding: 5px 15px;
    }
}
.file-icon {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); 
    border-radius: 5px; 
    width: 105px;
    height: 140px;
}

/*--------------------------------------------------------------
# Modal untuk konfirmasi download
--------------------------------------------------------------*/
.modal-footer #confirmDownload {
    color: #fff;
    border: none; 
    background-color: #006400; 
    cursor: pointer; 
}
.modal-footer #confirmDownload:hover {
    background-color: #1D7E05; 
    color: #fff;
}

/*--------------------------------------------------------------
# Galeri Section
--------------------------------------------------------------*/
.galeri .image-container {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    cursor: pointer;
}
.caption {
    display: none !important;
}
.galeri .gallery-image {
    width: 200px;
    height: 170px;
    object-fit: cover;
}
.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999 !important;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.popup-modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    background-color: white;
    padding: 40px;
}
.popup-modal-img {
    width: 100%;
}
#popup-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #333;
    padding: 10px 0;
}
.close.inside {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}
.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.popup-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-prev, .popup-next {
    font-size: 40px;
    color: #f1f1f1;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}
.popup-prev:hover, .popup-next:hover {
    color: #bbb;
}
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 8px solid #FFBB0C;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.loading-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 16px;
    text-align: center;
}
@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}
.loading-placeholder::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #FFBB0C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# gallery-pagination Section
--------------------------------------------------------------*/
.gallery-pagination {
    padding: 20px 0;
    margin: 0 auto;
    overflow-x: auto;
}
.gallery-pagination .pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5px;
}
.gallery-pagination .page-item {
    margin: 0;
}
.gallery-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    color: color-mix(in srgb, #006400, transparent 20%);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-pagination .page-link.prev, .gallery-pagination .page-link.next {
    padding: 0 15px;
}

.gallery-pagination .page-item.active .page-link, .gallery-pagination .page-link:hover {
    background: #FFBB0C;
    color: #ffffff;
}
.gallery-pagination .page-item.disabled .page-link {
    pointer-events: none;
    background: transparent;
}
@media (max-width: 992px) {
    .gallery-pagination .page-link {
        min-width: 36px;
        height: 36px;
    }
}
@media (max-width: 768px) {
    .gallery-pagination .pagination-list {
        gap: 3px;
    }
    .gallery-pagination .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .gallery-pagination .page-link.prev, .gallery-pagination .page-link.next {
        padding: 0 10px;
    } 
    .gallery-pagination .page-item:nth-child(n+4):nth-last-child(n+4):not(.active):not(.dots) {
        display: none;
    }
}
@media (max-width: 576px) {
    .gallery-pagination {
        padding: 15px 0;
    }
    
    .gallery-pagination .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .gallery-pagination .page-item:nth-child(n+4):nth-last-child(n+4):not(.active):not(.dots) {
        display: none;
    }
    
    .gallery-pagination .page-link.prev, .gallery-pagination .page-link.next {
        padding: 0 8px;
    }
}

/*--------------------------------------------------------------
# search Section
--------------------------------------------------------------*/
.search-section h1{
    font-size: 24px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 500px;
    margin: auto;
}
.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.search-form .btn-green {
    padding: 10px 15px;
    background-color: #006400; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.search-form .btn-green:hover {
    background-color: #004d00; 
}
/*--------------------------------------------------------------
# google translate
--------------------------------------------------------------*/
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}
body {
    top: 0 !important;
}
#google_translate_element {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #006400;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.goog-te-gadget-simple {
    background-color: #006400 !important;
    border: none !important;
}
.goog-te-gadget-simple span{
    color: #ffffff !important;
    font-weight: 700 !important;
}
.goog-te-gadget {
    color: transparent !important;
}
.goog-te-gadget-icon {
    display: none !important;
}
.goog-te-combo {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background: white;
}
.goog-te-banner-frame {
    display: none !important;
}
@media (max-width: 768px) {
    #google_translate_element {
      left: 10px;
      bottom: 10px;
    }
    .goog-te-combo {
      padding: 4px 8px;
      font-size: 12px;
    }
}

.zakat-btn {
    background-color: #FFBB0C;
    color: #000;
    padding: 8px 16px !important;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
}
/*--------------------------------------------------------------
# News Letter Section
--------------------------------------------------------------*/
.News-letter {
    padding: 0px 50px;
  }

.newsletter-col {
    padding: 10px 25px;
}

.News-letter article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    padding-bottom: 0px !important;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.News-letter .post-img {
    /* max-height: 240px; */
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}
.News-letter .title {
    font-size: 14px !important;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; 
    line-height: 1.4em; 
    word-break: break-word;
}
.News-letter .title span {
    color: var(--heading-color);
    transition: 0.3s;
}
/* .News-letter .title a:hover {
    color: var(--accent-color);
} */

.News-letter .button-wrapper {
    text-align: center; 
    margin-top: 30px; 
}
.News-letter .button-selengkapnya {
    color: #f2f9f9;
    background: #1D7E05;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px; 
    display: inline-block; 
    align-items: center;
    justify-content: center;
    padding: 10px 100px;
    border-radius: 10px;
    transition: 0.3s;
}
.News-letter.button-selengkapnya:hover {
    background: #FFBB0C;
}
@media (max-width: 768px) {
    .News-letter .button-selengkapnya {
        font-size: 12px;
        width: 100%; 
        box-sizing: border-box;
    }
}

@media (min-width: 1500px) {
  .News-letter {
    padding: 0px 250px;
  }
}

@media (min-width: 1700px) {
  .News-letter {
    padding: 0px 300px;
  }
}

    
    /* Style for the image container */
    .post-img {
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .post-img:hover {
        transform: scale(1.02);
    }
    
    /* Newsletter Modal Styles */
    .newsletter-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        overflow: auto;
    }
        
    .newsletter-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .newsletter-image img {
        width: 90%;
        height: auto;
        object-fit: contain;
    }
        
    .close-newsletter {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }
        
    .close-newsletter:hover {
        color: #bbb;
    }
        
    @media only screen and (max-width: 768px) {
        .newsletter-modal-content {
            width: 95%;
        }

        .newsletter-modal-content img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    }
    
     .newsletter-date {
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

.newsletter-item {
    transition: transform 0.2s;
}

.newsletter-item:hover {
    transform: translateX(5px);
}

.newsletter-item img {
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.newsletter-item:hover img {
    transform: scale(1.05);
}

.object-fit-cover {
    object-fit: cover;
}