	.swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #121212;
  opacity: 0.6;
}
.text_slide {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  color: #fff;
}
.hero {
  margin-top: 80px;
  background: #f8f9fa;
  padding: 6rem 2rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: #e9ecef;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #666666 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}
.stats-section {
  background: #ffffff;
  padding: 4rem 2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666666;
  font-weight: 500;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f4;
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: #666666;
  font-weight: 500;
}

.info-value {
  color: #333333;
  font-weight: 600;
}

.highlight {
  background: #f8f9fa;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
@media (max-width:768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .swiper {
        height: 300px !important;
    }
    .swiper-wrapper,
    .swiper-slide{
        height: 100% !important;
    }
    .stats-container {
        grid-template-columns: repeat(2,auto);
        margin-bottom: 40px;
    }
    .stat-number {
        font-size: 36px;
    }
    .info-item {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
}
