* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #fff;
    background-image: url('images/background-entreprise.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
}

.gros {
    font-size: 80px;
    padding-right: 15px;
    color: #62708b;
}
.petit{
    font-size: large;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.navbar a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover, 
.navbar a.active {
    color: #00abf0;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    background-color: #00abf0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #008ac0;
}

.entreprise {
    padding: 100px 10%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.entreprise-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
}
.centered-text {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
}

.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    margin-bottom: 50px; 
}


.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.company-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px;}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.company-logo {
    width: 400px;  /* Taille du logo en largeur */
    height: auto;
    padding-right: 200px;
}

.company-info {
    flex: 2;
    margin-left: 30px;
}
.cardkn {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    width: 800px;
    text-align: center;
    border-radius: 5px;
}


.card {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    width: 300px;
    text-align: center;
    border-radius: 5px;
}

.card img {
    width: 100px;
    margin-bottom: 15px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.testimonials, .team {
    padding: 100px 10%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.testimonials h1, .team h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.testimonial-container, .team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial, .team-member {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 300px;
    text-align: center;
}

.cards {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    width: 254px;
    text-align: center;
    border-radius: 5px;
}

.cards img {
    width: 100px;
    margin-bottom: 15px;
}

.cards:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.testimonials, .team {
    padding: 100px 10%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.testimonials h1, .team h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.testimonial-container, .team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial, .team-member {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 300px;
    text-align: center;
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 14px;
  }
  
  .footer p {
    margin-bottom: 0;
  }
  .footer a {
    color: #ff6a00;
    font-weight: bold;
}