.banner1 {
    background: url('/images/parto_strat_education_HTech.jpg') no-repeat top center/cover;
    color: white;
    text-align: center;
    padding: 100px;

}


.bann1 {
    margin-top: 220px;
}

.bann1 h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    background-color: #252525a6;
}

.bann1 p {
    font-size: 1.2em;
    background-color: #252525a6;
}

.bann1_em {
    font-size: 22px;
}



/* Styles pour les titres et intros de section (potentiellement déjà dans votre style.css) */
.section-tiitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding: 10px 0;
    text-align: center;
}

.section-tiitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}









/* Styles généraux */
.partners-section {
    background-color: var(--light-bg);
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.partner-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.partner-item:hover {
    transform: scale(1);
}

.partner-card {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    min-height: 180px;
    /* Assure une hauteur minimale uniforme */
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--white);
    border: 1px solid #363636cc;

}

.partner-card i {
    color: var(--primary-color);
}

.partner-details-content {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    background-color: var(--white);
}

.strategic-partnerships {
    background-color: #ffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 40px var(--shadow-medium);
    padding: 3rem;
}

.strategic-partnerships h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.strategic-partnerships p.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
}

.image-container {
    height: 400px;
    /* Hauteur fixe pour l'image */
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Recadre l'image sans la déformer */
    transition: transform 0.5s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    /* Zoom léger au survol */
}

.partnership-advantages {
    padding-left: 0;
    /* Supprime le padding par défaut des listes */
}

.partnership-advantages li {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.partnership-advantages li i {
    color: var(--primary-color);
    font-size: 1.6rem;
    /* Taille des icônes dans la liste */
    margin-right: 15px;
    /* Espacement entre l'icône et le texte */
    margin-top: 5px;
    /* Alignement vertical */
}

.partnership-advantages li h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.partnership-advantages li p {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .strategic-partnerships {
        padding: 2rem;
    background-color: #ffff;
    }

    .image-container {
        height: 300px;
        /* Ajuste la hauteur de l'image sur les petits écrans */
    }
}

@media (max-width: 767.98px) {
    .banner1 {
        padding: 50px;

    }

    .bann1 {
        margin-top: 220px;
    }

    .section-tiitle {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .partner-card {
        min-height: 150px;
        padding: 1.5rem;
    }

    .partner-card i {
        font-size: 2.5rem;
    }

    .partner-card h5 {
        font-size: 1.1rem;
    }

    .strategic-partnerships {
        padding: 1.5rem;
        background-color: #ffff;
    }

    .strategic-partnerships h3 {
        font-size: 1.8rem;
    }

    .strategic-partnerships p.lead {
        font-size: 1rem;
    }

    .image-container {
        height: 250px;
    }

    .partnership-advantages li {
        font-size: 1rem;
    }

    .partnership-advantages li h5 {
        font-size: 1.1rem;
    }


    .list-unstyled {
        text-align: center;
        margin-top: 20px;
    }
}





.impact-section {
    background-color: var(--light-bg);
}

.impact-section .impact-highlights h3, .impact_title, .impact_intro {
    color: #000;
}


#icol {
    color: #ffb950;
}

.impact-card {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.impact-card i {
    color: var(--primary-color);
}

.impact-highlights {
    margin-top: 4rem;
}

.highlight-item {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.highlight-item i {
    color: var(--primary-color);
}












.clients-section,
.section-introo {
    background-color: #ffff;
}

.client-testimonial {
    border: 1px solid var(--primary-color);
    background-color: #e7e7e7;
}

.client-testimonial p {
    color: #000;
}

.client-testimonial img {
    border: 2px solid var(--primary-color);
}

.client-logos img {
    filter: grayscale(80%);
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Approach section */

@media (max-width: 767px) {
.approach-section .container h2, 
.csr-section .container h2{
    font-size: 1.8rem;
}

}


/* csr section */

.csr-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.csr-section img {
    border-radius: 0.75rem;
}

.csr-section i {
    color: var(--white);
}
















/* SECTION PARTENAIRES */

.partenaires-slider {
  width: 100%;
  overflow: hidden;
  background-color: #ffb950;
  position: relative;
}

.partenaires-wrapper {
  display: flex;
  gap: 20px;
  width: max-content;
  /* Permet d’étendre la largeur automatiquement */
  animation: scroll 30s linear infinite;
}

.partenaires-wrapper img {
  width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.partenaires-wrapper img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partenaires-wrapper img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .partenaires-wrapper img {
    width: 100px;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}










/* Section for the Interactive Background */
.interactive-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background-size: 400% 400%;
}

/* Floating Items (Icons and Words) */
.background__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    opacity: 0.8;
    animation: float 6s linear infinite, drift 12s ease-in-out infinite;
    white-space: nowrap;
}

/* Animate Background Gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Float Effect for Items */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Drift Animation for Horizontal Movement */
@keyframes drift {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(50px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Generate Random Position for Items */
.floating-item:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-item:nth-child(2) {
    top: 20%;
    left: 75%;
    animation-delay: 1s;
}

.floating-item:nth-child(3) {
    top: 50%;
    left: 40%;
    animation-delay: 2s;
}

.floating-item:nth-child(4) {
    top: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-item:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 4s;
}

.floating-item:nth-child(6) {
    top: 80%;
    left: 10%;
    animation-delay: 5s;
}

.floating-item:nth-child(7) {
    top: 60%;
    left: 80%;
    animation-delay: 6s;
}

.floating-item:nth-child(8) {
    top: 15%;
    left: 45%;
    animation-delay: 7s;
}

.floating-item:nth-child(9) {
    top: 5%;
    left: 50%;
    animation-delay: 8s;
}

.floating-item:nth-child(10) {
    top: 90%;
    left: 35%;
    animation-delay: 9s;
}