body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.topbar {
    background-color: #003d00;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher .dropdown-item img {
    width: 37px;
    height: 25px;
    margin-right: 5px;
}

@media (max-width:992px) {
    .language-switcher img {
        width: 20px;
        height: auto;
    }

    .language-switcher .dropdown-item img {
        width: 20px;
        height: auto;
    }
}

.search-container {
    position: relative;
}

.search-container input {
    display: none;
    width: 250px;
    z-index: 1000;
}

.search-container input.active {
    display: inline-block;
}

.header {
    background-color: white;
    height: 134px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease; /* Animasi transisi */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 999;
}

.header.shrink {
    height: 80px; /* Ketinggian navbar mengecil */
    transition: all 0.3s ease;
}

.header.shrink .logo img {
    height: 40px; /* Ukuran logo mengecil */
    width: 224px;
    transition: all 0.3s ease;
}

.header.shrink nav a {
    font-size: 14px; /* Ukuran teks menu mengecil */
    transition: all 0.3s ease;
}

.header .logo img {
    width: 303px;
    height: 54px;
}

 @media (max-width:992px) {
    .topbar{
        height: 30px;
    }

    .topbar span {
        font-size: 8px;
    }

    .header {
        height: 75px;
    }
    .header .logo img {
        width : 120px;
        height: auto;
    }
 }

.utama{
    font-size: 16px;
    color: #003d00;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.sub-menu {
    font-size: 16px;
    color: #003d00;
    text-decoration: none;
    font-weight: 600;
    /* border-top: 1px solid rgb(1, 87, 21);
    border-bottom: 1px solid rgb(1, 87, 21); */

}

.header nav a:hover {
    color: #f0a500;
}

.dropdown-menu-custom {
    background-color: white;
    width: 300px;
    padding: 0;
    min-height: 100px;
}

.dropdown-menu-custom .dropdown-item {
    color: #003d00;
    text-align: start;
    /* padding: 10px; */
    /*border-bottom: 1px solid rgb(1, 87, 21);*/
}

.dropdown-menu-custom .dropdown-item:hover {
    background-color: #003d00;
    color: white;
    
}

.dropdown-menu-custom .dropdown-item:last-child {
    border-bottom: none;
}

.sticky-top {
    z-index: 999; /* Memastikan navbar tetap berada di atas elemen lain */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Bayangan halus */
}

       /* Global Style */
       * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    body {
        background-color: #fff;
        color: #333;
    }
    ul {
        list-style: none;
    }
    a {
        text-decoration: none;
        color: inherit;
    }


    /* Desktop Navigation */
    .desktop-menu {
        display: flex;
        gap: 20px;
    }
    .desktop-menu a {
        font-size: 16px;
        font-weight: 600;
        color: #003d00;
    }
    .desktop-menu a:hover {
        color: #f0a500;
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #003d00;
        z-index: 999;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 30%;
        width: 70%;
        height: 100%;
        background-color: white;
        transform: translateX(170%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        margin: 15px 0;
    }

    .mobile-menu a {
        display: block;
        color: #003d00;
        font-weight: 600;
        text-decoration: none;
        padding: 10px 0;
    }

    .submenu {
        display: none;
        padding-left: 15px;
    }

    .submenu li a {
        font-size: 14px;
        color: #555;
    }

    /* Toggle Arrow Styling */
    .submenu-toggle {
        position: relative;
    }

    .submenu-toggle i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    /* Submenu Active Styling */
    .submenu.active {
        display: block;
    }

    .submenu-toggle i.rotate {
        transform: translateY(-50%) rotate(180deg);
    }

    .mobile-overlay nav ul {
        padding: 50px 20px;
    }

    .mobile-overlay nav ul .submenu {
        padding: 10px 20px;
    }

    .mobile-overlay nav ul li {
        margin: 20px 0;
    }
    .mobile-overlay nav ul li a {
        font-size: 18px;
        font-weight: 600;
        color: #003d00;
    }
    .mobile-overlay nav ul li a:hover {
        color: #f0a500;
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
        color: #003d00;
    }


    /* Responsive */
    @media (max-width: 992px) {
        .desktop-menu {
            display: none;
        }
        .hamburger-menu {
            display: block;
        }

        .mobile-overlay nav ul li a {
            font-size: 12px;
        }
    }
    
    
    /* Submenu Styling */
.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    padding: 0;
    min-width: 200px;
    z-index: 1000;
    border: 1px solid #ddd;
}

.submenu li {
    position: relative;
}

