.hero {
    position: relative;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: block;
}

.hero-slide__picture,
.hero-slide__picture img {
    display: block;
    width: 100%;
}

.hero-slide img {
    width: 100%;
    display: block;
}

.hero-arrow {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: 0.25s ease;
}

.hero-arrow:hover {
    transform: scale(1.08);
    background: #ffffff;
}

.hero-arrow::after {
    display: none;
}

.hero-arrow svg {
    width: 22px;
    height: 22px;
    fill: var(--color-dark);
    transition: 0.25s ease;
}

.hero-arrow:hover svg {
    fill: var(--color-primary);
}

.hero-arrow-prev {
    left: 24px !important;
}

.hero-arrow-next {
    right: 24px !important;
}

.hero-pagination {
    bottom: 24px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    opacity: 1;
    background: rgba(255,255,255,0.45);
    transition: 0.25s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: #ffffff;
}

.home-categories {
    padding: 60px 0 35px;
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-category {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-category__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.home-category__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.45) 35%,
        rgba(255,255,255,0.04) 72%
    );
    transition: 0.35s ease;
}

.home-category__title {
    position: relative;
    z-index: 2;
    padding: 24px 14px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    transition: 0.35s ease;
}

.home-category:hover .home-category__img {
    transform: scale(1.06);
}

.home-category:hover .home-category__overlay {
    background: rgba(43, 176, 222, 0.72);
}

.home-category:hover .home-category__title {
    color: #ffffff;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.services-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px;
    border-radius: 16px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.services-all-btn:hover {
    transform: translateY(-2px);
    background: #052130;
    color: #ffffff;
}

.services-slider {
    overflow: hidden;
}

.services-slider .swiper-slide {
    height: auto;
}

.services-slider .service-card {
    height: 100%;
}

.services-pagination {
    position: relative !important;
    margin-top: 42px;
    text-align: center;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    transition: 0.25s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

.services-mobile-btn {
    display: none;
}

@media (max-width: 992px) {

    .home-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .hero {
        margin-top: 8px;
    }

    .hero-arrow {
        width: 48px !important;
        height: 48px !important;
    }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-arrow-prev {
        left: 10px !important;
    }

    .hero-arrow-next {
        right: 10px !important;
    }

    .hero-pagination {
        bottom: 10px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 22px;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .section-head .services-all-btn {
        display: none;
    }

    .services-pagination {
        margin-top: 28px;
    }

    .services-mobile-btn {
        display: flex;
        justify-content: center;
        margin-top: 26px;
    }

    .services-all-btn {
        width: 100%;
        max-width: 260px;
        height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }

}

@media (max-width: 576px) {

    .home-categories {
        padding: 38px 0 22px;
    }

    .home-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-category {
        min-height: 170px;
    }

    .home-category__title {
        padding: 16px 8px;
        font-size: 14px;
        line-height: 1.2;
    }

}





.partners {
    padding: 60px 0;
    background: #ffffff;
}

.partners__title {
    margin-bottom: 34px;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: var(--color-dark);
}

.partners-slider {
    overflow: hidden;
    padding-bottom: 50px;
}

.partners-slider .swiper-wrapper {
    align-items: center;
}

.partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 10px;
}

.partners__item img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.25s ease;
}

.partners__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-pagination {
    position: relative !important;
    margin-top: 26px;
    text-align: center;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.partners-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    transition: 0.25s ease;
}

.partners-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .partners {
        padding: 40px 0;
    }

    .partners__item {
        height: 90px;
    }

    .partners__item img {
        max-height: 60px;
    }
}


.service-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: 0.25s ease;
}

.service-card:hover .service-card__cta {
    background: var(--color-dark);
}

