/* ============================================
   SERVICES OVERVIEW SECTION (PREMIUM DESIGN)
   Inspired by Eujim Solutions visual hierarchy
   ============================================ */

:root {
    --sn-green: #52d681;
    --sn-dark-bg: #0a1628;
}

.services-overview-section {
    background: linear-gradient(rgba(10, 22, 40, 0.94), rgba(10, 22, 40, 0.94)), url('../../img/services-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    color: #ffffff;
}

/* Left Intro Section */
.intro-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.intro-title {
    font-size: var(--h2-size);
    /* Reverting to site standard size */
    font-weight: 700;
    color: var(--sn-primary) !important;
    /* Using brand blue */
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.intro-text {
    font-size: var(--body-size);
    color: #2d3748;
    /* Darker gray for intro text */
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
    /* Increased weight for visibility */
}

/* Right Service Items Grid - Glassmorphism */
.service-item-link {
    text-decoration: none !important;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-overview-section .service-item {
    background: rgba(255, 255, 255, 0.85) !important;
    /* Lighter background for black text */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item-link:hover .service-item {
    background: #ffffff !important;
    border-color: var(--sn-primary) !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-item-icon {
    font-size: 44px;
    background: var(--sn-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.service-item-title {
    font-size: var(--body-size);
    font-weight: 700;
    color: #1a202c;
    /* Black text for title */
    margin-top: 10px;
    margin-bottom: 12px;
}

.service-item-desc {
    font-size: 0.95rem;
    color: #4a5568;
    /* Dark gray for paragraph */
    line-height: 1.6;
    margin-bottom: 0;
}

/* EXPLORE SERVICES Button */
.services-overview-cta {
    margin-top: 60px;
}

.btn-explore-services {
    display: inline-block;
    background: var(--sn-gradient-primary);
    color: #ffffff;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-explore-services:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.5);
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .intro-title {
        font-size: 2.25rem;
    }

    .services-overview-section {
        padding: 50px 0;
    }
}