.services-section {
    background: radial-gradient(circle at 12% 8%, #ffffff 0%, #f7f3ff 48%, #f2f6ff 100%);
}

.service-pill-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.partner-marquee-section {
    background: #f9f8ff;
}

.partner-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partner-track {
    display: inline-flex;
    gap: 40px;
    align-items: center;
    animation: partner-marquee 20s linear infinite;
    will-change: transform;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 70px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(16, 12, 46, 0.1);
}

.partner-logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes partner-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .partner-track {
        gap: 24px;
        animation-duration: 28s;
    }
    .partner-logo {
        min-width: 120px;
        height: 60px;
    }
    .partner-logo img {
        max-height: 32px;
    }
}

.service-pill-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f9f6ff 55%, #f7fbff 100%);
    border-radius: 26px;
    border: 1px solid rgba(15, 15, 45, 0.08);
    padding: 28px 30px;
    box-shadow: 0 18px 50px rgba(16, 12, 46, 0.12);
    min-height: 230px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-pill-card:before,
.service-pill-card:after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.service-pill-card:before {
    top: -110px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 185, 102, 0.35), rgba(255, 185, 102, 0));
}

.service-pill-card:after {
    bottom: -150px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(9, 120, 201, 0.28), rgba(9, 120, 201, 0));
}

.service-pill-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 59, 30, 0.2);
    box-shadow: 0 26px 70px rgba(16, 12, 46, 0.18);
}

.service-pill-side {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 140px;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.service-pill-divider {
    width: 4px;
    height: 120px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffb966 0%, #ffd88a 100%);
    box-shadow: 0 0 0 6px rgba(255, 185, 102, 0.15);
    display: inline-block;
}

.service-pill-icon {
    width: 86px;
    height: 86px;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    box-shadow: none;
}

.service-pill-icon:before {
    content: none;
}

.service-pill-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.service-pill-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.service-pill-title {
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 700;
    color: #0f0f2d;
    letter-spacing: -0.3px;
    text-align: left;
}

.service-pill-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.service-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    box-shadow: 0 10px 24px rgba(27, 6, 75, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-pill-tag:hover {
    background: var(--brand-gradient);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(25, 59, 30, 0.25);
}

@media (max-width: 991px) {
    .service-pill-card {
        padding: 24px 24px;
        min-height: 230px;
    }

    .service-pill-title {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .service-pill-card {
        flex-direction: column;
        align-items: flex-start;
        min-height: 240px;
    }

    .service-pill-side {
        width: 100%;
        flex: initial;
    }

    .service-pill-divider {
        height: 36px;
    }
}

.whatsapp-call .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-color: #25d366;
    background: #25d366;
}

.whatsapp-call .icon i {
    color: #ffffff;
    font-size: 24px;
}
