.image-overlay-wrapper {
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.image-wrapper {
    background: var(--green-accent);
    height: 420px;
}

.feature-card {
    background: var(--green-accent-50);
    border-radius: 20px;
    padding: 34px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-card:not(:last-child) {
    margin-bottom: 38px;
}

.feature-card h5 {
    margin-bottom: 12px;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.icon-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
}

.service-card {
    position: relative;
    background: #1f5a5c;
    border-radius: 28px;
    min-height: 480px;
    padding: 2.5rem 2rem 9rem;
    color: #fff;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #000;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-text {
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    font-size: .95rem;
}

.service-image {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 250px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .service-card {
        padding-bottom: 7rem;
    }

    .service-image {
        max-width: 180px;
    }
}

.partners-band {
    background: var(--green-50);
    padding: 3rem 0;
}

.partners-title {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
}

.partners-title span {
    color: var(--green-accent);
}

.partners-logos-band {
    display: flex;
    align-items: center;
    justify-content: flex-center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-logos-band img {
    max-height: 50px;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.partners-logos-band img:hover {
    opacity: 1;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-rating i {
    color: #ffb703;
    font-size: 1rem;
}

.testimonial-title {
    font-weight: 700;
    color: #0a2540;
}

.testimonial-text {
    color: #425466;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-divider {
    margin: 1.8rem 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.stats-bar {
    align-items: center;
}

.stat-item {
    padding: 12px 10px;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

@media (min-width: 992px) {
    .stat-divider {
        border-left: 1px dashed rgba(0, 0, 0, 0.15);
    }
}


/*
.video-wrapper {
    cursor: pointer;
}

.video-control-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-wrapper.playing .video-control-btn {
    opacity: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-wrapper.playing .video-overlay {
    opacity: 0.15;
}*/