.submenu li a {
    padding: 10px;
    font-size: 14px;
    color: #003d00;
    text-decoration: none;
    display: block;
    font-weight: 400;
}

.submenu li a:hover {
    background-color: #003d00;
    color: white;
}

.dropdown-menu-custom > li:hover > .submenu {
    display: block;
}

/* Submenu Active */
.submenu.active {
    display: block;
}

/* Rotate Icon */
.submenu-toggle i.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Submenu hidden by default */
.dropdown-menu-custom .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    padding: 0;
    min-width: 200px;
    z-index: 1000;
    border: 1px solid #ddd;
}

/* Show submenu on hover */
.dropdown-menu-custom li:hover > .submenu {
    display: block;
}

/* Show submenu on hover (desktop only) */
@media (min-width: 992px) {
    .dropdown-menu-custom li:hover > .submenu {
        display: block;
    }
}

/* Style for the submenu items */
.submenu li a {
    padding: 10px;
    font-size: 14px;
    color: #003d00;
    text-decoration: none;
    display: block;
    font-weight: 400;
}

.submenu li a:hover {
    background-color: #003d00;
    color: white;
}

/* Submenu tampil ketika aktif di mobile */
.submenu.active {
    display: block;
    position: static; /* Static untuk mobile */
    padding: 10px 0;
    margin: 0;
    border: none;
}

/* Atur ulang submenu agar rapi di mobile */
@media (max-width: 991px) {
    .submenu {
        display: none; /* Default: tersembunyi */
        position: relative;
        background-color: white;
        padding-left: 15px;
    }

    .dropdown-menu-custom li {
        position: relative;
    }
}

/* Submenu hidden by default */
.submenu {
    display: none;
    position: relative; /* Posisi relatif untuk mobile */
    background-color: white;
    padding: 10px 0;
    border-left: 1px solid #ddd; /* Tambahkan garis untuk submenu */
}

/* Submenu tampil saat active */
.submenu.active {
    display: block;
}

/* Styling toggle arrow */
.submenu-toggle i {
    transition: transform 0.3s ease;
}

.submenu-toggle i.rotate {
    transform: rotate(180deg);
}

/* Mobile Styling */
@media (max-width: 991px) {
    .submenu {
        padding-left: 20px;
    }

    .mobile-menu ul {
        padding-left: 0;
        list-style: none;
    }

    .mobile-menu a {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #003d00;
        padding: 10px 20px;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        background-color: #003d00;
        color: white;
    }
}






.banner {
    height: 388px;
    background: url('banner-image.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-text {
    font-size: 48px;
    background-image: url(assets/img/hero-beranda.png);
    font-weight: 600;
    color: white;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); */
    text-align: center;
}

.hero {
    background: url('../img/hero-beranda.png') center/cover no-repeat;
    height: 388px;
    font-size: 48px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* text-shadow: 1px 1px 5px rgba(0,0,0,0.5); */
}

.hero img {
    max-width : 400px;
}


.logo-section {
    height: 269px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    gap: 70px; /* Jarak antar logo */
}

.logo-item {
    height: 107px;
    display: block;
}

@media (max-width:992px){
    .hero {
        font-size: 25px;
        height: 210px;
    }

    .logo-section {
        height: 150px;
    }

    .logo-container {
        gap:20px
    }

    .logo-item {
        height: 50px;
    }
}

/* Banner Latar Belakang */
.background-banner {
    height: 206px;
    background-size: cover;
    display: flex;
    align-items: center;
}

.background-banner-text {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0 60px;
}

/* Section Container */
.content-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Title */
.content-section .section-title{
    font-size: 24px;
    font-weight: 700;
    color: #003d00;
    margin-bottom: 20px;
    padding: 70px 0 0 0;
    text-align: start;
}

/* Description */
.section-description {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.8;
}

@media (max-width:992px) {
    .background-banner {
        height : 150px;
    }

    .background-banner-text {
        font-size: 24px;
        margin : 0 30px;
    }

    .content-section {
        padding: 10px 20px;
    }

    .content-section .section-title{
        font-size: 20px;
        padding: 40px 0 0 0;
    }

    .section-description {
        font-size: 12px;
    }
}

/* Images */
.image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
}


/* Quote Section */
.quote-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #003C00;
    color: white;
    border-left: 5px solid #D5A600;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    width: 100%;
    color: #D5A600;
}

@media (max-width:992px) {
    .quote-text {
        font-size: 14px;
    }

    .quote-author {
        font-size: 12px;
    }
}


