:root {
  --primary-color: #5473f2;
  --accent-color: #3f5de8;
  --dark-color: #3b63d1;
  --bg-color: #f7f8fa;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --primary-font: "Inter", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.5;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.section {
  padding: 4rem 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: rgba(84, 115, 242, 0.1);
}

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

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.company-openings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.company-opening-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.company-opening-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.company-opening-logo img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.company-opening-content h3 {
  margin: 0;
  font-size: 1.05rem;
}

.company-opening-content p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.role-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 780px;
  margin: 1.2rem auto 0;
}

.role-pill {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.role-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.download-app-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.download-app-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 42, 68, 0.85);
  /* Dark overlay */
  z-index: 1;
}

.download-app-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.download-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.download-app-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.download-app-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #d1d8e0;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.download-app-image {
  text-align: center;
}

.download-app-image .mobile-mockup {
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
  /* Slight rounding for generic mobile look */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: floatMobile 4s ease-in-out infinite;
  display: inline-block;
}

@keyframes floatMobile {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .company-openings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-app-content {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .company-openings-grid {
    grid-template-columns: 1fr;
  }
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  max-height: 110px;
  width: auto;
  display: inline-block;
}

.logo-img-large {
  max-height: 140px;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  margin-left: 0.25rem;
}

.logo .logo-text {
  display: inline-block;
  vertical-align: middle;
}

.logo .logo-text {
  display: inline-block;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Transparent Navbar state */
.navbar-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
  position: absolute;
  width: 100%;
}

/* 1. Hero Section */
.hero-section {
  padding: 8rem 0 4rem;
  /* Increased top padding to accommodate the transparent absolute navbar */
  background-color: var(--white);
  background-image: url('../images/header1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background-color: #e6f6f1;
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hero-content .subtext {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.search-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.search-input-group i {
  color: var(--text-muted);
}

.search-input-group input,
.search-input-group select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
}

.divider {
  width: 1px;
  height: 30px;
  background-color: var(--border-color);
}

.search-btn {
  padding: 0.75rem 2rem;
}

.trust-badges,
.trusted-companies {
  margin-bottom: 1.5rem;
}

.small-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #9ca3af;
}

.govt-logos,
.company-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.logo-placeholder {
  font-weight: bold;
  color: #555;
  background: #eee;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.company-logos .logo-text {
  font-weight: 600;
  color: #4b5563;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

/* Featured Jobs Slider */
.featured-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.featured-slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.featured-slide {
  min-width: calc(100% / 3 - 0.66rem);
  box-sizing: border-box;
}

.company-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.company-logo img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.company-name {
  color: #6b7280;
  margin: 0.4rem 0 0.9rem;
  font-size: 0.93rem;
}

.company-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.slider-btn {
  width: 100%;
  text-decoration: none;
  font-weight: 600;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 34px;
  text-align: center;
  color: var(--primary-color);
  z-index: 1;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

@media (max-width: 1024px) {
  .featured-slide {
    min-width: calc(100% / 2 - 0.5rem);
  }
}

@media (max-width: 768px) {
  .featured-slide {
    min-width: 100%;
  }

  .slider-nav {
    display: none;
  }
}

.image-placeholder-large {
  width: 400px;
  height: 500px;
  background-color: #e5e7eb;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* 2. AI Job Prep */
.ai-prep-section {
  background: linear-gradient(135deg, #e6f6f1 0%, #d1fae5 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ai-prep-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.ai-cards {
  position: relative;
  height: 250px;
}

.p-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 300px;
  left: 50px;
  transition: transform 0.3s ease;
}

.p-card-1 {
  z-index: 3;
  top: 0;
}

.p-card-2 {
  z-index: 2;
  top: 20px;
  left: 70px;
  opacity: 0.6;
  transform: scale(0.95);
}

.p-card-3 {
  z-index: 1;
  top: 40px;
  left: 90px;
  opacity: 0.3;
  transform: scale(0.9);
}

.card-header h4 {
  margin-bottom: 0.25rem;
}

.card-header .company-name {
  display: block;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* 3. Popular Categories */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(84, 115, 242, 0.15), rgba(59, 99, 209, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
  min-width: 0;
}

.category-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.category-info p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.category-arrow {
  color: var(--primary-color);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* 4. Top Companies */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.company-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.company-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.company-logo {
  width: 80px;
  height: 80px;
  background-color: #f3f4f6;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-color);
  overflow: hidden;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.view-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* 5. Trending Job Roles */
.pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #f0fdf9;
}

.pill i {
  color: var(--primary-color);
}

.pill .count {
  background: #e5e7eb;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 10px;
}

/* 6. Testimonials */
.testimonials {
  padding: 0;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.testimonial-intro {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-intro .quote-icon {
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-intro .stars {
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.testimonial-intro p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-cards {
  padding: 3rem;
  display: flex;
  gap: 1.5rem;
  background: #f9fafb;
  overflow-x: auto;
}

.t-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  min-width: 250px;
  box-shadow: var(--shadow-sm);
}

.t-card .profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.t-card .avatar {
  width: 40px;
  height: 40px;
  background: #e0e7ff;
  color: #4338ca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.t-card .review {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-style: italic;
}

/* 7. Download App */
.download-section {
  background-color: #eef2ff;
  padding: 4rem 0;
}

.download-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.download-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-store {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.qr-code {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
}

.download-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 550px;
  background: #111;
  border-radius: 36px;
  padding: 10px;
  border: 4px solid #333;
}

.screen-content {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screen-content i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* About Us Page */
.about-banner {
  background: linear-gradient(rgb(255 255 255 / 76%), rgb(36 106 255));
  padding: 6rem 0 4rem;
  color: #1f2a44;
}

.about-banner h1 {
  color: #1f2a44;
}

.about-banner p {
  color: #52688a;
}

.about-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-text .btn {
  padding: 0.75rem 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.about-stats {
  background: var(--white);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--primary-color);
  color: #fff;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-card h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.about-mission {
  padding: 3rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-text ul {
  list-style: disc;
  margin-left: 1rem;
  margin-top: 1rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.about-advantages {
  padding: 3rem 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  text-align: center;
}

.advantage-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
}

.advantage-card h4 {
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {

  .about-banner-grid,
  .mission-grid,
  .advantages-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-mission .mission-cards {
    grid-template-columns: 1fr;
  }
}

/* 8. Employer Section */
.employer-section .container {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
  overflow: hidden;
}

.employer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.img-placeholder-rect {
  width: 100%;
  height: 300px;
  background: #e5e7eb;
  border-radius: var(--radius-lg);
}

/* 9. Main Footer */
.main-footer {
  background: #5473f2;
  padding: 4rem 0;
  border-top: 1px solid #4470d1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #ffffff;
}

.footer-col ul li a:hover {
  color: #dbe4ff;
  text-decoration: underline;
}

/* 10. Final Footer */
.final-footer {
  background: #111827;
  color: #9ca3af;
  padding: 1.5rem 0;
}

.final-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-side,
.app-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-text-sm {
  color: var(--white);
  font-weight: 700;
}

.social-icons a {
  color: #9ca3af;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.social-icons a:hover {
  color: var(--white);
}

.btn-xs {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  background: #374151;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .navbar.mobile-menu-open .nav-container {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0 1.25rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
  }

  .navbar {
    transition: background 0.3s ease;
  }

  .navbar.mobile-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff !important;
  }

  .navbar.mobile-menu-open .nav-links,
  .navbar.mobile-menu-open .nav-actions {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: none;
  }

  .navbar.mobile-menu-open .nav-links {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar.mobile-menu-open .nav-links a,
  .navbar.mobile-menu-open .nav-actions a,
  .navbar.mobile-menu-open .nav-actions button,
  .navbar.mobile-menu-open .nav-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .navbar.mobile-menu-open .nav-links a {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .navbar.mobile-menu-open .mobile-toggle {
    transform: rotate(180deg);
  }

  .logo-img {
    max-height: 80px;
  }

  .hero-container,
  .ai-prep-container,
  .download-container,
  .employer-card,
  .footer-grid,
  .final-footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .search-box {
    flex-direction: column;
  }

  .divider {
    display: none;
  }

  .search-input-group {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 10px;
  }

  .search-btn {
    width: 100%;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .final-footer-container {
    flex-direction: column;
    gap: 1rem;
  }

  .social-side,
  .app-side {
    flex-direction: column;
  }

  .p-card {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }

  .p-card-2,
  .p-card-3 {
    display: none;
  }
}

/* Login / Auth page */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8e6fe 0%, #f6f2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  width: min(520px, 100%);
}

.auth-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}

.auth-logo {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.auth-logo-inner {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.auth-logo-inner i {
  font-size: 1.75rem;
  color: #4f46e5;
}

.auth-header {
  margin-top: 2.5rem;
  text-align: center;
}

.auth-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.auth-header p {
  color: rgba(17, 24, 39, 0.65);
  margin-bottom: 1.75rem;
}

.auth-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.auth-form label {
  font-size: 0.95rem;
  color: rgba(17, 24, 39, 0.7);
}

.auth-form input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-form input:focus {
  border-color: rgba(99, 102, 241, 0.7);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

.btn.w-full {
  width: 100%;
}

@media (max-width: 400px) {
  .auth-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .auth-logo-inner {
    width: 60px;
    height: 60px;
  }
}

/* Admin login modal */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 50;
}

/* Admin Access form */
.admin-access-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.25rem;
}

.admin-access-container {
  width: min(420px, 100%);
}

.admin-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.admin-back:hover {
  background: rgba(255, 255, 255, 0.25);
}

.admin-access-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem 2.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.admin-access-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.admin-access-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.18);
  display: grid;
  place-items: center;
}

.admin-access-icon i {
  font-size: 1.4rem;
  color: #4f46e5;
}

.admin-access-header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.admin-access-form {
  display: grid;
  gap: 1.25rem;
}

.admin-access-form label {
  font-weight: 600;
  color: rgba(17, 24, 39, 0.85);
}

.admin-access-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.admin-access-form input:focus {
  border-color: rgba(99, 102, 241, 0.8);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

@media (max-width: 420px) {
  .admin-access-page {
    padding: 1.75rem 1rem;
  }

  .admin-access-card {
    padding: 2rem 1.5rem 2.25rem;
  }
}

/* Upload Documents page */
.upload-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  font-family: var(--primary-font);
}

.upload-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 840px;
  width: 100%;
  margin: 4rem auto 2rem;
  padding: 0 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--dark-color);
}

.upload-title h1 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 700;
}

.upload-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.upload-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1.5rem 5rem;
  flex: 1;
}

.upload-card {
  width: min(720px, 100%);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(31, 122, 99, 0.1);
  padding: 3rem;
  border-top: 5px solid var(--primary-color);
}

.upload-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.upload-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6f6f1;
  display: grid;
  place-items: center;
}

.upload-card-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.upload-card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.upload-card-header p {
  color: var(--text-muted);
}

.upload-form {
  display: grid;
  gap: 1.5rem;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.required {
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: bold;
}

.optional {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.file-drop {
  position: relative;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-color);
}

.file-drop.dragover,
.file-drop:hover {
  border-color: var(--primary-color);
  background: #f0fdf9;
}

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.file-drop-content i {
  font-size: 2rem;
  color: var(--primary-color);
}

.file-drop-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.file-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.file-name {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  background: #e6f6f1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  display: inline-block;
}

@media (max-width: 520px) {
  .upload-card {
    padding: 2rem 1.5rem;
  }

  .upload-header {
    align-items: flex-start;
    gap: 1rem;
  }
}

.modal-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal-content {
  position: relative;
  width: min(430px, 100%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 2.25rem 2.25rem 1.5rem;
  z-index: 10;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: rgba(17, 24, 39, 0.65);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: rgba(17, 24, 39, 0.9);
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  color: rgba(17, 24, 39, 0.65);
  margin-bottom: 1.75rem;
}

/* --- ABOUT US PAGE STYLES --- */
.about-hero-section {
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgb(255 255 255 / 76%), rgb(36 106 255)), url('https://placehold.co/1200x500/1f7a63/ffffff?text=Indian+Workforce');
  background-size: cover;
  background-position: center;
}

.about-hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-vision {
  text-align: center;
  padding: 4rem 0;
  background: var(--white);
}

.vision-subheading {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 1rem 0;
  text-transform: uppercase;
}

.vision-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.timeline-section {
  padding: 4rem 0;
  background: var(--bg-color);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.impact-section {
  padding: 4rem 0;
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  text-align: center;
  padding: 2.5rem;
  background: #f0fdf9;
  border-radius: var(--radius-xl);
  color: var(--primary-color);
}

.impact-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.impact-card p {
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 0.5rem;
}

.founders-section {
  padding: 4rem 0;
  background: var(--bg-color);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-info h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.founder-full {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0 auto;
}

.investors-section {
  padding: 4rem 0;
  background: var(--white);
}

.investors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.investor-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.investor-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.team-gallery-section {
  padding: 4rem 0;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 100%;
  min-height: 250px;
}

.media-section,
.milestones-section {
  padding: 4rem 0;
  background: var(--bg-color);
}

.media-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.media-logo {
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
}

.media-logo:hover {
  opacity: 1;
}

.milestones-section {
  background: var(--white);
}

.milestones-list {
  max-width: 800px;
  margin: 2rem auto 0;
  list-style: none;
}

.milestones-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.milestones-list li i {
  color: var(--primary-color);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid,
  .founders-grid,
  .investors-grid,
  .team-gallery {
    grid-template-columns: 1fr;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-full {
    grid-column: span 1;
  }

  .about-hero-content h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}



/* ========================================= */
/* --- CONTACT US PAGE STYLES --- */
/* ========================================= */

.contact-section {
  padding: 3rem 1rem;
  background-color: var(--white);
}

.contact-card {
  background-color: var(--bg-color);
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card .company-name {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-card .company-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-details {
  text-align: left;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-row i {
  color: var(--primary-color);
  margin-top: 2px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-row a {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.contact-row a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Link Directory Container */
.directory-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 20px 4rem;
  background-color: var(--bg-color);
}

.dir-group {
  margin-bottom: 2.5rem;
}

.dir-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* 3 Column layout for the big lists */
.col-3 {
  column-count: 3;
  column-gap: 2rem;
}

.dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dir-list li {
  margin-bottom: 0.9rem;
  break-inside: avoid;
}

.dir-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.dir-list a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Grid blocks for Side-by-Side categories */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .col-3 {
    column-count: 2;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .col-3 {
    column-count: 1;
  }
}

/* ========================================= */
/* --- DEPARTMENTS / JOBS PAGE STYLES --- */
/* ========================================= */
.departments-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.dept-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dept-header h1 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.dept-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  color: var(--text-dark);
  text-decoration: none;
}

.dept-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--primary-color);
}

.dept-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.25rem;
}

/* --- ALL JOBS PAGE STYLES --- */
.all-jobs-page {
  padding: 4rem 0;
  background: var(--bg-color);
}

.jobs-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 800px;
}

.search-field {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  flex: 1;
}

.search-field i {
  color: var(--text-muted);
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
}

.filters {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 7.3rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 1rem;
  height: fit-content;
}

.filters h2 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--primary-color);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.job-feed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.jobs-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jobs-header h1 {
  font-size: 2rem;
  color: var(--text-dark);
}

.jobs-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  gap: 1.5rem;
}

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

.job-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-card-title h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-dark);
}

.job-tag {
  background: rgba(31, 122, 99, 0.15);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card-actions {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-section {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.faq-section h2 {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.faq-item {
  border-top: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding-bottom: 0;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  padding-bottom: 1rem;
}

.faq-question.active+.faq-answer {
  max-height: 200px;
}

.testimonials-banner {
  background: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 0;
  border-radius: var(--radius-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.testimonials-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonials-intro p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-card h4 {
  margin: 0 0 0.25rem;
  color: var(--white);
}

.rating {
  color: #fbbf24;
  margin: 0 0 0.75rem;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-jobs .footer-col {
  flex: 1;
}

@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    top: auto;
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar button {
    width: 100%;
  }
}

/* Jobs page navbar spacing */
.jobs-navbar {
  padding-bottom: 3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  background-color: #20b858;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

\n

/* Make buttons with links inherit button styling without inline styling */
\n.btn a,
.btn a:visited {
  \n color: inherit;
  \n text-decoration: none;
  \n display: inline-flex;
  \n align-items: center;
  \n justify-content: center;
  \n width: 100%;
  \n height: 100%;
  \n
}

\n