/*--------------------------------------------------------------
# Career Section
--------------------------------------------------------------*/
/* Job Listing Card */

/* Add space between job cards horizontally & vertically */
#job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between job cards */
  justify-content: center; /* Ensure even spacing */
}

.job-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  /* background: #fff;*/
    background-color: #e6f7ff; /* light sky blue */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Adjust the space as needed */
}

/* Job Title */
.job-title {
  font-family: var(--nav-font); /* Match existing stylish font */
  font-size: 18px; /* Keep it consistent with other h4 headings */
  font-weight: bold;
  color: var(--heading-color); /* Match existing h4 text color */
  margin-bottom: 10px; /* Add spacing below title */
}

/* Experience and Skills */
/* Apply stylish text to job descriptions */
.job-experience,
.job-skills,
.job-description {
  font-family: var(--nav-font);
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

/* Ensure strong text follows the same styling */
.job-experience strong,
.job-skills strong,
.job-description strong {
  font-weight: 600;
  color: var(--heading-color);
}


/* Apply Button */
.apply-btn {
  width: 100%;
  text-align: center;
}

/* Job Details Section */
.job-details {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hide job details initially */
.d-none {
  display: none;
}

/* Add space below the top back button */
.top-back-btn {
  margin-bottom: 20px; /* Adjust as needed */
}

/* Apply Button Styling */
.apply-btn {
  width: auto; /* Reduce width to fit content */
  padding: 8px 15px; /* Adjust padding */
  font-size: 16px;
  font-weight: 600;
  color: #fff !important; /* Set text color to white */
  background-color: var(--heading-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px; /* Space between text and arrow */
  border: none;
}

/* Apply Button Arrow Icon */
.apply-btn i {
  color: #fff; /* Set arrow color to white */
}

/* Apply Button Hover Effect */
.apply-btn:hover {
  background-color: darkblue !important; /* Slightly darker blue on hover */
  text-decoration: none;
}