.job-opportunities__container {
  max-width: 1200px;
  margin: 0 auto;
}

.job-opportunities__heading {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 36px;
  font-weight: 600;
}

.job-opportunities__search-container {
  /* background-color: #b3ebfb; */
  background: linear-gradient(to left, #a7ecff, #a7ecff90);
  padding: 30px 46px;
  border-radius: 20px;
  margin: auto;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  max-width: 650px;
}
@media (max-width: 768px) {
  .job-opportunities__search-container {
    padding: 20px;
  }
}

.job-opportunities__search-form {
  display: flex;
  width: 100%;
  max-width: 700px;
}

.job-opportunities__search-input {
  flex-grow: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 0 3.18px 0 rgba(0, 0, 0, 0.25);
}
.job-opportunities__search-button {
  margin-left: 10px;
  padding: 10px 35px;
  background-color: #03afde;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.job-opportunities__search-button.searching {
  padding-right: 45px;
}

.job-opportunities__search-button.searching::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.job-opportunities__search-button.searching::after {
  content: "...";
  position: absolute;
  right: 10px;
  animation: searchDots 1.5s infinite;
  letter-spacing: 2px;
}

@keyframes searchDots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%,
  100% {
    content: "...";
  }
}
@media (max-width: 768px) {
  .job-opportunities__search-button {
    padding: 10px 20px;
  }
  .job-opportunities__search-form {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .job-opportunities__search-input {
    width: 100%;
  }
}

.job-opportunities__table-container {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 3.18px 0 rgba(0, 0, 0, 0.25);
  max-width: 100%;
  overflow: auto;
  max-height: 420px;
}

.job-opportunities__table {
  width: 100%;
  border-collapse: collapse;
}

.job-opportunities__table-header {
  background-color: #ddf8ff;
  text-align: left;
}

.job-opportunities__table-header th {
  padding: 25px;
  white-space: nowrap;
  font-weight: 500;
  color: black;
  font-size: 16px;
}

.job-opportunities__table-row td {
  padding: 15px 25px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  color: #636363;
  font-weight: 500;
  font-size: 16px;
}

.job-opportunities__table-row:last-child td {
  border-bottom: none;
}

.job-opportunities__apply-button {
  background-color: #03afde;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  transition: all 0.2s ease;
}

.job-opportunities__apply-button:hover {
  background-color: #0294bc;
  transform: scale(1.02);
}

.job-opportunities__apply-button:active {
  background-color: #189ff0;
  transform: scale(0.98);
  border: 2px solid #0294bc;
}
.apply_heading_job {
  padding-left: 45px !important;
}

/* JOB overview modal css */
.job-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(192 241 255 / 64%);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.job-modal-container {
  background-color: white;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-height: 96vh;
  overflow-y: auto;
}

.job-modal-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
}

.job-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.job-modal-close {
  background: #03afde;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 36px;
  color: #ffffff;
  height: 33px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Job info section */

.job-info-item {
  margin-bottom: 15px;
}

.job-info-label {
  font-size: 14px;
  font-weight: 600;
  color: #323131;
  display: block;
  margin-bottom: 3px;
}

.job-info-value {
  font-size: 14px;
  color: #636363;
  margin-bottom: 3px;
  font-weight: 600;
}

/* Application form section */
.job-application-section {
  padding: 20px 20px;
  border-top: 1px solid #eee;
}

.job-form-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  color: #333 !important;
  margin-top: 0 !important;
}

.job-form-group {
  margin-bottom: 15px;
  grid-column: span 6;
}
@media (max-width: 700px) {
  .job-form-group {
    grid-column: span 12;
  }
}
.job-form-label {
  display: block;
  font-size: 14px;
  color: #323131;
  font-weight: 500;
  margin-bottom: 6px;
}

.job-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #03afde !important;
  border-radius: 5px;
  font-size: 15px;
  background-color: white;
}
.job-form-input::placeholder {
  opacity: 0.5 !important;
}

.job-form-input:focus {
  outline: none;
  border-color: #03afde;
  box-shadow: 0 0 0 2px rgba(3, 175, 222, 0.1);
}

.job-submit-btn {
  padding: 10px 35px;
  background-color: #03afde;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.job-submit-btn:hover {
  background-color: #0294bc;
}
.errror {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}
/* Toast notification styles */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1100;
  animation: slideIn 0.5s, fadeOut 0.5s 2.5s;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.iti {
  width: 100% !important;
}

.iti input[type="tel"] {
  width: 100% !important;
  box-sizing: border-box;
}

