/* service-details.css */
.service-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Premium Stat Cards */
.glass-stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(164, 55, 148, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.glass-stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #a43794;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
}

/* Image Animation */
.floating-img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    border-radius: 30px;
    max-width: 100%;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Client Section */
.client-trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.client-logo-wrapper {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.client-logo-wrapper:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-logo-wrapper img {
    max-height: 60px;
    object-fit: contain;
}
.border-top-purple {
    border-top: 4px solid #a43794 !important;
}

.bg-light-soft {
    background-color: #fcfcfd;
}

.training-content-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}
/* Global override for visible service card headings */
.glass-stat-card .fw-bold {
    color: #1e1b4b !important; /* Forces your deep navy theme color for perfect readability */
}