/* #mainNavbar {
    width: 100%;
    max-width: 100%;
    position: sticky;
    top: 31px;
    margin: 31px 0 0 0;
    z-index: 9999;
}
#mainNavbar .mainNavbarInner {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 102px;
}
#mainNavbar .mainNavbarLogo {
    max-width: max-content;
    width: 100%;
}
#mainNavbar .mainNavbarMenuBox {
    padding: 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0d1fcc;
    border: 1px solid #232d6b;
    backdrop-filter: blur(10px);
    border-radius: 100px;
}

#mainNavbar .mainNavbarMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 0;
    padding: 0;
    width: 100%;
}
#mainNavbar .mainNavbarMenuItem {
    list-style: none;
}
#mainNavbar .mainNavbarMenuLink {
    text-decoration: none;
    padding: 11px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(167, 173, 190, 1);
    display: block;
}
#mainNavbar .mainNavbarMenuLink.active {
    color: rgba(255, 255, 255, 1);
}
#mainNavbar .mainNavbarMenuBtn {
    text-decoration: none;
    padding: 11px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(167, 173, 190, 1);
    background: #131839;
    border: 1px solid #1f275f;
    border-radius: 100px;
    white-space: nowrap;
}
#mainNavbar .mainNavbarGetStartedBtn {
    background: rgba(254, 236, 255, 1);
    text-decoration: none;
    padding: 21px 30px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    color: rgba(0, 5, 13, 1);
    border-radius: 100px;
    max-width: max-content;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
#mainNavbar .mainNavbarGetStartedBtn .iconify {
    font-size: 22px;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#mainNavbar {
    width: 100%;
    max-width: 100%;
    position: sticky;
    top: 31px;
    margin: 31px 0 0 0;
    z-index: 9999;
}

#mainNavbar .mainNavbarInner {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 102px;
    /* padding: 0 20px; */
}

#mainNavbar .mainNavbarLogo {
    max-width: max-content;
    width: 100%;
    position: relative;
    z-index: 99999;
}

#mainNavbar .mainNavbarLogo img {
    max-width: 180px;
    height: auto;
}

#mainNavbar .mainNavbarMenuBox {
    padding: 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0d1fcc;
    border: 1px solid #232d6b;
    backdrop-filter: blur(10px);
    border-radius: 100px;
    flex: 1;
}

#mainNavbar .mainNavbarMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 0;
    padding: 0;
    width: 100%;
}

#mainNavbar .mainNavbarMenuItem {
    list-style: none;
}

#mainNavbar .mainNavbarMenuLink {
    text-decoration: none;
    padding: 11px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(167, 173, 190, 1);
    display: block;
    transition: color 0.3s ease;
}

#mainNavbar .mainNavbarMenuLink:hover {
    color: rgba(255, 255, 255, 1);
}

#mainNavbar .mainNavbarMenuLink.active {
    color: rgba(255, 255, 255, 1);
}

#mainNavbar .mainNavbarMenuDropdownLink {
    position: relative;
}

#mainNavbar .mainNavbarMenuDropdownLink .mainNavbarMenuLink {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

#mainNavbar .mainNavbarMenuDropdownLink .iconify {
    font-size: 24px;
}

#mainNavbar .mainNavbarMenuDropdownList {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    top: 50px;
    border: 1px solid #232d6b;
    background: #0a0d1fcc;
    left: 0;
    width: 350px;
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 19px 22px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

#mainNavbar .mainNavbarMenuDropdownLink:hover .mainNavbarMenuDropdownList {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

#mainNavbar .mainNavbarMenuDropdownList .mainNavbarMenuDropdownListLink {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 200%;
    text-decoration: none;
    color: #a7adbe;
    transition: .3s;
}

#mainNavbar .mainNavbarMenuDropdownList .mainNavbarMenuDropdownListLink.active {
    color: #fff;
}

#mainNavbar .mainNavbarMenuDropdownList .mainNavbarMenuDropdownListLink:hover {
    color: #fff;
    transition: .3s;
}

#mainNavbar .mainNavbarMenuBtn {
    text-decoration: none;
    padding: 11px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(167, 173, 190, 1);
    background: #131839;
    border: 1px solid #1f275f;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

#mainNavbar .mainNavbarMenuBtn:hover {
    background: #1f275f;
    color: rgba(255, 255, 255, 1);
}

#mainNavbar .mainNavbarGetStartedBtn {
    /* background: rgba(254, 236, 255, 1); */
    background-image: url("/assets/images/headerGetStartedButton.png");
    background-size: 120%;
    text-decoration: none;
    padding: 21px 30px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    color: rgba(0, 5, 13, 1);
    border-radius: 100px;
    max-width: max-content;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#mainNavbar .mainNavbarGetStartedBtn:hover {
    /* background: rgba(255, 255, 255, 1); */
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 236, 255, 0.3);
}

