/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.cards-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.card {
    width: 250px; /* Fixed width for all screen sizes */
    min-width: 250px; /* Ensures constant width on smaller screens */
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    background-image: url('https://app15570.cloudwayssites.com/wp-content/uploads/2025/05/Group-49.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 80%;
}

.card h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.navigation-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-right: 20px;
}

.arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.arrow:hover {
    opacity: 0.8;
}

/* Ensure cards don't shrink on small screens */
@media (max-width: 768px) {
    .cards-container {
        justify-content: flex-start;
    }
}
