.elementor-1506 .elementor-element.elementor-element-fa0693f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1506 .elementor-element.elementor-element-813fb67{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-1506 .elementor-element.elementor-element-fa0693f{--content-width:1400px;}.elementor-1506 .elementor-element.elementor-element-813fb67{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-e573265 *//* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f2f6ff;
    background-image: url('https://webclanka.com/wp-content/uploads/2022/04/digial-download-store-hero-vector-image-background.svg');

}

.solutions-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: bold;
}

.solutions-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}




/* Individual Solution Card */
.solution-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.solution-card i {
    font-size: 40px;
    color: #5A43EF;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.solution-card h3 a {
    text-decoration: none;
    color: #5A43EF;
    font-weight: bold;
    transition: color 0.3s ease;
}

.solution-card h3 a:hover {
    color: #2a9df4;
}

.solution-card p {
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .solutions-section h2 {
        font-size: 30px;
    }
}/* End custom CSS */