/* Statistics Section Styles */
.statistics-section {
  padding: 0px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.stats-item {
  text-align: center;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: transparent;
  transition: all 0.3s ease;
  margin: 0 5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.stats-item.animate {
  animation: fadeInUp 0.8s ease forwards;
}

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

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

.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #e0e0e0;
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

.stats-item.animate .stats-number {
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes numberPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stats-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  max-width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

.stats-item.animate .stats-label {
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

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

/* Oman Statistics Section Styles */
.oman-statistics-section {
  padding: 0px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.oman-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.oman-stats-item {
  text-align: center;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: transparent;
  transition: all 0.3s ease;
  margin: 0 5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.oman-stats-item.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.oman-stats-item:hover {
  transform: translateY(-2px);
}

.oman-stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #e0e0e0;
}

.oman-stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

.oman-stats-item.animate .oman-stats-number {
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

.oman-stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  max-width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

.oman-stats-item.animate .oman-stat-label {
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

/* Saudi Arabia Statistics Section Styles */
.saudi-statistics-section {
  padding: 0px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.saudi-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.saudi-stats-item {
  text-align: center;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: transparent;
  transition: all 0.3s ease;
  margin: 0 5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.saudi-stats-item.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.saudi-stats-item:hover {
  transform: translateY(-2px);
}

.saudi-stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #e0e0e0;
}

.saudi-stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

.saudi-stats-item.animate .saudi-stats-number {
  animation: numberPop 0.6s ease forwards;
  animation-delay: 0.3s;
}

.saudi-stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  max-width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

.saudi-stats-item.animate .saudi-stat-label {
  animation: labelFadeIn 0.5s ease forwards;
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-grid,
  .oman-stats-grid,
  .saudi-stats-grid {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .stats-number,
  .oman-stats-number,
  .saudi-stats-number {
    font-size: 2.5rem;
  }
  
  .stats-label,
  .oman-stat-label,
  .saudi-stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .stats-grid,
  .oman-stats-grid,
  .saudi-stats-grid {
    max-width: 100%;
  }
  
  .stats-number,
  .oman-stats-number,
  .saudi-stats-number {
    font-size: 2.2rem;
  }
  
  .stats-label,
  .oman-stat-label,
  .saudi-stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .statistics-section,
  .oman-statistics-section,
  .saudi-statistics-section {
    padding: 60px 0;
  }
  
  .stats-grid,
  .oman-stats-grid,
  .saudi-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stats-item,
  .oman-stats-item,
  .saudi-stats-item {
    min-height: 120px;
    padding: 20px 15px;
    margin: 0 5px;
  }
  
  .stats-item:not(:last-child)::after,
  .oman-stats-item:not(:last-child)::after,
  .saudi-stats-item:not(:last-child)::after {
    display: none;
  }
  
  .stats-item:nth-child(2)::after,
  .oman-stats-item:nth-child(2)::after,
  .saudi-stats-item:nth-child(2)::after {
    display: block;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #e0e0e0;
  }
  
  .stats-number,
  .oman-stats-number,
  .saudi-stats-number {
    font-size: 2rem;
  }
  
  .stats-label,
  .oman-stat-label,
  .saudi-stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .statistics-section,
  .oman-statistics-section,
  .saudi-statistics-section {
    padding: 40px 0;
  }
  
  .stats-grid,
  .oman-stats-grid,
  .saudi-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stats-item,
  .oman-stats-item,
  .saudi-stats-item {
    min-height: 100px;
    padding: 20px 15px;
    margin: 0;
  }
  
  .stats-item::after,
  .oman-stats-item::after,
  .saudi-stats-item::after {
    display: none;
  }
  
  .stats-number,
  .oman-stats-number,
  .saudi-stats-number {
    font-size: 2rem;
  }
  
  .stats-label,
  .oman-stat-label,
  .saudi-stat-label {
    font-size: 0.75rem;
  }
} 