:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #2c3e50;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
  }
  .btn-primary{
    background-color: #FF4602;
    border-color: #FF4602;
  }
  .btn-primary:hover{
    background-color: var(--primary-color);
  }
  
  /* Header */
  .header {
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }
  
  .cta-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler i {
    font-size: 1.5rem;
    color: var(--text-color);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Modernized hero with better spacing and visual elements */
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
  }
  
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  .search-bar {
    margin-bottom: 3rem;
  }
  
  .search-input-group {
    position: relative;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
  }
  
  .search-input {
    border: none;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    flex: 1;
    background: transparent;
  }
  
  .search-input:focus {
    outline: none;
    box-shadow: none;
  }
  
  .search-btn {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  /* Added hero stats for modern look */
  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .hero-stats .stat-item {
    text-align: center;
  }
  
  .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
  }
  
  .hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  /* Enhanced hero image with floating elements */
  .hero-image {
    position: relative;
  }
  
  .hero-image-wrapper {
    position: relative;
  }
  
  .hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  
  .floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    animation: float 3s ease-in-out infinite;
  }
  
  .floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .floating-card strong {
    display: block;
    font-weight: 700;
    color: var(--text-color);
  }
  
  .floating-card span {
    font-size: 0.8rem;
    color: var(--text-light);
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
  }
  
  /* Featured Opportunities */
  .featured-opportunities {
    padding: 5rem 0;
  }
  
  /* Job Cards - Enhanced */
.job-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
  background-color: #fafafa;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border: 2px solid var(--border-color);
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-logo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b6914;
}

.type-badge {
  background: var(--primary-color);
  color: white;
}

.job-card-content {
  flex: 1;
}

.job-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.job-title {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.job-card:hover .job-title {
  color: var(--primary-color);
}

.company-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.job-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-meta i {
  color: var(--primary-color);
  font-size: 1rem;
}

.job-excerpt {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.job-skills {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.skill-tag {
  background: var(--background-light);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
}

.job-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.job-time {
  color: var(--text-light);
  font-size: 0.85rem;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}
  
  .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Job card button styles */
.job-card .btn {
    position: relative;
    z-index: 10;
}

.job-card .btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}
  
  /* Recent Postings */
  .recent-postings {
    margin-top: 4rem;
  }
  
  .recent-postings h3 {
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .job-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .job-list-item:hover {
    transform: translateX(5px);
  }
  
  .job-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .job-info p {
    color: var(--text-light);
    margin: 0;
  }
  
  .job-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .job-time {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* Categories */
  .categories {
    padding: 5rem 0;
    background: var(--background-light);
  }
  
  .category-tile {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .category-icon i {
    font-size: 2rem;
    color: var(--white);
  }
  
  .category-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .category-tile p {
    color: var(--text-light);
    margin: 0;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 5rem 0;
  }
  
  .testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }
  
  /* Added testimonial rating stars */
  .testimonial-rating {
    margin-bottom: 1rem;
  }
  
  .testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 0.25rem;
  }
  
  .testimonial-content {
    margin-bottom: 2rem;
  }
  
  .testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* CTA Banner */
  /* Modernized CTA with gradient and better visual appeal */
  .cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 3rem 3rem 0 0 ;
  }
  
  .cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
      repeat;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
  }
  
  .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
  }
  
  /* Footer */
  /* Complete modern footer redesign with gradient background and improved layout */
  .footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }
  
  .footer > .container {
    position: relative;
    z-index: 2;
  }
  
  .footer-main {
    margin-bottom: 3rem;
  }
  
  .footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-brand p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #e8eaed;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  
  .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  }
  
  .footer h4 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-radius: 2px;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: #e8eaed;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .footer-links a::before {
    content: "→";
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .footer-links a:hover::before {
    opacity: 1;
  }
  
  /* Modern newsletter form with glassmorphism effect */
  .newsletter-form {
    margin-top: 2rem;
  }
  
  .newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-form .form-control {
    border: none;
    background: transparent;
    color: var(--white);
    padding: 1rem 1.5rem;
    flex: 1;
    font-size: 1rem;
  }
  
  .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
  }
  
  .newsletter-form .btn {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    margin: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  
  .newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  }
  
  /* Modern footer bottom with improved styling */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
  }
  
  .copyright {
    opacity: 0.8;
    margin: 0;
    font-size: 1rem;
    color: #e8eaed;
  }
  
  .footer-legal {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
  }
  
  .footer-legal a {
    color: #e8eaed;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
  }
  
  /* Jobs Page Specific Styles */
  .jobs-header {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 3rem 0;
  }
  
  .jobs-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .jobs-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  /* Enhanced Search and Filters */
