 :root {
        --sidebar-width: 260px;
        --primary-color:  rgb(41, 170, 226);
        --primary-dark: rgb(22, 85, 129);
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --bg-light: #f8fafc;
        --border-radius: 16px;
        --transition-speed: 0.3s;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
/*******************************/
/********* General CSS *********/
/*******************************/
a, a:hover {
  text-decoration: none !important;
}

body {
    color: #797979;
    background: #ffffff;
    font-family: Avenir, Segoe UI, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(22, 85, 129);
    font-family: Avenir, Segoe UI, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

a {
    color: #454545;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: rgb(22, 85, 129);
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: rgb(41, 170, 226);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: rgb(22, 85, 129);
    padding-top: 10px;
}

.back-to-top:hover {
    background: rgb(22, 85, 129);
}

.back-to-top:hover i {
    color: rgb(41, 170, 226);
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #0078ff, #edc817);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 1rem;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social a:hover {
    color: rgb(22, 85, 129);
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: 0.5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    color: #ffffff;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: auto;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: rgb(22, 85, 129);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: rgb(41, 170, 226);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (max-width: 992px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 10px 10px 8px 10px;
        color: rgb(255, 255, 255);
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px;
        background: rgba(255, 255, 255, 0.7) !important;
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: rgb(22, 85, 129) !important;
        color: #ffffff;
    }

    .navbar.nav-sticky .navbar-nav .nav-link {
        color: #ffffff; /* Change link color to white in sticky state */
    }

    .navbar.nav-sticky .navbar-nav .nav-link:hover,
    .navbar.nav-sticky .navbar-nav .nav-link.active {
        color: rgb(41, 170, 226); /* Optional: change hover/active link color if needed */
    }

    .page .navbar {
        background: rgb(22, 85, 129) !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: rgb(22, 85, 129) !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/

.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: rgb(22, 85, 129);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: white;
}

@media (max-width: 991.98px) {
    .carousel {
        height: calc(100vh - 105px);
    }
}

@media (max-width: 767.98px) {
    .carousel {
        height: calc(100vh - 70px);
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient(
            60deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 1.5%,
            rgba(0, 0, 0, 0.1) 1.5%,
            rgba(0, 0, 0, 0.1) 3%
        )
        30;
}

.section-header h2:hover::after {
    border-image: repeating-linear-gradient(
            60deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 1.5%,
            rgba(0, 0, 0, 0.05) 1.5%,
            rgba(0, 0, 0, 0.05) 3%
        )
        30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 1.4rem;
        margin: 0 0 0 10px;
    }
}
/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.fact .fact-item {
    position: relative; /* Tambahkan position relative */
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0 15px 0;
    text-align: center;
    background-color: rgb(22, 85, 129);
    border-radius: 8px; /* Tambahkan border-radius untuk tampilan lebih halus */
    border: 2px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.fact .fact-item:hover {
    transform: scale(1.05); /* Efek membesar saat hover */
    z-index: 1; /* Pastikan item yang dihover berada di atas item lain */
    background-color: rgb(41, 170, 226);
}

.fact .fact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    box-sizing: border-box;
    pointer-events: none;
    transition: all 0.5s ease;
}

.fact .fact-item:hover::before {
    animation: loading-border 1s linear infinite;
}

@keyframes loading-border {
    0% {
        clip-path: polygon(0% 0%, 0% 0%, 0% 0%);
        border-top-color: rgb(255, 255, 255);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 0%);
        border-top-color: rgb(255, 255, 255);
        border-right-color: rgb(255, 255, 255);
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    50% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
        border-top-color: rgb(255, 255, 255);
        border-right-color: rgb(255, 255, 255);
        border-bottom-color: rgb(255, 255, 255);
        border-left-color: transparent;
    }
    75% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        border-top-color: rgb(255, 255, 255);
        border-right-color: rgb(255, 255, 255);
        border-bottom-color: rgb(255, 255, 255);
        border-left-color: rgb(255, 255, 255);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        border-color: rgb(255, 255, 255);
    }
}

.fact .fact-item i {
    color: #ffffff;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.fact .fact-item:hover i {
    transform: scale(1.1); /* Tambahkan sedikit scale pada gambar */
}

.fact .fact-item h2 {
    font-size: 1.3rem;
    font-weight: 300;
    transition: color 0.3s ease;
    color: #ffffff;
}
/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10%;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient(
            45deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 0.5%,
            rgba(0, 0, 0, 0.1) 0.5%,
            rgba(0, 0, 0, 0.1) 1%
        )
        30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient(
            45deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 0.5%,
            rgba(0, 0, 0, 0.05) 0.5%,
            rgba(0, 0, 0, 0.05) 1%
        )
        30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgb(22, 85, 129);
    border: 2px solid rgb(22, 85, 129);
    border-radius: 0;
    background: none;
    transition: 0.3s;
}