/* Visi dan Misi Section */
.vision-mission-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

/* Visi */
.vision-content {
    text-align: center;
    margin-bottom: 40px;
}

.quote-box {
    display: inline-block;
    background-color: #003d00;
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.quote-icon {
    font-size: 50px;
    font-weight: bold;
    color: #FFD700;
    position: absolute;
}

.quote-box .quote-icon:first-child {
    top: -30px;
    left: 10px;
}

.quote-box .quote-icon:last-child {
    bottom: -50px;
    right: 10px;
}

.vision-text {
    margin: 0;
    font-size: 20px;
}

/* Misi */
.mission-content {
    text-align: center;
}

.mission-title {
    font-size: 32px;
    font-weight: 600;
    color: #003d00;
    margin-bottom: 20px;
}

.mission-list {
    text-align: left;
    font-size: 16px;
    color: #333333;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    line-height: 1.8;
    max-width: 70%;
    font-weight: 600;
}

.mission-list li {
    margin-bottom: 10px;
}

.mission-graphic {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mission-graphic img {
    width: 300px;
}

@media (max-width:992px) {
    .mission-title {
        font-size: 24px; 
    }

    .vision-text {
        font-size: 14px;
    }

    .mission-list {
        font-size: 14px;
        margin: 0 auto 10px auto;
        padding-left: 0;
        line-height: 1.8;
        max-width: 90%;
    }

    .mission-graphic img {
        width: 150px;
    }
    
}

/*===============================MANAJEMEN===============================*/
/* Section Container */
.management-section {
    padding: 40px 20px;
    background-color: #ffffff;
    width: 70%;
    margin: 0 auto;
  }

/* Profile Container */
.management-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

/* Profile Image */
.profile-image {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Profile Details */
.profile-details {
    flex: 1;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #003d00;
    margin-bottom: 5px;
}

.profile-title {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
}

.profile-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 18px;
    color: #003d00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D5A600; /* Warna kuning saat hover */
}

@media (max-width:776px) {
    .management-section {
        width: 90%;
    }

    .profile-name {
        font-size: 14px;
    }

    .profile-description {
        font-size: 10px;
    }

    .profile-title {
        font-size: 12px;
    }
}


/*================================STRENG SECTION=========================*/
/* Section Container */
.strength-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.section-title .streng::before {
    left: calc(50% - 200px);
}

.section-title .streng::after {
    right: calc(50% - 150px);
}

.section-title .streng {
    font-size: 24px;
    font-weight: 700;
    color: #003d00;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title .streng::before,
.section-title .streng::after {
    content: '';
    flex: 1;
    height: 1px; /* Tinggi garis */
    background-color: #003d00;
    margin: 0 20px; /* Jarak antara garis dan teks */
}


/* Strength Card */
.strength-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    height: 300px; /* Tinggi card seragam */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Strength Icon */
.strength-icon {
    font-size: 48px;
    color: #003d00;
    margin-bottom: 15px;
}

/* Strength Title */
.strength-title {
    font-size: 18px;
    font-weight: 700;
    color: #D5A600;
    margin-bottom: 10px;
}

/* Strength Description */
.strength-description {
    font-size: 14px;
    color: #333333;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}



/*===============================TATA KELOLA=============================*/
/* Section Styling */
.tab-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    color: #003d00;
    font-weight: bold;
    border: none;
}

.nav-tabs .nav-link.active {
    background-color: #003d00;
    color: white;
    border-radius: 0;
}

.tab-content {
    margin-top: 20px;
}

.content-box {
    background-color: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.content-box h4 {
    color: #003d00;
    font-weight: bold;
    margin-bottom: 15px;
}

.content-box ol, .content-box ul {
    margin-left: 20px;
}

/* ======================LITERASI PRODUK======================== */
.reksa-dana {
    padding: 40px 20px;
    background-color: #ffffff;
}

.reksa-dana .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #003C00;
    margin-bottom: 20px;
}

/* Table Styling */
.info-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.info-table th,
.info-table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.info-table th {
    background-color: #003d00;
    color: white;
    font-weight: bold;
    text-align: left;
    width: 30%;
}

.info-table td {
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
}

.info-table tr:nth-child(even) td {
    background-color: #f1f1f1;
}

/* Highlight Cut-off Time */
em {
    font-style: italic;
    color: #017B01;
    font-weight: 600;
}

@media(max-width:776px) {
    .reksa-dana .section-title {
        font-size: 16px;
    }

    .info-table th {
        font-size: 10px;
    }

    .info-table td {
        font-size: 10px;
    }
}

/*===============================ARTI REKSA DANA=========================*/
/* Arti Reksa Dana Section */

/* Hero Banner */
.hero-banner {
    height: 466px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* margin: 0 auto; */
}

.hero-title {
    font-size: 35px;
    font-weight: bold;
    color: #D5A600; /* Warna kuning */
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

/* Keuntungan Reksa Dana Section */
.keuntungan-reksa-dana {
    padding: 40px 20px;
}

.keuntungan-reksa-dana .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-image {
    width: 450px; /* Lebar gambar */
    height: 297px; /* Tinggi gambar */
    object-fit: cover;
    margin-bottom: 20px;
}

.benefits-list {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.benefits-list li {
    margin-bottom: 15px;
}

.additional-benefit {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Resiko Reksa Dana Section */
.resiko-reksa-dana {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 20px;
}

.risk-item {
    margin-bottom: 30px;
}

.risk-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 10px;
}

.risk-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.risk-item ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
}

.risk-item ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Gambar */
.risk-image {
    width: auto; /* Lebar gambar */
    height: 730px; /* Tinggi gambar */
    object-fit: cover;
    margin-top: 0;
}

/* Section Styling */
.pendaftaran-rekening {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.pendaftaran-card {
    width: 478px; /* Lebar card */
   
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pendaftaran-card .card-header {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.pendaftaran-card .card-header h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.pendaftaran-card .icon {
    height: 139px;
    object-fit: contain;
}

.pendaftaran-card .card-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.pendaftaran-card .card-body h4 {
    font-size: 18px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 15px;
}

.pendaftaran-card .card-body ol {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 10px;
}

.pendaftaran-card .card-body ol li {
    margin-bottom: 10px;
}

.pendaftaran-card.individu {
    border-top: 5px solid #003d00; /* Hijau untuk individu */
}

.pendaftaran-card.institusi {
    border-top: 5px solid #FFD700; /* Kuning untuk institusi */
}

.pendaftaran-card .card-footer {
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.pendaftaran-card .btn {
    width: 80%;
    background-color: #003d00;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pendaftaran-card .btn:hover {
    color: #004d00;
    background-color: #fff;
    border: 2px solid #004d00;
}

.pendaftaran-card .btn-secondary {
    width: 80%;
    background-color: #f0a500;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pendaftaran-card .btn-secondary:hover {
    background-color: #ffffff;
    color: #f0a500;
    border: 2px solid #f0a500;
}

@media (max-width : 776px) {
    .pendaftaran-card {
        width: 350px; /* Lebar card */
        height: auto;
    }

    .pendaftaran-card .card-body {
        padding: 10px;
        font-size: 12px;
    }

    .pendaftaran-rekening {
        padding: 20px 0px;
    }
}

/* Section Transaksi Reksa Dana */
.transaksi-reksa-dana {
    padding: 20px 20px 40px 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 20px;
    text-align: center;
}

.transaction-steps {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.transaction-steps li {
    margin-bottom: 10px;
}

.transaction-steps a {
    color: #003d00;
    text-decoration: none;
    font-weight: 600;
}

.transaction-steps a:hover {
    text-decoration: underline;
}

/* Tombol Unduh Formulir */
.form-buttons {
    margin-top: 20px;
}

.btn-download {
    display: inline-block;
    background-color: white;
    color: #003d00;
    border: 2px solid #003d00;
    font-size: 16px;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-download i {
    margin-right: 5px;
}

.btn-download:hover {
    background-color: #003d00;
    color: white;
}

/* Section Styling */
.proses-pengaduan {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #003d00;
}

/* Diagram Alur Styling */
.flowchart {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.box {
    border: 2px solid #003d00;
    border-radius: 8px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #003d00;
    margin-bottom: 15px;
}

.sub-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f4f4f4;
}

.sub-box strong {
    color: #D5A600;
}

.sub-box ul {
    list-style-type: disc;
    margin-left: 20px;
}

.sub-box p {
    margin-bottom: 5px;
}

a {
    color: #003d00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Styling Dasar */
.prinsip-investasi {
    padding: 30px;
    background-color: #fff;
}

.prinsip-investasi .container {
    max-width: 80%;
    margin: 0 auto;
}

.prinsip-investasi .content p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image-content {
    width: 100%;
    max-width: 1028px;
    height: auto;
}

/* Styling Dasar */
.contact-page {
    color: #333;
    margin: 0;
    padding: 0;
}

.contact-banner {
    background: url('assets/img/contact-banner.jpg') center/cover;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.map-section {
    text-align: center;
    background-color: #ddd;
}

.map-placeholder {
    height: 300px;
    background-color: #ccc;
    margin: 20px auto;
    width: 90%;
}

.contact-content {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    flex: 1;
    padding: 10px;
}

.contact-info h3, .contact-form h3 {
    color: #003d00;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info a {
    color: #003d00;
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
}

.btn-kirim {
    background-color: #003d00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.btn-kirim:hover {
    background-color: #017b01;
}


/* ===============================FOOTER================================== */
.footer {
    background: linear-gradient(to bottom, #017B01, #003C00); /* Gradien hijau */
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 600; /* Menyesuaikan font weight */
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin: 5px 0;
}


.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.social-link {
    font-size: 23px; /* Ukuran ikon */
    color: black; /* Warna ikon hitam */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D5A600; /* Warna hover kuning */
}

.social-icon {
    height: 23px;
    filter: brightness(0); /* Ikon berwarna hitam */
}

.footer-line {
    height: 1px;
    background-color: #D5A600;
    opacity: 0.54; /* Opasitas garis */
    margin: 20px auto;
    width: 100%;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width:992px) {
    .footer-info h3 {
        font-size: 16px;
    }

    .footer-info p {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 8px;
    }

    .social-icon {
        height: 18px;
    }
}

/*==============================FAQ=============================*/

.faq-container {
    margin: 20px auto;
    max-width: 90%;
}
.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: #f9f9f9;
}
.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    margin-top: 10px;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question i.rotate {
    transform: rotate(180deg);
}

/* Section Styles */
.wbs-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.wbs-section .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.wbs-section .title {
    font-size: 36px;
    font-weight: bold;
    color: #002060;
    margin-bottom: 40px;
}

/* Card Styles */
.wbs-section .card {
    background-color: #ffffff;
    border: 2px solid #ffa500;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Icon Styles */
.wbs-section .card .icon-container {
    position: absolute;
    top: -25px;
    left: 20px;
    background-color: #002060;
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbs-section .card .icon {
    width: 30px;
    height: 30px;
}

/* Subtitle Styles */
.wbs-section .card .subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #002060;
    margin-left: 80px;
    margin-bottom: 10px;
}

/* Text Styles */
.wbs-section .card p,
.wbs-section .card ol,
.wbs-section .card ul {
    font-size: 16px;
    color: #333333;
    margin-left: 80px;
    line-height: 1.6;
}

.wbs-section .card ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.wbs-section .card ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Link Styles */
.wbs-section .card a {
    color: #007bff;
    text-decoration: none;
}

.wbs-section .card a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 30px;
}

/* Modal Header */
.modal-content {
    width: 600px;
}

.modal-header {
    color: white;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 10px; /* Membulatkan sudut kiri atas */
    border-top-right-radius: 10px; /* Membulatkan sudut kanan atas */
    
}

.modal-title {
    font-size: 18px;
    background-color: #b80000;
    padding: 10px 25px;
    text-transform: uppercase;
    margin: 0 auto; /* Pusatkan teks */
    border-radius: 15px;
}

/* Modal Body */
.modal-body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    color: #333;
}

.modal-body h6 {
    font-weight: bold;
    margin-bottom: 15px;
}

.modal-body p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.modal-body ul {
    text-align: left; /* Rata kiri untuk daftar */
    padding-left: 20px;
    margin: 15px 0;
}

.modal-body ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Peringatan dengan warna merah */
.modal-body .text-danger {
    font-size: 14px;
    font-weight: bold;
    color: #d32f2f; /* Merah lebih gelap */
    line-height: 1.5;
    margin-top: 20px;
}

/* Website Resmi */
.modal-body a {
    color: #2e7d32; /* Hijau untuk link */
    font-weight: bold;
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* Modal Footer */
.modal-footer {
    border-top: none;
    padding: 15px;
    text-align: center;
}

.modal-footer .btn-primary {
    background-color: #2e7d32; /* Hijau sesuai branding */
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
}

.modal-footer .btn-primary:hover {
    background-color: #1b5e20; /* Hijau lebih gelap saat hover */
}

/* Modal Content */
.modal-content {
    border-radius: 10px; /* Membulatkan seluruh modal */
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 1000px;
}


.ojk-section img {
    width : 722px;
}

@media (max-width:756px) {
    .ojk-section img {
        width : 320px;
    }
}



