body {
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    display: none;
}

section {
    background-color: #f8f9fb;
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }
}

.hero-section {
    padding-top: 0%;
}




/* Header Styles */

.header {
    position: sticky;
    top: 0;
    background-color: #f8f9fb;
    padding-left: 1%;
    padding-right: 1%;
    text-align: start;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-blog {
    color: white;
    background-color: black;
    padding-left: 1%;
    padding-right: 1%;
    text-align: start;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    margin: 0 15px;
}

.links {
    color: black;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s ease-in;
}

.links:hover {
    color: orange;
    transform: scale(1, 1);
}
.menu-mobile {
    display: none;
    position:sticky;
    top: 0;
    background-color: #f8f9fb;
    z-index: 2;
    padding: 20px;
    box-sizing: border-box;
}

@media (max-width: 877px) {
    .logo {
        display: none;
        }
    .links {
        display: none;
    }
     .menu-mobile {
        display: flex;
    }
    
    .header {
        position: fixed;
        width: 100%;
        padding: 20px;
        top: auto;
        flex-direction: column;
        display: block;
        transition: 0.7s ease-in-out;
        transform: translateY(-200%);
    }

    .links-container {
        display: flex;
        flex-direction: column;
    }
    .links-container a{
        box-sizing: border-box;
        display: block;
        font-size: 1.5rem;
    }
}






/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-image: url(img-stock/cubes-2492010_1280.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 8%;
}

.hero-content {
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    background-color: #000000a1;
    padding: 20px;
    padding-left: 80px;
    width: fit-content;
}




/* A Propos Section Styles */
.a-propos-section {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f8f9fb;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: orange;
    margin-top: 10px;
    border-radius: 2px;
}

.a-propos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .a-propos-content {
        grid-template-columns: 1fr;
    }
    .a-propos-texts p {
        font-size: 18px;
    }
    .a-propos-list li {
        font-size: 20px;
    }
}

.a-propos-texts p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 25px;
}

.a-propos-list {
    list-style: none;
    padding: 0;
}

.a-propos-list li {
    padding-left: 30px;
    margin-bottom: 18px;
    position: relative;
    font-weight: 500;
    font-size: 30px;
}

.a-propos-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: orange;
    font-weight: bold;
}


/* Services Section Styles */
.services-section {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f8f9fb;
}

.services-container {
    justify-content: center;
}

.services-box {
    gap: 50px;
    justify-content: space-evenly;
}

.services-card.border {
    padding-top: 15px;
    display: flex;
    border-radius: 10px;
}

.services-card img {
    margin-top: 10px;
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* valeur Section Styles */
.valeur-section {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f8f9fb;
}

.valeur-container {
    justify-content: space-evenly;
    display: flex;
}

.valeurs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    padding: 30px;
    gap: 20px;
    border-radius: 10px;
}
.valeurs-card p {
    padding: 30px 30px 0px 30px;
    font-size: 22px;
    color: #444;
}

.valeurs-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}


/* Filter Buttons Styles */
.filter-buttons {
    padding-left: 5%;
    background-color: #f8f9fb;
    padding-top: 20px;
    padding-bottom: 20px;
}

.filters {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.filters div {
    padding: 5px 20px;
    border: solid 1px #e0e0e0;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
}

/* Articles Section Styles */
.articles-section {
    padding-top: 20px;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f8f9fb;
}

.articles-container {
    padding: 50px 20px;
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.article-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 25%;
    border: solid 1px #e0e0e0;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
    background-color: #f8f9fb;
}

.article-card h3,
.article-card p {
    margin: 0px 15px;
    margin-bottom: 10px;
}

.voir-plus {
    margin-top: auto;
    padding: 0 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: rgba(0, 0, 255, 0.658);
}

.inactive {
    width: 0;
    height: 0;
    display: none;
}




/* Contact Styles */
.Recrutement-section {
    padding: 80px 0;
    background: #f8f9fb;
    padding-left: 5%;
    padding-right: 5%;

}

.section-title {
    margin-bottom: 50px;
    font-weight: 700;
}

.container-contact {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-section h1{
    padding-left: 5%;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: #555;
    line-height: 1.6;
    font-size: 20px;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 25px;
    font-weight: 600;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: orange;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #e69500;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container-contact {
        flex-direction: column;
        padding: 25px;
    }
}

.contact-card {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    gap: 30px;
}
.contact-card img {
    width: 30px;
    height: 30px;
}

/* Footer Styles */
footer {
    background-color: #000000;
    padding: 20px 0;
}

.footer-container {
    padding: 30px 0;
    color: white;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
    }
}

.footer-hero {
    padding-left: 5%;
    padding-top: 40px;
}

.footer-hero h2 {
    font-size: 20px;
    color: orange;
}

.footer-hero h3 {
    font-size: 37px;
    margin: 10px 0;
    width: 90%;
    color: white;
}

.footer-hero button {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.footer-hero button:hover {
    background-color: #e69500;
    transform: translateY(-2px);
}

.footer-infos {
    width: 300px;
    line-height: 1.6;
}

.footer-links {
    padding-top: 40px;
    display: flex;
    gap: 100px;
    margin-right: 5%;
    margin-left: 5%;
}
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    display: flex;
    color: white;
    flex-direction: column;
    font-size: 18px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
    .footer-hero h3 {
    font-size: 30px;

}

}

footer p {
    padding-left: 5%;
    color: white;
    font-size: 14px;
    text-decoration: none;
    margin: 0%;
}

.follow {
    color: white;
    font-size: 14px;
}
.end-footer {
    display: flex;
    margin-top: 20px;
}

.wip {
    align-items: center;
    justify-content: center;
}
.wip img {
    height: 80vh;
    width: auto;
}