/* Modern Home Page Styles - Based on home_backup.css */

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Brand Colors */
:root {
  --brand-50: #f0fcff;
  --brand-100: #e0f8ff;
  --brand-200: #b9f0ff;
  --brand-300: #7ce4ff;
  --brand-400: #36d2ff;
  --brand-500: #6ACDEB;
  --brand-600: #0ea5e9;
  --brand-700: #0284c7;
  --brand-800: #0369a1;
  --brand-900: #0c4a6e;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-lg {
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(106, 205, 235, 0.6);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
}

.btn-white {
  background: white;
  color: var(--brand-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--brand-50);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--brand-700);
  border: 2px solid var(--brand-200);
}

.btn-outline:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: white;
  color: var(--brand-600);
  border-color: white;
}

.btn-full {
  width: 100%;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Hero Section */
.hero-section {
  padding: 0rem 0 0rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(106, 205, 235, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.hero-content {
  space-y: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  color: var(--brand-700);
  border: 1px solid var(--brand-200);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.brand-gradient {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 36rem;
  margin-bottom: 1.0rem;
}
.hero-description2 {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  box-shadow: 0 8px 32px rgba(106, 205, 235, 0.4);
}

.hero-btn-outline {
  border: 2px solid var(--brand-300);
  color: var(--brand-700);
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-600);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-600);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .hero-image {
    height: 600px;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  position: relative;
}

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

@media (min-width: 1024px) {
  .process-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .process-image {
    order: 1;
  }

  .process-steps {
    order: 2;
  }
}

.process-image {
  position: relative;
}

.process-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .process-img {
    height: 500px;
  }
}

.process-header {
  margin-bottom: 2.5rem;
}

.process-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.process-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(106, 205, 235, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--gray-600);
  line-height: 1.7;
}

.process-cta {
  animation: fadeInUp 0.6s ease;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border-radius: 20px;
  transition: transform 0.4s ease;
  padding: 1rem;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--brand-600);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--brand-50);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-500);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--brand-400);
}

/* Loading States */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top: 4px solid var(--brand-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-state p {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
}

/* Modern Employers Grid */
.employers-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.employers-grid-modern.initial-loading {
  opacity: 1;
  transform: translateY(0);
}

.employer-card-enhanced {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.employer-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.employer-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.employer-card-enhanced:hover::before {
  transform: scaleX(1);
}

.employer-card-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.employer-logo-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gray-50);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.employer-card-enhanced:hover .employer-logo-container {
  transform: scale(1.05);
}

.employer-logo-container img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.employer-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 600;
}

.employer-fallback i {
  font-size: 2rem;
  color: var(--brand-500);
}

.employer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.employer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0;
}

.employer-type {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.employer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  color: var(--brand-700);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: auto;
}

.employer-badge i {
  font-size: 0.7rem;
  color: var(--brand-600);
}

/* Placeholder Loading Effects */
.placeholder-card {
  pointer-events: none;
}

.placeholder-logo {
  width: 80px;
  height: 80px;
  background: var(--gray-200);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.loading-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.placeholder-text {
  background: var(--gray-200);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.placeholder-name {
  height: 1.1rem;
  width: 80%;
  margin-bottom: 0.5rem;
}

.placeholder-type {
  height: 0.9rem;
  width: 60%;
}

.placeholder-badge {
  height: 2rem;
  width: 70%;
  background: var(--gray-200);
  border-radius: 20px;
  margin-top: 0.75rem;
}

.placeholder-text::after,
.placeholder-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* Compact College Carousel Enhancements */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .employers-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  
  .employer-card-inner {
    padding: 1.5rem;
  }
  
  .employer-logo-container {
    width: 80px;
    height: 80px;
  }
  
  .colleges-wrapper {
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .college-item {
    min-width: 260px;
  }
}

/* Performance */
img {
  loading: lazy;
}

/* Focus styles for accessibility */
.btn:focus {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .btn {
    display: none;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  border-top: 1px solid var(--gray-200);
  position: relative;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(106, 205, 235, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta-content {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.final-cta-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .final-cta-content {
    padding: 2rem;
    text-align: center;
  }
  
  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 3rem 0;
  }
  
  .final-cta-content {
    padding: 1.5rem;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Platform Section Styles */
.platform-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--gray-50), white);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-200);
}

.platform-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-50);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.platform-icon svg {
    color: var(--brand-600);
}

.platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.platform-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platform-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-50);
    color: var(--brand-700);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.free-badge svg {
    color: var(--brand-500);
}

