: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: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1b1b1b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2eca6a;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #444444;
    /* The default color of the main navmenu links */
    --nav-hover-color: #000000;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #2eca6a;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


.back-to-top {
    background: #2CCD47;
}

.back-to-top:hover {
    background: #2CCD47;
    color: #fff;
}

.navbar>ul>li>a:before {
    background-color: #ffc601;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ffc601;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #ffc601;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ffc601;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #ffc601;
}

.navbar>ul>li>a:before {
    background-color: #ffc601;
}



/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 60px; */
}

.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
}

.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
    font-size: 14px;
    font-weight: 300;
    color: #444444;
    display: block;
    margin-bottom: 5px;
}

.recent-blog-posts .post-box .post-title {
    font-size: 20px;
    color: #010101;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
    color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
    transform: rotate(6deg) scale(1.2);
}

/* DESKTOP */
.recent-blog-posts .post-img {
    aspect-ratio: 640 / 426;
    overflow: hidden;
}

.recent-blog-posts .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-item {
    margin-bottom: 40px;
}

.princing .btn-buy {
    display: inline-block;
    padding: 15px 40px 12px 40px;
    color: #247C43;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #247C43;
}

.cta {
    background-color: #AF2D30;
    background-image: url("../img/frame-fhoto.png");
    background-size: auto;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
}

.main-timeline {
    position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background-color: #939597;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.timeline {
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #939597;
    border: 5px solid #f5df4d;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    padding: 0px 40px 20px 0px;
    left: 0;
}

/* Place the container to the right */
.right {
    padding: 0px 0px 20px 40px;
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -12px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

    /* Place the timelime to the left */
    .main-timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
        left: 18px;
    }

    .left::before {
        right: auto;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}

.bi-file-earmark-check {
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    color: rgba(36, 124, 67, 1);
}

.auto-links {
    padding: 0px 40px 20px 0px;
    left: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/islamic_center.jpg") center center;
    background-size: cover;
    padding: 100px 60px;
    border-radius: 15px;
    overflow: hidden;
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-to-action p {
    color: #fff;
    margin-bottom: 20px;
}

.call-to-action .play-btn {
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.call-to-action .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(0, 131, 116, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.call-to-action .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);
}

.call-to-action .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;
}

.call-to-action .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

.call-to-action .cta-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 48px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.call-to-action .cta-btn:hover {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.footer-links .footer-title::after {
    border-bottom: 2px solid #13ce66;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0px;
    width: 40px;
    position: absolute;
    z-index: 0;
    border-radius: 10px;
}

.footer-title {
    display: block;
    margin: 10px 0 25px 0;
    border-bottom: 1px dotted #e4e9f0;
}

ul.social-network li.facebook a {
    color: #fff;
    padding: 5px 12px;
    background: #0d8af0;
    border-radius: 50%;
}




.search-box-btn::after {
    display: none;
}

.search-box-btn {
    position: relative;
    float: left;
    display: block;
    font-size: 18px;
    color: #000000;
    line-height: 26px;
    cursor: pointer;
    background: none;
    margin: 15px 0px 15px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.dropdown-menu {
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    list-style: none;
}

.search-box-btn {
    font-size: 18px;
    color: #000000;
    line-height: 26px;
    cursor: pointer;
    white-space: nowrap;
    /* padding: 10px 20px 10px 28px; */
    padding: 10px 0px 10px 28px;
}

@media (max-width: 991px) {
    .search-box-btn {
        padding-right: 20px;
    }
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}

.navbar-mobile .search-box-btn {
    display: none;
}

.search-box-btn .dropdown-menu li a {
    display: block;
    width: 100%;
    text-align: left !important;
    padding-left: 12px;
}

.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333333em;
    line-height: 1em;
}

.flag-icon-id {
    background-image: url('../img/id.png');
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
}

.flag-icon-us {
    background-image: url('../img/eng.png');
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
}

.flag-icon-arb {
    background-image: url('../img/arb.png');
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
}

.search-box-btn .dropdown-menu li a:hover {
    color: #2CCD47;
}

.algn {
    font-size: 16px;
    font-weight: 500;
    color: #0e1133;
    margin-bottom: 10px;
}

.algn i {
    font-size: 16px;
    color: #30a820;
    padding-right: 9px
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #485372;
    text-align: center;
    font-size: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden;
    position: relative;
}

#hero h2 {
    margin-bottom: 30px;
    font-size: 56px;
    font-weight: 750;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    overflow: hidden;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* overlay */
.hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: color-mix(in srgb, var(--background-color), transparent 60%);
}

.hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero .carousel-item img {
        object-position: center top;
    }
}

.hero,
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 100vh;
}

@media (max-width: 768px) {

    #hero,
    .hero,
    .hero .carousel,
    .hero .carousel-inner,
    .hero .carousel-item {
        height: 65vh;
    }
}


