

    /* Hero Section */
    .hero-section {
     
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      position: relative;
    }

    .hero-section .overlay {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .content-left h1 {
      color: black;
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 40px;
      text-align: center;
    }

    .search-container {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .search-bar {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 15px;
      margin-bottom: 20px;
    }

    .search-bar input {
      padding: 14px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 15px;
      transition: border-color 0.3s;
    }

    .search-bar input:focus {
      outline: none;
      border-color: #F3B007;
    }

    .search-bar button {
      padding: 14px 35px;
      background: #F3B007;
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      white-space: nowrap;
    }

    .search-bar button:hover {
      background: #a07300;
    }

    .filters {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }

    .filters select {
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      background: white;
    }

    .container-c {
      max-width: 1400px;
      margin: 60px auto 80px;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 450px 1fr;
      gap: 30px;
    }

    .job-list {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .job-list-header {
      background: #f8f9fa;
      padding: 25px;
      border-bottom: 2px solid #e0e0e0;
    }

    .job-list-header h1 {
      font-size: 1.8rem;
      margin-bottom: 8px;
      color: #333;
    }

    .job-count {
      color: #666;
      font-size: 14px;
    }

    #jobList {
      max-height: 600px;
      overflow-y: auto;
      padding: 10px;
    }

    .job-item {
      padding: 20px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      margin-bottom: 12px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .job-item:hover {
      border-color: #F3B007;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
      transform: translateY(-2px);
    }

    .job-item.active {
      border-color: #F3B007;
      background: #f8f9ff;
    }

    .job-title {
      font-size: medium;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      color: #666;
      font-size: 14px;
    }

    .job-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .job-details {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 40px;
      position: sticky;
      top: 20px;
      max-height: calc(100vh - 40px);
      overflow-y: auto;
    }

    .empty-state {
      text-align: center;
      padding: 60px 20px;
    }

    .empty-state-icon {
      font-size: 4rem;
      margin-bottom: 20px;
    }

    .empty-state h2 {
      color: #333;
      margin-bottom: 10px;
    }

    .empty-state p {
      color: #666;
    }

    .job-header h2 {
      font-size: 3rem;
      color: #333;
      margin-bottom: 20px;
    }

    .job-info {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 2px solid #e0e0e0;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #666;
    }

    .info-item i {
      color: #F3B007;
    }

    .apply-button {
      background: #F3B007;
      color: white;
      border: none;
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      display: inline-block;
      margin-bottom: 30px;
    }

    .apply-button:hover {
      background: #a07300;
    }

    .section-title {
      font-size: 1.4rem;
      color: #333;
      margin: 30px 0 15px;
      font-weight: 600;
    }

    .job-description {
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .requirements-list, .responsibilities-list {
      list-style: none;
      padding: 0;
    }

    .requirements-list li, .responsibilities-list li {
      padding: 12px 0 12px 30px;
      position: relative;
      color: #555;
      line-height: 1.6;
    }

    .requirements-list li:before, .responsibilities-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #F3B007;
      font-weight: bold;
    }


    /* Responsive Design */
    @media (max-width: 1200px) {
      .container-c {
        grid-template-columns: 400px 1fr;
      }
    }

    @media (max-width: 992px) {
      .hero-section {
        padding: 50px 20px;
      }

      .content-left h1 {
        font-size: 2.5rem;
      }

      .container-c {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .job-details {
        position: relative;
        top: 0;
        max-height: none;
      }

      .search-bar {
        grid-template-columns: 1fr;
      }

      .filters {
        grid-template-columns: repeat(2, 1fr);
      }
    }
@media (max-width: 320px) {
  .hero-section {
    padding: 30px 15px;
    text-align: center;
  }

  .content-left h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .container-c {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .job-details {
    position: relative;
    top: 0;
    max-height: none;
    padding: 10px;
  }

  .search-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filters select,
  .search-bar input,
  .search-bar button {
    font-size: 0.9rem;
    padding: 8px;
  }
}

    @media (max-width: 768px) {
      .content-left h1 {
        font-size: 2rem;
      }

      .search-container {
        padding: 20px;
      }

      .filters {
        grid-template-columns: 1fr;
      }

      .job-list-header h1 {
        font-size: 1.5rem;
      }

      .job-details {
        padding: 25px;
      }

      .job-header h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 576px) {
      .hero-section {
        min-height: 400px;
      }

      .content-left h1 {
        font-size: 1.8rem;
      }

      .job-item {
        padding: 15px;
      }

      .job-title {
        font-size: 1.1rem;
      }

      .job-meta {
        font-size: 13px;
      }
    }

    /* Scrollbar Styling */
    #jobList::-webkit-scrollbar,
    .job-details::-webkit-scrollbar {
      width: 8px;
    }

    #jobList::-webkit-scrollbar-track,
    .job-details::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    #jobList::-webkit-scrollbar-thumb,
    .job-details::-webkit-scrollbar-thumb {
      background: #F3B007;
      border-radius: 10px;
    }

    #jobList::-webkit-scrollbar-thumb:hover,
    .job-details::-webkit-scrollbar-thumb:hover {
      background: #F3B007;
    }