/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    z-index: 1;
}

.hidder{
    background-color: white;
    z-index: 1;
}

.placeholder-image:hover {
    transform: scale(1.1); /* Enlarge the placeholder image on hover */
}

/* Header Styles */
header {
    background-color: #008CBA;
    padding: 20px;
    text-align: center;
}

header .logo img {
    width: 150px;
}

/* Hero Section Styles */
.hero {
    background-color: #e0f7fa;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    color: #00796b;
}

.hero p {
    font-size: 18px;
    color: #333;
    max-width: 700px;
    margin: 20px auto;
}

/* Main Content Styles */
.main-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #fff;
}

.main-content .text {
    width: 50%;
}

.main-content .text h2 {
    font-size: 28px;
    color: #00796b;
}

.main-content .text p {
    font-size: 16px;
    line-height: 1.6;
}

.main-content .text button {
    margin-top: 20px;
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;

}

.main-content .text button:hover {
    background-color: #004d40;
}

.main-content .image {
    flex: 1;
    height: 200px;
    background-color: #ddd;
    border-radius: 10px;
    margin-left: 20px;
    z-index: 1;
}

.main-content .image .placeholder-image {
    width: 100%;
    height: auto;
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 28px;
    color: #00796b;
    margin-bottom: 30px;
}

.benefits .stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.benefits .stat {
    width: 30%;
    text-align: center;
}

.benefits .stat .placeholder-image {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.benefits .stat h3 {
    font-size: 36px;
    color: #00796b;
}

.benefits .stat p {
    font-size: 16px;
    color: #333;
}
/* Nos Valeurs Section */
.values, .tax-credit, .hardware-sales, .services, .repair, .formation,.web-development  {
    padding: 40px 20px;
    text-align: left;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: start;
}

/* Titres */
.values h2, .tax-credit h2, .hardware-sales h2, .services h2, .repair h2, .formation h2,.web-development h2 {
    font-size: 50px;
    color: #f7670e;
    margin-bottom: 20px;

}

/* Paragraphes */
.values p, .tax-credit p, .hardware-sales p, .services p, .repair p, .formation p, .web-development p {
    font-size: 18px; /* Augmente légèrement la taille */
    color: #222; /* Rend le texte plus contrasté */
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    font-weight: bold; /* Met en gras */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Ajoute un léger effet d'ombre */
}


/* Section globale */
.hardware-sales, .repair, .formation {
    position: relative; /* Pour la superposition des couches */
    width: 100%;
    height: auto; /* Ajuste selon le contenu */
    overflow: visible;
    background-color: #f8f9fa; /* Fond optionnel */
}


/* Section globale */
.hardware-sales {
    position: relative; /* Pour la superposition des couches */
    width: 100%;
    height: auto; /* Ajuste selon le contenu */
    overflow: visible;
    background-color: #f8f9fa; /* Fond optionnel */
}

.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* ou hauteur explicite comme 500px */
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: no-repeat center center;
    background-size: contain;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100%) scale(0.5); /* Départ en bas */
        opacity: 0;
    }
    10% {
        opacity: 1; /* Devient visible */
    }
    100% {
        transform: translateY(-100%) scale(1); /* Atteint le haut du conteneur */
        opacity: 0;
    }
}

/* Services List Styles */
.services ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 40px;
}

footer {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Web Development Section Styles */
.web-development {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

/* .web-development h2 {
    font-size: 50px;
    color: #00796b;
    margin-bottom: 20px;
} */

.web-development p {
    font-size: 22px; /* Augmente légèrement la taille */
    color: #222; /* Rend le texte plus contrasté */
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    font-weight: bold; /* Met en gras */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Ajoute un léger effet d'ombre */
}

/* Features Boxes */
.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    width: 30%;
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}



.feature p {
    font-size: 14px;
    color: #333;
}
/* Placeholder Circle Image */
.placeholder-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.circle_image_stats {
    display: block; /* Centrer horizontalement dans le conteneur parent */
    margin: 20px auto; /* Centrer verticalement avec espace autour */
    width: 100px; /* Largeur du cercle */
    height: 100px; /* Hauteur du cercle */
    border-radius: 50%; /* Transformation en cercle */
    background-color: #ccc; /* Couleur de fond de secours */
    object-fit: cover; /* Adapter l'image sans la déformer */
    transition: transform 0.3s ease; /* Animation au survol */
    border: 2px solid #3498db; /* Ajout d'un contour bleu stylé */
}
.circle_image_stats_hero {
    display: block; /* Centrer horizontalement dans le conteneur parent */
    margin: 20px auto; /* Centrer verticalement avec espace autour */
    width: 150px; /* Largeur du cercle */
    height: 150px; /* Hauteur du cercle */
    border-radius: 50%; /* Transformation en cercle */
    background-color: #ccc; /* Couleur de fond de secours */
    object-fit: cover; /* Adapter l'image sans la déformer */
    transition: transform 0.3s ease; /* Animation au survol */
    border: 2px solid #3498db; /* Ajout d'un contour bleu stylé */
}
.circle_image_stats:hover {
    transform: scale(1.1); /* Agrandir légèrement l'image au survol */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Ajout d'une ombre pour la profondeur */
}



.tech-item span {
    font-size: 16px;
    color: #00796b;
    font-weight: bold;
}


/* Call to Action Button */
.cta-button {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 30px;

}

.cta-button:hover {
    background-color: #004d40;
}
/* Red beginning text */
span {
    font-weight: bold;
}
/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: start;
    margin: 40px 0;
    z-index: 1;
    overflow: hidden;
}

