.about-overview-section {
  background: #ffffff;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.about-overview {
  display: block;
  margin-top: 2rem;
}

.about-overview .about-long {
  margin-bottom: 2rem;
  text-align: justify;
}

@media (max-width: 1024px) {
  .about-overview {
    display: block;
  }
}

/**
 * Polestar International One-Page Website Styles
 * 
 * @package Kataleap
 * @version 1.0.0
 */

/* Polestar Brand Color Palette */
:root {
  /* Primary Colors */
  --polestar-blue: #0047AB;
  --polestar-navy: #003580;
  --polestar-light-blue: #3366CC;
  
  /* Secondary Colors */
  --polestar-gray: #F8F9FA;
  --polestar-medium-gray: #6C757D;
  --polestar-dark-gray: #343A40;
  
  /* Accent Colors */
  --polestar-green: #28A745;
  --polestar-gold: #FFB300;
  
  /* Neutral Colors */
  --polestar-white: #FFFFFF;
  --polestar-charcoal: #212529;
  
  /* Typography */
  --polestar-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --polestar-font-secondary: 'Roboto', sans-serif;
  --polestar-font-accent: 'Playfair Display', serif;
}

/* Reset and Base Styles */
.polestar-onepage {
  font-family: var(--polestar-font-primary);
  line-height: 1.6;
  color: var(--polestar-charcoal);
  overflow-x: hidden;
}

.polestar-onepage * {
  box-sizing: border-box;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Fixed Navigation */
.polestar-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.polestar-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 71, 171, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--polestar-blue);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--polestar-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--polestar-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--polestar-blue);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--polestar-blue);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: visible;
  margin-top: -100px; /* Offset larger fixed header */
  padding-top: 100px; /* Account for larger fixed header */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/wp-content/uploads/2025/09/polestar%20international.webp') center/cover no-repeat;
  background-image: url('/wp-content/uploads/2025/09/polestar%20international.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0; /* ensure it sits above the section's background */
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('/wp-content/uploads/2025/09/polestar%20international.webp')) {
  .hero-background {
    background-image: url('/wp-content/uploads/2025/09/polestar%20international.jpg');
  }
}

.hero-background::before { display: none; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* Force-remove any base theme gradient in the hero section on this one-page */
#polestar-onepage .hero-section {
  background: none !important;
  padding: 0 !important;
  min-height: 100vh !important;
}

/* Keep hero content above the background image */
#polestar-onepage .hero-content { 
  position: relative; 
  z-index: 1; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-slogan {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--polestar-orange);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: var(--polestar-orange);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.9;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--polestar-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--polestar-blue);
}

.btn-accent {
  background: var(--polestar-gold);
  color: var(--polestar-charcoal);
}

.btn-accent:hover {
  background: #e6a200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
}

/* Section Styles */
section {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--polestar-charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--polestar-medium-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--polestar-gray);
}

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

.about-text .section-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-text .section-subtitle {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--polestar-blue);
}

.about-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--polestar-dark-gray);
}

/* Vision & Mission Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.highlight-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--polestar-blue);
}

.highlight-text {
  margin: 0;
  color: var(--polestar-medium-gray);
}

/* Long About */
.about-long {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #eef1f4;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.about-long-primary {
  background: linear-gradient(135deg, rgba(0,71,171,0.06) 0%, rgba(51,102,204,0.06) 100%), #ffffff;
  border-color: rgba(0,71,171,0.15);
}

.about-long-title {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--polestar-charcoal);
  text-align: center;
  font-size: 1.375rem;
}

.about-long p {
  margin: 0 0 0.75rem;
  color: var(--polestar-dark-gray);
}

.sectors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sector-item {
  font-weight: 500;
  color: var(--polestar-charcoal);
}

.key-achievements {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.achievement-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--polestar-blue);
  line-height: 1;
}

.achievement-label {
  font-size: 0.875rem;
  color: var(--polestar-medium-gray);
  font-weight: 500;
}

