:root {
  /* Primary Colors */
  --primary-color: #7cb8b6;
  --primary-color-dark: #5a9795;
  --primary-color-light: #9ecfce;
  
  /* Secondary Colors */
  --secondary-color: #f6a192;
  --secondary-color-dark: #e27b6a;
  --secondary-color-light: #ffc2b9;
  
  /* Accent Colors */
  --accent-color-1: #d0b3e6;
  --accent-color-2: #b3e6c8;
  --accent-color-3: #e6d9b3;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Background Colors */
  --bg-light: #f5f7fa;
  --bg-dark: #2c3e50;
  --bg-gradient: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color) 100%);
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Border Colors */
  --border-color: #e9ecef;
  --border-color-dark: #ced4da;
  
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  --border-radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  
  /* Container max-width */
  --container-max-width: 1200px;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--neutral-800);
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--border-radius-full);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--neutral-600);
  max-width: 700px;
  margin: 0 auto;
}

/* Button Styles - Global */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before,
button:before,
input[type="submit"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-normal);
  z-index: -1;
}

.btn:hover:before,
button:hover:before,
input[type="submit"]:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  border-color: var(--secondary-color-dark);
  color: var(--text-light);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
}

/* Header/Navigation Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md) 0;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-index-sticky);
  transition: padding var(--transition-normal), background-color var(--transition-normal);
}

.site-header.scrolled {
  padding: var(--spacing-sm) 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-normal);
}

.scrolled .logo img {
  height: 40px;
}

.main-navigation {
  display: flex;
  align-items: center;
}

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

.nav-menu li {
  margin: 0 var(--spacing-md);
}

.nav-menu li a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: var(--neutral-700);
  text-decoration: none;
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-fast);
}

.nav-menu li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-700);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
  margin-top: -80px;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 260px !important;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.progress-circle:before {
  content: attr(data-progress) '%';
}

.progress-circle:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--text-light);
  animation: spin 2s linear infinite;
}

.stat-item p {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.services-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-2);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-lg);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  color: var(--neutral-800);
}

.card-content p {
  color: var(--neutral-700);
  margin-bottom: var(--spacing-md);
}

.services-cta {
  text-align: center;
}

/* Methodology Section */
.methodology-section {
  position: relative;
  background-color: var(--neutral-100);
  overflow: hidden;
}

.methodology-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--accent-color-1);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.methodology-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.methodology-timeline {
  flex: 1;
  position: relative;
}

.methodology-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--neutral-100);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.methodology-image {
  flex: 0 0 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.methodology-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.portfolio-section:before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-3);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.filter-btn {
  background-color: transparent;
  color: var(--neutral-700);
  border: 1px solid var(--neutral-400);
  border-radius: var(--border-radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.portfolio-item {
  opacity: 1;
  transition: opacity var(--transition-normal);
}

.portfolio-item.hidden {
  display: none;
  opacity: 0;
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.case-studies-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.case-studies-carousel {
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.case-study-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.case-study-text {
  flex: 1;
}

.case-study-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.case-metrics {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.case-study-image {
  flex: 0 0 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-study-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.carousel-control {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.carousel-control:hover {
  color: var(--primary-color-dark);
}

.carousel-dots {
  display: flex;
  gap: var(--spacing-sm);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-400);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
}

/* Statistics Section */
.statistics-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.statistics-section:before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-2);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.statistic-card {
  background-color: var(--neutral-100);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statistic-card:hover {
  transform: translateY(-10px);
}

.statistic-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.statistic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.statistic-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--neutral-800);
}

.statistic-description p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Workshops Section */
.workshops-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.workshops-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.workshop-card {
  height: 100%;
}

.workshop-date {
  display: inline-block;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.workshop-details {
  background-color: var(--neutral-200);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  margin: var(--spacing-md) 0;
}

.detail {
  margin-bottom: var(--spacing-xs);
}

.detail:last-child {
  margin-bottom: 0;
}

.workshops-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-lg);
}

.workshops-cta p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

/* Careers Section */
.careers-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.careers-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-1);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.careers-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.careers-text {
  flex: 1;
}

.careers-text p {
  margin-bottom: var(--spacing-lg);
}

.careers-list {
  list-style: none;
  padding: 0;
}

.career-position {
  background-color: var(--neutral-100);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
}

.career-position h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.career-position p {
  margin-bottom: var(--spacing-md);
}

.careers-image {
  flex: 0 0 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Awards Section */
.awards-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.awards-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--accent-color-3);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-200);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-10px);
}

