:root {
    --primary-color: black;
    --bg-light: #f9f9f9;
    --bg-card: #ffffff;
    --text-dark: #333;
    --border-radius: 12px;
    --font-family: 'Open Sans', 'Inter', sans-serif;
  }
  
  body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
  }
  

  .hero-header {
    background-image: url('./images/enterom-home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    color: black;
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .btn-primary:hover {
    background-color: black;
  }
  
  .footer_ {
    font-size: 15px;
    color:#ffffff
  }

  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  /* Header */
  header {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
  }
  
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .logo {
    height: 50px;
    margin-right: 15px;
  }
  
  header h1 {
    color: #0055FF;
    margin: 0;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
  

  .jobs-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
  }
  
  .jobs-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #0055FF;
  }
  
  #job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .job-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
  }
  
  .job-card h3 {
    margin-top: 0;
    color: black;
    font-size: 1.2rem;
  }
  
  .job-card p {
    margin: 10px 0;
    color: #555;
  }
  
  .apply-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color:black;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .apply-btn:hover {
    background-color: black;
  }
  
  /* Main */
  main {
    padding: 40px 0;
  }
  
  /* Search Bar */
  #search-section {
    margin: 30px 0 30px 0;
    text-align: center;
  }
  
  
  #searchInput {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  /* Jobs Grid */
  h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
  }
  
  .jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .job-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .job-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--text-dark);
  }
  
  .location {
    font-size: 0.95em;
    color: #555;
  }
  
  /* Job Detail View */
  #job-detail {
    animation: fadeIn 0.3s ease;
  }
  
  .back-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .back-btn:hover {
    text-decoration: underline;
  }
  
  .description {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
  }
  
  /* Footer */
  footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* RESPONSIVENESS */
  @media (min-width: 600px) {
    .jobs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 900px) {
    .jobs-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 500px) {
    header h1 {
      font-size: 1.5rem;
    }
  
    .logo {
      height: 40px;
      margin-bottom: 10px;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .job-card h3 {
      font-size: 1rem;
    }
  }
  