.platform-footer-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.platform-footer .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.platform-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 205, 235, 0.4);
}

.platform-footer .btn svg {
    transition: transform 0.3s ease;
}

.platform-footer .btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .platform-section {
        padding: 4rem 0;
    }

    .platform-grid {
        gap: 1.5rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .platform-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Colleges Section */
.colleges-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.college-logo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.college-logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.college-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modern-card-institute {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.modern-card-institute:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.modern-card-institute .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-card-institute img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Employers and Clientele Logo Sliders */
.employers-section, .clientele-section {
    padding: 4rem 0;
}

.employer-logo-card, .client-logo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.employer-logo-card:hover, .client-logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.employer-logo-card img, .client-logo-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Swiper Pagination Styles for All Sliders */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--brand-500);
    transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--brand-400);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.rating {
  margin-bottom: 1rem;
}

.rating span {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h5 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Section Styling */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0.5rem auto 0;
}

/* Carousel Controls */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-200);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-500);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--brand-400);
  transform: scale(1.1);
}

/* Enhanced Batch Loading Clients - 5 Per Batch */
.clientele-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 350px; /* Prevent layout shift during batch changes */
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card-modern.batch-card-5 {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  animation: batchFadeIn5 0.8s ease forwards;
  height: 220px; /* Reduced height for more compact cards */
  display: flex;
  flex-direction: column;
}

@keyframes batchFadeIn5 {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.client-card-modern.batch-card-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.client-card-modern.batch-card-5:hover::before {
  transform: scaleX(1);
}

.client-card-modern.batch-card-5:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-200);
}

.client-logo-modern {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gray-50), var(--brand-50));
  border-radius: 16px;
  padding: 0.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

.client-logo-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card-modern.batch-card-5:hover .client-logo-modern::before {
  opacity: 1;
}

.client-card-modern.batch-card-5:hover .client-logo-modern {
  transform: scale(1.1) rotateY(5deg);
}

.client-logo-modern img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.client-card-modern.batch-card-5:hover .client-logo-modern img {
  filter: grayscale(0);
  transform: scale(1.15);
}

.client-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
  flex-shrink: 0;
  height: 2.4rem;
}

.client-card-modern.batch-card-5:hover .client-name {
  color: var(--brand-700);
}

