﻿
.services-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    width: 80%
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

    .header h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .header .ai-text {
        background: linear-gradient(135deg, #8bb8ff 0%, #6366f1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .header p {
        font-size: 1.2rem;
        color: #b8c5d6;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 184, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(139, 184, 255, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(139, 184, 255, 0.4);
        box-shadow: 0 20px 40px rgba(139, 184, 255, 0.1);
    }

        .service-card:hover::before {
            opacity: 1;
        }

     /*Click/Active highlight effect */
    .service-card.clicked {
        background: rgba(139, 69, 255, 0.35);
        border-color: rgba(139, 69, 255, 0.9);
        border-width: 3px;
        box-shadow: 0 0 40px rgba(139, 69, 255, 0.6), 0 0 80px rgba(139, 69, 255, 0.3), inset 0 0 30px rgba(139, 69, 255, 0.2);
        transform: translateY(-8px) scale(1.02);
    }

        .service-card.clicked::before {
            opacity: 1;
            background: linear-gradient(135deg, rgba(139, 69, 255, 0.4) 0%, rgba(124, 58, 237, 0.25) 50%);
        }

        .service-card.clicked .service-icon {
            background: linear-gradient(135deg, #8b45ff 0%, #7c3aed 100%);
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 25px rgba(139, 69, 255, 0.6);
        }

        .service-card.clicked .service-title {
            color: #ffffff;
            text-shadow: 0 0 15px rgba(139, 69, 255, 0.8);
            font-weight: 900;
        }

/*.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8bb8ff 0%, #5a9bff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
*/
.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #8bb8ff;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8c5d6;
    transition: all 0.3s ease;
}

.service-card.clicked .service-description {
    color: #e2e8f0;
}


.cta-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 184, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8bb8ff 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: #8bb8ff;
    border: 2px solid #8bb8ff;
}

    .btn-secondary:hover {
        background: #8bb8ff;
        color: #1a1a2e;
    }

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
    
}