/**
 * Services Section Styling for MSK Nutraceuticals Theme
 */

/* Services Section */
.q6f-section.services {
    padding: 80px 0;
    background-color: #f8fdf5;
}

.services .section-header {
    margin-bottom: 60px;
}

.services .section-header .title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services .section-header .subtitle {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #62bd5e;
}

/* Service Icons */
.service-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #62bd5e, #4caf50);
    border-radius: 50%;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #62bd5e, #4caf50);
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

/* Service Icon Images */
.service-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
}

/* Service Title */
.service-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0px;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hover Effects */
.service-card:hover .service-title {
    color: #62bd5e;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services .section-header .title {
        font-size: 30px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .q6f-section.services {
        padding: 60px 0;
    }
    
    .services .section-header .title {
        font-size: 26px;
    }
    
    .services .section-header .subtitle {
        font-size: 15px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .service-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .services .section-header .title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
}