.client-type {
  font-size: 0.75rem;
  color: var(--brand-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.8rem; /* Reduced padding */
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 0.5rem; /* Reduced margin */
  transition: all 0.3s ease;
  margin-top: auto; /* Push to bottom */
  flex-shrink: 0; /* Prevent shrinking */
}

.client-card-modern.batch-card-5:hover .client-type {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  transform: scale(1.05);
}

/* Batch Indicator */
.client-batch-indicator {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card-modern.batch-card-5:hover .client-batch-indicator {
  opacity: 1;
}

/* Batch Loading Progress Indicator - Enhanced */
.batch-progress-5 {
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  border-radius: 2px;
  animation: batchProgress5 5s linear infinite;
  box-shadow: 0 1px 3px rgba(106, 205, 235, 0.4);
}

@keyframes batchProgress5 {
  0% {
    width: 0%;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* Grid Layout Adjustments for 5 Cards */
@media (min-width: 1200px) {
  .clientele-grid-modern {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1400px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .clientele-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .client-card-modern.batch-card-5 {
    height: 200px; /* Reduced for medium screens */
  }
}

@media (max-width: 767px) {
  .clientele-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    min-height: 280px; /* Reduced min-height */
  }
  
  .client-card-modern.batch-card-5 {
    padding: 1.25rem;
    height: 180px; /* Reduced for mobile */
  }
  
  .client-logo-modern {
    height: 60px; /* Smaller for mobile */
    margin-bottom: 0.75rem;
  }
  
  .client-logo-modern img {
    max-height: 45px; /* Smaller images on mobile */
  }
  
  .client-name {
    height: 2.2rem; /* Adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .clientele-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-height: 240px; /* Further reduced */
  }
  
  .client-card-modern.batch-card-5 {
    padding: 1rem;
    height: 160px; /* Very compact for small screens */
  }
  
  .client-name {
    font-size: 0.8rem;
    height: 2rem; /* Compact text height */
  }
  
  .client-type {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem; /* Smaller padding */
  }
}

/* Enhanced Continuous Scrolling Employers */
.employers-continuous-scroll {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Force employer grid to be visible when loaded */
.employers-grid-modern.loaded {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.employer-scroll-row {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
}

.employer-scroll-track {
  display: flex;
  gap: 2.5rem;
  animation-duration: 45s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.scroll-left .employer-scroll-track {
  animation-name: scrollLeft;
}

.scroll-right .employer-scroll-track {
  animation-name: scrollRight;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}

.employer-scroll-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.employer-scroll-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.employer-scroll-card:hover::before {
  transform: scaleX(1);
}

.employer-scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.employer-scroll-inner {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.employer-scroll-logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50), var(--brand-50));
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.employer-scroll-card:hover .employer-scroll-logo {
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  transform: scale(1.1);
}

.employer-scroll-logo img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.employer-scroll-card:hover .employer-scroll-logo img {
  transform: scale(1.15);
}

.employer-scroll-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  height: 100%;
}

.employer-scroll-fallback i {
  font-size: 1.5rem;
  color: var(--brand-500);
  margin-bottom: 0.25rem;
}

.employer-scroll-fallback span {
  line-height: 1.2;
  max-width: 100%;
  word-wrap: break-word;
}

/* Show fallback when image fails */
.employer-scroll-logo img[style*="display: none"] + .employer-scroll-fallback {
  display: flex !important;
}

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

.employer-scroll-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.employer-scroll-type {
  font-size: 0.85rem;
  color: var(--brand-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  background: var(--brand-50);
  border-radius: 12px;
  display: inline-block;
}

/* Pause animation on hover */
.employers-continuous-scroll:hover .employer-scroll-track {
  animation-play-state: paused;
}

/* Performance Optimizations */
.employer-scroll-track {
  backface-visibility: hidden;
  perspective: 1000px;
}

.client-card-modern.batch-card-5 {
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .employer-scroll-track {
    animation-duration: 90s;
  }
  
  .client-card-modern.batch-card-5 {
    animation-duration: 1.2s;
  }
  
  .clientele-grid-modern {
    transition-duration: 1s;
  }
}

/* Modern Testimonials Carousel */
.testimonials-carousel-modern {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
  will-change: transform;
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 350px;
}

@media (max-width: 1024px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .testimonial-item {
    flex: 0 0 100%;
    min-width: 300px;
  }
}

.testimonial-card-modern {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card-modern:hover::before {
  transform: scaleX(1);
}

.testimonial-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--brand-200);
  transition: all 0.3s ease;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--brand-100);
  color: var(--brand-700);
  font-size: 24px;
  font-weight: 700;
}

.testimonial-body {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex: 1;
  position: relative;
  font-style: italic;
}

.testimonial-text::before {
  content: """;
  position: absolute;
  top: -0.5rem;
  left: -0.75rem;
  font-size: 3rem;
  color: var(--brand-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text::after {
  content: """;
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  font-size: 3rem;
  color: var(--brand-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  justify-content: center;
}

.rating-star {
  color: #fbbf24;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.2));
}

.rating-star.filled {
  color: #f59e0b;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.2));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
  }
}

.testimonial-card-modern:hover .rating-star {
  transform: scale(1.1);
}

/* Carousel Navigation - Enhanced */
.testimonials-carousel-modern .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: var(--brand-600);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-carousel-modern .carousel-nav:hover {
  background: var(--brand-50);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: var(--brand-700);
}

.testimonials-carousel-modern .carousel-prev {
  left: -26px;
}

.testimonials-carousel-modern .carousel-next {
  right: -26px;
}

/* Carousel Dots - Enhanced */
.testimonials-carousel-modern .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  align-items: center;
}

.testimonials-carousel-modern .carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.testimonials-carousel-modern .carousel-dot.active {
  background: var(--brand-500);
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(106, 205, 235, 0.4);
}

.testimonials-carousel-modern .carousel-dot:hover {
  background: var(--brand-400);
  transform: scale(1.1);
}

/* Autoplay Progress Indicator */
.testimonials-carousel-modern .carousel-dot.active::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--brand-500);
  border-radius: 50%;
  border-top-color: transparent;
  animation: autoplayProgress 2.5s linear infinite;
}

@keyframes autoplayProgress {
  0% {
    transform: rotate(0deg);
    border-top-color: transparent;
  }
  10% {
    border-top-color: var(--brand-500);
  }
  100% {
    transform: rotate(360deg);
    border-top-color: var(--brand-500);
  }
}

/* Loading State for Testimonials */
.testimonials-loading-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-placeholder-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
}

