/* 
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 */
/* স্টিকি এবং গ্লাস ইফেক্ট ডিজাইন */
#my-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease-in-out;
    
    /* গ্লাস ইফেক্ট */
    background: rgba(255, 255, 255, 0.1); /* সাদার হালকা ঝাপসা ভাব */
    backdrop-filter: blur(12px); /* ব্লার ইফেক্ট */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* স্ক্রল করার পর কালার পরিবর্তন (অপশনাল) */
#my-sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.8); /* স্ক্রল করলে একটু গাড় হবে */
    padding: 10px 0; /* স্ক্রল করলে হেডার ছোট হবে */
}

/* মোবাইল রেসপন্সিভনেস */
@media (max-width: 767px) {
    #my-sticky-header {
        padding: 5px 10px;
    }
}