/* Services Page Styles */


/* Business Scope Section */
.business-scope {
    padding: 40px 0;
}

.scope-section {
    margin-bottom: 60px;
    overflow: hidden;
}

.scope-section > h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
}

.scope-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.scope-section .description {
    flex: 1;
    min-width: 50%;
    max-width: 100%;
    padding: 0 15px;
}

.scope-section .divImgContainerServicesSection {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.scope-section .divImgContainerServicesSection img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: contain;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card ul {
    padding-left: 20px;
    margin: 15px 0;
}

.service-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .scope-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .scope-section .description,
    .scope-section .divImgContainerServicesSection {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .scope-section .divImgContainerServicesSection {
        order: 2;
        margin-top: 20px;
    }
    
    .scope-section .description {
        order: 1;
    }
    
    .scope-section .divImgContainerServicesSection img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    

    .scope-section {
        margin-bottom: 40px;
    }
    
    .scope-section > h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .service-card {
        padding: 15px;
        margin: 10px 0;
    }
    
    .service-card h3,
    .service-card h4 {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .service-card ul {
        padding-left: 20px;
    }
    
    .service-card li {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    
    .scope-section .description,
    .scope-section .divImgContainerServicesSection {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    
    .scope-section h3 {
        font-size: 1.3rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card li {
        font-size: 0.95rem;
    }
}
