body {
    overflow-x: hidden;
}

.main {
    position: sticky;
    top: -1px;
    z-index: 99;
}

/* mobile header start */
header.mobile-nav {
        display: none;
    position: sticky;
    background: #2d3c69;
    border: 1px solid #2d3c69;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    z-index: 999999;
    /*height: 100%;*/
}

.submenu li a {
    color: #ffffff;
    text-decoration: none;
}

.menu-item button {
    font: inherit;
    color: #ffffff;
}

.submenu-toggle[aria-expanded='true'] {
    background: #d5c28b;
    color: #333;
    font-weight: 600;
}

/* NAV WRAPPER */
.mobile-nav {
    max-width: 100%;
    margin: 0 auto;
}

.nav-card {
    background: #2d3c69;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* TOP BAR */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 14px;
}

.nav-top a img {
    filter: invert(1) brightness(10);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: radial-gradient(120% 120% at 20% 20%,
            #6aa1ff 0%,
            #5b8cff 40%,
            #3c62df 70%,
            #2b2f7a 100%);
    box-shadow: 0 4px 18px rgba(91, 140, 255, 0.45) inset,
        0 6px 18px rgba(91, 140, 255, 0.25);
}

.brand svg {
    display: block;
}

/* HAMBURGER */
.hamburger {
    --size: 44px;
    width: var(--size);
    height: var(--size);
    display: inline-grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hamburger:focus-visible {
    outline: 2px solid rgba(91, 140, 255, 0.45);
    outline-offset: 2px;
}

.hamburger:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.hamburger-bars {
    position: relative;
    width: 22px;
    height: 14px;
}

.hamburger-bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.hamburger-bars span:nth-child(1) {
    top: 0;
}

.hamburger-bars span:nth-child(2) {
    top: 6px;
}

.hamburger-bars span:nth-child(3) {
    top: 12px;
}

.hamburger[aria-expanded="true"] .hamburger-bars span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-bars span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-bars span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* DROPDOWN MENU */
nav.menu {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    height: 460px;
    overflow: scroll;
}

.menu-inner {
    padding: 8px;
    display: grid;
    gap: 8px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.submenu-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.submenu-toggle .label {
    display: flex;
    gap: 10px;
    align-items: center;
}

.submenu-toggle .chev {
    transition: transform 0.2s ease;
}

.submenu-toggle:focus-visible {
    outline: 2px solid rgba(91, 140, 255, 0.45);
    outline-offset: 2px;
}

.submenu {
    display: grid;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.submenu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: #9aa3b2;
}

.submenu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #e5e7eb;
}

.submenu li {
    padding: 0px 0px 0px 20px;
    border-top: 1px solid #3d4b75;
}

/* CTA button at the end */
.cta {
    display: block;
    text-align: center;
    margin: 6px 0 0;
    padding: 14px 16px;
    background: #d5c28b;
    color: #333;
    font-weight: 500;
    border-radius: 12px;
    border: 0;
    text-decoration: none;
}

/* Collapsible behavior (hidden attribute fallback) */
[hidden] {
    display: none !important;
}

/* mobile header end */

.header {
    /* backdrop-filter: blur(20px); */
    color: #000000;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 3px solid #2D3B6847;
    padding: 17px 50px;
    position: sticky;
    top: 0;
    display: flex;
    width: 100%;
    z-index: 99;
    justify-content: space-between;
    /* box-shadow: 0px -10px 20px 1px grey; */
}

.header-right {
    /* position: relative; */
    display: flex;
    gap: 10px;
}

.header-right a {
    color: #313133;
    text-align: center;
    padding: 6px 20px;
    text-decoration: none;
    font-size: 16.68px;
    line-height: 25px;
    text-transform: capitalize;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-image 0.3s ease, box-shadow 0.3s ease;
}

.header a.logo img {
    width: 190px;
}

.header-right a:hover {
    color: #2D3B68;
    /* background-image: linear-gradient(
        135deg,
        rgb(255 255 255 / 90%) 0%,
        rgba(255, 255, 255, 0.3) 100%
    ); */
    /* box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); */
}

.header-right a.active {
    color: #2D3B68;
    /* background-color: #00000031;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); */
}

.header-button {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.header-button a {
    color: #fff;
    box-shadow: 0px 0px 0px 6px #2D3B6847;
    background-color: #2d3c69;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 14px 25px;
    text-decoration: none;
    font-size: 16.13px;
    line-height: 25px;
    border-radius: 50px;
    letter-spacing: -0.1px;
    border: none;
    transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

.header-button a.loginBtn {
    box-shadow: 0px 0px 0px 6px #ce892447;
    background-color: #ce8924;
    padding: 14px 40px;
    color: #ffffff;
}

/* .header-button a:hover {
    background-color: #d5c28b;
    color: #2d3c69;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 25%);
} */

/* dropdown */
.dropdown,
.sngl-mn {
    position: static;
    display: inline-block;
    height: 50px;
    align-content: center;
}

.dropdown-content {
    padding: 46px 56px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: absolute;
    background: #fff;
    max-width: 1920px;
    width: 100vw;
    z-index: 1000;
    /* border-radius: 20px; */
    border: 1px solid rgba(0, 0, 0, 0.08);
    top: calc(100% + 0px);
    left: 49.6%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* .dropdown-content::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
} */

.dropdownTopRow,
.dropdownBottomRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.dropdownContentBoxes {
    flex: 0 0 20%;

    position: relative;
}

.dropdownContentBoxes img {
    margin-bottom: 10px;
    border-radius: 20px;
}

.dropdown-content a {
    color: #868686 !important;
    padding: 8px 6px !important;
    text-decoration: none;
    display: block !important;
    text-align: left;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s ease, fill 0.2s ease, box-shadow 0.2s ease;
    float: none !important;
    position: relative;
    font-family: 'poppins';
    line-height: 30px;

}

/* .dropdown-content a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 6px;
    background: #2d3c69;
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 0 4px 4px 0;
} */

/* .dropdown-content a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #2d3c69;
    transform: scaleY(1);  
    transition: transform 0.2s ease;
    border-radius: 0 4px 4px 0;
} */

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

/* .dropdown-content a.active {
    font-weight: 600;
} */

.dropdown-content a:hover {
    color: #2d3c69 !important;
    fill: #2d3c69;
    box-shadow: none !important;
}


.dropdown-content a.active,
.dropdown-content a:hover svg {
    color: #2d3c69 !important;
    fill: #2d3c69;
    box-shadow: none !important;
    font-weight: 500;
    /* background-image: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.15) 0%,
        rgba(118, 75, 162, 0.15) 100%
    ) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2) !important; */
}

.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown>a {
    position: relative;
    transition: all 0.3s ease;
}

.sngl-mn>a {
    transition: all 0.3s ease;
}

/* .dropdown > a::after {
    content: "▾";
    font-size: 12px;
    margin-left: 8px;
    transition: all 0.3s ease;
    display: inline-block;
} */
.dropdown a svg {
    transition: all 0.3s ease;
    stroke-width: 20px !important;
    stroke: #2D3B6859 !important;
    position: relative;
    top: -1px;
}

.dropdown a.active svg {
    stroke: #2D3B68 !important;
    fill: #2D3B68;
}

.dropdown:hover>a svg {
    /* transform: rotate(180deg); */
    transform: rotate3d(0, 60, 0, 190deg);
}

.dropdown:hover>a,
.sngl-mn:hover>a {
    /* background-image: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.15) 0%,
        rgba(118, 75, 162, 0.15) 100%
    ) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2) !important; */
}


.dropdown .dropdown-content hr {
    margin: 0.3rem 0;
    color: #00000078;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}

.dropdownContentBoxTitle {
    font-family: 'poppins';
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    /* letter-spacing: -2%; */
    color: #2D3B68;
    margin-bottom: 14px;
}

.dropdownContentBoxImageTitle {
    font-family: 'poppins';
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #2D3B68;
    margin: 0;
}

/* .dropdownBottomRowDivider {
    width: 222px;
    height: 1px;
    background: #E0E0E0;
    position: absolute;
    top: -26px;
    left: 8px;
} */



.slider-wrap {
    background: #2d3c69;
    color: #ce8924;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slide 38s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 48px;
    font-family: 'montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #f0f4ff;
    letter-spacing: 0.04em;
}

.slide-item a {
    color: #ce8924;
    text-decoration: underline;
    font-family: 'montserrat';
    font-weight: 700;
    text-transform: capitalize;
}

.badge {
    background: #ce8924;
    box-shadow: 0px 0px 0px 5px #cd8a264f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: inter;
}

.dot {
    width: 6px;
    height: 6px;
    background: #8A9BBF;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        background: #8A9BBF;
        /* original */
    }

    50% {
        background: #CE8924;
        /* highlight color */
    }
}

.fade-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    background: linear-gradient(to right, #2d3c69 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.fade-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80px;
    background: linear-gradient(to left, #2d3c69 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Laptop (1024px to 1280px) */
@media (min-width: 1201px) and (max-width: 1600px) {

    /* button and others */
    .header-button a,
    .header-right a {
        font-size: 14px;
    }

    .header a.logo img {
        width: 150px;
    }

    /* .header {
        margin-top: -10px;
    } */

    header.mobile-nav {
        display: none;
    }
}

/* Tablet (768px to 1024px) */
/* @media (min-width: 768px) and (max-width: 12px) {
    .header-button a,
    .header-right a {
        font-size: 10px;
    }

    .header {
        padding: 10px 10px;
    }

    div#heaDer {
        display: none;
    }

    header.mobile-nav {
        display: block;
    }
} */

@media (max-width: 1326px) {
    .header-right {
        gap: 0px;
    }

    .header-button a.loginBtn {
        padding: 14px 30px;
    }
}

@media (max-width: 1258px) {
    .header {
        padding: 17px 20px;
    }
}



/* Mobile (480px to 768px) */
@media (max-width: 1200px) {
    div#heaDer {
        display: none;
    }

    header.mobile-nav {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }
}

/* Small Mobile (320px to 480px) */
@media (max-width: 480px) {
    div#heaDer {
        display: none;
    }

    header.mobile-nav {
        display: block;
    }
}