/* Solution Area Styles */

/* Business Section */
.business-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.business-image {
    padding: 20px;
    position: relative;
}

.business-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* Elementor Icon List Styles */
.elementor-widget-container {
    margin: 0;
    padding: 0;
}

.elementor-icon-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.elementor-icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.elementor-icon-list-icon {
    margin-right: 10px;
    color: #2D61FD;
    font-size: 14px;
    line-height: 1.6;
}

.elementor-icon-list-text-light {
    color: white;
    font-size: 1rem;
    flex: 1;
}

.elementor-icon-list-text-dark {
    color: #6c757d;
    font-size: 1rem;
    flex: 1;
}

/* Optimize Section */
.optimize-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.optimize-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.optimize-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.optimize-image img::before {
    left: auto;
    right: 20px;
    background: #edb4cb;
}

.optimize-image:hover img {
    transform: scale(1.03);
}

.optimize-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.optimize-section .section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #2D61FD;
}

.optimize-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    background-color: rgba(81, 142, 73, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-icon i {
    color: #2D61FD;
    font-size: 14px;
}

.feature-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .optimize-section {
        padding: 60px 0;
    }
    
    .optimize-section .section-title h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .optimize-section .section-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .optimize-features {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .optimize-section .section-title h2 {
        font-size: 1.75rem;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
}

/* Feature Section */
.section-padding {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p.lead {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: rgba(81, 142, 73, 0.1);
    border-radius: 50%;
    color: #2D61FD;
    font-size: 30px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: #6c757d;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: #2D61FD;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: #2D61FD;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-section .btn-light {
    color: #2D61FD;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    position: relative;
}

.benefits-image img {
    transition: all 0.5s ease;
}

.benefits-image:hover img {
    transform: scale(1.02);
}

.benefits-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.benefits-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #2D61FD;
}

.benefit-item {
    margin-bottom: 25px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(81, 142, 73, 0.1);
    border-radius: 10px;
    color: #2D61FD;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.benefit-item p {
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2, .benefits-section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section-title h2, .benefits-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .benefits-section .col-lg-6:first-child {
        margin-bottom: 40px;
    }
}
