/* ══ BASE ══ */
@import url('https://fonts.googleapis.com/css2?family=Times+New+Roman:wght@700&display=swap');


body {
    overflow-x: hidden;
}

/* Width of scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
    background: var(--e-global-color-primary);
    border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: var(--e-global-color-primary);
}

#mobile-menus .menu-body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

#mobile-menus .menu-body::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

/* Apply ONLY on desktop */
@media (min-width: 769px) {

    body::-webkit-scrollbar {
        width: 8px;
    }

    body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    body::-webkit-scrollbar-thumb {
        background: var(--e-global-color-primary);
        border-radius: 10px;
    }

    body::-webkit-scrollbar-thumb:hover {
        background: var(--e-global-color-primary);
    }

}

.logo {
    font-family: 'Times New Roman', serif !important;
    font-weight: bold;
    color: #2d1c6a;
    display: flex;
    align-items: center;
    user-select: none;
}

.logo-2 {
    font-family: 'Times New Roman', serif !important;
    font-weight: bold;
    color: #2d1c6a;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    user-select: none;
}

.logo .sub {
    font-size: 30px;
    margin-left: 10px;
    font-weight: 100;
    min-width: 279px;
    max-width: 540px;
    line-height: 1.5;
    font-family: 'Times New Roman', serif !important;
}

.logo-2 .sub {
    font-size: 17px;
    margin-left: 10px;
    font-weight: 100;
    min-width: 279px;
    max-width: 330px;
    line-height: 1.5;
    font-family: 'Times New Roman', serif !important;
}

/* ══ DESKTOP HEADER ══ */
.header {
    display: flex;
    align-items: center;
    background-color: white;
}

.fix_top {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-logo img {
    height: 80px;
    margin-right: 15px;
}

.header-title {
    font-size: 30px;
    font-weight: bold;
    color: #2d1c66;
    font-family: "Times New Roman", serif;
    letter-spacing: 1px;
}

/* ── Get in Touch Button ── */
.get-in-touch {
    background-color: #2d1c66;
    color: #e4b316 !important;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: -7px;
    /* margin-right: 20px; */
}

.get-in-touch:hover {
    background-color: #fff;
    color: #2d1c66 !important;
    border: 1px solid #2d1c66;
    text-decoration: none;
}

/* ── Desktop Navbar ── */
.navbar {
    background-color: #2d1c66;
    width: 100%;
    margin-top: 10px;
    padding: 8px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
}

.navbar ul {
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
    float: left;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #ffcc00;
}

/* ── Desktop Dropdown ── */
.dropdown-a {
    position: relative;
}

.dropdown-a:hover a {
    color: #ffcc00;
}

.dropdown-a .desk-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 220px;
    width: max-content;
    flex-direction: column;
    padding: 6px 0;
    /* border-top: 3px solid #2d1c66; */
    list-style: none;
    margin: 0;
    height: max-content;

}

.dropdown-a:hover .desk-dropdown {
    display: flex;
}

.dropdown-a .desk-dropdown li {
    list-style: none;
    width: 100%;
    text-align: left;
}

.dropdown-a .desk-dropdown li a {
    display: block;
    padding: 9px 16px;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.dropdown-a .desk-dropdown li a:hover {
    background: #f4f0ff;
    color: #2d1c66 !important;
}

/* ══ STICKY HEADER-2 ══ */
.header-2 {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .4s linear, transform .4s linear;
}

.header-2.show {
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 2px 20px;
    background: white;
    opacity: 1;
    transform: translateY(0);
}

.header-2 .logo-2 {
    flex: 0 0 30%;
}

.header-2 .logo-2 .main {
    margin-left: 5px;
}

.logo-2 {
    min-width: 40%;
}

.nav-2 {
    width: 55%;
    height: 45px;
    padding: 20px;
    background-color: #fff;
}

.login-tab {
    width: 10%;
    padding: 20px;
}

.nav-2 ul {
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
}

.nav-2 ul li {
    margin: 0 15px;
    float: left;
}

.nav-2 ul li a {
    color: #2e1a69;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-2 ul li a:hover {
    color: #ffcc00;
}

.header-2 button {
    padding: 15px 20px !important;
    width: 100%;
    background-color: transparent;
    border: 1px solid #2e1a69;
    color: #2e1a69;
    border-radius: 5px;
}

.header-2 button:hover {
    background-color: #2e1a69;
    color: white;
}

/* ══ MOBILE HEADER — hide on desktop ══ */
.mobile-header,
#mobile-menus {
    display: none;
}

