 /* Dropdown on hover (desktop) */
 @media(min-width: 992px){
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Search input */
.search-wrapper {
    width: 230px;
    position: relative;
}
.search-input {
    padding-right: 40px;
}
.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    color: #555;
}

/* Flag icons */
.flag-icon {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: 120%;
    z-index: 1;
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.lang-dropdown img {
    width: 26px;
    height: 18px;
}


.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push text to bottom */
    padding: 50px;
    color: #fff;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.35);
    padding: 20px 25px;
    border-radius: 10px;
}




.news-section h6 {
    font-size: 14px;
    letter-spacing: 1px;
}

.news-item img {
    width: 350px;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    .news-item img {
        width: 100%;
        height: 200px;
    }
    .lang-dropdown {
        right: 47px;
    }
}





.activity-section h3 {
    font-size: 28px;
}

.activity-section a {
    text-decoration: none;
}

.activity-section .card-title {
    font-size: 18px;
    font-weight: 600;
}

.activity-section .badge {
    font-size: 12px;
    text-transform: uppercase;
}




.video-banner {
    position: relative;
    width: 100%;
    height: 60vh; /* change height as needed */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* semi-transparent overlay */
    padding: 20px;
}



.footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffc107; /* yellow on hover */
}

.footer {
    font-size: 14px;
}



.contact-section h2 {
    font-size: 32px;
}

.contact-section p {
    font-size: 16px;
    color: #555;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
    border-radius: 5px;
}

.contact-section .contact-form button {
    padding: 10px 25px;
}

.nav-link  {
    color: black;
}


.logo_png {
    height: 65px;
}

/* Primary Color Overrides */
.btn-primary {
    background-color: #313D8D !important;
    border-color: #313D8D !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #262f6e !important;
    border-color: #262f6e !important;
}

.btn-outline-primary {
    color: #313D8D !important;
    border-color: #313D8D !important;
}

.btn-outline-primary:hover {
    background-color: #313D8D !important;
    color: #fff !important;
}

.text-primary {
    color: #313D8D !important;
}

.border-primary {
    border-color: #313D8D !important;
}
