/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/



@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

body{
    background-color: #000000;
}
.page-header {
    display: none;
}

header#site-header,main#content {
    max-width: 90%;
}
header#site-header {
    margin-bottom: 30px;
}
/* header style */
.site-header {
    direction: rtl;
}
.header-container {
    width: 100%;
    display: flex;
    align-items: center;
}
.header-lang {
    width: 13%;
    display: flex;
    justify-content: space-between;
}
.header-title {
    width: 62%;
    text-align: center;
}
.header-title a {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}
.header-logo {
    width: 25%;
    display: flex;
}
.logo1-container, .logo2-container {
    width: 50%;
}
.wpml-ls-menu-item img {
    border-radius: 30px;
    width: 25px;
    height: 25px;
    object-fit: cover;
}
.wpml-ls-current-language a {
    padding: 0 !important;
}
.wpml-ls-current-language a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50px;
}


/* .cust-menu ul {
    background: darkorange;
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.cust-menu li {
    color: #fff;
    background: darkorange;
    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}
.cust-menu li a {
    color: #fff;
}
.cust-menu li:hover {
    background: red;
    cursor: pointer;
}
.cust-menu ul li ul {
    background: orange;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
}
.cust-menu ul li:hover > ul,
.cust-menu ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
.cust-menu ul li ul li {
    clear: both;
    width: 100%;
} */
.dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 300px;
    background-color: #fff;
    list-style: none;
    padding: 0;
    top: 40px;
    right: 0;
    border-radius: 3px;
    height: 250px;
    z-index: 999;
    overflow: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cust-menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
}
.site-navigation {
    display: flex;
    align-items: center;
    width: 50%;
}
.cust-menu {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.cust-menu h4 {
    font-family: Heebo;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    direction: ltr;
    align-items: center;
}
.cust-menu h4 i {
    margin-left: 10px;
}
.dropdown li {
    color: #000;
    font-family: Heebo;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}
.dropdown li:hover {
    background-color: #fdb136;
    color: #fff;
}

/* Popup styles */
.custom-model-main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.custom-model-inner {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10000;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.close-btn-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.custom-model-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.pop-up-content-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.pop-up-content-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-model-inner {
        width: 95%;
        height: 85%;
    }
    
    .close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .close-btn-icon {
        width: 18px;
        height: 18px;
    }
}