
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-right: 10px;
    background-color: black;
    height: 100px;
}

/* Navbar Styles */
.navbar {
flex-grow: 1;
color: #fff;
height: auto;
align-items: center;
}

.navbar-brand
 .logo {
    width: 100%;
height: 100px;
padding-left: 0;

}

.navbar-toggler {
    background-color: rgb(0, 0, 0);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 5px 10px;
    display: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: auto;

}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


.navbar-menu a:hover {
    text-decoration: none;
    color: #f3f3f3;
    background-color: transparent;
}

/* Mega Menu (Desktop) */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    color: white;
    padding: 20px;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.mega-menu.active {
    display: block;
}

.mega-menu .row {
    display: flex;
    gap: 20px;
}

.mega-menu .col-md-3 {
    flex: 1;
}

.mega-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.mega-menu a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    padding-right: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector a {
    color: white;
    text-decoration: none;
}

.language-selector ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: black;
    padding: 10px;
    border: 1px solid white;
    z-index: 2000;
    list-style: none;
}

.language-selector:hover ul {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: black;
    color: white;
    transition: right 0.3s ease-in-out;
    padding: 20px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.mobile-menu.active {
    right: 0; /* Slide in */
}

.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu .menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.mobile-menu .menu-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu .menu-links a:hover {
    text-decoration: none;
}

/* Scrollable Categories on Mobile */
.mobile-categories {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 0px;
    background-color: transparent;
}

.mobile-categories a {
    display: block;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    padding: 0px;
}

.mobile-categories a:hover {
    background-color: #333;
}
.modal-body {
    background-color:black; /* Light black background */
    color: #fff; /* White text */
}

.modal-body a {
    color: #fff; /* White text for category links */
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.modal-body a:hover {
    background-color: #444; /* Slightly darker hover effect */
}

.search-container form {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding-top: 0px;
    margin-top: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-container input {
    border: white 2px;
    outline: white;
    width: 350px;
    height: auto;
    transition: width 0.3s ease;
    padding-left: 20px;
}

.search-container input:focus {
    width: 300px;
}

@media (max-width: 768px) {
    .search-container input {
        width: 200px;
    }

    .search-container input:focus {
        width: 150px;
    }
}

.search-container button {
    border: none;
    background: #000000;
    color: white;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background: #2a2929;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .mobile-menu .social-icons {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .language-selector {
        padding: 0;
        position: absolute;
        right: 80px;
    }

}
/* Scroll to Top Button */
#myBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 2000;
    border: none;
    outline: 0;
    background-color: #000;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#myBtn:hover {
    background-color: #555;
    transform: scale(1.1);
}

#myBtn:active {
    transform: scale(0.9);
}

.no-scroll {
    overflow: hidden;
}

.loading-spinner {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
}

