/* Production Parity Header Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

.navbar {
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: #fcfcfc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.navbar .content {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    /* max-width: 1360px; */
    padding: 0 50px;
}

.navbar .content .logo {
    display: flex;
    align-items: center;
}

.navbar .content .logo .logo-video {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .content .nav-links {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 5px;
}

.navbar .content .nav-links .nav-item {
    color: #082046;
    font-size: 16px;
    font-weight: 600;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar .content .nav-links .nav-item:hover {
    background: linear-gradient(90deg, #082046, #1E4E8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* mega menu styling */
.nav-item-dropdown.mega-dropdown {
    position: static;
    /* Required for full-width mega menu */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fcfcfc;
    box-shadow: 0 15px 30px rgba(0, 0, 81, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-start;
    gap: 80px;
}

.mega-col {
    flex: 0 0 240px;
}

.mega-col.left-col {
    flex: 0 0 320px;
    padding-right: 40px;
}

.mega-col h3 {
    color: #082046;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mega-col h4 {
    color: #082046;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
}

.mega-col p {
    color: #082046;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.mega-col ul {
    list-style: none;
    padding: 0;
}

.mega-col ul li {
    margin-bottom: 12px;
}

.mega-col ul li a {
    color: #082046;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    display: inline-block;
}

.mega-col ul li a:hover {
    color: #1E4E8A;
    font-weight: 700;
    transform: translateX(5px);
}

.mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #082046;
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.mega-btn:hover {
    background: #1E4E8A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 104, 227, 0.3);
}

.nav-item i {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-item i {
    transform: rotate(180deg);
}

.navbar .content .actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Shared Button Styles */
.btn-sign-up {
    color: #082046;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid #082046;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: #ffffff;
}

.btn-sign-up:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 33, 0.3);
}

.btn-portal {
    background: #ffffff;
    border: 2px solid #082046;
    color: #082046;
    border-radius: 100px;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-portal:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 33, 0.35);
}

.btn-mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #082046;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    /* Full height */
    background: #fff;
    z-index: 1000000;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Allow content scroll if menu is long */
}

.mobile-menu-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.drawer-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-header .logo-video {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.btn-close-drawer {
    background: none;
    border: none;
    font-size: 28px;
    color: #082046;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-close-drawer:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.mobile-nav-item {
    font-size: 18px;
    font-weight: 600;
    color: #082046;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-item-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #082046;
}

.mobile-nav-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-item-dropdown.active .mobile-nav-header i {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.mobile-nav-item-dropdown.active .mobile-nav-submenu {
    max-height: 450px;
    margin-top: 15px;
}

.mobile-nav-submenu a {
    font-size: 16px;
    font-weight: 500;
    color: #082046;
    text-decoration: none;
    padding: 8px 0;
    opacity: 0.8;
}

.mobile-nav-submenu a:hover {
    color: #1E4E8A;
    opacity: 1;
}

.mobile-nav-item:hover {
    color: #1E4E8A;
}

.mobile-drawer-actions {
    margin-top: auto;
    /* Push buttons to bottom if desired, or just margin */
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
}

.mobile-drawer-actions .btn-sign-up,
.mobile-drawer-actions .btn-portal {
    text-align: center;
}

/* Responsive Overrides */
@media screen and (max-width: 1100px) {
    .navbar .content .nav-links {
        display: none;
    }

    .btn-mobile-menu {
        display: block;
    }

    .navbar {
        height: 80px;
    }
}

@media screen and (max-width: 768px) {

    .navbar .content .actions .btn-sign-up,
    .navbar .content .actions .btn-portal {
        display: none;
    }

    .navbar .content {
        padding: 0 20px;
    }

    .navbar {
        height: 70px;
    }
}

.sub-style{
    display: flex;
    flex-direction: column; 
    margin-bottom: 10px;   
}
