/* Services Styles */
#services .section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        2px 2px 2px rgba(0,0,0,0.2),
        -1px -1px 1px rgba(255,255,255,0.1),
        0 4px 8px rgba(255, 255, 255, 0.15);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

#services .section-desc {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--muted);
    margin: 0.5rem auto 3.5rem;
    font-family: 'Inter', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-box {
    background: rgba(8, 11, 14, 0.6);
    border: 1px solid rgba(0, 167, 150, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 0 40px rgba(0, 167, 150, 0.1);
}

.service-box::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at bottom right, 
        rgba(0, 167, 150, 0.8) 0%,
        rgba(0, 167, 150, 0.6) 20%,
        rgba(0, 167, 150, 0.3) 40%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}

.service-box:hover::after {
    opacity: 1;
}

.service-title {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(0, 167, 150, 0.5);
    font-weight: 600;
    z-index: 1;
}

.service-desc {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}



@media (max-width: 768px) {
        .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.9rem;
}
.service-desc {
    font-size: 15px;
}
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-box {
        padding: 24px;
        width: 100%;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    #services {
        padding: 40px 0;
    }
}