.testimonial-placeholder-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-placeholder-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.testimonial-placeholder-info {
  flex: 1;
}

.testimonial-placeholder-name {
  height: 1.25rem;
  width: 60%;
  background: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.testimonial-placeholder-designation {
  height: 0.9rem;
  width: 80%;
  background: var(--gray-200);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.testimonial-placeholder-text {
  height: 6rem;
  background: var(--gray-200);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonial-placeholder-rating {
  height: 1.25rem;
  width: 40%;
  background: var(--gray-200);
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect for placeholders */
.testimonial-placeholder-avatar::after,
.testimonial-placeholder-name::after,
.testimonial-placeholder-designation::after,
.testimonial-placeholder-text::after,
.testimonial-placeholder-rating::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials-wrapper {
    gap: 1.5rem;
  }
  
  .testimonial-card-modern {
    padding: 2rem;
  }
  
  .testimonial-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
  }
  
  .testimonials-carousel-modern .carousel-nav {
    width: 44px;
    height: 44px;
  }
  
  .testimonials-carousel-modern .carousel-prev {
    left: -22px;
  }
  
  .testimonials-carousel-modern .carousel-next {
    right: -22px;
  }
}

@media (max-width: 480px) {
  .testimonial-item {
    min-width: 280px;
  }
  
  .testimonial-card-modern {
    padding: 1.5rem;
  }
  
  .testimonial-text-modern {
    font-size: 0.95rem;
  }
} 
/* Featured Companies Section */
.featured-companies-section {
    padding: 4rem 0;
    background: white;
}

.company-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.company-logo-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.company-logo {
  max-height: 100%;
  max-width: 140px;
}

.company-info-box {
    background-color: var(--gray-50);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.company-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.company-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-600);
}

.company-rating .star-icon {
    font-size: 1.2rem;
}

.company-rating .rating-text {
    font-size: 0.875rem;
}

.company-description {
    color: var(--gray-600);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.company-actions {
    margin-top: auto;
}

.btn-view-jobs {
    background-color: var(--brand-50);
    color: var(--brand-700);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-jobs:hover {
    background-color: var(--brand-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

/* Swiper Pagination Styles */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--brand-500);
    transform: scale(1.2);
}

/* Responsive Grid */
@media (min-width: 640px) {
    .featured-companies-slider .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .featured-companies-slider .swiper-slide {
        width: 33.333%;
    }
}

@media (min-width: 1024px) {
    .featured-companies-slider .swiper-slide {
        width: 20%;
    }
}

/* View All Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid var(--brand-200);
    color: var(--brand-700);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--brand-50);
    border-color: var(--brand-300);
    transform: translateY(-2px);
}

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

.companies-grid {
  /* ... existing code ... */
}