/* General Section Styling */
.section {
  padding: var(--spacing-xxl) 0;
}

/* Hero Section - 2025 Futuristic Design */
.hero-section {
  height: auto;
  min-height: calc(80vh - var(--navbar-height, 70px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
  padding-top: calc(var(--navbar-height, 70px) + var(--spacing-xl) + 20px);
  background-color: var(--white);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
  align-items: start;
}

.hero-content {
  position: relative;
  padding: var(--spacing-xl);
  z-index: 3;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); /* Capped at 4.5rem for proportionality */
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: black;
  font-family: var(--font-heading, 'Inter'), sans-serif;
  animation: textGlow 3s infinite alternate;
}

.hero-title {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(107, 72, 255, 0.3);
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.65rem);
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
  opacity: 0.9;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 0.75rem;
  border: 1px solid rgba(107, 72, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.search-bar:hover {
  box-shadow: 0 8px 30px rgba(107, 72, 255, 0.25);
  transform: scale(1.02);
}

.search-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(107, 72, 255, 0.1), transparent);
  animation: scanPulse 2s infinite;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--dark);
  font-size: clamp(0.875rem, 2vw, 1rem);
  outline: none;
}

.search-input:focus {
  outline: 3px solid var(--accent); /* Stronger focus state */
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.search-btn {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent)); /* Aligned with btn-primary */
  border: none;
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.search-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 221, 235, 0.4);
}

.search-btn.loading::after {
  content: 'Searching...'; /* Loading state feedback */
  position: absolute;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}

.hero-visuals {
  position: relative;
  perspective: 1000px;
}

.hero-hologram {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  animation: hologramShift 8s infinite ease-in-out;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.element-sphere {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 15%;
  background: radial-gradient(circle, rgba(107, 72, 255, 0.2), transparent);
  animation: floatSphere 6s infinite ease-in-out;
}

.element-pulse {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  background: rgba(167, 139, 250, 0.15);
  animation: pulseGlow 4s infinite ease-in-out;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: 1;
  pointer-events: none;
}

/* Stats Cluster - Futuristic 2025 Design */
.stats-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 1200px;
  margin-top: var(--spacing-lg);
  position: relative;
  z-index: 10;
}

.stat-orb {
  position: relative;
  perspective: 1000px;
  height: 100px;
  width: 100px;
  margin: 0;
}

.stat-orb-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(107, 72, 255, 0.2);
  border: 1px solid rgba(107, 72, 255, 0.3);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.stat-orb:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-orb:hover .stat-orb-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 30px rgba(107, 72, 255, 0.4);
}

.stat-orb-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 72, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-orb:hover .stat-orb-glow {
  opacity: 0.8;
  animation: orbPulse 2s infinite ease-in-out;
}

.stat-orb-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed rgba(107, 72, 255, 0.3);
  border-radius: 50%;
  animation: orbitRotate 15s infinite linear;
  z-index: 0;
}

.stat-orb:hover .stat-orb-ring {
  border-color: rgba(107, 72, 255, 0.5);
  animation: orbitRotate 8s infinite linear;
}

.stat-value {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-xs);
  transition: all 0.3s ease;
}

.stat-orb:hover .stat-value {
  text-shadow: 0 2px 10px rgba(107, 72, 255, 0.3);
}