.saudi-map {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.map-placeholder {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder h4 {
  font-size: 1.5rem;
  color: var(--polestar-blue);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--polestar-medium-gray);
  margin-bottom: 2rem;
}

.project-dots {
  position: relative;
  width: 200px;
  height: 150px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--polestar-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.5);
  background: var(--polestar-gold);
}

.dot.riyadh { top: 20px; left: 50%; }
.dot.jeddah { top: 60px; left: 20px; }
.dot.dammam { top: 40px; right: 20px; }
.dot.medina { top: 80px; left: 60px; }

/* Sectors Section */
.sectors-section {
  background: white;
}

.sections-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.sections-header .section-title {
  margin-bottom: 1rem;
}

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

.sector-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.15);
  border-color: var(--polestar-blue);
}

.sector-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sector-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--polestar-charcoal);
  margin-bottom: 1rem;
}

.sector-description {
  color: var(--polestar-medium-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sector-example {
  font-size: 0.875rem;
  color: var(--polestar-blue);
  font-weight: 500;
  background: rgba(0, 71, 171, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

/* Projects Section */
.projects-section {
  background: var(--polestar-blue);
  color: white;
}

.projects-section .section-title {
  color: white;
}

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

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tab-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: white;
  color: var(--polestar-blue);
  border-color: white;
}

.projects-carousel {
  position: relative;
  margin-bottom: 2rem;
}

.project-slide {
  display: none;
}

.project-slide.active {
  display: block;
}

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

.project-image {
  position: relative;
}

.image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.image-placeholder p {
  opacity: 0.8;
}

.project-details {
  color: white;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.project-stats {
  margin-bottom: 2rem;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.project-clients h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.client-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.client-badge {
  background: var(--polestar-gold);
  color: var(--polestar-charcoal);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: white;
  color: var(--polestar-blue);
}

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

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: white;
}

/* Partners Section */
.clients-section {
  background: white;
}

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

.clients-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.tier-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--polestar-charcoal);
  margin-bottom: 2rem;
}

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

.client-logo {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.15);
  border-color: var(--polestar-blue);
}

.logo-placeholder {
  font-weight: 600;
  color: var(--polestar-blue);
  font-size: 0.875rem;
}

.client-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--polestar-charcoal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.client-logo:hover .client-tooltip {
  opacity: 1;
}

.clientship-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--polestar-light-blue) 0%, white 100%);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--polestar-charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--polestar-blue);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--polestar-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  font-weight: 600;
  color: var(--polestar-charcoal);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--polestar-medium-gray);
  margin: 0;
}

/* Footer */
.polestar-footer {
  background: var(--polestar-dark-gray);
  color: white;
  padding: 2rem 0 1rem;
}

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

.footer-logo h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.certifications {
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-navigation .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .main-navigation .nav-menu.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights { grid-template-columns: 1fr; }
  
  .key-achievements {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .scroll-indicator {
    bottom: 0.5rem;
  }
  
  .scroll-indicator span {
    font-size: 0.75rem;
  }
  
  .scroll-arrow {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .sectors-list {
    grid-template-columns: 1fr;
  }
  
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-number.animated {
  animation: countUp 0.6s ease forwards;
}

/* Client CTA Button */
.client-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Advanced About Overview Enhancements --- */
/* Override base grid to 1.2 / 0.8 split */
.about-overview {
  grid-template-columns: 1.2fr 0.8fr;
}

.about-left {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

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

.stat-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--polestar-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--polestar-medium-gray);
}

.about-right {
  position: sticky;
  top: 110px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.about-tags .tag {
  font-size: 0.8125rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,71,171,0.08);
  color: var(--polestar-blue);
  border: 1px solid rgba(0,71,171,0.15);
}

/* Vision/Mission counters */
.vm-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0 1.25rem;
}

.vm-counter {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.vm-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,71,171,0.08);
  border: 1px solid rgba(0,71,171,0.15);
}

.vm-title {
  font-weight: 800;
  color: var(--polestar-charcoal);
  font-size: 1.1rem;
}

.vm-text {
  color: var(--polestar-medium-gray);
  font-size: 0.95rem;
}

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

@media (max-width: 1024px) {
  .about-right { position: static; }
}

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