/* Services Section */
.services-section {
    width: 100%;
    background-color: #070016;
    padding: 88px 6%;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 80px 0;
    letter-spacing: -1px;
}

.services-heading .text-white {
    color: #ffffff;
}

.services-heading .text-purple {
    color: #9d4edd;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    justify-items: center;
    justify-content: center;
}

.services-explore-more {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.services-explore-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9d4edd, #c77dff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
    box-shadow: none;
}

.services-explore-button:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.services-explore-button:active {
    transform: translateY(0);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.service-card {
    width: 100%;
    max-width: 400px;
    height: 304px;
    background-color: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: rgba(157, 78, 221, 0.6);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.service-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.4);
    max-width: none;
    max-height: none;
}

.service-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.service-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 5%;
    }
    
    .services-heading {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 56px 4%;
    }
    
    .services-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        padding: 22px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 44px 14px;
    }
    
    .services-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-image {
        height: 132px;
    }
}
