/* Success Stories Section Styles */
.success-stories-section {
    position: relative;
    overflow: hidden;
}

.success-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 20, 109, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.success-content h4 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-stats {
    background: rgba(0, 20, 109, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-details {
    text-align: left;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.detail-item:hover {
    background: rgba(0, 20, 109, 0.05);
    transform: translateX(5px);
}

.detail-item i {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.detail-item span {
    font-weight: 500;
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .success-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}