  /* ===== CSS VARIABLES ===== */
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #64748b;
      --accent: #f59e0b;
      --light: #f8fafc;
      --dark: #1e293b;
      --success: #10b981;
      --danger: #ef4444;
      --border-radius: 8px;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --transition: all 0.3s ease;
    }

    /* ===== RESET & BASE STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--light);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: var(--border-radius);
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      text-align: center;
    }

    .btn-primary {
      background-color: var(--primary);
      color: white;
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
    }

    .btn-outline {
      background-color: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: white;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 15px;
    }

    .section-title p {
      color: var(--secondary);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== HEADER ===== */
    header {
      background-color: white;
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--primary);
    }

    .logo-text span {
      color: var(--dark);
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-link {
      font-weight: 500;
      color: var(--dark);
      position: relative;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: var(--transition);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link.active {
      color: var(--primary);
    }

    .nav-link.active::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      cursor: pointer;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .search-box {
      background: white;
      border-radius: var(--border-radius);
      padding: 10px;
      display: flex;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: var(--shadow);
    }

    .search-box input {
      flex: 1;
      border: none;
      padding: 15px;
      font-size: 1rem;
      outline: none;
    }

    .search-box button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 15px 25px;
      border-radius: var(--border-radius);
      cursor: pointer;
      transition: var(--transition);
    }

    .search-box button:hover {
      background: var(--primary-dark);
    }

    /* ===== JOB LISTINGS ===== */
    .job-filters {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .filter-select {
      padding: 10px 15px;
      border-radius: var(--border-radius);
      border: 1px solid #e2e8f0;
      background: white;
      font-family: inherit;
      cursor: pointer;
    }

    .job-listings {
      display: grid;
      gap: 25px;
    }

    .job-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 25px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-left: 4px solid transparent;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      border-left-color: var(--primary);
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .job-title {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .job-company {
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 5px;
    }

    .job-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .job-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--secondary);
      font-size: 0.9rem;
    }

    .job-meta-item i {
      color: var(--primary);
    }

    .job-summary {
      margin-bottom: 20px;
      color: var(--secondary);
    }

    .job-tags {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .job-tag {
      background: #e0f2fe;
      color: var(--primary);
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .job-actions {
      display: flex;
      gap: 10px;
    }

    .job-details {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #e2e8f0;
      display: none;
    }

    .job-details.active {
      display: block;
    }

    .details-section {
      margin-bottom: 20px;
    }

    .details-section h4 {
      margin-bottom: 10px;
      color: var(--dark);
    }

    .details-section ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .details-section li {
      margin-bottom: 5px;
      color: var(--secondary);
    }

    .apply-info {
      background: #f0f9ff;
      padding: 15px;
      border-radius: var(--border-radius);
      margin-top: 20px;
    }

    /* ===== PAGINATION ===== */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 50px;
    }

    .pagination a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 15px;
      border-radius: var(--border-radius);
      background: white;
      color: var(--dark);
      font-weight: 500;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }

    .pagination a:hover {
      background: var(--primary);
      color: white;
    }

    .pagination a.active {
      background: var(--primary);
      color: white;
    }

    .pagination a.disabled {
      opacity: 0.5;
      pointer-events: none;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 20px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      font-size: 1.25rem;
      margin-bottom: 20px;
      color: white;
    }

    .footer-column p {
      color: #cbd5e1;
      margin-bottom: 20px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #cbd5e1;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: white;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
      color: #cbd5e1;
    }

    .contact-info i {
      color: var(--primary);
      margin-top: 3px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #334155;
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section {
        padding: 60px 0;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
      }
      
      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .job-header {
        flex-direction: column;
        gap: 15px;
      }
      
      .job-actions {
        width: 100%;
      }
      
      .job-actions .btn {
        flex: 1;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 80px 0;
      }
      
      .hero h1 {
        font-size: 1.75rem;
      }
      
      .search-box {
        flex-direction: column;
        gap: 10px;
      }
      
      .search-box input, .search-box button {
        width: 100%;
      }
      
      .job-filters {
        flex-direction: column;
      }
      
      .filter-select {
        width: 100%;
      }
    }