.hero .carousel-container {
    position: absolute;
    bottom: 40px;
    left: 100px;
    right: 100px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

@media (max-width: 576px) {
    .hero .carousel-container {

        bottom: 50px;
        left: 20px;
        right: 20px;
        max-width: 100%;
        align-items: flex-start;
    }

    #hero h2 {
        font-size: clamp(20px, 6vw, 30px);
        /* otomatis mengecil sesuai lebar layar */
    }

    #hero .btn-get-started {
        font-size: clamp(12px, 4vw, 16px);
        padding: 6px 20px;
    }
}

#hero h2 {
    margin-bottom: 10px;
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

#hero h2 span {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

#hero .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    margin: 10px 0;
    align-self: flex-start;
    flex-shrink: 0;
    border: 2px solid var(--contrast-color);
}

#hero .btn-get-started:hover {
    border: 2px solid #2CCD47 !important;
    color: #2CCD47 !important;
    /* background: color-mix(in srgb, var(--accent-color), transparent 20%); */
}

@media (max-width: 992px) {
    #hero .btn-get-started {
        font-size: 16px;
        padding: 8px 30px;
    }
}

/* HP / Mobile */

.hero-mobile-btn {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #hero .btn-get-started {
        display: none;
    }

    #hero .highlighted-text {
        font-size: 12px !important;
    }

    #hero .carousel-container h2 {
        font-size: 21px !important;
        line-height: 1.3;
    }

    #hero .carousel-container h2 span {
        font-size: 21px !important;
    }
}

.highlighted-text {
    text-transform: uppercase;
}

.hero-mobile-btn .btn-get-started {
    color: #2CCD47 !important;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    transition: 0.5s;
    margin: 10px 0;
    align-self: flex-start;
    flex-shrink: 0;
    border: 2px solid #2CCD47 !important;
}




.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}


.hero .carousel-control-prev,
.hero .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 10;

    width: 40px;
    /* 🔥 kecilkan area */
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev {
    left: 10px;
}

.hero .carousel-control-next {
    right: 10px;
}

@media (max-width: 992px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        top: 48%;
    }
}

@media (max-width: 768px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        top: 45%;
    }
}

@media (max-width: 576px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        top: 33%;
    }
}




.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
    height: 6px;
    width: 20px;
    transition: 0.3s;
    padding: 0;
}

.hero .carousel-indicators .active {
    background-color: var(--accent-color);
    width: 40px;
}


#footer .footer-newsletter form input[type="submit"]:hover {
    background: #13ce66;
    /* Background color on hover */
}

#topbar {
    background-color: rgba(36, 124, 67, 1);
}

.navbar .btnmenu,
.navbar .btnmenu:focus {
    background: #13ce66;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
}

.navbar .btnmenu,
.navbar .btnmenu:hover {
    background: #13ce66;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar>ul>li>a.btnmenu:before {
    background-color: #fff;
}

.navbar li:hover>a.btnmenu {
    color: #fff;
}

.navbar-mobile .btnmenu,
.navbar-mobile .btnmenu:focus {
    margin: 15px;
}

.btn-float {
    z-index: 999999;
    position: fixed;
    /*width:60px;*/
    height: 40px;
    bottom: 16px;
    right: 70px;
    background-color: #2CCD47;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    /*box-shadow: 2px 2px 3px #eee;*/
}

.btn-float:hover {
    color: #fff;
}

#footer {
    background: #fdc727;
    color: #fff;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #005331;
    color: #fff;
}

.py-4 {
    color: #212529 !important;
}

#footer .credits {
    color: #212529;
}

#footer .footer-top .footer-contact p {
    color: #fff;
}

#footer .footer-top h4 {
    color: #fff;
}

#footer .footer-top .footer-links ul li a {
    color: #fff;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader img {
    width: 100px;
    height: auto;
}

.post-title a {
    font-weight: 600;
}

.pricing .box-cs .post-date {
    font-size: 14px;
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
    display: block;
    margin-top: 10px;
}

.advisor-details-area .info span {
    display: block;
    color: #13ce66;
    font-weight: 700;
    /* text-transform: uppercase; */
}

.advisor-details-area .info ul {
    margin-bottom: 10px;
    margin-top: 5px;
}


.advisor-details-area .info ul {
    margin-bottom: 10px;
    margin-top: 5px;

}

.advisor-details-area .info ul li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 5px;
    font-weight: 700;
}

button,
a.button-class {
    box-shadow: none !important;
}

.btn-group {
    border-radius: var(--bs-border-radius) !important;
}

.search-box-btn .btn {
    transition: background-color 0.3s ease;
}

