/* Services Page - Custom Styles */

.services-hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.85)), url('../images/software-hero-v1.png') center/cover no-repeat fixed !important;
    text-align: center;
    position: relative;
    color: #ffffff !important;
}

.services-hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 163, 214, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.services-hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.services-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(46, 163, 214, 0.1);
    z-index: -1;
}

.services-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Service Section Tweak */
.services-page-section {
    padding: 80px 0 120px;
    background: #fff;
}

.services-grid-wrapper {
    margin-top: 40px;
}

/* Hover Enhancement for Page Cards */
.services-page-section .services-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-page-section .services-card:hover {
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .services-hero {
        padding: 140px 0 70px;
    }
    
    .services-hero h1 {
        font-size: 2.8rem;
    }

    .services-page-section {
        padding: 60px 0 80px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 100px 0 50px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
}