.about .about-text a.btn:hover {
    color: rgb(41, 170, 226);
    background: rgb(22, 85, 129);
}

.about-text p, .sekilas-text p, .sejarah-text p, .kepatuhan-text p, .perantara-text p, .section-content, .faq-answer {
    text-align: justify; /* Mengatur agar teks rata kiri-kanan */
    margin-left: auto; /* Memberikan margin otomatis di kiri */
    margin-right: auto;
}

.pedoman ol li, .card-body-pengaduan ol li {
    text-align: justify; /* Mengatur agar teks rata kiri-kanan */
    margin-left: auto; /* Memberikan margin otomatis di kiri */
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgb(22, 85, 129);
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.service .service-item i {
    margin-bottom: 20px;
    color: #ffffff;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.service .service-item p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease-out;
    padding: 0 15px;
}

.service-item.active p {
    max-height: 300px; /* Sesuaikan dengan panjang paragraf */
    opacity: 1;
    padding: 15px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), opacity 0.3s ease-in;
    color: #ffffff;
}

.service .service-item a {
    position: relative;
    color: rgb(41, 170, 226);
    transition: 0.3s;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: rgb(41, 170, 226);
}

.service .service-item:hover a.btn {
    color: rgb(22, 85, 129);
    background: #1d2434;
    border-color: #1d2434;
}

.service-item .icon-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-item .toggle-icon {
    transition: transform 0.3s ease;
}

.service-item.active .toggle-icon {
    transform: rotate(180deg);
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background-image: url("/img/dashboard-user/bg.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(
        0,
        0,
        0,
        0.5
    ); /* Dark overlay for better text visibility */
}

