/* =============================================
           GLOBAL RESETS & BASE
        ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    cursor: none;
    /* Hide default cursor */
}

/* =============================================
           CUSTOM DOT CURSOR
        ============================================= */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 12px;
    height: 12px;
    background: #e6a12c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
    will-change: transform, width, height;
    mix-blend-mode: difference;
    box-shadow: 0 0 20px rgba(249, 104, 0, 0.3);
}

/* Cursor glow ring (outer) */
.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(249, 104, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    animation: cursorPulse 2s ease-in-out infinite;
}

/* Cursor hover state (when over interactive elements) */
.custom-cursor.hover {
    width: 20px;
    height: 20px;
    background: rgba(249, 104, 0, 0.15);
    border: 2px solid #e6a12c;
    mix-blend-mode: normal;
}

.custom-cursor.hover::before {
    width: 40px;
    height: 40px;
    border-color: rgba(249, 104, 0, 0.5);
    animation: cursorPulseHover 1.5s ease-in-out infinite;
}

/* Cursor click state */
.custom-cursor.click {
    width: 8px;
    height: 8px;
    background: #ffffff;
    mix-blend-mode: normal;
}

.custom-cursor.click::before {
    width: 25px;
    height: 25px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* =============================================
           CURSOR ANIMATIONS
        ============================================= */
@keyframes cursorPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes cursorPulseHover {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}

/* =============================================
           1. TOP ORANGE BAR
        ============================================= */
.top-bar {
    background-color: #e6a12c;
    height: 32px;
    display: flex;
    align-items: center;
}

.top-bar .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar a,
.top-bar span {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar a:hover {
    color: #ffffff;
    text-decoration: none;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: 2rem !important;
}

.top-bar i {
    font-size: 13px;
}

/* Hide top bar on mobile screens */
@media (max-width: 991.98px) {
    .top-bar {
        display: none !important;
    }
}

/* =============================================
           2. MAIN NAVBAR
        ============================================= */
.main-navbar {
    background-color: #000000;
    min-height: 95px;
    padding: 0;
}

.main-navbar .navbar-brand {
    padding: 8px 0;
}

.main-navbar .navbar-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Nav links */
.main-navbar .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    position: relative;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: #e6a12c !important;
}

/* Services dropdown arrow — orange color */
.main-navbar .navbar-nav .nav-link .dropdown-arrow {
    color: #e6a12c;
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.main-navbar .navbar-nav .nav-item.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Bootstrap dropdown overrides */
.main-navbar .dropdown-menu {
    background-color: #111111;
    border: 1px solid #e6a12c;
    border-radius: 4px;
    margin-top: 0;
    min-width: 180px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Also show when using click (for mobile) */
.main-navbar .nav-item.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navbar .dropdown-menu .dropdown-item {
    color: #ffffff;
    font-size: 14px;
    padding: 8px 18px;
    transition: background 0.2s;
}

.main-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #e6a12c;
    color: #ffffff;
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    color: #e6a12c;
    font-size: 22px;
    transition: color 0.2s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

/* =============================================
           MOBILE CONTACT INFO IN MENU
        ============================================= */
.mobile-contact-info {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 12px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
    margin-bottom: 12px;
}

.mobile-contact-info a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.mobile-contact-info a:hover {
    color: #e6a12c;
}

.mobile-contact-info a i {
    color: #e6a12c;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .mobile-contact-info {
        display: flex;
    }
}

/* =============================================
           HAMBURGER TOGGLER & CLOSE BUTTON
        ============================================= */
.main-navbar .navbar-toggler {
    border: 2px solid #e6a12c;
    border-radius: 4px;
    padding: 4px 8px;
    background: transparent;
    cursor: pointer;
    z-index: 1050;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f96800' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hide hamburger when menu is open */
.main-navbar .navbar-toggler.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Close button - hidden by default, shown when menu is open */
.menu-close-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1060;
    background: none;
    border: none;
    color: #e6a12c;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: transform 0.3s ease;
}

.menu-close-btn.show {
    display: block;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
}

/* =============================================
           MOBILE MENU - LEFT SIDE SLIDE-IN
        ============================================= */

/* Overlay background */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu - slide from LEFT */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #0d0d0d;
        padding: 80px 20px 30px 20px;
        margin-top: 0;
        border-top: none;
        border-radius: 0;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        /* overflow-y: auto; */
        z-index: 1045;
        display: block !important;
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
        border-right: 2px solid #e6a12c;
    }

    .main-navbar .navbar-collapse.show {
        left: 0;
    }

    .main-navbar .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .main-navbar .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-navbar .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Mobile dropdown */
    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        background: rgba(255, 255, 255, 0.04);
        border: none;
        border-left: 2px solid #e6a12c;
        margin: 0 0 4px 0px;
        padding: 6px 0;
        border-radius: 0 0 8px 8px;
        width: auto;
        box-shadow: none;
        pointer-events: auto !important;
    }

    .main-navbar .nav-item.dropdown.show .dropdown-menu {
        display: block !important;
    }

    .main-navbar .dropdown-menu .dropdown-item {
        padding: 10px 16px 10px 28px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

    .main-navbar .dropdown-menu .dropdown-item:hover {
        background: rgba(249, 104, 0, 0.15);
        color: #e6a12c;
    }

    /* Social icons in mobile menu */
    .main-navbar .social-icons {
        justify-content: center;
        padding: 20px 0 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 16px;
        gap: 20px;
    }

    .main-navbar .social-icons a {
        font-size: 22px;
    }

    /* Hide the default collapse on mobile */
    .main-navbar .navbar-collapse.collapsing {
        height: auto !important;
        transition: none !important;
    }

    /* Hide default Bootstrap collapse animation */
    .main-navbar .navbar-collapse {
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* =============================================
           3. ORANGE DISCLAIMER STRIP WITH MARQUEE
        ============================================= */
.disclaimer-strip {
    background-color: #e6a12c;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.disclaimer-strip .disclaimer-inner {
    width: 100%;
    display: flex;
    align-items: center;
}

.disclaimer-strip marquee {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.disclaimer-strip marquee p {
    margin: 0;
    display: inline-block;
}

@media (max-width: 576px) {
    .disclaimer-strip marquee {
        font-size: 11.5px;
    }
}

/* =============================================
           DROPDOWN CARET — hide default BS5 caret
        ============================================= */
.main-navbar .nav-item.dropdown>.nav-link::after {
    display: none;
}

/* =============================================
           ADDITIONAL: Prevent dropdown from closing on hover (desktop)
        ============================================= */
@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown {
        position: relative;
    }

    .main-navbar .nav-item.dropdown::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }
}

.nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* =============================================
        MAKE SURE CURSOR DOESN'T BLOCK CLICKS
        ============================================= */
.custom-cursor {
    pointer-events: none !important;
}

/* =============================================
        SCROLLBAR STYLING FOR MOBILE MENU
        ============================================= */
.main-navbar .navbar-collapse::-webkit-scrollbar {
    width: 4px;
}

.main-navbar .navbar-collapse::-webkit-scrollbar-track {
    background: transparent;
}

.main-navbar .navbar-collapse::-webkit-scrollbar-thumb {
    background: #e6a12c;
    border-radius: 4px;
}

@media (min-width: 375px) and (max-width: 575px) {
    .main-navbar .navbar-nav .nav-link .dropdown-arrow {
        position: relative;
        right: 1rem;
    }

    .main-navbar .navbar-nav .nav-link {
        padding: 12px 16px 12px 0px !important;
        border-bottom: none !important;
    }
}
.zbp-block-logo .bl-icon img{
    object-fit: contain;
}