.slogan {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fcbe03;
    color: #022279;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    font-size: 16px;
}

/* Responsive Header Styles */


/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}



.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-flag {
    width: 24px;
    height: 16px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-right {
        display: none; /* Hide header-right on mobile */
    }
}
@media (max-width: 768px) {
    header {
        /* padding: 10px; */
        display: flex;
        flex-direction: row;
        padding: 10px 0% !important;
        height: 100px !important;
    }

    .hamburger {
        display: flex; /* Show hamburger menu on mobile */
        position: relative;
        left: -25PX;
        
    }

    nav {
        /* margin-left: 48% !important; */
        margin-bottom: -31px;
       
            flex-grow: 0;
        
    }
    .nav-links {
        display: none; /* Hide nav links by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #022279;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links li a {
        padding: 10px;
    }

    .slogan{
        width: fit-content;
        font-size: 14px;
    }

    .logo {
        margin-top: 27px;
    }

   
}
/* Sticky Header */
header {
    position: sticky;
    top: 40px;
    background: #022279;
    z-index: 999;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100px;
}
header .logo {
    /* height: 80px; */
}

nav {
    display: flex
;
    align-items: center;
    margin-left: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
}

nav ul li:hover > a {
    border-bottom: 3px solid #fcbe03;
}

/* Dropdown Styles */
nav ul li ul {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 100;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    padding: 5px 0;
}

nav ul li ul li a {
    padding: 8px 10px;
    font-size: 14px;
}

nav ul li ul li a:hover {
    background: #f0f0f0;
    border-radius: 5px;
}



/* Updated Carousel Styles */
.carousel {
    position: relative;
    width: 100vw;
    height: 54em;
    margin: 0;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-arrow.left {
    left: 20px;
}

.carousel-arrow.right {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicator.active {
    background: white;
}



footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: start;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

section {
    height: fit-content;
}

/* Entreprise Section Styles */
.entreprise-section {
    padding: 60px 20px;
    background-image: url('../assets/entreprise-section.webp'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: white; /* Text color for better contrast */
    text-align: center;
    position: relative; /* For overlay */
}

.entreprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00236670;
    z-index: 1;
}

.entreprise-content {
    position: relative; /* Ensures text is above the overlay */
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.entreprise-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.entreprise-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
}