.feature .container {
    position: relative;
    z-index: 2;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feature .feature-img iframe {
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.feature .section-header {
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.feature .section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .feature {
        padding: 30px 0;
        background-attachment: scroll;
    }

    .feature .feature-img iframe {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 30px;
    }

    .feature .feature-img iframe {
        height: 300px;
    }

    .feature .section-header {
        text-align: center;
    }

    .feature .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .feature .feature-img iframe {
        height: 250px;
    }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, 0.9);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    overflow: hidden;
}

.team .team-text h2 {
    color: rgb(41, 170, 226);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    color: rgb(22, 85, 129);
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social p {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: rgb(22, 85, 129);
    transition: 0.3s;
}

.team .team-item:hover .team-text {
    height: 160px;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background-color: #f6f7f7;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: rgb(41, 170, 226);
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgb(41, 170, 226)rgb(41, 170, 226);
    transition: 0.3s;
}

.blog .blog-item a.btn:hover {
    color: rgb(22, 85, 129);
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: rgb(41, 170, 226);
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(41, 170, 226);
    font-size: 25px;
    transition: 0.3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: rgb(22, 85, 129);
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: rgb(41, 170, 226);
    transition: 0.3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: rgb(22, 85, 129);
}

.blog .owl-nav .owl-next:hover::after {
    background: rgb(22, 85, 129);
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: rgb(22, 85, 129);
    border-radius: 0;
    border-color: rgb(22, 85, 129);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: rgb(41, 170, 226);
    background: rgb(22, 85, 129);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: 0.3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: rgb(41, 170, 226);
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-weight: 400;
    color: rgb(22, 85, 129);
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: 0.3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgb(22, 85, 129);
    background: none;
    border: 2px solid rgb(22, 85, 129);
    border-radius: 0;
    transition: 0.3s;
}

.contact .contact-form .btn:hover {
    color: rgb(41, 170, 226);
    background: rgb(22, 85, 129);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
    height: auto;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    background: rgb(22, 85, 129);
    z-index: 1001;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: rgb(41, 170, 226);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: 0.3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: rgb(41, 170, 226);
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: rgb(22, 85, 129);
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(22, 85, 129);
    background: none;
    border-radius: 0;
    border: 2px solid rgb(22, 85, 129);
    transition: 0.3s;
}

.footer .footer-newsletter .btn:hover {
    color: rgb(41, 170, 226);
    background: rgb(22, 85, 129);
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: rgb(41, 170, 226);
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.social-icons a {
    color: white;
}

.social-icons a:hover {
    color: rgb(41, 170, 226);
}

/* partner */

.partner-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-logo-track {
    display: flex;
    width: max-content;
    transition: transform 0.5s linear;
}

.partner-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.2s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* partner end */
/* Background Route Start */
.route {
    position: relative;
    width: 100%;
    text-align: left;
}

.bg-route {
    position: relative;
    width: 100%;
    height: auto;
}

.bg-route img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.title-route {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 42, 73, 0.5);
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: clamp(5px, 1vw, 10px);
    flex-wrap: wrap;
}

.title-route span {
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.title-route .active {
    font-weight: bold;
    color: #fff;
}

.title-route .non-active a {
    margin: 0;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #fff;
    transition: margin-left 0.3s ease;
}

.title-route .non-active a:hover {
    color: #ddd;
    margin-left: -5px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .bg-route img {
        max-height: 400px;
    }

    .title-route {
        padding: 8px 15px;
    }
}

@media screen and (max-width: 480px) {
    .bg-route img {
        max-height: 300px;
    }

    .title-route {
        flex-direction: column;
        text-align: center;
        padding: 8px 10px;
    }

    .title-route .non-active a:hover {
        margin-left: 0;
    }
}
/* Background Route End */

/* halaman Sekilas bjb start */

.sekilas-text p,
.sejarah p {
    font-size: 1.1rem;
}

.sejarah {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.sejarah img {
    max-height: 400px;
    width: 100%;
    display: block;
    object-fit: cover; /* Memastikan gambar dipotong untuk mengisi kontainer */
    object-position: center;
}

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

/* halaman Sekilas bjb end */

/* Organisasi Start */

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

.organisasi {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

/* Organisasi End */

/* Card Kepatuhan Start */
.card {
    border: 1px solid #ccc;
    /* border-radius: 8px;
    padding: 20px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin: 10px 0;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center; */
}

.card-pdf h3 {
    font-size: 1.5rem; /* Ukuran font judul */
    margin: 0; /* Menghapus margin bawah judul */
}

.card-pdf a {
    text-decoration: none; /* Menghapus garis bawah link */
    color: #d9534f; /* Warna teks link */
    font-size: 1.5rem; /* Ukuran font link */
    transition: color 0.3s ease; /* Animasi transisi warna */
}

.card-pdf a:hover {
    color: #c9302c; /* Warna teks link saat hover */
}

.card-pdf i {
    font-size: 1.5rem; /* Ukuran ikon */
}

/* Card Kepatuhan End */

/* Kelola Perusahaan Start */

.card-kelola-left {
    background-color: rgb(22, 85, 129);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    margin: auto;
    font-size: 1rem;
    text-align: center;
}

.card-kelola-left:hover {
    background-color: #ffffff;
    color: rgb(22, 85, 129);
}

.card-kelola-left:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: rgb(22, 85, 129);
    transform: translateY(-50%) rotate(45deg);
    z-index: -1;
}

.card-kelola-right {
    background-color: rgb(22, 85, 129);
    color: #fff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    position: relative;
    font-size: 1rem;
    width: 100%;
}

.card-kelola-right:hover {
    background-color: #ffffff;
    color: rgb(22, 85, 129);
}

.card-kelola-right:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    background-color: rgb(22, 85, 129);
    transform: translateY(-50%) rotate(45deg);
    z-index: -1;
}

.card-kelola-left p,
.card-kelola-right p {
    margin: 0;
}

/* Kelola Perusahaan End */

/* pedoman start */
.pedoman {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.image-bjb img {
    width: 120px;
    height: auto;
}

.pedoman ol li {
    font-size: 1.1rem;
}

.card-pedoman-pdf {
    background: #f8f9fa; /* Warna latar belakang */
    border: 1px solid #dee2e6; /* Warna border */
    padding: 20px;
    border-radius: 5px; /* Membuat sudut card melengkung */
    display: flex;
    justify-content: space-between; /* Menempatkan ikon di paling kanan */
    align-items: center; /* Menyelaraskan teks dan ikon secara vertikal */
}

.card-pedoman-pdf p {
    margin: 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-pedoman-pdf a {
    text-decoration: none; /* Menghapus garis bawah link */
    color: #d9534f; /* Warna teks link */
    font-size: 1.5rem; /* Ukuran font link */
    transition: color 0.3s ease; /* Animasi transisi warna */
    margin-left: 10px;
}

.card-pedoman-pdf a:hover {
    color: #c9302c; /* Warna teks link saat hover */
}

.card-pedoman-pdf i {
    font-size: 1.5rem; /* Ukuran ikon */
}
/* pedoman end */

/* perantara start */
.perantara {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

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

.perantara h2 {
    margin-bottom: 20px;
    text-align: center;
}

.perantara .left img,
.perantara .right img,
.perantara .mid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.perantara .left img {
    transform: rotate(-10deg);
    max-height: 200px;
    width: auto;
}

.perantara .right img {
    transform: rotate(10deg);
    max-height: 200px;
    width: auto;
}

.perantara .left img:hover,
.perantara .right img:hover {
    transform: rotate(0deg);
}

.perantara .mid img {
    transition: transform 0.3s ease-in-out;
}

.perantara .mid img:hover {
    transform: scale(1.1);
}

.web-app {
    margin-top: 20px;
    gap: 10px;
}

.web,
.app {
    max-width: 150px;
    height: auto;
}

.web a img:hover,
.app a img:hover {
    transform: scale(1.1);
}

/* perantara end */

/* rups start */
.rups {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.rups h3 {
    text-align: center;
}
/* rups end */

/* download start */

.download {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.table-download {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

.table-download th,
.table-download td {
    padding: 12px 15px;
    border: 1px solid #f1eeee;
}

.table-download th {
    background-color: rgb(22, 85, 129);
    color: white;
}

.table-download tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-download tbody tr:hover {
    background-color: #f1f1f1;
}

.btn-download {
    color: #fff;
    background-color: rgb(41, 170, 226);
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.btn-download:hover {
    background-color: rgb(22, 85, 129);
    color: #fff;
}

.download h2 {
    text-align: center;
}
/* download end */

/* Karir Start */
.karir {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efek paralaks ringan */
}

.karir h2 {
    text-align: center;
}

.card-karir {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-karir:hover {
    transform: translateY(-5px);
}

.card-karir h6 {
    font-size: 1.1rem;
    font-weight: bold;
    color: rgb(22, 85, 129);
}

.card-karir p {
    font-size: 0.8rem;
    color: rgb(41, 170, 226);
    margin-bottom: 0;
}

.card-karir .btn-karir {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: rgb(22, 85, 129);
    color: white;
}

.btn-karir:hover {
    background-color: rgb(41, 170, 226);
}

.card-karir .row > div {
    display: flex;
    align-items: center;
}

.text-end {
    text-align: end;
}

@media (max-width: 768px) {
    .card-karir h6 {
        font-size: 0.9rem;
    }

    .card-karir p {
        font-size: 0.7rem;
        color: rgb(41, 170, 226);
        margin-bottom: 0;
    }

    .card-karir .btn-karir {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}

.card-karir-detail {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.button-karir-detail {
    margin-top: 20px;
}

.btn-karir-detail {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: rgb(22, 85, 129);
    color: white;
    margin-right: 20px;
}

.btn-karir-detail:hover {
    color: white;
    background-color: rgb(41, 170, 226);
}

.card-karir-detail h1 {
    font-weight: bold;
    color: rgb(22, 85, 129);
}

.card-karir-detail h4 {
    color: rgb(22, 85, 129);
    font-weight: bold;
}

.card-karir-detail h6 {
    font-weight: 500;
    color: rgb(22, 85, 129);
}
/* Karir End */

/* faq start */
.faq {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
}

.faq h2 {
    text-align: center;
    color: rgb(22, 85, 129);
    margin-bottom: 20px;
    font-size: 2rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(22, 85, 129);
    color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #0a3b63;
}

.faq-question span {
    font-size: 1.2rem;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

.faq-answer.active {
    display: block;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
    .faq {
        padding: 10px;
        margin: 15px auto;
    }

    .faq h2 {
        font-size: 1.5rem;
    }

    .faq-question, .card-header-pengaduan {
        padding: 12px 15px;
    }

    .faq-answer, .card-body-pengaduan {
        padding: 15px;
    }
}
/* faq end */

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: rgb(22, 85, 129);
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.25);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-primary {
    background: rgb(22, 85, 129);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1);
    background-color: rgb(41, 170, 226);
}

.forgot-password {
    color: rgb(22, 85, 129);
    text-decoration: none;
}

.signup-link {
    text-align: center;
    margin-top: 1rem;
}

article.my-3 {
    text-align: justify; /* Mengatur agar teks rata kiri-kanan */
    width: 100%; /* Membuat lebar elemen 100% dari kontainer induknya */
    margin-left: auto; /* Memberikan margin otomatis di kiri */
    margin-right: auto; /* Memberikan margin otomatis di kanan */
}

/* Recent Post Start */
.recent-posts {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recent-posts hr {
    border-top: 2px solid #007bff;
    width: 50%;
    margin: 10px 0;
}

.recent-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-img img {
    max-width: 100px;
    min-width: 100px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.post-info {
    flex-grow: 1;
}

.post-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.read-more-btn {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #0056b3;
}
.categories {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.categories-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.category-name p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.category-total h4 {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.categories-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.categories hr {
    border-top: 2px solid #007bff;
    width: 50%;
    margin: 10px 0;
}

/* Rencet Post End */

/* card kegiatans */

.kegiatan-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

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

.kegiatan-header {
    padding: 1.5rem 1.5rem 1rem;
}

.kegiatan-title {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.kegiatan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: #4a5568;
}

.category-link {
    color: #4299e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #2b6cb0;
}

.kegiatan-image {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.kegiatan-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.kegiatan-content {
    padding: 1.5rem;
}

.kegiatan-content article {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.kegiatan-footer {
    padding: 0 1.5rem 1.5rem;
}

.kegiatan-footer hr {
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

.footer-actions {
    display: flex;
    justify-content: flex-end;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #4299e1;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.read-more:hover {
    background: #ebf8ff;
    color: #2b6cb0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .kegiatan-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .kegiatan-title {
        font-size: 1.25rem;
    }

    .kegiatan-header,
    .kegiatan-content,
    .kegiatan-footer {
        padding: 1rem;
    }
}

.sekilas-text .feature-img img {
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .kegiatan-card {
        margin-bottom: 1.5rem;
    }

    .kegiatan-title {
        font-size: 1.1rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .sekilas-text .feature-img img {
        width: 50%;
        height: auto;
        margin-bottom: 10px;
    }
}
/* card kegiatans end */

/* karir detail */
.karir-detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.meta-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    height: 100%;
}

.section-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.section-content {
    color: #6c757d;
    line-height: 1.6;
}

.badge {
    font-size: 0.875rem;
    padding: 0.5em 1em;
}

@media (max-width: 768px) {
    .karir-detail-card {
        padding: 1rem;
    }

    .meta-item {
        padding: 0.75rem;
    }
}
/* karir detail end */

/* Pengaduang Start */
.card-pengaduan {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-header-pengaduan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(22, 85, 129);
    color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.card-header-pengaduan:hover {
    background-color: #0a3b63;
}

.card-header-pengaduan span {
    font-size: 1.2rem;
}

.card-body-pengaduan {
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}
/* Pengaduan End */

.me-3 {
    margin-right: 0.5rem !important;
}

/* custom-styles.css */
.alert {
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
}

.alert-dismissible .btn-close {
    filter: brightness(0.5);
}

.alert-info {
    background-color: #dde6e8;
    color: #000000;
}

.alert-warning {
    background-color: #ffc107;
    color: #000000;
}

    .login-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }



    .register-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    @media (max-width: 768px) {
        .register-section {
            min-height: 0vh;
            display: flex;
            align-items: center;
        }
    }

    .img-container {
        height: 100%;
    }

    .img-container img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: 0.9; /* transparansi */
        border-radius: 10px;
    }

    .form-login {
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .signature-canvas {
            border: 2px solid #ddd;
            border-radius: 8px;
            width: 100%;
            height: 150px;
            background-color: #fafafa;
            cursor: crosshair;
        }
        .signature-canvas:hover {
            border-color: rgb(22, 85, 129);
        }
        .signature-container {
            position: relative;
        }
        .signature-info {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }
        .form-login {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .register-section {
            background: #f8f9fa;
            min-height: 100vh;
            padding: 20px 0;
        }

        /* Multi-step Navigation Styles */
        .step-navigation {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 10px 15px;
            margin-bottom: 25px;
            overflow: hidden;
        }

        .nav-steps {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0; /* agar tidak renggang */
        }

        .step-item {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step-link {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 15px;
            text-decoration: none;
            color: #6c757d;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .step-link:hover:not(.active):not(.disabled) {
            background: #e9ecef;
            color: #495057;
        }

        .step-link.active {
            background: rgb(22, 85, 129);
            color: #fff;
            box-shadow: 0 2px 6px rgba(22, 85, 129, 0.3);
        }

        .step-link.disabled {
            background: #f1f3f5;
            color: #adb5bd;
            cursor: default;
        }

        /* Garis penghubung antar step */
        .step-divider {
            flex: 0 0 60px;
            height: 2px;
            background: #dee2e6;
            margin: 0 10px;
        }

        .step-item:first-child .step-link.active ~ .step-divider,
        .step-item:first-child .step-link.disabled ~ .step-divider {
            background: #dee2e6;
        }

        .step-item:first-child .step-link.active ~ .step-divider {
            background: rgb(22, 85, 129);
        }

        /* Responsif */
        @media (max-width: 768px) {
            .nav-steps {
                flex-direction: column;
                gap: 10px;
            }

            .step-divider {
                display: none;
            }

            .step-link {
                width: 100%;
            }
        }


        /* Form Steps */
        .form-step {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        .step-buttons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 30px;
        }

        .btn-prev {
            background: #6c757d;
            border-color: #6c757d;
        }

        .btn-prev:hover {
            background: #5a6268;
            border-color: #545b62;
        }

        .form-control.is-invalid {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }

        .custom-toast {
            animation: slideInRight 0.3s ease;
        }

        @media (max-width: 768px) {
            .step-text {
                display: none;
            }
            .step-number {
                margin-right: 0;
            }
            .step-buttons {
                flex-direction: column;
            }
            .step-buttons .ms-auto {
                margin-left: 0 !important;
            }
        }


        /* Styling untuk step yang disabled */
.step-link.disabled {
    background-color: #28a745 !important;
    color: white !important;
    cursor: not-allowed !important;
    position: relative;
}

.step-link.disabled:hover {
    background-color: #1e7e34 !important;
    color: white !important;
}

.step-link.completed {
    background-color: #28a745 !important;
    color: white !important;
}

.completed-icon {
    font-weight: bold;
    margin-left: 5px;
}

/* Styling untuk konten step yang di-skip */
.form-step.disabled-step {
    opacity: 0.6;
    pointer-events: none;
}

.skip-message {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
}

.skip-message i {
    margin-right: 10px;
    font-size: 1.2em;
}

.skip-message strong {
    display: block;
    margin-bottom: 5px;
}

/* Animasi untuk transisi smooth */
.form-step {
    transition: opacity 0.3s ease;
}

.step-link {
    transition: all 0.3s ease;
}

/* Styling untuk input hubungan pemilik manfaat */
#hubungan_pemilik_manfaat {
    transition: all 0.3s ease;
}

#hubungan_pemilik_manfaat.d-none {
    display: none !important;
}

/* Hover effect untuk step yang tidak disabled */
.step-link:not(.disabled):hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Active state untuk step saat ini */
.step-link.active:not(.disabled) {
    background-color: #007bff;
    color: white;
}

    .modal-header {
        background: rgb(22, 85, 129);
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .modal-title {
        color: white;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

    .modal-body {
        font-size: 16px;
        line-height: 1.6;
        color: #000000;
    }

    .statement-box {
        background: #f8f9fa;
        border-left: 4px solid #007bff;
        padding: 20px;
        margin: 15px 0;
        border-radius: 0 8px 8px 0;
    }

    .highlight-text {
        background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
    }

    .agreement-section {
        background: #fff3cd;
        border: 2px solid #ffc107;
        border-radius: 10px;
        padding: 20px;
        margin: 20px 0;
        text-align: center;
    }

    .agreement-icon {
        font-size: 3rem;
        color: #ffc107;
        margin-bottom: 15px;
    }

    .btn-agree {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        transition: all 0.3s ease;
    }

    .btn-agree:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        color: white;
    }

    .btn-agree:disabled {
        background: #6c757d;
        transform: none;
        box-shadow: none;
        cursor: not-allowed;
    }

    .btn-cancel {
        background: #6c757d;
        border: none;
        color: white;
        font-weight: 500;
        padding: 12px 25px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .btn-cancel:hover {
        background: #5a6268;
        color: white;
    }

    .checkbox-container {
        margin: 20px 0;
        padding: 15px;
        background: #e7f3ff;
        border-radius: 8px;
        border: 1px solid #b8daff;
    }

    .form-check-input:checked {
        background-color: #28a745;
        border-color: #28a745;
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .success-feedback {
        background: #d1edff;
        border: 1px solid #0066cc;
        color: #0066cc;
        padding: 10px;
        border-radius: 6px;
        margin-top: 15px;
        display: none;
    }

    .warning-text {
        color: #dc3545;
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        display: none;
    }

    .form-label-profile, .form-control-profile {
        font-size: 13px;
    }

    #persetujuan {
        pointer-events: none; /* user gak bisa klik manual */
    }

    /* Horizontal scroll container styling */
    .header-scroll-container {
        position: relative;
        overflow: hidden;
    }

    .header-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 12px 16px;
        gap: 8px;

        /* Hide scrollbar but keep functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .header-scroll-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .header-scroll-item {
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Optional: Add scroll buttons */
    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        border: none;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .scroll-btn:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 1);
    }

    .scroll-btn-left {
        left: 8px;
    }

    .scroll-btn-right {
        right: 8px;
    }

    .scroll-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .header-scroll-wrapper {
            padding: 8px 12px;
            gap: 6px;
        }

        .scroll-btn {
            display: none; /* Hide scroll buttons on mobile */
        }
    }

    /* Hover effect untuk navigation */
    .card-footer a:hover {
        background-color: #f8f9fa;
    }

    /* Responsive mobile */
    @media (max-width: 768px) {
        .card-footer .d-flex {
            flex-wrap: wrap;
        }

        .card-footer a {
            flex: 0 0 50% !important;
            font-size: 0.85rem;
            padding: 0.75rem 0.5rem !important;
        }

        .card-footer a:nth-child(odd) {
            border-right: 1px solid #dee2e6 !important;
        }

        .card-footer a i {
            display: block;
            margin-bottom: 0.25rem;
        }
    }

    .form-label-profile {
        font-weight: 500;
        font-size: 0.9rem;
        color: #495057;
    }

    /* Navigation Scroll Container */
        .nav-scroll-container {
            position: relative;
        }

        .nav-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        .nav-scroll::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        /* Navigation Items */
        .nav-item {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.5rem;
            min-width: 120px;
            color: #6c757d;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            gap: 0.5rem;
        }

        .nav-item i {
            font-size: 1.25rem;
        }

        .nav-item span {
            font-size: 0.875rem;
            white-space: nowrap;
        }

        /* Hover State */
        .nav-item:hover {
            background-color: #f8f9fa;
            color: #495057;
        }

        /* Active State */
        .nav-item.active {
            color: #0d6efd;
            font-weight: 600;
            border-bottom-color: #0d6efd;
        }

        /* Responsive untuk mobile */
        @media (max-width: 768px) {
            .nav-item {
                min-width: 100px;
                padding: 0.875rem 1rem;
            }

            .nav-item i {
                font-size: 1.1rem;
            }

            .nav-item span {
                font-size: 0.75rem;
            }
        }

        /* Scroll indicator shadows (optional) */
        .nav-scroll-container::before,
        .nav-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 30px;
            pointer-events: none;
            z-index: 1;
        }

        .nav-scroll-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }

        .nav-scroll-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }

        .user-profile-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);            border-radius: 15px;
            color: #fff;
            transition: transform 0.2s ease-in-out;
        }

        .user-profile-card:hover {
            transform: translateY(-3px);
        }

        .user-profile-card img {
            border: 3px solid rgba(255,255,255,0.6);
        }

        /* dashboard user */
        /* Sidebar Styles */
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: var(--sidebar-width);
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        box-shadow: var(--shadow-md);
        z-index: 1040;
        transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .dashboard-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .dashboard-sidebar::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .dashboard-sidebar::-webkit-scrollbar-thumb {
        background: #c0c0c0;
        border-radius: 3px;
    }

    .dashboard-sidebar.collapsed {
        transform: translateX(-100%);
    }

    .sidebar-header {
        padding: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
    background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;

        position: sticky;
        top: 0;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

    .sidebar-close-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        padding: 0.25rem;
        transition: color 0.2s ease;
        line-height: 1;
    }

    .sidebar-close-btn:hover {
        color: var(--text-dark);
    }

    .sidebar-nav {
        flex: 1;
        padding: 1rem;
    }

    .sidebar-nav-item {
        display: flex;
        align-items: center;
        padding: 0.875rem 1rem;
        color: var(--text-light);
        text-decoration: none;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        transition: all 0.2s ease;
        font-weight: 500;
        font-size: 0.9375rem;
    }

    .sidebar-nav-item:hover {
        background: #f3f4f6;
        color: var(--text-dark);
        transform: translateX(4px);
    }

    .sidebar-nav-item.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .sidebar-nav-item i {
        font-size: 1.125rem;
        width: 20px;
        margin-right: 0.875rem;
        flex-shrink: 0;
    }

    .sidebar-nav-text {
        flex: 1;
    }

    .sidebar-footer {
        padding: 1rem;
        border-top: 1px solid #e5e7eb;
           background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;

        margin-top: auto;
    }

    .sidebar-user-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: url("/img/dashboard-user/bg-route.jpg") no-repeat center center;

        border-radius: 12px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .sidebar-user-info:hover {
        background: #f3f4f6;
    }

    .sidebar-user-avatar {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(239, 202, 24);
        color: white;
        border-radius: 50%;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .sidebar-user-details {
        flex: 1;
        min-width: 0;
    }

    .sidebar-user-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sidebar-user-email {
        font-size: 0.75rem;
        color: var(--text-light);
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Sidebar Toggle Button */
    .sidebar-toggle-btn {
        position: fixed;
        top: 110px;
        left: 20px;
        width: 48px;
        height: 48px;
        background: white;
        border: none;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        cursor: pointer;
        z-index: 1035;
        transition: all var(--transition-speed) ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--text-dark);
    }

    .sidebar-toggle-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }

    .sidebar-toggle-btn:active {
        transform: scale(0.95);
    }

    .sidebar-toggle-btn.sidebar-open {
        left: calc(var(--sidebar-width) + 20px);
    }

    /* Sidebar Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1030;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        backdrop-filter: blur(2px);
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Main Content Wrapper */
    .main-content-wrapper {
        margin-left: var(--sidebar-width);
        transition: margin-left var(--transition-speed) ease;
        min-height: 100vh;
    }

    .main-content-wrapper.sidebar-closed {
        margin-left: 0;
    }

    /* Card Styles */
    .card {
        border: none;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
        background: white;
    }

    .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1.125rem;
        margin: 0;
    }

    /* Stats Cards */
    .stats-card {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);            border-radius: 15px;
            color: #fff;
        border: none;
        overflow: hidden;
        position: relative;
    }

    .stats-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
        pointer-events: none;
    }

    .stats-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }

    .stats-icon-wrapper {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .stats-icon-wrapper i {
        font-size: 1.75rem;
        color: white;
        opacity: 0.9;
    }

    .amount-display {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0.5rem 0 0 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .amount-display-gain-loss {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0.5rem 0 0 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .label-text {
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }

    /* Performance Card */
    .performance-card {
        height: 100%;
    }

    .performance-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .apexcharts-legend {
        margin-top: 50px !important;
    }


    /* Transaction Card */
    .transaction-card {
        height: 100%;
    }

    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
        color: #9ca3af;
    }

    .empty-state i {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        opacity: 0.3;
    }

    .empty-state p {
        font-size: 0.9375rem;
        margin: 0;
    }

    /* Responsive Styles */
    @media (max-width: 1199px) {
        .performance-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 991px) {
        :root {
            --sidebar-width: 280px;
        }

        .dashboard-sidebar {
            transform: translateX(-100%);
        }

        .dashboard-sidebar.active {
            transform: translateX(0);
        }

        .sidebar-close-btn {
            display: block;
        }

        .main-content-wrapper {
            margin-left: 0;
        }

        .sidebar-toggle-btn {
            top: 110px;
            left: 15px;
        }

        .sidebar-toggle-btn.sidebar-open {
            left: 15px;
        }

    }

    @media (max-width: 768px) {
        .sidebar-toggle-btn {
            width: 44px;
            height: 44px;
            font-size: 1.125rem;
        }

        .amount-display {
            font-size: 1.5rem;
        }

        .amount-display-gain-loss {
            font-size: 0.8rem;
        }

        .label-text {
            font-size: 0.75rem;
        }

        .stats-icon-wrapper {
            width: 48px;
            height: 48px;
        }

        .stats-icon-wrapper i {
            font-size: 1.5rem;
        }

        .card-body {
            padding: 1.25rem;
        }

        .donut-chart {
            width: 140px;
            height: 140px;
            margin: 1rem auto;
        }

        .composition-list {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 576px) {
        .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .amount-display {
            font-size: 1.375rem;
        }

        .amount-display-gain-loss {
            font-size: 0.7rem;
        }

        .donut-chart {
            width: 120px;
            height: 120px;
        }

        .donut-chart-inner {
            font-size: 1.25rem;
        }

        .composition-label {
            font-size: 0.8125rem;
        }

        .composition-value {
            font-size: 0.8125rem;
        }
    }

    @media (max-width: 400px) {
        .sidebar-toggle-btn {
            top: 105px;
            left: 10px;
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .amount-display {
            font-size: 1.25rem;
        }

        .amount-display-gain-loss {
            font-size: 0.6rem;
        }

        .stats-content {
            gap: 0.5rem;
        }
    }

    /* Reksa */
    .btn-beli {
        display: inline-block;
        text-decoration: none;
        background: var(--primary-color);
        color: white;
        padding: 6px 16px;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

.btn-beli:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    color: white; /* biar teks tidak berubah saat hover */
}

.card-amount-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap; /* biar responsif di layar kecil */
}

.card-amount-section .card-amount {
    font-size: 0.8rem;
}

.badge-success {
    background-color: #10b981; /* hijau utama */
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    display: inline-block;
    border: none;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.badge-success:hover {
    background-color: #0ea66c;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* versi merah untuk loss */
.badge-danger {
    background-color: #ef4444; /* merah utama */
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    display: inline-block;
    border: none;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.badge-danger:hover {
    background-color: #dc2626;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}


.btn-dokumen-reksa {
    background: white;
    border: 1px solid #d9e2ec;
    color: rgb(22, 85, 129);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.btn-dokumen-reksa:hover {
    background: rgb(22, 85, 129);
    color: white;
    border-color: rgb(22, 85, 129);
    transform: translateY(-2px);
}

.btn-dokumen-reksa i {
    font-size: 1.1rem;
}

/* === MOBILE (≤767px) === */
@media (max-width: 767.98px) {
    .btn-dokumen-reksa {
        width: 100%;
    }
}

/* === TABLET (768px–991px) === */
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-dokumen-reksa {
        width: calc(50% - 6px); /* agar 2 tombol muat dan sejajar */
    }
}

/* === DESKTOP (≥992px) === */
@media (min-width: 992px) {
    .btn-dokumen-reksa {
        width: auto; /* normal */
    }
}

table.dataTable {
    font-size: 9px;
}
