/* Solutions Page Styles */

.solutions-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 1px;
}

.section-divider i {
    color: #3b82f6;
    font-size: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

/* Platform Showcase Styles */
.platform-showcase {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.platform-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.platform-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.platform-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-tagline {
    color: #94a3b8;
    font-size: 1.1rem;
    font-style: italic;
}

.platform-description {
    margin-bottom: 2rem;
}

.platform-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.platform-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 500;
}

.feature-badge i {
    color: #10b981;
}

/* Technology Solutions Grid */
.tech-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tech-solution-card:hover::before {
    transform: scaleX(1);
}

.tech-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.solution-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.solution-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.solution-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.solution-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.solution-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.solution-features i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.solution-link {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Technology Benefits Section */
.tech-benefits {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.solutions-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-showcase {
        padding: 60px 0;
    }

    .platform-header {
        flex-direction: column;
        gap: 1rem;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .platform-info h3 {
        font-size: 2rem;
    }

    .platform-features {
        gap: 1rem;
    }

    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .tech-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-solution-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .platform-showcase {
        padding: 2rem;
    }

    .tech-benefits {
        padding: 2rem;
    }

    .solutions-cta {
        padding: 2rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-showcase,
.tech-solution-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

.tech-solution-card:nth-child(2) {
    animation-delay: 0.1s;
}

.tech-solution-card:nth-child(3) {
    animation-delay: 0.2s;
}

.tech-solution-card:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.3s;
}
