/* ===========================
   SOLUTIONS HERO SECTION STYLES
   =========================== */

/* Container base styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.solutions-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1E41AF 0%, #1E41AF 100%);
    color: white;
    overflow: hidden;
}

/* Animated Background */
.solutions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.solutions-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.solutions-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.solutions-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -80px;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.solutions-shape.shape-3 {
    width: 180px;
    height: 180px;
    background: white;
    top: 40%;
    right: 15%;
    animation: float 9s ease-in-out infinite;
}

.solutions-shape.shape-4 {
    width: 120px;
    height: 120px;
    background: white;
    bottom: 20%;
    left: 20%;
    animation: float 11s ease-in-out infinite 1s;
}

.solutions-shape.shape-5 {
    width: 100px;
    height: 100px;
    background: white;
    top: 10%;
    left: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

/* Float Animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(30px); 
    }
}

/* Hero Content */
.solutions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.solutions-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Title */
.solutions-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.1s both;
    line-height: 1.2;
    color: white;
}

/* Subtitle */
.solutions-subtitle {
    font-size: 18px;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Statistics */
.solutions-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    font-size: 48px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-hero {
        padding: 100px 0;
    }
    
    .solutions-title {
        font-size: 48px;
    }
    
    .solutions-stats {
        gap: 40px;
    }
    
    .stat-number-wrapper {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: 80px 0;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solutions-subtitle {
        font-size: 16px;
    }
    
    .solutions-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number-wrapper {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Reduce shape sizes on mobile */
    .solutions-shape.shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .solutions-shape.shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .solutions-shape.shape-3 {
        width: 120px;
        height: 120px;
    }
    
    .solutions-shape.shape-4,
    .solutions-shape.shape-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 28px;
    }
    
    .solutions-subtitle {
        font-size: 15px;
    }
    
    .solutions-hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .stat-number-wrapper {
        font-size: 32px;
    }
}