.jobs-search {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.search-field {
  position: relative;
}

.search-field i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  z-index: 2;
}

.search-field .form-control {
  padding-left: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.search-field .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Filter Sidebar */
.filters-sidebar {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.filter-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-section h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.filter-option:hover {
  background: var(--background-light);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* No Jobs Found */
.no-jobs-found {
  background: var(--background-light);
  border-radius: 20px;
  padding: 3rem;
}

.no-jobs-found i {
  color: var(--text-light);
}

/* Pagination */
.pagination .page-link {
  color: var(--primary-color);
  border-color: var(--border-color);
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Featured Job Banner */
  .featured-job-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
  }
  
  .company-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--white);
    padding: 0.5rem;
  }
  
  .featured-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .featured-job-banner h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .featured-job-banner .company-name {
    opacity: 0.9;
    margin-bottom: 1rem;
  }
  
  .job-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .job-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .posted-time {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
  
  /* Job Items */
  .jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .job-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .job-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  
  .job-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .company-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .job-basic-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .job-basic-info .company-name {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
  }
  
  .save-job {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .save-job:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .save-job.saved {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .job-type-badge {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .job-type-badge.remote {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .job-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .job-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .tag {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .job-footer .posted-time {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* List Style Job Items */
  .job-item.list-style {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .job-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
  }
  
  .job-meta-inline {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .job-actions-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  /* Pagination */
  .pagination-nav {
    margin-top: 3rem;
  }
  
  .pagination .page-link {
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
  }
  
  .pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
  }
  
  .pagination .page-link:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  /* Job Details Page Specific Styles */
  .job-details-header {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 2rem 0 3rem;
  }
  
  .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
  }
  
  .breadcrumb-item a:hover {
    color: var(--primary-color);
  }
  
  .breadcrumb-item.active {
    color: var(--text-color);
  }
  
  .job-header-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
  }
  
  .company-logo-xl {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
  }
  
  .job-badges {
    margin-bottom: 1rem;
  }
  
  .job-badges .badge {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
  }
  
  .featured-badge {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .urgent-badge {
    background: #dc3545;
    color: var(--white);
  }
  
  .job-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .company-info {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
  }
  
  .company-rating {
    color: var(--primary-color);
  }
  
  .company-rating i {
    color: #ffc107;
  }
  
  .job-key-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .job-key-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
  }
  
  .job-key-info i {
    color: var(--primary-color);
  }
  
  .apply-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .save-job-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .save-job-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .save-job-btn.saved {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
  }
  
  /* Job Details Content */
  .job-details-content {
    padding: 3rem 0;
  }
  
  .job-description-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
  }
  
  .job-description-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
  }
  
  .job-description-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-color);
  }
  
  .job-description-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .job-description-card ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
  }
  
  .job-description-card li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
  }
  
  .benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
  }
  
  .benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
  }
  
  .benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
  }
  
  .job-tags-section {
    margin-top: 3rem;
  }
  
  /* Sidebar Cards */
  .company-info-card,
  .similar-jobs-card,
  .quick-apply-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
  }
  
  .company-info-card h3,
  .similar-jobs-card h3,
  .quick-apply-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
  }
  
  .company-stats {
    margin-bottom: 2rem;
  }
  
  .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .stat i {
    font-size: 1.25rem;
    color: var(--primary-color);
  }
  
  .stat strong {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
  }
  
  .stat span {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .company-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .similar-job-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .similar-job-item:last-child {
    border-bottom: none;
  }
  
  .similar-job-item:hover {
    background: var(--background-light);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .similar-job-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
  }
  
  .similar-job-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .similar-job-item .salary {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  /* Application Modal */
  .application-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
  }
  
  .application-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  .application-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
  }
  
  .file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--background-light);
  }
  
  .file-upload-area:hover,
  .file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
  }
  
  .file-upload-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .file-upload-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
  }
  
  .upload-link {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
  }
  
  .file-upload-content small {
    color: var(--text-light);
  }
  
  .uploaded-file {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
  }
  
  .uploaded-file i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .uploaded-file .file-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
  }
  
  .remove-file {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .remove-file:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
  }
  
  .form-check-label {
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .form-check-label a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .filters-sidebar {
      position: static;
      margin-bottom: 2rem;
    }
  
    .jobs-header-controls {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .featured-job-banner .row {
      text-align: center;
    }
  
    .job-highlights {
      justify-content: center;
    }
  
    .job-header-content .row {
      text-align: center;
    }
  
    .job-key-info {
      justify-content: center;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .company-links {
      justify-content: center;
    }
  
    .hero-stats {
      justify-content: center;
    }
  
    .jobs-search .row {
      gap: 1rem;
    }
  
    .job-item-header {
      flex-direction: column;
      gap: 1rem;
    }
  
    .job-meta {
      gap: 1rem;
    }
  
    .job-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .job-item.list-style {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .job-item-content {
      width: 100%;
    }
  
    .job-meta-inline {
      margin-left: 0;
      margin-top: 0.5rem;
    }
  
    .job-actions-inline {
      width: 100%;
      justify-content: flex-end;
    }
  
    .job-actions {
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
    }
  
    .job-list-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .cta-banner .row {
      text-align: center;
    }
  
    .cta-banner .col-lg-4 {
      margin-top: 2rem;
    }
  
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .job-title {
      font-size: 1.5rem;
    }
  
    .job-description-card {
      padding: 2rem;
    }
  
    .job-key-info {
      gap: 1rem;
    }
  
    .apply-btn {
      font-size: 1rem;
    }
  
    .company-info-card,
    .similar-jobs-card,
    .quick-apply-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .search-input-group {
      flex-direction: column;
      border-radius: 15px;
    }
  
    .search-input {
      border-radius: 15px 15px 0 0;
    }
  
    .search-btn {
      border-radius: 0 0 15px 15px;
    }
  
    .hero-stats {
      gap: 1rem;
    }
  
    .jobs-search .row {
      gap: 1rem;
    }
  
    .job-item-header {
      flex-direction: column;
      gap: 1rem;
    }
  
    .job-meta {
      gap: 1rem;
    }
  
    .job-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .job-item.list-style {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .job-item-content {
      width: 100%;
    }
  
    .job-meta-inline {
      margin-left: 0;
      margin-top: 0.5rem;
    }
  
    .job-actions-inline {
      width: 100%;
      justify-content: flex-end;
    }
  
    .job-actions {
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
    }
  
    .job-list-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .cta-banner .row {
      text-align: center;
    }
  
    .cta-banner .col-lg-4 {
      margin-top: 2rem;
    }
  
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .job-title {
      font-size: 1.5rem;
    }
  
    .job-description-card {
      padding: 2rem;
    }
  
    .job-key-info {
      gap: 1rem;
    }
  
    .apply-btn {
      font-size: 1rem;
    }
  
    .company-info-card,
    .similar-jobs-card,
    .quick-apply-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .cta-banner h2 {
      font-size: 2rem;
    }
  
    .job-details-header {
      padding: 1rem 0 2rem;
    }
  
    .job-header-content {
      padding: 1.5rem;
    }
  
    .job-title {
      font-size: 1.25rem;
    }
  
    .job-description-card h2 {
      font-size: 1.5rem;
    }
  
    .benefits-grid {
      gap: 1rem;
    }
  
    .benefit-item {
      padding: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .job-meta {
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .job-actions {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
    }
  
    .action-buttons {
      justify-content: center;
    }
  
    .jobs-search {
      padding: 1.5rem;
    }
  
    .search-field .form-control {
      margin-bottom: 1rem;
    }
  }
  