/* ===================================
JobVault - Modern Job Portal CSS
================================== */
/* CSS Variables */
:root {
--primary-color: #005F9E;
--primary-dark: #004875;
--primary-light: #0077C7;
--secondary-color: #10b981;
--danger-color: #ef4444;
--warning-color: #f59e0b;
--info-color: #3b82f6;
--dark: #1e293b;
--gray-dark: #334155;
--gray: #64748b;
--gray-light: #cbd5e1;
--gray-lighter: #f1f5f9;
--white: #ffffff;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
--radius: 8px;
--radius-lg: 12px;
--transition: all 0.3s ease;
}
/* Reset & Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--gray-lighter);
  overflow-x: hidden;
  }
  img {
  max-width: 100%;
  height: auto;
  }
  a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  }
  /* Container */
  .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  }
  /* ===================================
  HEADER & NAVIGATION
  ================================== */
  .header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  }
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  }
  .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  }
  .nav-brand i {
  font-size: 1.8rem;
  }
  .nav-brand .logo-img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  }
  .nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  }
  .nav-menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  }
  .nav-menu a:hover,
  .nav-menu a.active {
  color: var(--primary-color);
  background: var(--gray-lighter);
  }
  .nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  }
  /* ===================================
  HERO SECTION
  ================================== */
  .hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  }
  .hero-content {
  max-width: 900px;
  margin: 0 auto;
  }
  .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  }
  .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  }
  .hero-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  }
  .nav-brand .logo-img {
  max-height: 80px !important;
  width: auto;
  object-fit: contain;
}
  .search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  background: var(--gray-lighter);
  border-radius: var(--radius);
  }
  .search-box i {
  color: var(--gray);
  }
  .search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
  color: var(--dark);
  }
  .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  }
  .stat-item {
  text-align: center;
  }
  .stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  }
  .stat-item span {
  opacity: 0.9;
  }
  /* ===================================
  BUTTONS
  ================================== */
  .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  }
  .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  }
  .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  }
  .btn-secondary {
  background: var(--gray);
  color: var(--white);
  }
  .btn-secondary:hover {
  background: var(--gray-dark);
  }
  .btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  }
  .btn-block {
  width: 100%;
  justify-content: center;
  }
  .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  }
  .btn-icon {
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-lighter);
  color: var(--gray-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  }
  .btn-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  }
  .btn-danger {
  background: var(--danger-color);
  color: var(--white);
  }
  .btn-danger:hover {
  background: #dc2626;
  }
  /* ===================================
  SECTIONS
  ================================== */
  .section-header {
  text-align: center;
  margin-bottom: 3rem;
  }
  .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  }
  .section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  }
  .featured-jobs,
  .job-search-section,
  .categories-section {
  padding: 4rem 0;
  }
  .featured-jobs {
  background: var(--white);
  }
  /* ===================================
  JOB CARDS - Updated to show 3 per row & solid blue borders
  ================================== */
  .jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 cards next to each other */
  gap: 1rem; /* Compact spacing */
  width: 100%;
  margin: 0 auto;
  }
  .job-card {
  background: var(--white);
  padding: 1rem; /* Smaller padding for compact feel */
  border-radius: var(--radius); /* Subtle rounding */
  box-shadow: none; /* Flatter look */
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--primary-color); /* Solid blue border on ALL job cards */
  max-width: 100%;
  }
  .job-card:hover {
  transform: translateY(-1px); /* Very subtle hover */
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-dark); /* Remains solid blue family */
  }
  .job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem; /* Tighter spacing */
  }
  .job-company-logo {
  display: none; /* Hide logo to match PNet; use icons instead */
  }
  .job-badge {
  padding: 0.25rem 0.5rem; /* Smaller badge like the yellow "sagen" tag */
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--warning-color); /* Yellow like in image */
  color: var(--white);
  align-self: flex-start;
  }
  .featured-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--white);
  }
  .job-title {
  font-size: 1rem; /* Smaller font for compactness */
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem; /* Tighter margin */
  line-height: 1.3;
  flex: 1;
  }
  .job-company {
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.5rem; /* Tighter */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  }
  .job-company i {
  color: var(--primary-color); /* Briefcase icon color */
  }
  .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* Tighter gap */
  margin-bottom: 0.5rem;
  font-size: 0.8125rem; /* Slightly smaller */
  color: var(--gray);
  }
  .job-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem; /* Tighter icon spacing */
  }
  .job-salary {
  font-size: 0.9375rem; /* Smaller salary font */
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  }
  .job-salary i {
  color: var(--secondary-color); /* Money icon */
  }
  .job-description {
  color: var(--gray);
  margin-bottom: 0.75rem; /* Reduced for smaller card */
  flex: 1;
  font-size: 0.8125rem; /* Smaller description */
  line-height: 1.3; /* Tighter line height */
  }
  .job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-lighter); /* Lighter border */
  font-size: 0.75rem;
  }
  .job-posted {
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  }
  .job-posted i {
  color: var(--gray);
  }
  /* Heart icon in footer */
  .job-heart {
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  }
  .job-heart:hover {
  color: var(--danger-color);
  }
  /* ===================================
  FILTERS
  ================================== */
  .filters-section {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  }
  .filter-group {
  flex: 1;
  min-width: 200px;
  }
  .filter-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  }
  .filter-group select,
  .filter-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
  }
  .filter-group select:focus,
  .filter-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  }
  /* ===================================
  JOBS LIST
  ================================== */
  .jobs-list {
  min-height: 400px;
  }
  .loading {
  text-align: center;
  padding: 4rem;
  font-size: 1.5rem;
  color: var(--gray);
  }
  .loading i {
  margin-right: 10px;
  }
  /* ===================================
  PAGINATION
  ================================== */
  .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  }
  .pagination button,
  .pagination .page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  }
  .pagination button:hover,
  .pagination .page-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  }
  .pagination button.active,
  .pagination .page-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  }
  .pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  }
  /* ===================================
  CATEGORIES
  ================================== */
  .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  }
  .category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  }
  .category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-color);
  color: var(--white);
  }
  .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--gray-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
  }
  .category-card:hover .category-icon {
  background: var(--white);
  color: var(--primary-color);
  }
  .category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  }
  .category-card p {
  color: var(--gray);
  }
  .category-card:hover p {
  color: var(--white);
  }
  /* ===================================
  JOB DETAILS PAGE
  ================================== */
  .job-details-section {
  padding: 2rem 0 4rem;
  }
  .breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
  }
  .breadcrumb a {
  color: var(--primary-color);
  }
  .job-details-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  }
  .job-details-main {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  }
  .job-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-lighter);
  }
  .job-header h1 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
  }
  .job-company-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  }
  .company-logo {
  width: 80px;
  height: 80px;
  background: var(--gray-lighter);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray);
  }
  .job-company-info h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  }
  .content-section {
  margin-bottom: 2rem;
  }
  .content-section h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .text-content {
  line-height: 1.8;
  color: var(--gray-dark);
  }
  .list-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  }
  .list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  }
  .list-item i {
  color: var(--secondary-color);
  margin-top: 4px;
  }
  .info-card {
  background: var(--gray-lighter);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  }
  .info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  }
  .info-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  }
  .info-card p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  }
  /* Sidebar */
  .job-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  }
  .sidebar-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  }
  .sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .apply-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  }
  .apply-card .btn {
  margin-top: 1rem;
  }
  .overview-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  }
  .overview-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  }
  .overview-item i {
  color: var(--primary-color);
  margin-top: 3px;
  }
  .overview-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  }
  .share-buttons {
  display: flex;
  gap: 1rem;
  }
  .share-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  transition: var(--transition);
  }
  .share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  }
  .share-btn.facebook {
  background: #1877f2;
  }
  .share-btn.twitter {
  background: #1da1f2;
  }
  .share-btn.linkedin {
  background: #0a66c2;
  }
  .similar-jobs {
  margin-top: 3rem;
  }
  .similar-jobs h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  /* ===================================
  FOOTER
  ================================== */
  .footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  }
  .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  }
  .footer-section h3,
  .footer-section h4 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .footer-section ul {
  list-style: none;
  }
  .footer-section ul li {
  margin-bottom: 0.5rem;
  }
  .footer-section a {
  color: var(--gray-light);
  transition: var(--transition);
  }
  .footer-section a:hover {
  color: var(--white);
  }
  .footer-section p {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  }
  .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-dark);
  color: var(--gray-light);
  }
  /* ===================================
  ADMIN STYLES
  ================================== */
  .admin-page {
  background: var(--gray-lighter);
  }
  .admin-layout {
  display: flex;
  min-height: 100vh;
  }
  .admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: var(--white);
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  }
  .sidebar-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-dark);
  }
  .sidebar-header i {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  }
  .sidebar-header h2 {
  font-size: 1.5rem;
  }
  .sidebar-nav {
  padding: 1rem 0;
  }
  .sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.5rem;
  color: var(--gray-light);
  transition: var(--transition);
  border-left: 3px solid transparent;
  }
  .sidebar-nav a:hover,
  .sidebar-nav a.active {
  background: var(--gray-dark);
  color: var(--white);
  border-left-color: var(--primary-color);
  }
  .sidebar-nav a i {
  width: 20px;
  }
  .logout-link {
  margin-top: 2rem;
  border-top: 1px solid var(--gray-dark);
  padding-top: 1rem !important;
  color: var(--danger-color) !important;
  }
  .admin-main {
  flex: 1;
  margin-left: 260px;
  }
  .admin-header {
  background: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  .admin-header h1 {
  font-size: 1.75rem;
  color: var(--dark);
  }
  .admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  }
  .admin-user i {
  font-size: 1.5rem;
  }
  .admin-content {
  padding: 2rem;
  }
  .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  }
  .stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  }
  .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  }
  .stat-icon.blue {
  background: var(--primary-color);
  }
  .stat-icon.green {
  background: var(--secondary-color);
  }
  .stat-icon.orange {
  background: var(--warning-color);
  }
  .stat-icon.purple {
  background: #8b5cf6;
  }
  .stat-details h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
  }
  .stat-details p {
  color: var(--gray);
  font-size: 0.9rem;
  }
  .content-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  }
  .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-lighter);
  }
  .card-header h2 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  /* Tables */
  .table-responsive {
  overflow-x: auto;
  }
  .admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  }
  .admin-table thead {
  background: var(--gray-lighter);
  }
  .admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  }
  .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-lighter);
  }
  .admin-table tbody tr:hover {
  background: var(--gray-lighter);
  }
  .action-buttons {
  display: flex;
  gap: 0.5rem;
  }
  .table-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  }
  .table-filters input,
  .table-filters select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  }
  /* Badges */
  .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  }
  .badge-success {
  background: var(--secondary-color);
  color: var(--white);
  }
  .badge-danger {
  background: var(--danger-color);
  color: var(--white);
  }
  .badge-secondary {
  background: var(--gray);
  color: var(--white);
  }
  .badge-info {
  background: var(--info-color);
  color: var(--white);
  }
  .featured-star {
  color: var(--warning-color);
  }
  /* Forms */
  .job-form {
  max-width: 100%;
  }
  .form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-lighter);
  }
  .form-section:last-of-type {
  border-bottom: none;
  }
  .form-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  }
  .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  }
  .form-group {
  margin-bottom: 1.5rem;
  }
  .form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  }
  .form-group textarea {
  resize: vertical;
  min-height: 100px;
  }
  .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  }
  .checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
  }
  .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  }
  /* Alerts */
  .alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  }
  .alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  }
  /* Admin Login Page */
  .admin-login-page {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  }
  .login-container {
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  }
  .login-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  }
  .login-header {
  text-align: center;
  margin-bottom: 2rem;
  }
  .login-header i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  }
  .login-header h1 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  }
  .login-header p {
  color: var(--gray);
  }
  .login-form .form-group {
  margin-bottom: 1.5rem;
  }
  .login-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-lighter);
  }
  .login-footer a {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  }
  .login-footer a:hover {
  text-decoration: underline;
  }
  /* ===================================
  RESPONSIVE DESIGN
  ================================== */
  @media (max-width: 1200px) {
  .jobs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* Keep 3 across on large laptops */
  }
  }
  @media (max-width: 992px) {
  .hero-title {
  font-size: 2.5rem;
  }
  .jobs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 across on tablets */
  width: 100%;
  padding: 0 1rem;
  }
  .job-details-grid {
  grid-template-columns: 1fr;
  }
  .admin-sidebar {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  }
  .admin-main {
  margin-left: 0;
  }
  }
  @media (max-width: 768px) {
  .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  }
  .nav-menu.active {
  right: 0;
  }
  .nav-menu li {
  width: 100%;
  margin-bottom: 0.5rem;
  }
  .nav-menu a {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  }
  .nav-toggle {
  display: flex;
  position: relative;
  z-index: 1000;
  }
  .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  }
  .nav-toggle.active span:nth-child(2) {
  opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  }
  .hero-title {
  font-size: 2rem;
  }
  .hero-search {
  flex-direction: column;
  }
  .hero-stats {
  gap: 1.5rem;
  }
  .filters-section {
  flex-direction: column;
  }
  .filter-group {
  width: 100%;
  }
  .jobs-grid,
  .categories-grid {
  grid-template-columns: 1fr; /* 1 across on phones */
  }
  .footer-content {
  grid-template-columns: 1fr;
  }
  .form-row {
  grid-template-columns: 1fr;
  }
  .stats-grid {
  grid-template-columns: 1fr;
  }
  .admin-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  }
  .card-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  }
  .form-actions {
  flex-direction: column;
  }
  .form-actions .btn {
  width: 100%;
  }
  }
  @media (max-width: 480px) {
  .hero-title {
  font-size: 1.75rem;
  }
  .section-header h2 {
  font-size: 1.75rem;
  }
  .job-card {
  padding: 0.875rem; /* Even smaller on mobile */
  margin: 0 0.5rem;
  }
  .login-box {
  padding: 2rem 1.5rem;
  }
  .admin-content {
  padding: 1rem;
  }
  }