/* ══ MOBILE STYLES ══ */
@media (max-width: 767px) {

    /* Hide desktop elements */
    .header {
        display: none;
    }

    .header-2,
    .header-2.show {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-header,
    #mobile-menus {
        display: block;
    }

    /* ── Mobile Top Bar ── */
    .mobile-header {
        padding: 10px 15px;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .mobile-header .header-logo {
        display: flex;
        align-items: center;
    }

    .mobile-header .header-logo img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .logo .sub {
        font-size: 12px;
        width: auto;
        max-width: 200px;
        line-height: 1.2;
        margin-left: 8px;
        min-width: unset;
    }

    /* ── Hamburger Button ── */
    #menu-toggle {
        cursor: pointer;
        position: relative;
        top: 0;
        right: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* ── Overlay (background dim) ── */
    #menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    #menu-overlay.active {
        display: block;
    }

    /* ── Side Menu ── */
    #mobile-menus {
        position: fixed;
        top: 0;
        right: 0;
        width: 75% !important;
        height: 100vh;
        background-color: var(--e-global-color-primary);
        padding: 0;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        display: flex !important;
        flex-direction: column;
        overflow-y: auto;
    }

    #mobile-menus.open {
        transform: translateX(0);
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
    }

    /* ── Menu Header (close button row) ── */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        background: rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .mobile-menu-header span {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    #menu-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Nav Links ── */
    #mobile-menus .menu-body {
        flex: 0.93;
        padding: 10px 0;
        overflow-y: auto;
    }

    #mobile-menus ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #mobile-menus ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    #mobile-menus ul li>a,
    #mobile-menus ul li .nav-link {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 13px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background 0.2s, color 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #mobile-menus ul li>a:hover,
    #mobile-menus ul li .nav-link:hover,
    #mobile-menus ul li>a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #f5c400;
    }

    /* ── Mobile custom submenu (NO Bootstrap dropdown) ── */
    #mobile-menus .mob-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    #mobile-menus .mob-submenu.open {
        display: block;
    }

    #mobile-menus .mob-submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    #mobile-menus .mob-submenu li a {
        display: block !important;
        padding: 11px 30px !important;
        color: #ccc !important;
        font-size: 13px !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        font-weight: 400 !important;
        text-decoration: none;
    }

    #mobile-menus .mob-submenu li a:hover {
        color: #f5c400 !important;
        background: rgba(255, 255, 255, 0.07) !important;
    }

    /* Arrow on mob-dropdown-toggle */
    #mobile-menus .mob-dropdown-toggle .arrow {
        display: inline-block;
        transition: transform 0.25s ease;
        font-style: normal;
        font-size: 11px;
        opacity: 0.7;
    }

    #mobile-menus .mob-dropdown-toggle.active .arrow {
        transform: rotate(180deg);
    }

    /* ── Bottom CTA Button ── */
    .mobile-menu-footer {
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .mobile-menu-footer a {
        display: block;
        text-align: center;
        background-color: var(--e-global-color-accent, #a51c30);
        color: #fff !important;
        padding: 12px 20px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-menu-footer a:hover {
        background: #e4b316;
        color: #2d1c66 !important;
    }

    /* Other mobile fixes */
    .elementor-304 .elementor-element.elementor-element-e7b1143 {
        padding-top: 4em !important;
        padding-bottom: 0em !important;
        padding-left: 1em !important;
    }

    .elementor-button-wrapper {
        width: 70% !important;
    }
}

.header-2 {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .4s linear, transform .4s linear;
}

.header-2.show {
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 2px 20px;
    background: white;
    opacity: 1;
    transform: translateY(0);
}

.header-2 .logo-2 {
    flex: 0 0 30%;
}

.header-2 .logo-2 .main {
    margin-left: 5px;
}

.logo-2 {
    min-width: 40%;
}

.nav-2 {
    width: 55%;
    height: 45px;
    padding: 20px;
    background-color: #fff;
}

.login-tab {
    width: 10%;
    padding: 20px;
}

.nav-2 ul {
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
}

.nav-2 ul li {
    margin: 0 15px;
    float: left;
}

.nav-2 ul li a {
    color: #2e1a69;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-2 ul li a:hover {
    color: #ffcc00;
}

.header-2 button {
    padding: 15px 20px !important;
    width: 100%;
    background-color: transparent;
    border: 1px solid #2e1a69;
    color: #2e1a69;
    border-radius: 5px;
}

.header-2 button:hover {
    background-color: #2e1a69;
    color: white;
}

.mobile-header .header-logo {
    display: flex;
    align-items: center;
}

.mobile-header .header-logo img {
    width: 50px;
    height: 50px;
}