/* =================================
   Services Section Styles
==================================== */
.services-section {
    /* This is the main dark background for the section */
    background-color: #212529;
    /* A standard dark gray/off-black */
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* This creates a subtle dark gray radial gradient for depth */
    background: radial-gradient(circle at center, rgba(33, 37, 41, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    opacity: 1;
    /* Opacity is now controlled by the gradient itself */
    pointer-events: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.service-img {
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}