/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* Header Styles */
  .hero-header {
    background-image: url('./images/enterom-home.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: #0055FF;
  }
  
  .header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .btn-primary {
    display: inline-block;
    background-color: black;
    margin-top: 20px;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .footer_ {
    font-size: 10px;
  }

  .btn-primary:hover {
    background-color: black;
  }


  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  /* Job Details Section */
  .container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .job-header {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .job-header h2 {
    font-size: 2rem;
    color: #0055FF;
    font-weight: 600;
  }
  
  .job-header p {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
  }
  
  /* Job Description, Responsibilities, Qualifications */
  .job-description, .job-responsibilities, .job-qualifications {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .job-description h3, .job-responsibilities h3, .job-qualifications h3 {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  /* Apply Now Button */
  .apply-now-btn {
    text-align: center;
    margin-top: 30px;
  }
  
  .apply-btn {
    padding: 12px 30px;
    background-color: black;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .apply-btn:hover {
    background-color: black;
  }
  
  /* Footer */
  footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  /* Responsive Styles */
  
  /* Tablets (Landscape) and Smaller Screens */
  @media (max-width: 1024px) {
    .hero-header {
      padding: 40px 0;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .job-header h2 {
      font-size: 1.8rem;
    }
  
    .job-header p {
      font-size: 1.1rem;
    }
  
    .job-description h3, .job-responsibilities h3, .job-qualifications h3 {
      font-size: 1.3rem;
    }
  
    .apply-btn {
      font-size: 1.1rem;
      padding: 10px 25px;
    }
  
    footer p {
      font-size: 0.9rem;
    }
  }
  
  /* Smartphones and Smaller Devices */
  @media (max-width: 768px) {
    .hero-header {
      padding: 30px 0;
    }
  
    .hero-content h1 {
      font-size: 1.6rem;
    }
  
    .job-header h2 {
      font-size: 1.5rem;
    }
  
    .job-header p {
      font-size: 1rem;
    }
  
    .job-description h3, .job-responsibilities h3, .job-qualifications h3 {
      font-size: 1.2rem;
    }
  
    .job-header, .job-description, .job-responsibilities, .job-qualifications {
      padding: 15px;
    }
  
    .apply-btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  
    footer p {
      font-size: 0.8rem;
    }
  }
  
  /* Extra Small Devices (Mobile Portrait) */
  @media (max-width: 480px) {
    .hero-header {
      padding: 20px 0;
    }
  
    .hero-content h1 {
      font-size: 1.4rem;
    }
  
    .job-header h2 {
      font-size: 1.4rem;
    }
  
    .job-header p {
      font-size: 1rem;
    }
  
    .job-description h3, .job-responsibilities h3, .job-qualifications h3 {
      font-size: 1.1rem;
    }
  
    .job-header, .job-description, .job-responsibilities, .job-qualifications {
      padding: 10px;
    }
  
    .apply-btn {
      font-size: 1rem;
      padding: 8px 15px;
    }
  
    footer p {
      font-size: 0.7rem;
    }
  }
  