/* ==========================================================================
   #ABOUT PAGE STYLES - LIGHT THEME
   ========================================================================== */

:root {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #2563eb;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --card-hover: #f8fafc;
  --section-bg: #f8fafc;
}

/* Base Styles
   ========================================================================== */
body {
  background-color: var(--bg);
  color: var(--text);
  padding-top: 100px; /* Add padding to account for fixed header */
}

/* Navigation Bar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
  padding-top: 0.9rem;
}

.nav-bar {
  background: transparent;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0;
}

.nav-links {
  gap: 1.5rem;
}

.nav-links > li > a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

.dropdown-menu {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 0.75rem 0;
  min-width: 220px;
}

.dropdown-menu a {
  color: var(--text);
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--card-hover);
  color: var(--primary);
  padding-left: 1.75rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Brand Logo */
.brand-logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* Hero Section
   ========================================================================== */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.95)), 
              url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  color: var(--text);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: #3b82f6;
  transform: translateY(-50%);
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  display: inline-block;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  margin-top: 0.5rem;
  color: #3b82f6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Story Section
   ========================================================================== */
.about-content {
  padding: 100px 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.story-highlights {
  margin-top: 2.5rem;
}

.highlight {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.highlight:hover {
  border-color: var(--primary-light);
  transform: translateX(5px);
  background-color: var(--card-hover);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--border);
}

.highlight h4 {
  color: var(--text);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.story-image {
  position: relative;
}

.image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.story-image:hover .image-container img {
  transform: scale(1.03);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.stat-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  background-color: var(--card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

/* Timeline Section
   ========================================================================== */
.timeline-section {
  padding: 100px 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
  display: inline-block;
}

.section-description {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

.timeline-scroll-container {
  position: relative;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
  scroll-behavior: smooth;
  display: flex;
  justify-content: center;
}

.timeline-scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.timeline-track {
  display: flex;
  padding: 0 20px;
  width: auto;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-light) 10%, 
    var(--primary) 50%, 
    var(--primary-light) 90%, 
    transparent 100%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.2;
}

.timeline-item {
  position: relative;
  width: 250px;
  flex-shrink: 0;
  padding: 0 10px;
  z-index: 2;
  margin: 0;
}

.timeline-item:first-child {
  padding-left: 0;
}

.timeline-item:last-child {
  padding-right: 0;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--primary);
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 3px var(--bg);
}

.timeline-item:first-child .timeline-dot {
  left: 20px;
}

.timeline-item:last-child .timeline-dot {
  right: 20px;
  left: auto;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
}

.timeline-item:hover .timeline-dot::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  background-color: var(--card-hover);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.timeline-content h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.timeline-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInOut 2s infinite;
}

.timeline-scroll-hint svg {
  margin-left: 0.5rem;
  color: #3b82f6;
  animation: slideRight 2s infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* PHC Partner Section */
.phc-partner {
  padding: 5rem 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.phc-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.phc-text {
  flex: 1;
}

.phc-text h2 {
  font-size: 2rem;
  margin: 1rem 0 1.5rem;
  color: var(--text);
  line-height: 1.3;
}

.phc-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.phc-logo {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.phc-logo img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .phc-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .phc-logo {
    margin-top: 2rem;
    width: 100%;
    max-width: 200px;
  }
  
  .phc-text h2 {
    font-size: 1.75rem;
  }
}

/* Values Section
   ========================================================================== */
/* Trusted By Section */
.trusted-by {
  padding: 6rem 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.logo-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.logo-grid::-webkit-scrollbar {
  display: none;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2.5rem;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100px;
  min-width: 180px;
  border: 1px solid var(--border);
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

.values-showcase {
  padding: 6rem 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.values-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--card-hover);
}

.value-item:hover::before {
  opacity: 1;
}

.value-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.value-content h3 {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.value-content p {
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Clients Section
   ========================================================================== */
.clients-section {
  padding: 80px 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.client-logo {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0.5);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 150px;
  height: auto;
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

/* Team Section */
.team-showcase {
  padding: 100px 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.2), transparent);
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: var(--card-hover);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .card-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.card-content {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 1.5rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links--open {
    right: 0;
  }

  .nav-links > li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links > li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    margin: 0;
    display: none;
  }

  .dropdown-menu--open {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary);
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(2px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-2px) rotate(-45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px; /* Reduced padding for mobile */
  }
  
  .about-hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .about-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .about-section, 
  .values-section,
  .team-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .stat-item {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  
  .stat-item:last-child {
    margin-bottom: 0;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .timeline-container {
    padding: 2rem 1rem;
  }
  
  .timeline-item {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item::before {
    left: 0;
  }
  
  .timeline-content {
    padding-left: 2rem;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .logo-item {
    padding: 1.5rem;
  }
  
  .card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .about-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .about-hero p {
    font-size: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
  }
}
