/* * {
        outline: 1px solid rgba(255, 0, 0, 0.5);
    } */
body {
    font-family: "Inter", sans-serif;
}
/* Navbar Style */
.navbar {
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease-in-out;
}
.bg-blur {
    backdrop-filter: blur(10px);
}
.bg-white {
    background-color: white !important;
}
.bg-white .nav-link,
.bg-white .language-select,
.bg-white .bi-caret-down-fill {
    color: black !important;
}
.bg-white .navbar-toggler-icon {
    filter: invert(0);
}

/* Navbar Brand */
.navbar-brand img {
    height: 32px;
    width: 87px;
}

/* Navbar Links */
.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 400;
    font-size: 13px;
}

/* Buttons */
.btn-green-custom {
    background-color: #1f5d35;
    border-radius: 12px;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
}
.btn-green-custom:hover {
    background-color: #1f5d35;
    border-radius: 12px;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
}
.btn-outline-custom {
    border: 1.5px solid white;
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 500;
    color: white;
}
.btn-outline-custom:hover {
    border: 1.5px solid white;
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 500;
    color: white;
}

/* Language Selector */
.language-select {
    border: none;
    background: transparent;
    color: white;
}
.language-select option {
    background: #01211d;
    color: white;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Icon Rounded */
.icon-rounded {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 50px;
    color: #1f5d35;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid #1f5d35;
    min-width: 50px;
    white-space: nowrap;
}

.btn-outline-green {
    border: 1.5px solid #1f5d35;
    padding: 10px 14px;
    border-radius: 12px;
    color: #1f5d35;
    cursor: pointer;
}
.btn-outline-gray {
    border: 1.5px solid #1f2a37;
    padding: 6px 8px;
    border-radius: 10px;
    color: #1f2a37;
    cursor: pointer;
}
.article-card {
    border: 0px;
    border-radius: 12px;
}
.consultant-card {
    height: 220px;
    border: 0;
    height: 187px;
    border-radius: 12px;
    overflow: hidden;
}
.consultant-card .card-img-overlay {
    padding: 20px;
}
.consultant-card img {
    object-fit: cover;
}
.card-img-overlay {
    padding: 24px;
}
.consultant-btn-fill {
    background-color: #1f5d35;
    color: white;
    font-weight: 400;
    border-radius: 12px;
    padding: 10px 20px;
    border: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
}
.consultant-btn-outline {
    background-color: transparent;
    color: white;
    font-weight: 400;
    border: 1.5px solid white;
    border-radius: 12px;
    padding: 8px 18px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
}

/* Footer */
.footer {
    background-color: #0c2215;
    color: white;
    padding-top: 144px;
}

.footer-logo {
    margin-bottom: 30px;
    height: 41px;
    width: 113px;
}

.footer .title {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}
.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: white;
    font-size: 14px;
}
.footer-links li a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.copyright {
    font-size: 0.875rem;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 1.3rem 0;
}

/* Responsive Styling */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 62px;
        backdrop-filter: blur(0px);
    }
    .navbar-brand img {
        height: 36px;
        width: 98px;
    }
    .navbar-active {
        position: relative;
        color: #60b177;
    }

    .navbar-active::after {
        content: "";
        display: block;
        width: 25px;
        height: 4px;
        border-radius: 12px;
        background-color: #60b177;
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-outline-custom {
        border-radius: 12px;
        padding: 8px 14px;
        font-size: 14px;
        text-decoration: none;
    }
    .btn-outline-custom:hover {
        border-radius: 12px;
        padding: 8px 14px;
        font-size: 14px;
        text-decoration: none;
    }
    .consultant-card {
        height: 370px;
        border-radius: 14px;
    }
    .consultant-card .card-img-overlay {
        padding: 56px;
    }
    .consultant-btn-fill {
        font-size: 14px;
    }
    .consultant-btn-outline {
        font-size: 14px;
    }
    .card-img-overlay {
        padding: 0px;
    }
    .btn-login {
        font-size: 14px;
    }
}