.award-image {
  width: 150px;
  height: 150px;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Media Section */
.media-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.media-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-2);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.media-item {
  background-color: var(--neutral-100);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-logo {
  height: 60px;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.media-quote {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding: 0 var(--spacing-md);
}

.media-quote:before, .media-quote:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-light);
  position: absolute;
}

.media-quote:before {
  top: -10px;
  left: 0;
}

.media-quote:after {
  bottom: -30px;
  right: 0;
}

.media-source {
  font-weight: 500;
  color: var(--neutral-600);
}

/* Resources Section */
.resources-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.resources-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.resource-item {
  background-color: var(--neutral-200);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal);
}

.resource-item:hover {
  transform: translateY(-10px);
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.resource-content p {
  margin-bottom: var(--spacing-md);
}

/* Accolades Section */
.accolades-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.accolades-section:before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color-3);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.testimonials-slider {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  background-color: var(--neutral-100);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  opacity: 0.2;
}

.testimonial-content:after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 50px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color-light);
  border-radius: 50%;
  opacity: 0.2;
}

.testimonial-quote {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color-light);
}

.author-info h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--neutral-800);
}

.author-info p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-control {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.testimonial-control:hover {
  color: var(--primary-color-dark);
}

.testimonial-dots {
  display: flex;
  gap: var(--spacing-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.contact-section:after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.contact-content {
  display: flex;
  gap: var(--spacing-xl);
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.info-icon {
  flex: 0 0 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-text h3 {
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

.info-text p {
  margin-bottom: 0;
  color: var(--neutral-700);
}

.contact-map {
  margin-top: var(--spacing-lg);
}

.contact-map img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container {
  flex: 1;
  background-color: var(--neutral-200);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  margin-bottom: var(--spacing-lg);
  text-align: center;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--neutral-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-400);
  border-radius: var(--border-radius-md);
  font-family: 'Rubik', sans-serif;
  transition: border-color var(--transition-fast);
}

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

.checkbox-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--neutral-100);
  border: 1px solid var(--neutral-400);
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--neutral-300);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  margin-bottom: var(--spacing-md);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.footer-links h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-color-light);
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer-social ul li a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--neutral-400);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color var(--transition-fast);
}

.footer-social ul li:nth-child(1) a:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.footer-social ul li:nth-child(2) a:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}

.footer-social ul li:nth-child(3) a:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.footer-social ul li:nth-child(4) a:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E");
}

.footer-social ul li a:hover:before {
  background-color: var(--primary-color-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  position: relative;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--neutral-500);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--spacing-xl) var(--spacing-lg);
  background-color: var(--bg-light);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.success-content {
  max-width: 600px;
  background-color: var(--neutral-100);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-content p {
  margin-bottom: var(--spacing-lg);
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--spacing-xl);
}

.page-content h1 {
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.page-content h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--neutral-800);
}

.page-content p {
  margin-bottom: var(--spacing-md);
}

.page-content ul, .page-content ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-lg);
}

.page-content li {
  margin-bottom: var(--spacing-sm);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .methodology-content {
    flex-direction: column;
  }
  
  .methodology-image {
    order: -1;
    margin-bottom: var(--spacing-xl);
  }
  
  .case-study-content {
    flex-direction: column;
  }
  
  .case-study-image {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  .careers-content {
    flex-direction: column;
  }
  
  .careers-image {
    order: -1;
    margin-bottom: var(--spacing-xl);
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md) 0;
    z-index: var(--z-index-fixed);
  }
  
  .main-navigation.active {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu li {
    margin: var(--spacing-sm) 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .services-grid,
  .portfolio-grid,
  .statistics-grid,
  .workshops-grid,
  .awards-grid,
  .media-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .case-metrics {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .metric {
    width: 100%;
  }
  
  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-in-out;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-in-out;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-in-out;
}

/* CountUp Animation for Statistics */
@keyframes countUp {
  from {
    content: "0";
  }
  to {
    content: attr(data-count);
  }
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
  margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
  margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-xl) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--spacing-xs) !important;
}

.mt-2 {
  margin-top: var(--spacing-sm) !important;
}

.mt-3 {
  margin-top: var(--spacing-md) !important;
}

.mt-4 {
  margin-top: var(--spacing-lg) !important;
}

.mt-5 {
  margin-top: var(--spacing-xl) !important;
}