.stat-label {
  font-size: clamp(0.6rem, 1.2vw, 0.8rem);
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-orb:hover .stat-label {
  color: var(--primary);
  transform: translateY(2px);
}

/* Keyframes for Animations */
@keyframes textGlow {
  0% { text-shadow: 0 0 5px rgba(107, 72, 255, 0.3); }
  50% { text-shadow: 0 0 15px rgba(107, 72, 255, 0.5), 0 0 20px rgba(0, 221, 235, 0.3); }
  100% { text-shadow: 0 0 5px rgba(107, 72, 255, 0.3); }
}

@keyframes scanPulse {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes floatSphere {
  0% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-20px) rotateX(10deg); }
  100% { transform: translateY(0) rotateX(0deg); }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes floatDot {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes ringSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Us Section - 2025 Futuristic Design */
.about-section {
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-text {
  padding: var(--spacing-lg);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
}

.about-section:hover .section-title {
  text-shadow: 0 2px 10px rgba(107, 72, 255, 0.3);
}

.about-description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.about-quote {
  position: relative;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(107, 72, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.about-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 72, 255, 0.2);
}

.about-quote p {
  font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
  font-style: italic;
  color: var(--text-body);
  margin-bottom: var(--spacing-md);
}

.signature {
  display: block;
  text-align: right;
}

.signature strong {
  font-weight: 700;
  color: var(--primary);
}

.signature span {
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  color: var(--text);
  opacity: 0.8;
}

.about-visual {
  position: relative;
  min-height: 400px;
  perspective: 1000px;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.visual-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  loading: lazy; /* Added for performance */
}

.visual-hologram {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle, rgba(107, 72, 255, 0.1), transparent 70%),
    linear-gradient(45deg, rgba(0, 221, 235, 0.05), transparent);
  opacity: 0.5;
  animation: hologramShift 6s infinite ease-in-out;
  z-index: 1;
}

.element-dot {
  width: 20px;
  height: 20px;
  top: 10%;
  right: 15%;
  background: rgba(107, 72, 255, 0.3);
  border-radius: 50%;
  animation: floatDot 4s infinite ease-in-out;
}

.element-ring {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  border: 2px dashed rgba(0, 221, 235, 0.3);
  border-radius: 50%;
  animation: ringSpin 8s infinite linear;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Why EduHire - Futuristic Grid */
.why-eduhire {
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-eduhire-header {
  text-align: center;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(107, 72, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  animation: float-shadow 6s ease-in-out infinite;
}

.benefit-icon {
  color: var(--primary);
}

.benefit-card h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.benefit-card p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text-body);
}

.benefit-card:nth-child(2n) { animation-delay: 0.5s; }
.benefit-card:nth-child(3n) { animation-delay: 1s; }

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02) rotateX(5deg) rotateY(2deg);
  box-shadow: 0 12px 24px rgba(107, 72, 255, 0.15), 0 0 0 2px rgba(107, 72, 255, 0.2);
  background: rgba(255, 255, 255, 1);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, rgba(167, 139, 250, 0.1), rgba(0, 221, 235, 0.1), rgba(255, 255, 255, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::after {
  opacity: 0.6;
  animation: holographic-pulse 3s infinite;
}

.benefit-card:nth-child(3n+1) { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.benefit-card:nth-child(3n+2) { border-radius: var(--border-radius-xl) 0 var(--border-radius-xl) 0; }

/* How It Works Section - 2025 Design */
.how-it-works {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xxl) 0;
}

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 25 50 50 T100 50" stroke="rgba(107, 72, 255, 0.1)" stroke-width="2" fill="none"/></svg>') repeat;
  opacity: 0.1;
  z-index: 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(107, 72, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 12px 36px rgba(107, 72, 255, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.step-hologram {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 72, 255, 0.05), rgba(0, 221, 235, 0.05), transparent);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: hologram 4s infinite ease-in-out;
}

.step:hover .step-hologram {
  opacity: 0.7;
}

.step-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: rgba(107, 72, 255, 0.1);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: transform 0.5s ease;
}

.step:hover .step-icon {
  background: var(--primary);
  transform: scale(1.1) rotateY(360deg);
}

.step:hover .step-icon i {
  color: var(--white);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.step:hover .step-number {
  transform: scale(1.2);
}

.step-content h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  text-align: center;
  transition: color 0.3s ease;
}

.step:hover .step-content h3 {
  color: var(--primary);
}

.step-content p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text-body);
  text-align: center;
  line-height: 1.6;
}

/* Institutions */
.institutions {
  padding: var(--spacing-xxl) 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  align-items: center;
  justify-items: center;
  margin-top: var(--spacing-xl);
}

.logos-grid img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  loading: lazy; /* Added for performance */
}

.logos-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.institution-container {
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-xxl) 0;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-container {
  position: relative;
  min-height: 300px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(30px);
  background: white;
  border-radius: 15px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.quote {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--dark);
  margin-bottom: var(--spacing-lg);
  position: relative;
  line-height: 1.6;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
}

.quote::before {
  top: -1rem;
  left: -1.5rem;
}

.quote::after {
  bottom: -2.5rem;
  right: -1.5rem;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  loading: lazy; /* Added for performance */
}

.author h4 {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  margin: 0;
  color: var(--dark);
}

.author p {
  margin: 0;
  color: var(--text-body);
  opacity: 0.7;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-lg);
}

.slider-arrow {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 221, 235, 0.1) 0%, transparent 50%);
  padding: var(--spacing-xxl) 0;
}

.cta-content {
  padding: var(--spacing-md);
}

.cta-section h2 {
  font-size: clamp(1rem, 5vw, 2.5rem); /* Wider range for better scaling */
  color: var(--dark); /* Assuming text-black maps to --dark */
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: clamp(0.875rem, 2.2vw, 1.125rem);
  color: var(--text-body);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn {
  padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem); /* Responsive padding */
  font-size: clamp(0.875rem, 2.5vw, 1.25rem); /* Responsive font size */
  min-width: 180px; /* Ensures buttons don’t shrink too much */
  text-align: center;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-buttons .btn:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq {
  padding: var(--spacing-xxl) 0;

}

.faq-item {
  width: 80%; /* Set section to 80% of viewport width */
  margin: 0 auto; /* Center the section */
  margin-bottom: var(--spacing-md);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);

}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  text-align: left;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--neutral);
}

.faq-question.active {
  background: var(--neutral);
  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  background: white;
}

.faq-answer p {
  padding-bottom: var(--spacing-md);
  color: var(--text-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Featured Jobs - 2025 Futuristic Design */
.featured-jobs {
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.featured-jobs .container {
  position: relative;
  z-index: 2;
}



.view-all {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateX(5px);
}

.jobs-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
}

.job-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 72, 255, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.02) rotateX(2deg);
  box-shadow: 0 12px 36px rgba(107, 72, 255, 0.2);
  border-color: rgba(107, 72, 255, 0.3);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transition: height 0.4s ease;
  z-index: 1;
}

.job-card:hover::before {
  height: 100%;
}

.job-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(107, 72, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.job-card:hover::after {
  opacity: 0.6;
  animation: hologramShift 6s infinite ease-in-out;
}

.job-card-header {
  padding: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(0, 221, 235, 0.05));
}

.job-card-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  color: var(--text);
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}

.job-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-card-meta i {
  color: var(--primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.job-card-body {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.job-card-body p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text-body);
  line-height: 1.6;
}

.job-card-footer {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(107, 72, 255, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.salary {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--text);
}

.job-card-footer .btn {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 2vw, 1rem);
  border-radius: 25px;
}

.jobs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Animation for hologram effect */
@keyframes hologramShift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}