
.services-header .eyebrow {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(74, 97, 255, 0.1);
    color: #4a61ff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-header .services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111a34;
    margin-bottom: 14px;
}

.services-header .services-subtitle {
    font-size: 1.1rem;
    color: #5c6075;
    max-width: 720px;
    margin: 0 auto;
}

.services-grid .col-lg-4,
.services-grid .col-md-6 {
    display: flex;
}

.service-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    cursor: pointer;
}

.service-visual {
    min-height: 200px;
    overflow: hidden;
    position: relative;
}


.service-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(70, 130, 255, 0.45) 0%, rgba(9, 18, 40, 0.9) 100%);
    z-index: 1;
}

.service-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.service-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
}

.services-slider-wrapper {
    position: relative;
    padding: 0 68px;
}

.services-slider {
    padding-bottom: 70px;
}

.services-slider .swiper-slide {
    display: flex;
    height: auto;
    align-items: stretch;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

.service-order {
    top: 14px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.services-slider .swiper-slide>.service-card {
    width: 100%;
}

.services-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #2e519f;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    box-shadow: 0 12px 30px rgba(20, 20, 43, 0.25);

}

.service-card:hover .service-visual::after {
    transform: scale(1.08);
}

.service-body {
    padding: 28px 28px 34px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #121731;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

.service-title::after {
    content: "";
    display: inline-flex;
    width: 64px;
    height: 4px;
    background: #05c0c6;
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.service-description {
    font-size: 1rem;
    color: #61647a;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.service-theme-indigo .service-chip {
    background: linear-gradient(135deg, #89a2ff, #4e6bff);
}

.service-visual-web-design::after {
    background-image: url('../assets/img/services/web-design.png');
}

.service-visual-software::after {
    background-image: url('../assets/img/services/software.png');
}

.service-visual-sms::after {
    background-image: url('../assets/img/services/sms.png');
}

.service-visual-ssl::after {
    background-image: url('../assets/img/services/ssl.png');
}

service-visual-server::after {
    background-image: url('../assets/img/services/server.png');
}

.service-visual-server::after {
    background-image: url('../assets/img/services/server.png');
}

.service-visual-dns::after {
    background-image: url('../assets/img/services/dns.png');
}

.services-nav:hover {
    background: #2e519f;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.services-nav-prev {
    left: 0;
}

.services-nav-next {
    right: 0;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(46, 81, 159, 0.3);
    opacity: 1;
    transition: background 0.2s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: #2e519f;
}

@media (max-width: 991.98px) {
    .services-slider-wrapper {
        padding: 0 54px;
    }
}

@media (max-width: 575.98px) {
    .services-slider-wrapper {
        padding: 0 12px;
    }

    .services-nav {
        display: none;
    }
}