/* 
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 */
/* General Scrollbar Style */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 10px; /* Height for horizontal scrollbar */
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Light gray track */
    border-radius: 10px;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background-color: #333; /* Dark gray/black thumb */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Light border between the thumb and track */
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Lighter gray when hovering */
}

/* Scrollbar Corner (where vertical and horizontal scrollbars meet) */
::-webkit-scrollbar-corner {
    background-color: #f1f1f1; /* Light gray corner */
}

@media (min-width: 1025px) { 
    .first-container {
        position: sticky !important;
        top: 150px;
    }
}
.reverse-scroll-section {
    transition: transform 0.2s ease-out; /* Smooth transition for transform */
}