/* ===================================
   STAFFING SOLUTIONS CSS
   Updated with Icon8 Support & Modern Design
   =================================== */

/* Color Palette & Variables */
: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;
}

/* Base Styles */
.staffing-solutions-container {
  background: var(--gray-50);
  min-height: 100vh;
  padding-top: 0;
}

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

/* Add smooth section transitions */
.staffing-hero,
.why-choose-section,
.process-section,
.smart-hiring-section,
.executive-search-section,
.cta-section {
  position: relative;
}

/* Hero Section */
.staffing-hero {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-800) 100%);
  position: relative;
  padding: 6rem 0 4rem;
  color: white;
  overflow: hidden;
  z-index: 1;
}

.staffing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s infinite linear;
  z-index: 1;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.staffing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: translateY(0);
}

.hero-badge img {
  filter: brightness(0) invert(1);
}

.staffing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staffing-hero p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.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 {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 205, 235, 0.6);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

.header-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  z-index: 2;
}

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

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

.benefit-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;
}

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

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

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

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

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

/* Process Section - REDESIGNED */
.process-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
  z-index: 2;
}

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

.process-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.process-card-header {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  padding: 2rem;
  color: white;
  position: relative;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.step-icon {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.step-icon img {
  filter: brightness(0) invert(1);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.process-card-body {
  padding: 2rem;
}

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

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Smart Hiring Section - REDESIGNED */
.smart-hiring-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  z-index: 2;
}

.hiring-intro {
  margin-bottom: 4rem;
}

.intro-card {
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

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

.intro-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Talent Pyramid Layout */
.talent-pyramid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.talent-level-row {
  display: grid;
  gap: 2rem;
}

.talent-level-row:nth-child(1) {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.talent-level-row:nth-child(2) {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.talent-level-row:nth-child(3) {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.talent-level-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;
  position: relative;
  overflow: hidden;
}

.talent-level-card.executive {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid #f59e0b;
}

.talent-level-card.senior {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-left: 4px solid var(--brand-600);
}

.talent-level-card.junior {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-left: 4px solid #16a34a;
}

.talent-level-card.entry {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-left: 4px solid #e879f9;
}

.talent-level-card.functional {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-left: 4px solid var(--gray-600);
}

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

.level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.level-icon {
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.level-badge {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.talent-level-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.talent-level-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.level-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Guarantee Banner */
.guarantee-banner {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.banner-icon {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.banner-icon img {
  filter: brightness(0) invert(1);
}

.guarantee-banner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: 800px;
}

/* Executive Search Section - REDESIGNED */
.executive-search-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
  z-index: 2;
}

.executive-intro {
  margin-bottom: 4rem;
}

.executive-intro-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid var(--gray-100);
}

.intro-visual {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

.intro-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.intro-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Executive Capabilities */
.executive-capabilities {
  margin-bottom: 4rem;
}

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

.capability-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;
  position: relative;
  overflow: hidden;
}

.capability-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;
}

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

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

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

.capability-icon {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(106, 205, 235, 0.2);
}

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

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

.capability-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* Executive Positions */
.executive-positions {
  margin-bottom: 4rem;
}

.positions-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 2rem;
}

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

.position-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.position-card span {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9rem;
}

/* Closing Statement */
.closing-statement {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
}

.statement-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.statement-icon {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

.closing-statement h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.5;
  margin: 0;
  max-width: 800px;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.loaded {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-up.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Override for animated elements in hero */
.staffing-hero .fade-in,
.staffing-hero .slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.staffing-hero .fade-in.loaded,
.staffing-hero .slide-up.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .staffing-container {
    padding: 0 1rem;
  }
  
  .staffing-hero {
    padding: 4rem 0 3rem;
  }
  
  .staffing-hero-content {
    padding: 0 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .benefits-grid,
  .process-flow,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .talent-level-row {
    grid-template-columns: 1fr !important;
  }
  
  .executive-intro-card {
    flex-direction: column;
    text-align: center;
  }
  
  .positions-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .process-card,
  .benefit-card,
  .capability-card {
    padding: 1.5rem;
  }
  
  .intro-card,
  .guarantee-banner,
  .closing-statement {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .staffing-hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .benefit-card,
  .process-card,
  .capability-card {
    padding: 1.25rem;
  }
}

/* Print Styles */
@media print {
  .staffing-solutions-container {
    background: white;
  }
  
  .staffing-hero {
    background: var(--brand-600);
    color: white;
  }
  
  .fade-in,
  .slide-up {
    opacity: 1;
    transform: none;
  }
}

/* Pharmaceutical Departments Section */
.departments-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
  z-index: 2;
}

.departments-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.title-separator {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.title-separator img {
  opacity: 0.8;
}

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

.department-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  cursor: pointer;
}

.department-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;
}

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

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

.card-content {
  position: relative;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.department-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.department-card:hover .department-icon {
  transform: scale(1.05);
}

.department-icon img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(106, 205, 235, 0.2));
}

.department-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.department-card:hover .department-title {
  color: var(--brand-700);
}

.hover-decoration {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.department-card:hover .hover-decoration {
  opacity: 0.1;
  right: -30px;
}

.hover-decoration img {
  width: 120px;
  height: 120px;
  filter: hue-rotate(180deg);
}

/* Responsive adjustments for departments */
@media (max-width: 768px) {
  .departments-section {
    padding: 4rem 0;
  }
  
  .departments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .department-icon img {
    max-width: 60px;
    max-height: 60px;
  }
  
  .department-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .departments-section {
    padding: 3rem 0;
  }
  
  .card-content {
    padding: 1.5rem 1rem;
  }
  
  .department-icon img {
    max-width: 50px;
    max-height: 50px;
  }
  
  .department-title {
    font-size: 1rem;
  }
}

/* Our Value Proposition Section */
.value-proposition-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  z-index: 2;
}

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

/* First row - items 1, 2, 3 */
.value-proposition-grid .value-card[data-step="1"] {
  grid-column: 1;
  grid-row: 1;
}

.value-proposition-grid .value-card[data-step="2"] {
  grid-column: 2;
  grid-row: 1;
}

.value-proposition-grid .value-card[data-step="3"] {
  grid-column: 3;
  grid-row: 1;
}

/* Second row - items 4 & 5 centered */
.value-proposition-grid .value-card[data-step="4"] {
  grid-column: 1 / 2;
  grid-row: 2;
  justify-self: end;
  max-width: 400px;
}

.value-proposition-grid .value-card[data-step="5"] {
  grid-column: 2 / 4;
  grid-row: 2;
  justify-self: start;
  max-width: 400px;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.value-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;
}

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

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

.value-number {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  font-size: 2rem;
  font-weight: 800;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

.value-number::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--brand-600);
  border-top: 50% solid transparent;
  border-bottom: 50% solid transparent;
}

.value-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.value-icon {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 12px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
}

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

.value-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Client Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
  z-index: 2;
}

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

.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;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-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;
}

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

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

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.quote-icon {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 8px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(106, 205, 235, 0.2);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(106, 205, 235, 0.2);
  flex-shrink: 0;
}

.initial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.25rem 0;
}

.author-designation {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* Testimonials CTA */
.testimonials-cta {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
}

.testimonials-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.testimonials-cta p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonials-cta .btn-outline {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--brand-200);
}

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

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .value-proposition-section,
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .value-proposition-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Reset grid positioning for mobile */
  .value-proposition-grid .value-card[data-step="1"],
  .value-proposition-grid .value-card[data-step="2"],
  .value-proposition-grid .value-card[data-step="3"],
  .value-proposition-grid .value-card[data-step="4"],
  .value-proposition-grid .value-card[data-step="5"] {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    max-width: none;
  }
  
  .value-card {
    flex-direction: column;
  }
  
  .value-number {
    width: 100%;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .value-number::after {
    display: none;
  }
  
  .value-content {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonials-cta {
    padding: 2rem;
  }
  
  .testimonials-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .value-proposition-section,
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .value-content {
    padding: 1.25rem;
  }
  
  .value-title {
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonials-cta {
    padding: 1.5rem;
  }
  
  .testimonials-cta h3 {
    font-size: 1.25rem;
  }
  
  .testimonials-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
} 