#resume::file-selector-button {
  padding: 8px 16px;
  background: #03afde;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#resume::file-selector-button:hover {
  background: #0287b3;
  transform: scale(1.05); /* Slightly larger on hover */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.iti__search-input {
  border: 1px solid #ddd !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  outline: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  height: 34px !important;
}

.iti__search-input:focus {
  border-color: #03afde !important;
  box-shadow: 0 0 0 2px rgba(3, 175, 222, 0.2) !important;
}
.job-modal-container {
  /* Your existing styles */

  /* Custom scrollbar */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #03afde transparent; /* For Firefox */
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.job-modal-container::-webkit-scrollbar {
  width: 8px; /* Adjust scrollbar width */
  height: 8px; /* For horizontal scrollbar if needed */
}

.job-modal-container::-webkit-scrollbar-track {
  background: transparent; /* Track color */
}

.job-modal-container::-webkit-scrollbar-thumb {
  background-color: #03afde; /* Scrollbar color */
  border-radius: 4px; /* Rounded corners */
  border: 1px solid transparent; /* Optional border */
}

.job-modal-container::-webkit-scrollbar-thumb:hover {
  background-color: #0287b3; /* Darker color on hover */
}

/* Remove scrollbar buttons (arrows) */
.job-modal-container::-webkit-scrollbar-button {
  display: none; /* Hide arrow heads */
}

.job-opportunities__table-container {
  /* Your existing table container styles */

  /* Custom scrollbar - Firefox */
  scrollbar-width: thin;
  scrollbar-color: #03afde transparent;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.job-opportunities__table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px; /* For horizontal scrolling if needed */
}

.job-opportunities__table-container::-webkit-scrollbar-track {
  background: transparent;
}

.job-opportunities__table-container::-webkit-scrollbar-thumb {
  background-color: #03afde;
  border-radius: 4px;
  border: 1px solid transparent;
}

.job-opportunities__table-container::-webkit-scrollbar-thumb:hover {
  background-color: #0287b3;
}

/* Remove scrollbar arrows */
.job-opportunities__table-container::-webkit-scrollbar-button {
  display: none;
}

/* Optional: Add smooth scrolling */
.job-opportunities__table-container {
  overflow-y: auto;
  overflow-x: auto; /* Or 'hidden' if you don't want horizontal scrolling */
  -webkit-overflow-scrolling: touch;
}
.job-opportunities__search-input {
  transition: border 0.3s, box-shadow 0.3s;
}

.job-opportunities__search-input:focus {
  outline: none;
  border: 1px solid #79e2ff;
  box-shadow: 0 0 6px 2px rgba(121, 226, 255, 0.5);
  background-color: #fff;
}

/* .fusion-tb-footer.fusion-footer
  .fusion-footer-widget-area
  .fusion-fullwidth.fullwidth-box {
  z-index: 0 !important;
} */

form.job-modal-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 18px;
}
.full-width-job-form {
  grid-column: span 12;
}
#nameError,
#phoneError,
#emailError,
#experienceError,
#resumeError {
  font-size: 14px;
  font-weight: 500;
}
.iti__selected-dial-code {
  font-size: 16px;
  font-weight: 400;
}
.button_container_job_form {
  display: flex;
  gap: 1rem;
  justify-content: end;
}
.job-submit-btn2 {
  border: 1px solid #03afde;
  color: #03afde;
  font-weight: 700;
  background: transparent;
}
.job-submit-btn2:hover {
  background: #03afde !important;
  color: white !important;
}

/* Custom Tippy.js theme */
.tippy-box[data-theme~='custom'] {
  color: white;
  padding: 3px 7px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.job-form-experience-inputs{
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
.job-form-experience-inputs input{
  display: inline-block;
}

/* new styles */
.job-info-section {
    padding: 25px 10px;
  }
  
  .job-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #03afde !important; 
    border-right: 4px solid #03afde !important;
  }
  
  .job-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .job-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
  }
  
  .job-type-badge {
    background: #03afde !important;
    color: #e8f3f6 !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .job-info-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .job-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .job-info-icon {
    width: 32px;
    height: 32px;
    background: #f0fafd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .job-info-content {
    display: flex;
    flex-direction: column;
  }
  
  .job-info-label {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
  }
  
  .job-info-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 2px;
  }
  
  @media (max-width: 768px) {
    .job-info-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .job-info-title {
      font-size: 20px;
    }
  }

  /* second part update */
  .idkwhy{
    display: flex;

    align-items: center;
    gap: 2rem;
  }