@font-face {
    font-family: 'NewRudaw';
    src: url('fonts/NewRudaw-Bold.ttf') format('truetype');
    /* Add additional font variations if applicable */
}

header {
    width: 100%;
}
/* Webkit Browsers (Chrome, Safari) */
body::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #035a8d; /* Color of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded edges for the scrollbar thumb */
    border: 3px solid #f1f1f1; /* Adds padding around the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color when hovering over the scrollbar thumb */
}
.container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(254,174,144,.5);

}

.top-header {
    background-color: #035a8d; /* Orange background color */
    color: #ffffff; /* White text color */
    padding: 5px 0; /* Smaller height */
}

.top-header .social-media-icons {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0; /* Right aligned */
    margin-right: 20%; /* Move 20% from the right */
}

.top-header .social-media-icons a {
    color: #ffffff;
    margin-right: 15px; /* Move to the left */
    font-size: 1.5em; /* Bigger size for social icons */
    transition: transform 0.3s, color 0.3s; /* Smooth hover effect */
}

.top-header .social-media-icons a:hover {
    color: #ffcc00; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}


.top-header .language-selector {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 0; /* Left aligned */
    margin-left: 20%; /* Move 20% from the left */
}

.top-header .language-selector a {
    color: #ffffff;
    margin-left: 15px; /* Move to the right */
    position: relative;
    transition: color 0.3s;
}
.top-header .language-selector a:hover {

    color: #ffcc00; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}
.top-header .language-selector a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.top-header .language-selector a:hover::after {
    width: 100%;
    left: 0;
    background: #ffffff;

}

.main-header {
    background-color: #035a8d; /* Dark blue background color */
    padding: 0px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4vw;
	    border-bottom: 1px solid rgba(254,174,144,.5);

}

.logo-container {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0; /* Right aligned */
    margin-right: 20%; /* Move 20% from the right */

}

.logo img {
    max-width: 150px;
    height: auto;

}
@media screen and (max-width: 480px) {
    .logo-container {
        display: none; /* Hide logo on small screens */
    }
    .top-header .container .language-selector {
        display: none; /* Hide language selector on small screens */
    }
}

.nav-bar {
    background-color: #484f53; /* Darker blue for nav bar */
}

.nav-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.nav-buttons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-buttons li {
    display: inline;
}

.nav-buttons li a {
    text-decoration: none;
    color: #ffcc00; /* White text color */
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
     /* Dark blue button background color */
    transition: background-color 0.5s ease; /* Slower transition effect */
    position: relative;
}

.nav-buttons li a:hover {
    color: #776311; /* Change color on hover */

}

.nav-buttons li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-buttons li a:hover::after {
    width: 100%;
}

.language-icon {
    cursor: pointer;
    font-size: 24px; /* Icon size */
    color: #ffffff; /* White color */
}

/* Language Selection Popup */
.language-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
}

.language-popup h2 {
    color: #ffffff; /* White text color */
    margin-bottom: 20px;
}

.language-popup .flags {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.language-popup .flag {
    cursor: pointer;
    transition: transform 0.3s;
}

.language-popup .flag:hover {
    transform: scale(1.1);
}
