/* assets/css/custom.css */
.home-about .col-lg-7 img.img-fluid {
    /* height: 320px; */
    width: 80%;
    /* object-fit: cover; */
    /* avoids distortion; crops edges if needed */
}

/* Scope to a section with a class to avoid global side effects */
.home-about .col-lg-7 {
    overflow: hidden;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    color: #8faf9a;
} */

/* The progress container (grey background) */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    width: 100%;
    background: #719a7f;
    z-index: 1050;
}

/* The progress bar (scroll indicator) */
.top-scroll-progress-bar {
    height: 5px;
    /* background: #bc9c22; */
    background: #c2a878;
    width: 0%;
    transition: width 0.1s linear;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #f4f4f6;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: .35rem .6rem;
    font-size: .9rem;
    cursor: pointer;
}

.lang-toggle .flag svg {
    display: block;
    border-radius: 2px;
}

.lang-toggle .chevron {
    font-size: .8rem;
    opacity: .6;
}

.lang-menu {
    position: absolute;
    right: 0;
    z-index: 20;
    margin-top: .4rem;
    list-style: none;
    padding: .4rem;
    min-width: 160px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    display: none;
}

.language-dropdown.open .lang-menu {
    display: block;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .5rem;
    color: #222;
    text-decoration: none;
    border-radius: .35rem;
}

.lang-item:hover {
    background: #f7f7fa;
}

.lang-item .flag svg {
    display: block;
    border-radius: 2px;
}