* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #fdfcf8;
      color: #000;
    }

    /* Careers Section */
    .careers {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      flex-wrap: wrap;
      background: #8cda8a;
    }

    .careers-content {
      flex: 1;
      min-width: 300px;
      max-width: 50%;
    }

    .careers-content h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .careers-content h1 span {
      color: #15A800; /* Orange highlight */
    }

    .careers-content p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 20px;
    }

    .careers-content .btn {
      display: inline-block;
      background: #15A800;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s ease;
    }

    .careers-content .btn:hover {
      background: #d65b0d;
    }

    .careers-image {
      flex: 1;
      text-align: center;
      max-width: 50%;
    }

    .careers-image img {
      max-width: 100%;
      height: auto;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .careers {
        padding: 50px 5%;
      }
      .careers-content h1 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .careers {
        flex-direction: column;
        text-align: center;
      }
      .careers-content {
        max-width: 100%;
        margin-bottom: 30px;
      }
      .careers-image {
        max-width: 100%;
      }
    }

    @media (max-width: 424px) {
      .careers-content h1 {
        font-size: 1.8rem;
      }
      .careers-content p {
        font-size: 0.9rem;
      }
      .careers-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }




    .job-section {
      max-width: 1100px;
      margin: 30px auto;
      padding: 20px;
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .job-header h2 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .job-search {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .job-search input {
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
    }

    .job-search select {
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
    }

    .job-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 60px 20px;
      margin-bottom: 15px;
    }

    .job-info {
      flex: 1;
    }

    .job-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .job-title span {
      background: #15A800;
      color: #fff;
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: 5px;
      margin-left: 8px;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.9rem;
      color: #555;
    }

    .job-meta i {
      margin-right: 5px;
    }

    .job-view a{
      background: #8cda8a;
      color: #000;
      border: none;
      /* border-radius: 50%; */
      padding: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pagination button,
    .pagination input {
      padding: 6px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      background: #fdfdfd;
      cursor: pointer;
    }

    .pagination input {
      width: 50px;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .job-card {
        flex-direction: column;
        align-items: flex-start;
      }
      .job-view {
        margin-top: 10px;
        align-self: flex-end;
      }
    }

    @media (max-width: 768px) {
      .job-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .job-header h2 {
        margin-bottom: 15px;
      }
      .job-meta {
        flex-direction: column;
        gap: 6px;
      }
    }

    @media (max-width: 424px) {
      .job-card {
        padding: 12px 15px;
      }
      .job-title {
        font-size: 1rem;
      }
      .job-meta {
        font-size: 0.85rem;
      }
      .pagination {
        flex-direction: column;
        gap: 6px;
      }
    }






    .detail {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      max-width: 1000px;
      margin: auto;
      margin-bottom: 30px;
    }

    .detail-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .detail-header h2 {
      font-size: 26px;
      margin: 0;
    }

    .detail-header .active {
      background: #15A800;
      color: #fff;
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 20px;
      margin-left: 10px;
    }

    .detail-meta {
      font-size: 14px;
      color: #666;
      display: flex;
      gap: 15px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .detail-meta i {
      margin-right: 5px;
    }

    .detail-btn a{
      background: #15A800;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
    }

    .detail-body {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .detail-info {
      flex: 2;
    }

    .detail-info h3 {
      margin-bottom: 10px;
    }

    .info-cards {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .info-card {
      background: #fafafa;
      border-radius: 10px;
      padding: 15px 20px;
      flex: 1;
      text-align: center;
      min-width: 120px;
    }

    .info-card i {
      font-size: 22px;
      margin-bottom: 8px;
      display: block;
    }

    .salary {
      margin-top: 15px;
      font-weight: bold;
      color: #16a34a;
    }

    .quick-apply {
      flex: 1;
      background: #fafafa;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
    }

    .quick-apply h4 {
      margin-bottom: 10px;
    }

    .quick-apply .apply-btn {
      display: block;
      width: 100%;
      padding: 12px;
      background: #15A800;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
    }

    .deadline {
      font-size: 13px;
      color: #888;
      margin-top: 8px;
    }

    /* ===== Job Description Section ===== */
    .job-section {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      max-width: 1000px;
      margin: auto;
      margin-bottom: 30px;
    }

    .job-section h3 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: bold;
    }

    .job-desc-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .job-description {
      flex: 2;
    }

    .job-description h2 {
      margin-bottom: 10px;
    }

    .job-description p {
      color: #555;
      line-height: 1.6;
    }

    .job-description ul {
      margin-top: 10px;
      padding-left: 20px;
    }

    .job-description ul li {
      margin-bottom: 8px;
    }

    .show-btn {
      margin-top: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 10px;
      background: #fafafa;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
    }

    .job-stats {
      flex: 1;
      background: #fafafa;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
    }

    .job-stats h4 {
      margin-bottom: 15px;
    }

    .stat-box {
      background: #e6fdf1;
      color: #16a34a;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .job-stats small {
      display: block;
      color: #888;
      margin-top: 8px;
      font-size: 13px;
    }

    /* ===== Skills Section ===== */
    .skills {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      max-width: 1000px;
      margin: auto;
      margin-bottom: 30px;
    }

    .skills h3 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: bold;
    }

    .skill-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .skill-tags span {
      background: #e6fdf1;
      color: #16a34a;
      padding: 8px 14px;
      border-radius: 20px;
      font-size: 14px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .detail-body,
      .job-desc-container {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .info-cards {
        flex-direction: column;
      }
    }

    @media (max-width: 424px) {
      .detail-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .detail-btn {
        margin-top: 10px;
        width: 100%;
      }
      .quick-apply,
      .job-stats {
        padding: 15px;
      }
    }


    .application {
      max-width: 800px;
      background: #fff;
      margin: 40px auto;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .application h2 {
      font-size: 24px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .application p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }

    input, select, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .row {
      display: flex ;
	  flex-wrap: wrap;
    }

    .row .form-group {
      flex: 1;
    }

    .form-button {
      width: 100%;
      background: #15A800;
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 16px;
      padding: 12px;
      border-radius: 6px;
      transition: 0.3s;
    }

    .form-button:hover {
      background: #555;
    }

    /* Responsive Breakpoints */
    @media (max-width: 992px) {
      .application {
        max-width: 700px;
      }
    }

    @media (max-width: 768px) {
      .row {
        flex-direction: column;
      }
    }

    @media (max-width: 424px) {
      .application {
        padding: 20px;
      }
      input, select, textarea, .form-button {
        font-size: 13px;
        padding: 8px;
      }
      .application h2 {
        font-size: 20px;
      }
    }





    