.marque_small_txt {
    font-size: 26px;
    color: #fac630;
    font-style: normal;
    font-weight: 300;
}
.w-full{
    width: 100%;
}
.opacity-0{
    opacity: 0 !important;
}
.hero-bg-video-sec{
    position: relative;
}
video.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-bg-video-sec rs-module-wrap{
    position: relative;
    z-index: 1;
}


/* Hero new section
 */


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none; /* ensure video doesn't block clicks */
}

.hero-content {
    /* position: relative; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 2; /* ensure content sits above background */
    pointer-events: auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content a.button {
    padding: 0.8rem 1.6rem;
    background-color: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 3; /* sit above overlays */
    pointer-events: auto;
}

.hero-content a.button:hover {
    background-color: darkorange;
    color: #ffffff !important;
}

video.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.05;
}

/* Header fixes for clickable buttons */
.header_extra {
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

.header_extra a {
    position: relative;
    z-index: 1001;
    pointer-events: auto;
    cursor: pointer !important;
    display: inline-block;
}

/* Ensure header is above everything */
.site-header-menu {
    position: relative;
    z-index: 1000;
}

.site-navigation {
    position: relative;
    z-index: 1001;
}

/* Modern Login Button Design */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fec311 0%, #f39c12 100%);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(254, 195, 17, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10000;
    border: 2px solid transparent;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 195, 17, 0.4);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #000;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(254, 195, 17, 0.3);
}

.login-text {
    position: relative;
    z-index: 1;
}

.login-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.login-btn:hover .login-icon {
    transform: translateX(3px);
}

/* Secondary Login Button (Header Extra) */
.login-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fec311;
    padding: 6px 10px;
    border-radius: 999px; /* pill */
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    /* border: 1px solid #fec311; */
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 10000;
    margin-right: 15px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* .login-btn-secondary:hover {
    background: #fec311;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(254, 195, 17, 0.25);
} */

.login-btn-secondary:active {
    transform: translateY(0);
}

.login-btn-secondary svg {
    transition: transform 0.3s ease;
}

.login-btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Focus-visible for keyboard accessibility */
.login-btn-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 195, 17, 0.35);
}

/* Register Button Secondary (Header Extra) */
.register-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px; /* pill */
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    /* border: 1px solid #fff; */
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 10000;
    margin-right: 15px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* .register-btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
} */

.register-btn-secondary:active {
    transform: translateY(0);
}

.register-btn-secondary svg {
    transition: transform 0.3s ease;
}

.register-btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Focus-visible for keyboard accessibility */
.register-btn-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }
    
    .login-icon {
        width: 12px;
        height: 12px;
    }
    
    .login-btn-secondary {
        padding: 4px 6px;
        font-size: 9px;
        gap: 3px;
        margin-right: 6px;
        letter-spacing: 0.2px;
    }
    
    .register-btn-secondary {
        padding: 4px 6px;
        font-size: 9px;
        gap: 3px;
        margin-right: 6px;
        letter-spacing: 0.2px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .login-btn {
        padding: 6px 10px;
        font-size: 11px;
        gap: 3px;
    }
    
    .login-icon {
        width: 10px;
        height: 10px;
    }
    
    .login-btn-secondary {
        padding: 3px 5px;
        font-size: 8px;
        gap: 2px;
        margin-right: 4px;
        letter-spacing: 0.1px;
    }
    
    .register-btn-secondary {
        padding: 3px 5px;
        font-size: 8px;
        gap: 2px;
        margin-right: 4px;
        letter-spacing: 0.1px;
    }
}

/* Mobile Menu - Hide on Desktop */
.header_menu {
    display: none;
}

/* Show mobile menu only on mobile devices */
@media (max-width: 768px) {
    .header_menu {
        display: block;
    }
}

/* Mobile Menu Login Button Styling */
.menu-mobile .mega-menu-item a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile .mega-menu-item a:hover,
.menu-mobile .mega-menu-item a.active {
    background: #fec311;
    color: #000;
    padding-left: 30px;
}

.menu-mobile .mega-menu-item:last-child a {
    border-bottom: none;
}

/* Mobile menu container */
.header_menu_content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.header_menu_content.active {
    right: 0;
}

.header_menu_content_inner {
    padding: 60px 0 20px;
}

.close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.search_btn {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 8px;
}