
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
}


.navbar-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.logo-fixed {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.logo-fixed img {
    height: 70px;
    width: auto;
}

.hamburger-fixed {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 5px;
    width: 80%;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.4s;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.nav-links.show {
    right: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 20px 0;
    font-size: 1.3em;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
    transform: translateX(5px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Slider Hero */
.slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
}

.overlay h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    text-align: center;
    font-weight: 700;
}

.overlay p {
    font-size: 1.5em;
    text-align: center;
}

.indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicators span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicators span:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicators span.active {
    background: #00bcd4;
    width: 40px;
    border-radius: 6px;
}

.mission-section-wide {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    padding: 80px;
}

.mission-title-wide {
    font-weight: 800;
    font-size: 2.7em;
    color: #222;
    flex: 1;
    text-align: left;
    max-width: 280px;
    line-height: 1.2;
}

.custom-separator-vertical {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, #0066cc, #00bcd4);
    margin: 0 50px;
    border-radius: 2px;
}

.mission-desc-wide {
    flex: 2;
    font-size: 1.35em;
    color: #444;
    text-align: right;
    max-width: 800px;
    line-height: 1.7;
}


.offres-section {
    width: 100vw;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
}

.offres-title {
    font-weight: 800;
    font-size: 2.5em;
    color: #222;
    margin-bottom: 70px;
    text-align: center;
}

.offres-blocs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1300px;
    flex-wrap: wrap;
}

.offre-bloc {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    width: 380px;
    height: 480px;
    overflow: hidden;
    position: relative;
    background: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
}

.offre-bloc:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.offre-bloc:hover .offre-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.offre-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.offre-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s;
}

.offre-img.active {
    opacity: 1;
    z-index: 2;
}

.offre-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: #fff;
    z-index: 3;
}

.offre-titre {
    font-weight: 700;
    font-size: 1.6em;
    text-align: left;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.offre-titre-sep {
    display: inline-block;
    width: 5px;
    height: 1.3em;
    background: #00bcd4;
    border-radius: 3px;
    margin-right: 12px;
}

.offre-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Solutions Section */
.solutions-section {
    width: 100vw;
    min-height: 100vh;
    background: #f7f7f7;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-title {
    font-weight: 800;
    font-size: 2.5em;
    color: #222;
    margin-bottom: 70px;
    text-align: center;
}

.solutions-content {
    max-width: 1400px;
    width: 100%;
}

.solution-category {
    margin-bottom: 70px;
}

.solution-category h3 {
    font-size: 2em;
    color: #222;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00bcd4;
    font-weight: 700;
}

.scrolling-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 0;
    scroll-behavior: smooth;
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0066cc, #00bcd4);
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #0055aa, #009999);
}

.partner-item {
    min-width: 200px;
    height: 130px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.valeurs-section {
    width: 100vw;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
}

.valeurs-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #010102;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 70px;
    text-align: center;
}

.valeurs-blocs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1300px;
    flex-wrap: wrap;
}

.valeur-bloc {
    background: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 45px 35px;
    width: 350px;
    transition: all 0.4s ease;
}

.valeur-bloc:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    background: #fff;
}

.valeur-nom {
    font-size: 1.4em;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 20%;
}

.valeur-desc {
    font-size: 1.05em;
    color: #444;
    line-height: 1.7;
}

/* References Section */
.references-section {
    width: 100vw;
    min-height: 100vh;
    background: #f7f7f7;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.references-title {
    font-weight: 800;
    font-size: 2.5em;
    color: #222;
    margin-bottom: 70px;
    text-align: center;
}

.references-section .scrolling-wrapper {
    max-width: 1400px;
    width: 100%;
}

.reference-item {
    min-width: 220px;
    height: 150px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.reference-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 70px;
    text-align: center;
    letter-spacing: 2px;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-block:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-block h3 {
    font-size: 1.6em;
    color: #00bcd4;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-block a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.contact-block a:hover {
    color: #00bcd4;
    transform: translateX(5px);
}

.contact-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.contact-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar-fixed {
        padding: 20px 0;
    }

    .logo-fixed img {
        height: 55px;
    }

    .nav-links {
        width: 250px;
    }

    .mission-section-wide {
        flex-direction: column;
        padding: 60px 30px;
    }

    .mission-title-wide,
    .mission-desc-wide {
        text-align: left;
        max-width: 100%;
    }

    .mission-title-wide {
        font-size: 2.2em;
        margin-bottom: 25px;
    }

    .custom-separator-vertical {
        width: 80px;
        height: 3px;
        margin: 25px 0;
    }

    .mission-desc-wide {
        font-size: 1.15em;
    }

    .overlay h1 {
        font-size: 2.2em;
        padding: 0 20px;
    }

    .overlay p {
        font-size: 1.2em;
        padding: 0 20px;
    }

    .offres-blocs {
        flex-direction: column;
        align-items: center;
    }

    .offre-bloc {
        width: 90vw;
        max-width: 380px;
    }

    .valeurs-blocs {
        flex-direction: column;
        align-items: center;
    }

    .valeur-bloc {
        width: 90vw;
        max-width: 380px;
    }

    .solutions-title,
    .offres-title,
    .valeurs-title,
    .references-title,
    .contact-title {
        font-size: 2em;
    }

    .solution-category h3 {
        font-size: 1.5em;
    }

    .scrolling-wrapper {
        gap: 20px;
    }

    .partner-item {
        min-width: 160px;
        height: 110px;
    }

    .reference-item {
        min-width: 180px;
        height: 130px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .mission-title-wide {
        font-size: 1.8em;
    }

    .mission-desc-wide {
        font-size: 1em;
    }

    .overlay h1 {
        font-size: 1.8em;
    }

    .overlay p {
        font-size: 1em;
    }

    .offres-section,
    .solutions-section,
    .valeurs-section,
    .references-section,
    .contact-section {
        padding: 60px 20px;
    }

    .offres-title,
    .solutions-title,
    .valeurs-title,
    .references-title,
    .contact-title {
        font-size: 1.7em;
        margin-bottom: 50px;
    }
}