/* Talent Solutions Main Styles */
.talent-solution {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero Section Styles */
.talent-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/workspace-solutions-hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    opacity: 0.9;
}

.btn-hero {
    background-color: #0066cc;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin-left: auto;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #4db8ff;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Solutions Section */
.solutions-section {
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* Solution Cards */
.solution-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.solution-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #4db8ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.solution-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4db8ff, #0066cc);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.read-more-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.read-more-link i {
    margin-left: 8px;
}

.read-more-link:hover {
    color: #0052a3;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #0066cc);
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    background-color: white;
    color: #0066cc;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        margin-top: 40px;
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .talent-hero {
        padding: 70px 0;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 25px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .btn-light,
    .btn-hero {
        width: 100%;
        text-align: center;
    }
}