body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}
.text-warning {
  color: #fd7e14 !important;
}
.sidebar {
  border-radius: 10px;
  padding: 15px;
  background: #e9ecef;
  height: 0;
}
.category-link {
  display: block;
  color: #6c757d;
  text-decoration: none;
  padding: 8px;
  border-radius: 5px;
}
.category-link.active,
.category-link:hover {
  background: #fd7e14;
  color: white;
}
.job-card .card {
  border-radius: 10px;
  transition: box-shadow 0.3s;
}
.job-card .card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header h1 {
  font-size: 2rem;
}
footer {
  border-top: 1px solid #dee2e6;
  background: #d3d3d3;
}
.search {
  background: #fd7e14;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
}
.btn {
  border-radius: 25px;
}
.card {
  border: none;
  background: white;
}

/* Slim Fixed Header */
header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

header .container {
  padding: 0.6rem 1rem !important; /* Slim padding */
}

/* Body padding to avoid overlap */
body {
  padding-top: 68px !important; /* Adjust if needed */
}

/* Logo - Smaller & Slim */
.logo {
  width: 240px; /* Reduced width */
  height: 48px; /* Reduced height */
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    width: 200px;
    height: 42px;
  }
  body {
    padding-top: 64px !important;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 160px;
    height: 36px;
  }
  body {
    padding-top: 58px !important;
  }
}

/* Slim Buttons */
.btn-post,
.btn-contact {
  border: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.1rem !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-post {
  background: #fd7e14;
  color: white;
}

.btn-contact {
  background: #6c757d;
  color: white;
}

.btn-post:hover,
.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Hamburger */
.hamburger {
  border: none !important;
  background: transparent;
  color: #343a40;
  padding: 0.4rem;
  font-size: 1.3rem;
}

.hamburger:hover {
  color: #fd7e14;
}

/* Top-right Logout Button */
.position-fixed .btn-danger.rounded-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.position-fixed .btn-danger.rounded-circle:hover {
  transform: scale(1.1);
  background-color: #c82333;
}

/* Mobile Menu */
#mobile-menu {
  background: #fff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-info {
  margin-bottom: 10px; /* Space below job info */
}

.job-type,
.job-location,
.closing-date {
  margin-bottom: 5px; /* Space between lines */
}

.job-location {
  overflow: hidden;
  text-overflow: ellipsis; /* Add ellipsis for long text */
  white-space: nowrap; /* Prevent wrapping */
  max-width: 100%; /* Ensure it fits within the card */
}

/* New styles for bold title and clickable card */
.job-title {
  font-weight: bold; /* Bold font for job title */
}

.card-link {
  text-decoration: none; /* Remove underline from card link */
  color: inherit; /* Inherit text color */
  display: block; /* Make the entire card area clickable */
}

.card-link .card {
  transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
}

.card-link:hover .card {
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Ensure the View Details button remains distinct */
.card-link .btn {
  position: relative;
  z-index: 1; /* Ensure button is clickable over the card link */

  .card-link a.btn {
    text-decoration: none !important; /* Forcefully remove underline */
    color: inherit; /* Ensure text color matches the button */
  }
}
.highlight {
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-1 {
  background: #bbbbbb;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #48bb78;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.contact-item {
  text-align: center;
  margin: 10px;
  flex: 1;
  min-width: 200px;
}
.contact-item h3 {
  color: #fff;
  margin: 0;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.price-card {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.price-card h3 {
  color: #e53e3e;
}
.price-card .discount {
  color: #38a169;
  font-size: 1.5em;
  font-weight: bold;
}
.steps {
  background: #f7fafc;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.steps ol {
  padding-left: 20px;
}
.steps li {
  margin: 10px 0;
  padding: 10px;
  background: white;
  border-left: 4px solid #4299e1;
  border-radius: 5px;
}
