.navbar {
    background-color: rgba(140, 176, 54, 0.9) !important; /* Warna hijau dengan sedikit transparansi */
}

.navbar-nav .nav-link {
    color: gold !important;
    font-weight: bold;
}

.navbar-brand img {
    width: 50px; 
    height: auto;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 1)); /* Tambahkan bayangan hitam */
}

.navbar-brand {
    font-weight: bold;
    color: gold !important; /* Warna teks tetap terlihat */
    background-color: transparent !important;
    padding: 5px 10px; 
    border-radius: 5px; 
    display: flex;
    align-items: center;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #8cb036 !important;
    color: gold !important;
}

h5 {
    color: #8cb036; /* Warna awal hijau */
    transition: color 0.3s ease-in-out; /* Efek transisi halus */
}

h5:hover {
    color: gold; /* Warna berubah menjadi emas saat di-hover */
}

.feature-box {
    text-align: center;
    padding: 20px;
}
.feature-icon {
    font-size: 30px;
    color: #8cb036;
}
.section-title {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}
.section-title::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #8cb036;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/*BOX*/
.row {
    display: flex;
    flex-wrap: wrap;
}
.card-body {
    flex-grow: 1;
}
.card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
}
.card:hover {
    display: flex;
    flex-direction: column;
    transform: scale(1.05);
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: inset 6px 6px 12px #bebebe, inset -6px -6px 12px #ffffff;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards;
}
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/*.list-unstyled li {
    color: #8cb036;
    font-weight: bold;
}*/

/*FOOTER*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
}
.footer {
    background-color: #181818;
    color: #8cb036;
    padding: 40px 10%;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}
.footer ul {
    list-style: none;
    padding-left: 0; 
}

.footer ul li {
    margin: 5px 0;
    padding-left: 0px; 
}

.footer ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: block; 
    padding-left: 0px; 
}

.footer ul li a:hover {
    color: #ffcc00;
    padding-left: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #ffcc00;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #bbb;
}
.perusahaan {
    color: white; 
}
.perusahaan i {
    color: white; 
}

