﻿
/************Services************/ /

.section-title {
    color: #f8fafc;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
   /* background: linear-gradient(to right, #6366f1, #8b5cf6);*/
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.value-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .value-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.value-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 20px 15px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .value-header::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(25deg);
        transition: all 0.5s ease;
    }

.value-card:hover .value-header::after {
    transform: rotate(25deg) translate(20px, 20px);
}

.value-content {
    padding: 25px 20px;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .value-content p {
        margin-bottom: 20px;
        font-size: 0.95rem;
        text-align: left;
        flex-grow: 1;
    }

.service-icon {
    font-size: 2.8rem;
    margin: 10px 0 20px;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.click-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

    .click-indicator::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }

    .click-indicator:hover::before {
        left: 100%;
    }

    .click-indicator i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

.value-card:hover .click-indicator {
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

    .value-card:hover .click-indicator i {
        transform: translateX(6px);
    }

.windows-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid #6366f1;
}

.windows-title {
    color: #f8fafc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .windows-title i {
        color: #6366f1;
    }

.windows-content {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .value-header {
        font-size: 1.5rem;
        padding: 22px 15px;
    }

    .value-content p {
        font-size: 1rem;
    }

    .service-icon {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .value-header {
        font-size: 1.6rem;
        padding: 25px 20px;
    }

    .value-content {
        padding: 30px 25px;
    }

        .value-content p {
            font-size: 1.05rem;
        }

    .service-icon {
        font-size: 3.5rem;
    }

    .click-indicator {
        font-size: 1rem;
        padding: 14px 20px;
    }
}
