

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-dark: #083E77;
    --blue-light: #007BFF;
    --white: #FFFFFF;
    --gray-dark: #333333;
}

html{
    overflow-x: hidden;
}
body {
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--gray-dark);
    font-family: 'Poppins', sans-serif;
}

a.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

header{

    font-family: 'Ubuntu', sans-serif;

    font-weight: 400;

    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    padding: 10px 5px;
    overflow: hidden;
    background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 106%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    clip-path: ellipse(130% 96% at center top);
}


.infoHero h1 {
    font-size: 132px;
    height: 160px;
    color: var(--blue-dark);
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}

.infoHero p {
    width: 100%;
    /* position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%); */
    color:var(--blue-dark);
    font-size: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.fa-droplet {
    color: #74C0FC;
    font-size: 20px;
    margin-right: 10px;
}
.cta-button {
    background-color: var(--blue-light);
    margin-top: 40px;
    color: var(--white);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #083E77;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/*********skeleton chargement ************/
.skeleton {
    position: relative;
    background-color: #D6EAFF; /* Fond bleu clair */
    border: none;
    color: transparent;
    pointer-events: none; /* Désactiver les interactions */
}

/* Effet de chargement animé */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #D6EAFF, #b2d8ff, #D6EAFF);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 0;
}

/* Animation du fond */
@keyframes loading {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

/* Ajout de l'icône qui tourne sans changer la taille du bouton */
.skeleton::before {
    content: "\f110";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1em;
    color: #083E77;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Animation de rotation de l'icône */
@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/*********fin skeleton*****/
/* Introduction Section */
.mission {
    padding: 0 0.5rem 1rem;
    background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}

.mission-text {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mission-text h2 {
    font-size: 24px;
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 600;

}

.highlight {
    color: var(--blue-dark);
    font-style: italic;
    font-family: 'Segoe Script', cursive;
    font-size: 26px;
    position: relative;
    display: inline-block;
}

/* Effet de surlignement en arrière-plan */
.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px; /* Ajuste la position du surlignement */
    width: 100%;
    height: 12px; /* Épaisseur du surlignement */
    background-color: #A9E5FF;
    z-index: -1;
    border-radius: 5px;
}

.description {
    color: var(--gray-dark);
    text-align:start;
    margin-bottom: 3rem;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
}
.description span {
    color: var(--blue-dark);
}

/* Services Cards */
.services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

/* .service-contrainer{
    display: flex;
    flex-direction: column;
    gap: 20px;
} */
.service-card {
    background: rgba(255, 255, 255, 0.288);
    height: 230px;
    padding: 0.5rem 1.2rem;
    border: 1px solid white;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-header {
    position: absolute;
    top: -20px;
    background: #003366;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content {
    flex-grow: 1;
    margin-top: 15px;
}

.service-content h3 {
    color: var(--blue-dark);
    font-size: 28px;
    font-weight: 600;
    margin-top: 1rem;
}
.service-content p {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 500;
}

.forage-indiv{
    width: 80%;
    max-width: 548px;
    margin: auto;
}
.forage-indiv span{
    display: block;
    margin: 10px auto;
    text-align: center;
}
.progress-bar {
    position: relative;
    width: 80%;
    height: 12px;
    display: flex;
    justify-content: flex-start;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 6px 45px rgba(5, 5, 5, 0.24);
    margin: 0.5rem 0;
}
.progress {
    height: 100%;
    width: 0%;
    background: #67DCFF;
    border-radius: 10px;
    position: relative;
    transition: width 0.2s ease-in-out;
}
.progress-arbre {
    background: #22c922;
}

.progress-icon {
    transform: translate(-50%, -20%);
    width: 24px;
    height: 24px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease-in-out;
}

.progress-icon i {
    color: #007BFF;
    font-size: 10px;
}
.arbre i {
    color: rgb(34, 201, 34);

}

.skeleton-loading {
    position: relative;
    padding: 15px;
}

.skeleton-header,
.skeleton-content,
.skeleton-progress {
    background: #f0f0f0;
    border-radius: 4px;
    margin: 10px 0;
    animation: pulse 1.5s infinite;
}

.skeleton-header {
    width: 60%;
    height: 24px;
}

.skeleton-content {
    width: 50%;
    height: 32px;
    margin: 15px 0;
}

.skeleton-progress {
    width: 100%;
    height: 8px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.real-content {
    transition: opacity 0.3s ease;
}


.service-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.service-footer .participer {
    font-size: 30px;
    color: #003366;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}
.service-footer .participer span {
    font-size: 18px;
    color: #003366;
    font-weight: 600;
    text-decoration:underline;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-footer .participer:hover {
    color: #007BFF;
}

/* Project Section */
.project {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to left, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}


.project-image {
    display: none;
    position: relative;
    width: 100%;
    height: 350px;
    background: url('image/v643_48.webp') center/cover no-repeat;
    object-fit: cover;
}

/* Effet de voile bleu progressif */
.project-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 51, 102, 0.2), /* Bleu semi-transparent en haut */
        rgba(0, 51, 102, 0.75), /* Bleu foncé intermédiaire */
        #003366 /* Même bleu que le background de .project-content */
    );
}

.project-content {
    display: flex;
    justify-content: center;
    background-color: #003366;
    padding: 2rem 0.5rem 4rem;
    text-align: center;
    height: 400px;
    color: white;
}

.hadith{
    margin-top: 40px;

}
.saw{
    font-size: 25px;
    color: white;
}
/* .project-content p {
    margin: 0 15px;
} */

.br {
    font-size: 16px;
}

.project h2 {
    color: #A9E5FF;
    font-size: 1.8rem;
    font-family: 'Segoe Script', cursive;
    margin-bottom: 1rem;
    font-weight: 600;
}


.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    height: 140px;
}

.circle-image {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit:cover;
    position: absolute;
    border-bottom: 3px solid #A9E5FF;
}

.circle-image.large {
     width: 300px;
    height: 300px;
    bottom: 5px;
    left: 32%;
    transform: translateX(-50%);
    z-index: 3;
}

.circle-image.small {
    width: 175px;
    height: 175px;
    bottom: 10px;
    right: -10px;
    z-index: 4;
}

.water-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 80px;
    background: url('image//Ellipse163.png') no-repeat center/contain;
    z-index: 5;
}


/* Support Section */
.support {
    padding: 0.5rem 0 0 0;
    text-align: center;
    background: linear-gradient(to left, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}


.support h2 {
    color: var(--blue-dark);
    font-size: 25px;
    font-weight: 600;
    margin: 1.5rem;
}

.support h2 span {
    font-family: 'Segoe Script', cursive;
    font-size: 28px;
    color: var(--blue-dark);
}

.support-text {
    color: #4A4A4A;
    margin: 1.5rem 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 300px;
    padding: 0 10px;
    position: relative;
    cursor: pointer;
}
.video{
    border-radius: 15px;
    width: 100%;
    height: 100%;
}



/* Join Us Section */
.join-us {
    padding: 3rem 1.5rem;
    margin: 2.5rem auto;
    text-align: center;
    background: white;
}

.join-us h2 {
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 500;
}

.italic-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-dark);
    margin-bottom: 2rem;
}
.italic-text span {
    font-family: 'Segoe Script', cursive;
    margin-bottom: 2rem;
}

.join-button {
    background: var(--blue-dark);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.join-button:hover {
    background: #083E77;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Reforestation Section */
.reforestation {
    position: relative;
    overflow: hidden;
}

.reforestation-image {
    position: relative;
    padding-right: 100px;
    height: 400px;
    background-image: url('image/v726_929-mob.webp');
    background-size: cover;
    background-position: right 20% center;
    border-radius: 20px 20px 0 0;
}
.reforestation-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(8, 62, 119, 0) 0%,
        rgba(8, 62, 119, 0.1) 20%,
        rgba(8, 62, 119, 0.6) 70%,
        #083E77 100%
    );
}
/* Image circulaire superposée */
.image-circle {
    position: absolute;
    bottom: 40%;
    left: -18px;
    width:200px;
    height:200px;
    border-radius: 50%;
    overflow: hidden;
    border-bottom: 4px solid #A9E5FF;
}
.image-circle .image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reforestation-content {
    background: linear-gradient(180deg, #083E77 0%, #062A55 100%);
    color: white;
    padding: 5rem 1.5rem 3rem;
    text-align: center;
}

.reforestation .script-title {
    font-family: 'Segoe Script', cursive;
    font-size: 2rem;
    margin: 1.5rem;
}
.reforestation-content span.saw {
    font-size: 25px;
    text-align: center;
}
.plant-button {
    background: white;
    color: #083E77;
    border: 2px solid white;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plant-button:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    /* background: #062A55;
    color: white;
    border-color: #062A55; */
}

/* Key Stats Section */
.key-stats {
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: white;
    text-align: center;
    position: relative;
}

.drop-container {
    position: absolute;
    top: -20px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.water-drop {
    position: absolute;
    top: 0;
    left: 35%;
    transform: translate(-50%, -50px);
    opacity: 1;
    transition: transform 0.1s linear;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--blue-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #4A4A4A;
    font-weight: regular;
    font-size: 16px;
}
/* Animation des stats */
.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Challenge Section */
.challenge-content {
    background: #D6EAFF;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.challenge .script-title {
    font-family: 'Segoe Script', cursive;
    color: var(--blue-dark);
    font-size: 36px;
    margin-bottom: 1rem;
}

.share-button {
    background: #083E77;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 15px;
    font-weight: semi-bold;
    font-size: 16px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* la popup  */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}
.popup-content h3 {
    margin: 30px auto 20px;
    text-align: center;
}
.popup-content p {
    margin: 0px auto 20px;

}


.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form#share-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

span.error-message{
    color: red;
}

.popup-content button {
    background-color:  #083E77;
    color: white;
    width: 150px;
    margin: 10px auto;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 15px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.popup-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.popup-confirmation {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 9999;
}

.confirmation-content {
    display: flex;
    align-items: center;
    width: 400px;
    height: 200px;
    color: #1a1a1a;
    background-color: #f7f7f7;
    font-size: 18px;
    padding: 10px;
    margin: auto;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Impact Section */
.impact {
    position: relative;
    text-align: center;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}

.impact-content {
    position: relative;
    background: white;
    padding: 3.5rem 1rem;
    border-radius: 20px 20px 0 0;
}

.impact-number {
    font-size: 30px;
    font-weight: 600;
    color: var(--blue-dark);
    display: block;
}

.impact p {
    color: #083E77;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.water-button {
    background: var(--blue-dark);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 15px;
    font-weight: semi-bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.water-button:hover {
    background: #002347;
    transform: translateY(-2px);
}

.impact-image {
    position: relative;
    height: 350px;
}
.image-impact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    clip-path: ellipse(110% 88% at center top);
}
.impact-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:#A9E5FF;
    z-index: -1;
    clip-path: ellipse(110% 90% at center top);
}

/* FAQ Section - Updated */
.faq {
    padding: 3rem 1rem;
    background: white;
    background: linear-gradient(to right, rgba(173, 216, 230, 0.3), rgba(255, 255, 255, 0));
}

.faq h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: var(--blue-dark);
    margin-bottom: 2rem;
}

.script-text {
    font-family: 'Segoe Script', cursive;
    font-style: italic;
}

.faq-item {
    border-top: 1px solid #187ae44d;
    background: rgba(255, 255, 255, 0.24);

}
.faq-item li {
    /* text-decoration: dotted; */
    list-style: inside;
    margin-left: 20px;
}

.faq-question {
    padding: 1rem;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--blue-dark);
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(250, 250, 250, 0.1);
}

.faq-answer p {
    font-size: 16px;
    padding: 1rem;
    color: #4A4A4A;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .mission, .services, .project {
    animation: fadeIn 1s ease-out forwards;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .mission, .services, .project {
    animation: fadeIn 1s ease-out forwards;
}

@media (max-width: 425px){

    .forage-indiv{
        width: 90%;
        margin: 20px auto;
    }

    .image-circle {
        bottom: 55%;
        left: -18px;
        width: 170px;
        height: 170px;
    }
    .br {
        color: white;
        display: block;
    }
    .reforestation-image{
        background-image: url('image/v726_929-mob.webp') !important;
    }
    .video-container {
        padding: 0 5px;
    }
}
@media (min-width: 425px) {
    .infoHero{
        margin-top: 20px;
    }


    .image-container{
        margin-bottom: 4rem;
    }
    .circle-image.large {
        width: 380px;
        height: 380px;
        left: 32%;
        transform: translate(-50%, 8%);
    }

    .circle-image.small {
        width: 200px;
        height: 200px;
        transform: translate(2%, 12%);
    }

    .image-circle {
        bottom: 48%;
    }
    .water-icon {
        transform: translate(-5%, 50%);
    }
    .impact-image {
        height: 400px;
    }

}
@media (min-width: 520px) {
    .circle-image.large {
        width: 410px;
        height: 410px;
    }
    .circle-image.small {
        width: 225px;
        height:225px;
        transform: translate(-4%, 8%);
    }
    .water-icon {
        transform: translate(-20%, 40%);
    }
    .reforestation-image {
        height: 480px;
    }
    .image-circle {
        width: 250px;
        height: 250px;
        transform: translate(2%, 30%);
    }
    .reforestation-content {
        padding-top: 200px;
    }

    .water-drop {
        left: 40%;
    }
    .impact-image {
        height: 450px;
    }

}
@media (min-width: 600px) {
    .services {
        width: 70%;
        margin: auto;
        padding: 0 ;
    }

    .image-container{
        margin-bottom: 6rem;
    }
    .circle-image.large {
        width: 440px;
        height: 440px;
    }
    .circle-image.small {
        width: 280px;
        height:280px;
        transform: translate(-6%, 25%);
    }
    .water-icon {
        transform: translate(-40%, 90%);
    }

    .support-text {
        margin: 1.5rem auto;
    }
    .video-container {
        margin: auto;
    }
    .image-circle {
        width: 290px;
        height: 290px;
    }
    .impact-image {
        position: relative;
        height: 500px;
    }
    .faq {
        padding: 3rem 3rem;
    }
}
@media (min-width: 700px) {
    .services {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        margin: 50px auto;
    }
    /* .services {
        margin: 50px auto;
    }
    .service-contrainer{
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    } */
    .service-card {
        width: 50%;
    }

    .project{
        overflow:visible;
        padding-bottom: 120px;
    }
    .image-container {
        display: flex;
        justify-content: center;
        position: absolute;
        margin-bottom: 0;
        height: 600px;
        left: 50%;
        width: 600px;
        transform: translate(-50%, -75%);
    }

    .circle-image.large {
        flex-shrink: 0;
    }

    .circle-image.small {
        flex-shrink: 0;
    }

    .water-icon {
        align-self: flex-end;
    }
    .support{
        padding-top: 10rem;
    }
    .faq-list{
        max-width: 690px;
        margin: auto;
    }

}


@media (max-width: 768px) {
    .services {
        position: relative;
        transform: none;
        transition: transform 0.6s ease-in-out;
    }
    .reforestation-image {
        background-image: url('image/v726_929-tab.webp');
    }
}


@media (min-width: 769px) {
    .hero {
        flex-direction: row;
        justify-content: flex-start;
        height: 100vh;
        padding-left: 8%;
        background: url("image/hero_desktop.webp") no-repeat center center/cover;
        background-position: right 22% center;
        clip-path: none;

    }

    .hero-img {
        display: none;
    }

    /*  Alignement à gauche */
    .infoHero {
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: none;
    }

    .infoHero h1 {
        font-size: 135px;
        text-align: left;
        line-height: 1.1;
    }

    .infoHero p {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: left;
        font-size: 1.5rem;
        width: auto;
    }

    .cta-button {
        font-size: 1.35rem;
        padding: 15px 40px;
    }
    .mission {
        padding-top: 40px;
    }

    .join-us {
        margin: 3rem auto;
    }
    .impact-content {
        padding: 4rem 1rem;
    }
    .project-content{
        height: 450px;
    }
    .hadith{
        margin-top: 40px;

    }
    .reforestation-image{
        background-image: url('image/v726_929.webp');
    }
    .reforestation-content p {
        max-width: 750px;
        margin: auto;
    }
    .challenge-content {
        border-radius:0;
    }
}

@media (max-width: 867px) {
    .close-menu {
        top: 0px;
    }
}

@media (min-width: 900px){
    .hero {
        padding: 10%;
    }
    .infoHero {
        width: 45%;
    }

    .infoHero h1 {
        font-size: 150px;
    }

    .infoHero p {
        font-size: 1.8rem;
    }

    .fa-droplet {
        margin-right: 0px;
    }
    .cta-button {
        padding: 16px 42px;
    }
    .hero-img{
        clip-path:none;
    }
    .mission {
        padding-top: 6rem;
    }
    .description{
        margin: 20px auto 4rem;
        max-width: 780px;
    }
    .services {
        max-width: 1000px;
        height: 300px;
    }
    .service-card {
        width: 60%;
        height: 250px;
    }
    .service-header {
        padding: 0.6rem 1.5rem;
    }
    .service-content {
        margin-top: 30px;
    }
    .reforestation-image{
        border-radius: 0;
        height: 800px;
    }
    .image-circle {
        width: 300px;
        height: 300px;
        transform: translate(15%, 60%);
    }
    .reforestation-content {
        padding-top: 100px;
        padding-bottom:5rem;
    }
    .water-drop {
        left: 45%;
    }
    .challenge-content {
        padding: 4rem;

    }
    .impact-content {
        padding: 4rem;
    }
    .impact-image {
        height: 600px;
    }
    .image-impact {
        clip-path: none;
    }
}
@media (min-width: 1440px){
    .hero {
        padding: 15%;
    }
    .infoHero {
        width: 45%;
    }

    .infoHero h1 {
        font-size: 160px;
    }

    .infoHero p {
        font-size: 1.9rem;
    }

    .cta-button {
        font-size: 1.4rem;
        padding: 16px 46px;
    }
    .impact-image {
        height: 650px;
    }
}