/* Text Content */
.text-content {
    flex: 1;
    padding: 20px;
    color: #333;
    z-index: 1;
}

/* Placeholder Image */
.image-placeholder {
    flex: 1;
    height: 200px;
    background-color: #ddd;
    border-radius: 10px;
    margin-left: 20px;
    z-index: 1;
}
/* Placeholder Image */
.image_rectangle {
    flex: 1;
    width: 700px; /* Largeur automatique pour respecter les proportions */
    height: 200px; /* Hauteur automatique pour respecter les proportions */
    max-width: 100%; /* Ajustement à la largeur du conteneur */
    max-height: 100%; /* Ajustement à la hauteur du conteneur */
    border-radius: 10px; /* Coins arrondis */
    margin-left: 20px; /* Marges */
    z-index: 1;
    display: block; /* Pour s'assurer que l'image s'affiche correctement */
    object-fit: contain; /* Maintient les proportions sans recadrer */
}
.image_rectangle2 {
    width: 700px; /* Largeur élargie pour zoomer l'image */
    height: 300px; /* Hauteur fixe */
    border-radius: 10px; /* Coins arrondis */
    margin-left: 20px; /* Marges */
    z-index: 1;
    display: block;
    object-fit: cover; /* Agrandit l'image en remplissant l'espace */
    overflow: hidden; /* Cache les parties en dehors du cadre */
}
.image_rectangle3 {
    width: 700px; /* Largeur élargie pour zoomer l'image */
    height: 200px; /* Hauteur fixe */
    border-radius: 10px; /* Coins arrondis */
    margin-left: 20px; /* Marges */
    z-index: 1;
    display: block;
    object-fit: cover; /* Agrandit l'image en remplissant l'espace */
    overflow: hidden; /* Cache les parties en dehors du cadre */
}
.image_rectangle4 {
    width: 700px; /* Largeur élargie pour zoomer l'image */
    height: 300px; /* Hauteur fixe */
    border-radius: 10px; /* Coins arrondis */
    margin-left: 20px; /* Marges */
    z-index: 1;
    display: block;
    object-fit: cover; /* Agrandit l'image en remplissant l'espace */
    overflow: hidden; /* Cache les parties en dehors du cadre */
}



/* Red Starting Text */
.text-content span {
    color: red;
    font-weight: bold;
}

/* List Styling */
.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    margin: 10px 0;
}
.service-item:hover .service-icon {
    color: #FF5722; /* Change color on hover */
  }


      /* Style du bouton Retour en haut */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f8961e;
    color: white;
    border: none;
    border-radius: 50%; /* Assure que le bouton est rond */
    padding: 15px;
    font-size: 24px; /* Taille de l'icône */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre douce */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0; /* Caché par défaut */
    visibility: hidden; /* Empêche l'interaction quand caché */
    width: 60px; /* Largeur du bouton */
    height: 60px; /* Hauteur du bouton (cercle parfait) */
}

/* Effet au survol */
#backToTop:hover {
    background-color: #0056b3;
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée au survol */
}

/* Affichage du bouton lorsque l'utilisateur défile la page */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Style pour l'icône */
#backToTop i {
    font-size: 24px; /* Taille de l'icône */
}


@media (max-width: 768px) {
    .responsive-sup {
        display: none;
    }


    /* Modifier l'alignement des éléments de la barre de navigation */
    .nav-links {
        display: block;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 12px;
        font-size: 14px;
    }

    /* Réduire les éléments du sous-menu pour qu'ils s'adaptent */
    .dropdown-menu {
        position: relative;
        top: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none; /* Désactive l'affichage sur hover */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}






