body {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
}
.container-fluid {
    --bs-gutter-x: 0 !important;
}
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid !important;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
}
.c-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0 0 0;
}
.c-para {
    text-align: center;
    width: 40%;
    line-height: 2;
}
.job-row {
    border-bottom: 1px solid #eee;
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    text-align: center;
    gap: 10px;
}

.job-title, h2 {
    font-size: 25px !important;
    font-weight: 500 !important;
    cursor: pointer;
    text-align: left;
    background: linear-gradient(89.96deg, #000000 -51.28%, #003DA1 50.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-title:hover {
    text-decoration: underline;
}

.posted-time {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    text-align: left;
}
.show-more, .submit {
  font-family: 'NMB', sans-serif;
  border-radius: 38px;
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 10px;
  background: none;
  cursor: pointer;
  background: #003DA1;
  color: #fff;
  width: 140px;
}
.apply {
  font-family: 'NMB', sans-serif;
  border-radius: 38px;
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 10px;
  background: none;
  cursor: pointer;
  background: #003DA1;
  color: #fff;
  width: 190px;
}
.c-footer {
  display: flex;
  justify-content: center;  
  align-items: center;       
  gap: 30px;                
  padding: 50px 0 20px 0;
}

.footer-link {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: flex;
  align-items: center;    
}

.help-link {
  gap: 8px;
}

.help-link img {
  width: 20px;
  height: 20px;
  display: block;
}
/* Mobile */
@media (max-width: 992px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }
}

@media (max-width: 576px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
}

                                         /* JOB DETAILS */
.job-content {
  background: #f6f4f0;
}
.tabs-wrapper {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
}

.tabs {
  display: flex;
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.tab-btn.active {
  border-bottom: 2px solid black;
}

.tabs-wrapper.scrolled .tab-btn.active {
  border-bottom: none;
}

.progress-container {
  height: 3px;
  background: #eee;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: black;
  transition: width 0.1s linear;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

.content-box {
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

.form-block {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}
.upload-box input {
  display: none;
}

.upload-box {
  display: block;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.upload-box:hover {
  border-color: black;
  background: #f9f9f9;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-icon {
  font-size: 40px;
}

.upload-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}