@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Slab:wght@400;700&display=swap');
/* ===== LUMIX STYLE SERVICES SECTION CSS - ELEGANT & PROFESSIONAL REFINEMENT ===== */
.lumix-services-section {
    background: #ffffff; /* Cleaner, brighter background */
    padding: 100px 0; /* Adjusted padding */
    position: relative;
    overflow: hidden;
}

/* ===== SECTION LABEL (from .heading3 span in HTML) ===== */
.heading3 .span { /* Targeting the existing span used as a label */
    font-size: 14px;
    font-weight: 500; /* Slightly bolder */
    color: #007bff; /* Professional blue accent */
    letter-spacing: 1px; /* Reduced letter-spacing */
    margin-bottom: 8px; /* Space below label */
    display: inline-block; /* To allow margin-bottom */
    font-family: 'Roboto', sans-serif; /* Modern, professional font */
}

/* Main heading within the section */
.heading3 h2.tg-element-title {
    color: #212529; /* Darker, more professional heading color */
    font-family: 'Roboto Slab', serif; /* Elegant serif font for heading */
}

.heading3 p {
    color: #495057; /* Softer paragraph text color */
    font-family: 'Roboto', sans-serif;
    max-width: 700px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}


/* ===== SERVICES CONTENT ===== */
.services-content {
    padding-right: 40px; /* Reduced padding */
}

/* ===== SERVICE LIST ===== */
.service-01-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    margin-bottom: 0;
    border-bottom: 1px solid #dee2e6; /* Lighter border */
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
    border-radius: 0; /* Remove border-radius for a cleaner line look */
    overflow: visible; /* Allow hover effects to extend if needed */
}

.service-item:last-child {
    border-bottom: none;
}

.service-link {
    display: flex;
    align-items: center;
    padding: 28px 15px; /* Adjusted padding */
    text-decoration: none;
    color: #343a40; /* Darker base text color */
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent; /* Placeholder for hover effect */
}

.service-link::before {
    /* Removed as we are using border-left now */
    content: none;
}

.service-link:hover {
    color: #0056b3; /* Darker blue on hover for text */
    text-decoration: none;
    padding-left: 25px; /* Indent on hover */
    background-color: #f8f9fa; /* Subtle background highlight */
    border-left-color: #007bff; /* Activate border highlight */
}


/* ===== SERVICE NUMBER ===== */
.service-number {
    font-size: 15px; /* Slightly smaller */
    font-weight: 600; /* Bolder for emphasis */
    color: #007bff; /* Professional blue */
    margin-right: 20px;
    min-width: 30px; /* Adjusted size */
    height: 30px;  /* Adjusted size */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px; /* Subtle rounding */
    background: transparent;
    border: 1px solid #007bff30; /* Very subtle border */
}

.service-link:hover .service-number {
    background: #007bff;
    color: #ffffff;
    border-color: #007bff;
    transform: scale(1.03); /* Subtle scale */
}

/* ===== SERVICE TITLE ===== */
.service-title {
    font-size: 22px; /* Adjusted for elegance */
    font-weight: 500; /* Professional weight */
    line-height: 1.35;
    color: #343a40; /* Consistent dark text */
    font-family: 'Roboto', sans-serif; /* Consistent font */
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-link:hover .service-title {
    color: #0056b3; /* Match link hover color */
    font-weight: 500; /* Keep consistent or slightly bolder if preferred */
}

/* ===== SERVICES DESCRIPTION ===== */
.services-description {
    padding-left: 60px; /* Increased padding for separation */
    position: sticky;
    top: 100px; /* Adjusted sticky position */
    background-color: #f8f9fa; /* Subtle background for description area */
    padding: 30px; /* Padding inside the description box */
    border-radius: 8px; /* Rounded corners for the box */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft shadow */
}

.services-headline {
    font-size: 30px; /* Refined size */
    font-weight: 600; /* Professional weight */
    line-height: 1.25;
    color: #2c3e50; /* Dark, professional color */
    margin-bottom: 15px; /* Space below headline */
    font-family: 'Roboto Slab', serif; /* Consistent elegant serif */
    transition: opacity 0.3s ease;
}

.services-text {
    font-size: 16px; /* Optimal reading size */
    line-height: 1.7; /* Improved line height */
    color: #495057; /* Softer text color */
    font-family: 'Roboto', sans-serif; /* Consistent font */
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}

/* ===== RESPONSIVE DESIGN - Adjustments for new style ===== */
@media (max-width: 1199px) {
    .lumix-services-section {
        padding: 80px 0;
    }
    .services-content {
        padding-right: 20px;
    }
    .services-description {
        padding-left: 20px;
        top: 80px; /* Adjust sticky top */
    }
    .services-headline {
        font-size: 28px;
    }
    .service-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .lumix-services-section {
        padding: 70px 0;
    }
    .services-content {
        padding-right: 0;
        margin-bottom: 40px; /* Reduced margin */
    }
    .services-description {
        padding-left: 0; /* Full width on smaller screens */
        position: static; /* Remove sticky positioning */
        padding: 25px; /* Adjust padding */
        box-shadow: none; /* Remove shadow on stacked layout */
    }
    .services-headline {
        font-size: 26px;
    }
    .service-link {
        padding: 24px 10px; /* Adjust padding */
    }
     .service-link:hover {
        padding-left: 20px; /* Adjust hover indent */
    }
    .service-title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .lumix-services-section {
        padding: 50px 0;
    }
    .heading3 h2.tg-element-title {
        font-size: 28px; /* Adjust global heading for section */
    }
     .heading3 p {
        font-size: 15px;
    }
    .services-headline {
        font-size: 24px;
    }
    .service-link {
        padding: 20px 10px;
    }
    .service-link:hover {
        padding-left: 15px;
    }
    .service-title {
        font-size: 18px;
    }
    .service-number {
        font-size: 14px;
        margin-right: 15px;
        min-width: 28px;
        height: 28px;
    }
    .services-text {
        font-size: 15px;
    }
    .services-description {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .lumix-services-section {
        padding: 40px 0;
    }
     .heading3 .span {
        font-size: 13px;
    }
    .heading3 h2.tg-element-title {
        font-size: 24px;
    }
    .services-headline {
        font-size: 22px;
    }
    .service-link {
        padding: 18px 8px;
    }
     .service-link:hover {
        padding-left: 12px;
    }
    .service-title {
        font-size: 17px;
    }
    .services-description {
        padding: 15px;
    }
}

/* Remove old animation keyframes if not needed or repurpose */
/* @keyframes slideInLeft { ... } */
/* .service-link:hover .service-number, */
/* .service-link:hover .service-title { */
    /* animation: slideInLeft 0.3s ease forwards; */
/* } */

/* Remove old glow effect as new hover is more subtle */
/* .service-link:hover { */
    /* box-shadow: 0 2px 20px rgba(14, 56, 177, 0.1); */
    /* border-radius: 8px; */
    /* margin: 0 -20px; */ /* This can cause layout shifts, be careful */
    /* padding-left: 40px; */ /* Handled by new hover style */
    /* padding-right: 20px; */
/* } */

/* Ensure fonts are imported in the main CSS or HTML if using Google Fonts like Roboto and Roboto Slab */
/* Example: @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Slab:wght@400;600;700&display=swap'); */
