/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #0ABF8E 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ABF8E;
    margin-bottom: 10px;
}

.stat-card p {
    color: #6c757d;
    margin: 0;
}

/* Corporate Life Slider */
.corporate-life {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #202020;
}

.corporate-swiper {
    padding: 20px 0 40px;
}

.image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0ABF8E 0%, #1E90FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Office Video Section */
.office-video {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Ограничиваем ширину для вертикального формата */
    margin: 0 auto; /* Центрируем видео */
}

.video-wrapper video {
    width: 100%;
    height: 600px; /* Фиксированная высота для вертикального формата */
    object-fit: cover;
    aspect-ratio: 9/16; /* Соотношение сторон как у рилсов (вертикальное) */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .video-wrapper {
        max-width: 300px;
    }
    
    .video-wrapper video {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .video-wrapper {
        max-width: 250px;
    }
    
    .video-wrapper video {
        height: 400px;
    }
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #0ABF8E;
}

.swiper-pagination-bullet-active {
    background: #0ABF8E;
}