@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: montserrat;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: white;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 0.001px solid #13349c;
    padding: 5px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    align-items: center;
    font-family: montserrat;
}


a, a:hover {
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav {
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a {
    color: black;
}

nav a:hover {
    color: #007BFF;
}

.logo {
    flex: 1;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.menu li {
    padding: 15px 30px;
    font-size: 16px;
}

.toggle {
    font-size: 30px;
    display: none;
}



.contact-button {
    background-color:#13349c;
    color: white !important; /* Changez la couleur du texte en blanc avec !important */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none; /* Assurez-vous que le lien ne soit pas souligné */
    display: inline-block; /* Assurez-vous que le bouton soit affiché correctement */
    font-weight: 600; /* Pour rendre le texte un peu plus épais */
    text-align: center; /* Centrez le texte */
    transition: background-color 0.3s ease;
}


.contact-button:hover {
    background-color:#007BFF;
}

/* Responsive Styles */
@media screen and (max-width: 1000px) {
    

    header {
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 0.001px solid #13349c;
        padding: 0 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        align-items: center;
        font-family: montserrat;
    }
    nav {
        display: block;
        position: relative;
        padding: 15px 20px;
        background-color: white;
        width: 100%;  
    }

    nav a {
        color: black;
    }
    
    nav a:hover {
        color: #007BFF;
    }

    .logo img{
        width: 45%;
        height: 45%;
    }

    .menu {
        margin-top: 15px;
        display: none;
    }

    .menu.active, .toggle{
        display: block;
    }

    .toggle {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .menu li {
        padding: 20px 20px;
        font-size: 14px;
    }
}

.réalisations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 50px;
    background-color: white;
    border-radius: 20px;
    margin: 40px -60px;
}

.text-content {
    flex: 1;
    padding-right: 120px;
    transition: transform 0.8s ease-out, opacity 1s ease-out;
    opacity: 0;
    transform: translateX(-100%);
    margin-top: 30px;
    
}

.text-content h1 {
    font-size: 48px;
    margin: 0 0 20px 120px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 10px 120px;
}


.image-content {
    width: 600px;
    height: 466px;
    overflow: hidden;
    position: relative;
    transition: transform 0.8s ease-out, opacity 1s ease-out;
    opacity: 0;
    transform: translateX(100%);
  }

  .text-content.animate-left {
    transform: translateX(0);
    opacity: 1;
}

.image-content.animate-right {
    transform: translateX(0);
    opacity: 1;
}

  .rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    
  }

  .bouton-switch {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff; /* Changez cette couleur si nécessaire */
    
    }
    
    .bouton-switch button {
     padding: 10px 20px;
     border-radius: 5px 5px 0 0;
     border: none;
     cursor: pointer;
     background-color: #f0f0f0;
     color: #000;
     transition: background-color 0.3s, color 0.3s, border-top 0.3s;
     border-top: 4px solid transparent;
     margin-top: 10px;
     font-family: Montserrat, sans-serif;
     font-weight: 600;
     font-size: medium;
    }
    
    .bouton-switch button:hover {
    background-color: #92b6dc;
    }
    
    .bouton-switch button.active {
    background-color: #13349c;
    color: #fff;
    }
    
    .bouton-switch button.active[data-target="biens-équipement"] {
    border-top-color: #fbde00;
    }
    
    .bouton-switch button.active[data-target="industries-de-process"] {
    border-top-color: #9370DB;
    }
    
    .bouton-switch button.active[data-target="énergie-et-environnement"] {
    border-top-color: #43E63F;     
    }
    
    .bouton-switch button.active[data-target="services-administration"] {
    border-top-color: #FF7878;
    }
    
    .bouton-switch button.active[data-target="batiment-immobilier"] {
    border-top-color: #FFB347;  
    }

    /* Dropdown styles */
    .dropdown-container {
    display: none;
    margin-top: 25px;
    max-width: 500px;
    }

    .dropdown-select {
    padding: 10px;
    font-size: medium;
    font-family: montserrat;
    font-weight: 300;
        
    }

    /* Responsive Styles */
@media screen and (max-width: 1000px) {
    .bouton-switch {
        display: none; /* Hide buttons */
    }

    .image-content {
        display: none;    
    }

    .dropdown-container {
        display: block; /* Show dropdown */
        justify-content: center;
        align-items: center;
        border: none;
    }

    .dropdown-select {
        margin-left: 70px;
        padding: 10px 5px;
        border-radius: 5px 5px 0 0;
        border: none;
        cursor: pointer;
        background-color: #007BFF;
        color: white;
        transition: background-color 0.3s;
        font-family: montserrat;
        font-weight: 600;
        font-size: medium; 
        justify-content: center;
        align-items: center;  
    }
    .dropdown-select .value{
        font-size: small;
        font-weight: 100;
    }
    
}



    

  /*Bloc pour Biens d'équipement */

    .la-maintenance {
        color: #fff;
        }
        .optimiser-la-maintenance-container {
        position: relative;
        font-weight: 600;
        }
        .optimiser-la-maintenance-wrapper {
        border-left: 5px solid #fbde00;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        }
        .secteur-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 10px;
        }
        .biens-dquipements-industriel {
        width: 924px;
        position: relative;
        display: inline-block;
        flex-shrink: 0;
        }
        .biens-dquipements-industriel-wrapper {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 4px 0px;
        }
        .frame-div {
        align-self: stretch;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        }
        .frame-wrapper {
        width: 962px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 18px;
        
        }
        .frame-container {
        backdrop-filter: blur(30px);
        border-radius: 20px;
        background: linear-gradient(92.19deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 19px;
        }
        .caretdown-icon {
        width: 18px;
        position: relative;
        height: 18px;
        object-fit: contain;
        }
        .caretdown-parent {
        align-self: stretch;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        }
        .frame-parent2 {
        width: 962px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 18px;
        font-size: 18px;
        }
        .frame-parent1 {
        backdrop-filter: blur(100px);
        border-radius: 15px;
        background: linear-gradient(94.4deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 19px;
        width: 1200px;
        }
        .frame-parent3 {
        backdrop-filter: blur(30px);
        border-radius: 15px;
        background: linear-gradient(92.19deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 19px;
        }
        .a-court-terme {
        margin: 0;
        font-weight: 600;
        }
        .restructuration-des-donnes-de1 {
        margin-bottom: 0px;
        }
        .restructuration-des-donnes-de {
        margin: 0;
        font-size: inherit;
        padding-left: 24px;
        }
        .a-moyen-terme2 {
        text-decoration: underline;
        }
        .a-moyen-terme1 {
        font-weight: 600;
        }
        .a-moyen-terme {
        margin: 0;
        }
        .identification-de-lorganisati1 {
        font-family: Montserrat;
        }
        .gmao {
        color: #fbde00;
        }
        .frame-group {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 36px;
        color: #fff;
        
        }
        .frame-parent {
        width: 1002px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 36px;
        margin: 36px 120px 70px 120px;
        
        
        }
        .ralisations {
        width: 100%;
        top: 4.73%;
        right: 0%;
        bottom: 0%;
        left: 0%;
        height: 95.27%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
        overflow: hidden;
        background-size: cover;
        gap: .625rem;
        background-position: top;
        text-align: left;
        font-size: 24px;
        color: #fbde00;
        font-family: Montserrat;
        background-color: #004085;
       
        }
        
        .bloc-texte-vai-child-2 {
        width: 100%;
        position: absolute;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
        mix-blend-mode: overlay;
        z-index: 1;
        }
        
        .tab-content {
        display: none;
        }
        .tab-content.active {
        display: block;
        }

    
         /*Bloc pour Industries de process */


      
        
        .bloc-texte-vai-child-2 {
            width: 100%;
            position: absolute;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            mix-blend-mode: overlay;
            z-index: 1;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .frame-parent {
            width: 1002px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 36px;
            margin: 36px 120px 70px 120px;
        }
        
        .frame-group {
            align-self: stretch;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 36px;
            color: #fff;
        }
        
        .frame-container {
            backdrop-filter: blur(30px);
            border-radius: 20px;
            background: linear-gradient(92.19deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            gap: 19px;
        }
        
        .frame-div {
            align-self: stretch;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
        }
        
        .frame-wrapper {
            width: 962px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            font-size: 18px;
        }
        
        .frame-wrapper1 {
            align-self: stretch;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
        }
        
        .frame-parent1, .frame-parent2, .frame-parent3, .frame-parent4 {
            width: 962px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 18px;
            font-size: 18px;
        }
        
        .caretdown-icon {
            width: 18px;
            position: relative;
            height: 18px;
            object-fit: contain;
        }
        
        .caretdown-parent {
            align-self: stretch;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
        }
        
        .concevoir-la-maintenance-wrapper, .concevoir-la-maintenance-wrapper {
            border-left: 5px solid #fbde00;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
        }
        
        .concevoir-la-maintenance-container, .concevoir-la-maintenance {
            position: relative;
            font-weight: 600;
        }
        
        .la-maintenance {
            color: #fff;
        }
        
        .secteur-wrapper, .problme-pos-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .biens-dquipements-industriel, .industrie-de-process {
            width: 924px;
            position: relative;
            display: inline-block;
            flex-shrink: 0;
        }
        
        .biens-dquipements-industriel-wrapper, .industrie-de-process-usine-s-wrapper {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 4px 0px;
        }
        
        .a-court-terme {
            margin: 0;
            font-weight: 600;
            text-decoration: underline;
        }
        
        .restructuration-des-donnes-de1 {
            margin-bottom: 0px;
        }
        
        .restructuration-des-donnes-de {
            margin: 0;
            font-size: inherit;
            padding-left: 24px;
        }
        
        .a-moyen-terme2 {
            text-decoration: underline;
        }
        
        .a-moyen-terme1 {
            font-weight: 600;
        }
        
        .a-moyen-terme {
            margin: 0;
        }
        
        .identification-de-lorganisati1 {
            font-family: Montserrat, sans-serif;
        }
        
        .gmao {
            color: #fbde00;
        }
        
        .section-content p {
            margin: 0 0 10px;
        }
        
        .section-content ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .section-content ul ul {
            padding-left: 20px;
        }
        
        .section-content li {
            margin-bottom: 10px;
        }
    

        .secteur-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 10px;
            }
            .industrie-de-process {
            width: 924px;
            position: relative;
            display: inline-block;
            flex-shrink: 0;
            }
            .industrie-de-process-usine-s-wrapper {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 4px 0px;
            }
            .frame-div {
            align-self: stretch;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            }
            .frame-wrapper {
            width: 962px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            font-size: 18px;
            
            }
            .frame-container {
            backdrop-filter: blur(30px);
            border-radius: 20px;
            background: linear-gradient(92.19deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            gap: 19px;
            }

            .industrie-de-process-usine-s-wrapper-1 {
                flex: 1;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                padding: 4px 0px;
                margin-left: 15px;
                }
        
            .bloc-réalisations-section {
                width: 100%;
                position: relative;
                height: max-content;
                text-align: left;
                font-size: 20px;
                color: #000;
                font-family: Montserrat;
                }

            /*Concevoir la maintenance */


             


            @media screen and (max-width: 1000px) {

                .réalisations-header {
                    flex-direction: column;
                    padding: 40px;
                    width: 100%;
                    justify-content: space-between;
                    align-items: center;
                    justify-content: center;
                    font-family: montserrat;
                }
            
                .image-content {
                    display: none;
                }
            
                .text-content {
                    margin: 20px 0;
                    padding-right: 0;
                    display: block; 
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin-top: 40px;
                }
            
                .text-content h1 {
                    font-size: 28px;
                }
            
                .text-content p {
                    font-size: 16px;
                }
            
                .image-content img {
                    max-width: 100%;
                    margin: 10px 70px;
                    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
                }


                .bloc-réalisations-section {
                    font-size: 16px;
                    overflow: hidden;
                    height: max-content;
                }
            
                .frame-container {
                    width: 100%;
                    font-size: 14px;
                    padding: 15px;
                    border-radius: 10px;
                }
            
                .frame-wrapper,
                .frame-wrapper1,
                .frame-parent1,
                .frame-parent2,
                .frame-parent3,
                .frame-parent4,
                .frame-parent {
                    width: 90%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: flex-start;
                    gap: 16px;
                    padding: 10px;
                }
                
                .optimiser-la-maintenance-container,
                .concevoir-la-maintenance-container {
                    font-size: 20px;
                }
            
                .secteur-wrapper,
                .optimiser-la-maintenance-wrapper,
                .concevoir-la-maintenance-wrapper {
                    
                    padding: 30px;
                    text-align: left;
                    
                }
            
                .biens-dquipements-industriel,
                .industrie-de-process,
                .industrie-de-process-usine-s-wrapper,
                .industrie-de-process-usine-s-wrapper-1 {
                    width: 100%;
                    padding: 5px;
                }
            
              
            
                .bloc-texte-vai-child-2 {
                  height: 100%;
                  overflow: hidden;
                  position: absolute;
                  opacity: 0.1;
                 
                }
                .frame-group {
                    width: 100%;
                    padding: 0 15px;
                    gap: 20px;
                }
            
                .caretdown-icon {
                    width: 16px;
                    height: 16px;
                }
            
                .ralisations .frame-parent {
                    margin: 36px 20px 70px 20px;
                }

                .ralisations {
                    height: max-content;
                }
            
                .a-court-terme,
                .a-moyen-terme,
                .identification-de-lorganisati1 {
                    font-size: 16px;
                }
            
                .gmao {
                    color: #fbde00;
                }
            
                .dropdown-container {
                    display: block; /* Show dropdown */
                    justify-content: center;
                    align-items: center;
                    border: none;
                }
            
                .dropdown-select {
                    margin-left: 40px;
                    padding: 10px 15px;
                    margin-left: 50px;
                    padding: 10px 15px;
                    border-radius: 5px 5px 0 0;
                    border: none;
                    cursor: pointer;
                    background-color: #eae8e8;
                    color: black;
                    transition: background-color 0.3s;
                    font-family: montserrat;
                    font-weight: 600;
                    font-size: medium; 
                    justify-content: center;
                    align-items: center;  
                
                }
                .dropdown-select .value{
                    font-size: small;
                    font-weight: 100;
                }
            }
            



            footer {
                background-color: #fff;
                color: #333;
                padding: 20px 0;
                font-family: montserrat;
                margin-top: 20px;
                align-items: center;
                justify-content: center;
            }
            
            .footer-container {
                display: flex;
                justify-content: space-around;
                align-items: flex-start;
                flex-wrap: wrap;
                max-width: max-content;
                margin: 0 50px;
                padding: 0 20px;
                height: 300px;
                overflow: hidden;
            }
            
            .footer-logo {
                flex: 1;
                margin: 10px;
                overflow: hidden;
                height: 100%;
                display: block;
            }
            
            .footer-logo img {
                width: 150px;
                margin-bottom: 10px;
            }
            
            .footer-info {
                flex: 2;
                display: flex;
                justify-content: space-between;
                margin: 15px 100px;
                margin-left: 200px;
            }
            
            .info-block h3 {
                margin-bottom: 15px;
                font-size: 16px;
                color: #333;
            }
            
            .info-block ul {
                list-style: none;
                padding: 20px;
            }
            
            .info-block ul li {
                margin-bottom: 15px;
            }
            
            .footer-contact {
                flex: 1;
                margin: 20px 0;
                
            }
            
            .footer-contact p {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
            }
            
            .footer-contact i {
                margin-right: 10px;
            }
            
            .footer-bottom {
                text-align: center;
                padding: 10px 0;
                border-top: 1px solid #13349c;
                margin-left: 80px;
                margin-right: 80px;
                
            }
            
            @media screen and (max-width: 1000px) {
                .footer {
                    background-color: #fff;
                    color: #333;
                    padding: 10px 0;
                    font-family: montserrat;
                    margin-top: 20px;   
                }
            
                .footer-container {
                    flex-direction: column;
                    overflow: hidden;
                    height: max-content;
                    margin: 0 10px;
                    padding: 0 10px;
                }
            
            
                .footer-info {
                    flex-direction: column;
                    overflow: hidden;
                    justify-content: space-between;  
                    flex: 2;
                    display: block;
                    left: 0;
                    margin-left: 10px;
                }
            
            
                .info-block {
                    margin-top: 20px;
                    display: block;
                    left: 0;
                }
                  
            }
        
        