.provider-slot-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 35%),
        linear-gradient(135deg, #020617 0%, #071b3a 45%, #0f3b7a 100%);
    color: #ffffff;
    overflow: hidden;
}

.provider-slot-container {
    max-width: 1200px;
    margin: 0 auto;
}

.provider-slot-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.provider-slot-label {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #93c5fd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.provider-slot-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #f8fafc;
}

.provider-slot-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
}

.provider-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.provider-slot-card {
    position: relative;
    padding: 28px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 46, 92, 0.95), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(96, 165, 250, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    text-align: center;
    transition: 0.35s ease;
}

.provider-slot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.provider-slot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 197, 253, 0.75);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.28);
}

.provider-slot-card:hover::before {
    opacity: 1;
}

.provider-logo {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.3);
}

.provider-slot-card h3,
.provider-slot-card p {
    position: relative;
    z-index: 1;
}

.provider-slot-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffffff;
}

.provider-slot-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

.provider-slot-cta {
    margin-top: 46px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(96, 165, 250, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.provider-slot-cta p {
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.6;
}

.provider-slot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
    transition: 0.3s ease;
}

.provider-slot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

@media (max-width: 992px) {
    .provider-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .provider-slot-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .provider-slot-section {
        padding: 70px 16px;
    }

    .provider-slot-heading {
        margin-bottom: 36px;
    }

    .provider-slot-heading p {
        font-size: 15.5px;
    }

    .provider-slot-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .provider-slot-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .provider-logo {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }

    .provider-slot-cta {
        padding: 24px 18px;
    }

    .provider-slot-btn {
        width: 100%;
    }
}