#mainNavbar .mainNavbarGetStartedBtn .iconify {
    font-size: 22px;
}

/* Hamburger Menu */
.hamburgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: relative;
    z-index: 99999;
}

.hamburgerMenu span {
    width: 100%;
    height: 3px;
    background: linear-gradient(180deg, #4c75ff 0%, #1a4fff 100%);
    border-radius: 10px;
    transition: all 0.4s ease;
    display: block;
}

.hamburgerMenu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburgerMenu.active span:nth-child(2) {
    opacity: 0;
}

.hamburgerMenu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobileMenuOverlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 101vh;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    padding: 120px 30px 40px;
}

.mobileMenuOverlay.active {
    right: 0;
}

.mobileMenuContent {
    max-width: 500px;
    margin: 0 auto;
}

.mobileMenuList {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobileMenuList li {
    border-bottom: 1px solid rgba(35, 45, 107, 0.5);
}

.mobileMenuList li a {
    display: block;
    padding: 20px 0;
    color: rgba(167, 173, 190, 1);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.mobileMenuList li a:hover,
.mobileMenuList li a.active {
    color: rgba(254, 236, 255, 1);
    padding-left: 10px;
}

/* .mobileMenuList li a.mainNavbarMenuBtn {
    background: #131839;
    border: 1px solid #1f275f;
    border-radius: 100px;
    padding: 15px 20px;
    display: inline-block;
    margin-top: 10px;
} */

a.text-decoration-none {
    text-decoration: none !important;
    color: rgba(254, 236, 255, 1);
    text-transform: capitalize;
     transition: all 0.2s ease;
}

a.text-decoration-none:hover {
    color: #DCCAFF;
}

/* Mobile Get Started Button */
.mobileGetStartedBtn {
    background: rgba(254, 236, 255, 1);
    text-decoration: none;
    padding: 18px 30px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    color: rgba(0, 5, 13, 1);
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.mobileGetStartedBtn:hover {
    background: rgba(255, 255, 255, 1);
}

.mobileGetStartedBtn .iconify {
    font-size: 20px;
}

/* Mobile Social Section */
.mobileSocialsBox {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(35, 45, 107, 0.5);
}

.mobileSocialsHeading h4 {
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    color: #ffffff;
}

.mobileSocialsIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobileMenuList li:last-child {
    border-bottom: none;
}

/* .mobileSocialsIcons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #131839;
    border: 1px solid #1f275f;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobileSocialsIcons a:hover {
    background: rgba(254, 236, 255, 1);
    transform: translateY(-3px);
}

.mobileSocialsIcons a img {
    max-width: 20px;
    height: auto;
} */

/* Dropdown wrapper */
.mobileDropdown {
    width: 100%;
}

/* Services main link */
.mobileDropdownToggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Arrow */
.dropdownArrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.mobileDropdownMenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    transition: max-height 0.4s ease;
    list-style: none;
}



/* Active dropdown */
.mobileDropdown.active .mobileDropdownMenu {
    max-height: 500px;
    /* enough for items */
}

.mobileDropdown.active .dropdownArrow {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 1636px) {

    #mainNavbar {
        padding: 0px 20px;
    }

    #mainNavbar .mainNavbarInner {
        gap: 44px;
    }

    #mainNavbar .mainNavbarMenuBtn {
        padding: 11px 11px;
        font-size: 16px;
    }

    #mainNavbar .mainNavbarMenuLink {
        padding: 8px 12px;
        font-size: 16px;
    }

}

@media (max-width: 1200px) {
    #mainNavbar .mainNavbarInner {
        gap: 30px;
    }

    #mainNavbar .mainNavbarMenu {
        gap: 15px;
    }

    #mainNavbar .mainNavbarMenuLink {
        font-size: 16px;
        padding: 10px 12px;
    }

    #mainNavbar .mainNavbarGetStartedBtn {
        padding: 18px 25px;
        font-size: 16px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    #mainNavbar {
        top: 0;
        margin: 0;
        padding: 20px 20px;
        position: sticky;
    }

    #mainNavbar .mainNavbarInner {
        gap: 20px;
    }

    #mainNavbar .mainNavbarMenuBox {
        display: none;
    }

    #mainNavbar .mainNavbarGetStartedBtn {
        display: none;
    }

    .hamburgerMenu {
        display: flex;
    }
}

@media (max-width: 480px) {
    #mainNavbar .mainNavbarLogo img {
        max-width: 140px;
    }

    .mobileMenuOverlay {
        padding: 100px 20px 30px;
    }

    .mobileMenuList li a {
        font-size: 18px;
        padding: 18px 0;
    }

    .mobileGetStartedBtn {
        font-size: 14px;
        padding: 16px 25px;
    }

    .mobileSocialsIcons a {
        width: 40px;
        height: 40px;
    }
}
