body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafc;
    color: #333;
}

/* Top Header */
.top-header {
    background-color: #34495e;
    padding: 0.5px 0;
    color: white;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .logo h1 {
    font-size: 1.8rem;
    margin: 0;
    background: white;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}

.top-header .top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.top-header .top-nav ul li {
    margin: 0 15px;
}

.top-header .top-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.top-header .top-nav ul li a:hover {
    color: #f39c12;
}

.top-header .top-nav ul li .play-store-btn {
    background: white;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.top-header .top-nav ul li .play-store-btn:hover {
    background-color: #f39c12;
}

.play-store-btn img {
    width: 80px;
    height: auto;
}


/* Hero Section */
header.hero {
    background-image: url('img/accueil.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    animation: change 18s infinite ease-in-out;
}

@keyframes change {
    0% {
        background-image: url(img/accueil.jpg);
    }

    33% {
        background-image: url(img/accueil2.jpg);
    }

    66% {
        background-image: url(img/accueil3.jpg);
    }
}

header.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

header.hero .hero-text {
    background-color: rgba(52, 73, 94, 0.3);
    backdrop-filter: blur(50px);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    max-width: 90%;
    margin: 0 auto;
}

header.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

header.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

header.hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Style des boutons */
header.hero .cta-button {
    background-color: rgba(64, 70, 120, 0.7);
    backdrop-filter: blur(50px);
    color: white;
    padding: 10px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 20px;
    transition: background-color 0.3s;
}

header.hero .cta-button:hover {
    background-color: #d87e00;
}

/* Infinite Scroll Bar */
@keyframes slide {
    from {
        transform: translateX(0);
    }

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

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

/*.logos:hover .logos-slide {
    animation-play-state: paused;
}*/

.logos-slide {
    display: inline-block;
    animation: 30s slide infinite linear;
}

.logos-slide img {
    height: 50px;
    margin: 0 40px;
}

/* Navigation */
nav {
    background-color: #34495e;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav ul li a.active {
    color: #f39c12;
    font-weight: bold;
    border-bottom: 2px solid #f39c12;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Features, Pricing, and Jobs Grids */
.features-grid,
.pricing-grid,
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature,
.pricing-plan,
.job-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover,
.pricing-plan:hover,
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9ff;
}

.feature img,
.job-card img {
    max-width: 50px;
    margin-bottom: 15px;
}

.pricing-plan {
    background: linear-gradient(to bottom, #edeff3, #e2e2e7);
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.pricing-plan ul li {
    margin-bottom: 5px;
    color: #6a11cb;
    font-weight: bold;
}

/* Buttons */
.apply-button,
.cta-button {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.apply-button:hover,
.cta-button:hover {
    background-color: #2980b9;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea,
form button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #34495e;
}


/* Footer */
footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

footer .footer-logo h2 {
    font-size: 2rem;
    background: white;
    -webkit-background-clip: text;
    color: transparent;
    margin: 0;
}

footer .footer-links ul,
footer .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

footer .footer-links ul li,
footer .footer-social ul li {
    margin-right: 20px;
}

footer .footer-links ul li a,
footer .footer-social ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

footer .footer-links ul li a:hover,
footer .footer-social ul li a:hover {
    color: #f39c12;
}

footer .footer-app {
    text-align: center;
    margin-top: 20px;
}

footer .footer-app p {
    margin-bottom: 10px;
    font-size: 1rem;
}

footer .footer-app img {
    max-width: 150px;
    margin-top: 10px;
    background: white;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}