/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(41, 121, 255, 0.02) 100%);
    text-align: center;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Highlights */
.services-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-light);
    border-left: 4px solid #ffffff;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-highlight:hover {
    transform: translateX(10px);
    border-left-width: 8px;
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(41, 121, 255, 0.3);
}

.service-highlight:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.service-highlight:hover .highlight-icon {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(41, 121, 255, 0.5);
}

@keyframes pulse-icon {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.service-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-highlight p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Enhanced Grid for 5 services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 768px) {
    .services-intro {
        grid-template-columns: 1fr;
    }

    .service-highlight {
        padding: 30px;
    }
}