.search-box-btn .btn:hover {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.page-link {
    box-shadow: none !important;
}

.highlighted-text {
    color: white;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.5em;
}

.pattern-bg {
    position: relative;
    background-color: #005331;
    overflow: hidden;
    z-index: 1;
}

.pattern-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/frontend/img/pattern-1.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.17;
    mix-blend-mode: multiply;
    z-index: 0;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.pattern-bg>* {
    position: relative;
    z-index: 2;
}

.footer-background {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #005331;
}

.footer-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/frontend/img/pexels-element5-1370296-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-background>.container,
.footer-background>* {
    position: relative;
    z-index: 2;
}

.cta-beasiswa {
    background-color: #287342;
    background-image: url('/assets/frontend/img/Frame-1535-1.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    color: white;
    padding: 60px;
}

.cta-beasiswa-testimoni {
    background-color: #287342;
    background-image: url('/assets/frontend/img/Frame-1535-1.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    color: white;
    padding: 40px;
}

.cta-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}


.cta-desc {
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.9;
}

.btn-program {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-program:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-green {
    border: 2px solid rgba(14, 122, 87, 0.5);
    color: #0e7a57;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-green:hover {
    border-color: #0e7a57;
    color: #0e7a57;
    background: transparent;
}


.video-box {
    position: relative;
}

.video-box img {
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: white;
}

.counter {
    font-size: 32px;
    font-weight: 700;
    color: #13ce66;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.video-box {
    height: 100%;
    min-height: 550px;
}

.section-video-bg-image {
    width: 100%;
    height: 100%;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

#counts {
    padding-top: 0;
    padding-bottom: 0;
}

.beasiswa-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    border: 1.5px solid #13ce66;
    transition: all .25s ease;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.beasiswa-card:hover {
    box-shadow:
        0 0 0 1px #13ce66 inset,
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-badge {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.badge-jenjang {
    background: #13ce66;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.beasiswa-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.beasiswa-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.card-info {
    margin-bottom: 20px;
}

.info-item {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-daftar {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid #13ce66;
    border-radius: 30px;
    color: #13ce66;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-daftar:hover {
    background: #13ce66;
    color: #fff;
}

.badge-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
    background: #dcfce7;
    color: #15803d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: color .2s ease, box-shadow .2s ease, background .2s ease;
}

.badge-close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #fecaca;
    background: #fee2e2;
    color: #b91c1c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #fde68a;
    background: #fef9c3;
    color: #92400e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.badge-close:hover {
    background: #fecaca;
}

.badge-open:hover {
    background: #bbf7d0;
}

.badge-soon:hover {
    background: #fde68a;
}

.badge-status svg {
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.btn-selengkapnya {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 36px;
    border: none;
    padding: 14px 40px;
    background: linear-gradient(90deg, #F95E2F, #FF8C60);
    box-shadow: 0 15px 35px rgba(249, 94, 47, 0.30);
    transition: all .25s ease;
}

.btn-selengkapnya {
    display: inline-flex;
    width: auto;
}

.btn-selengkapnya:hover {
    background: linear-gradient(90deg, #e14e22, #ff7b45);
    box-shadow: 0 18px 40px rgba(249, 94, 47, 0.40);
    transform: translateY(-2px);
    color: #fff;
}

.btn-selengkapnya i {
    font-size: 18px;
}

@media (max-width:576px) {
    .btn-selengkapnya {
        width: 100%;
    }
}

.card-footer {
    margin-top: auto;
    background: #fff;
}

/* wrapper */
.swiper-wrapper-container {
    position: relative;
}

/* spacing */
.swiper {
    padding-bottom: 40px;
}

/* tombol kiri kanan (LPDP style) */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;

    background: transparent !important;
    box-shadow: none !important;
    width: auto;
    height: auto;
}

/* posisi */
.swiper-button-prev {
    left: -40px;
}

.swiper-button-next {
    right: -40px;
}

/* icon panah */
.swiper-button-next::after {
    /* content: "→"; */
    font-size: 22px;
    font-weight: bold;
    color: #0e7a57;
}

.swiper-button-prev::after {
    /* content: "←"; */
    font-size: 22px;
    font-weight: bold;
    color: #0e7a57;
}

/* hover */
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #0a5c43;
}

/* pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0e7a57;
}

/* card */
.post-box {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiper-slide {
    height: auto;
    display: flex;
}

.post-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* image */
.post-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.post-box:hover img {
    transform: scale(1.05);
}


.post-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: block;
}

/* title */
.post-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.post-title a {
    color: #222;
    text-decoration: none;
}

.post-title a:hover {
    color: #2CCD47;
}

/* mobile */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.swiper-pagination {
    display: none;
}

@media (max-width: 992px) {
    .swiper-pagination {
        display: block;
    }

    .swiper-wrapper {
        margin-bottom: 3rem !important;
    }
}

.post-category-text {
    color: #2CCD47;
    font-weight: 600;
}

/* end wrapper */