@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #ef4444;
    --secondary: #1A1A1A;
    --text: #666666;
    --light-bg: #F8F8F8;
    --white: #FFFFFF;
    --color-text: #000000;
    --color-hover: #ef4444bb;
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    /* background-color: #111827; */
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(16, 35, 88, 0.6)), url("../images/recrit1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .fleche {
    font-size: 1.3em;
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #d1d5dbdf;
}

.breadcrumb .active {
    color: #ef4444;
    /* font-weight: 600; */
}












  
  /* Hero Section
  .careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
  }
  
  .careers-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .careers-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .careers-hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
  } */
  
  /* Why Join Us Section */
  .why-join-us {
    padding: 80px 0;
    background-color: var(--light-bg);
  }
  
  .why-join-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .benefit-card {
    background: var(--white);
    padding: 30px;
    /* border-radius: 10px; */
    border: 0.5px solid rgba(155, 154, 154, 0.144);
    text-align: center;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
  }
  
  .benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
  }
  
  .benefit-card p {
    color: var(--text);
    line-height: 1.6;
  }
  
  /* Current Openings */
  .current-openings {
    padding: 80px 0;
  }
  
  .current-openings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
  }
  
  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .job-card {
    background: var(--white);
    color: var(--text);
    padding: 30px;
    /* border-radius: 10px; */
    border: 0.3px solid rgb(211, 209, 209);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
  }
  
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .job-header h3 {
    font-size: 1.3rem;
    color: var(--secondary);
  }
  
  .job-type {
    background: var(--light-bg);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
  }
  
  .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    /* color: #000000; */
  }
  
  .location {
    color: var(--text);
    /* color: #000000; */
  }
  
  .location i {
    margin-right: 5px;
    color: var(--primary);
  }
  
  .apply-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .apply-btn:hover {
    background: var(--color-hover);
  }
  
  /* Application Process */
  .application-process {
    padding: 80px 0;
    background-color: var(--light-bg);
  }
  
  .application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .process-step {
    text-align: center;
    position: relative;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
  }
  
  .process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
  }
  
  .process-step p {
    color: var(--text);
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .back-to-top:hover {
    background-color: var(--color-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .back-to-top i {
    font-size: 20px;
  }
  
  /* Department Filter */
  .job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .careers-hero-content h1 {
      font-size: 2.5rem;
    }
  
    .careers-hero-content p {
      font-size: 1.2rem;
    }
  
    .benefit-card,
    .job-card,
    .process-step {
      padding: 20px;
    }
  
    .back-to-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      left: 20px;
    }
  
    .back-to-top i {
      font-size: 16px;
    }
  
    .job-filters {
      padding: 0 20px;
    }
  }



























/* Footer */
footer {
    background: var(--secondary);
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img-experience {
        right: 0;
    }
}


  /* Start button scroll Up */

  .back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  
  
  
  .back-to-top:hover {
    background-color: #ef4444bb;;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .back-to-top i {
    font-size: 20px;
  }
  
  @media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
  }