* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
    background: #fff;
}

.mobile-explore-item {
    display: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.top-header {
    background: #f5f5f5;
}

.custom-navbar {
    background: #0a0f1c;
}

/* ========================= */
/* HEADER */
/* ========================= */

.top-header {
    background: #f5f5f5;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0a0f1c;
}

.support-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    color: #0a0f1c;

    border:
        1px solid rgba(0, 0, 0, .08);

    background: white;

    transition: .3s ease;
}

.support-btn:hover {
    background: #f1f5f9;

    color: #0a0f1c;

    transform: translateY(-2px);
}


.header-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}

/* LINKS */

.top-link {
    text-decoration: none;

    color: #0a0f1c;

    font-size: 15px;

    font-weight: 700;

    transition: .3s ease;
}

.top-link:hover {
    color: #0b4dbb;
}

/* DIVIDER */

.divider {
    color: #999;

    font-size: 14px;
}

/* ICON */

.header-icon {
    font-size: 18px;

    line-height: 1;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.custom-navbar {
    background: #0a0f1c;
    padding: 5px 0;
}

.top-header .container,
.custom-navbar .container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

/* NAVBAR ALIGNMENT */

.custom-navbar .navbar-nav {
    margin-left: 0;
    padding-left: 0;
}

/* REMOVE EXTRA SPACING */

.custom-navbar .navbar {
    padding-left: 0;
    padding-right: 0;
}

/* ALIGN ITEMS */

.custom-navbar .row {
    align-items: center;
}

/* NAVBAR MENU */

.custom-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}


/* NAV LINKS */

.nav-link {
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0 !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #0b4dbb !important;
}

/* BUTTON */

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #666;
    padding: 5px 32px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: #111;
}

/* DROPDOWN MENU */

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown-menu {
    background: #0a0f1c;

    backdrop-filter: blur(12px);

    border: none;

    border-radius: 20px;

    padding: 14px;

    margin-top: 18px;

    min-width: 230px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);

    animation: dropdownFade .25s ease;
}


/* ITEMS */

.dropdown-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 14px;

    color: white;

    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;

    position: relative;
}


/* HOVER */

.dropdown-item:hover {
    background: #0b4dbb;

    color: white;

    transform: translateX(6px);
}


/* SMALL DESCRIPTION */

.dropdown-item span {
    display: block;

    font-size: 13px;

    opacity: .7;

    margin-top: 4px;

    font-weight: 400;
}


/* REMOVE DEFAULT BLUE */

.dropdown-item:active {
    background: #0b4dbb;
}


/* DROPDOWN ANIMATION */

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ========================================= */
/* SUPPORT PAGE */
/* ========================================= */

.support-hero {
    padding: 130px 0;

    background:
        linear-gradient(180deg,
            #f8fafc,
            #eef4ff);
}

/* CONTENT */

.support-content {
    max-width: 560px;
}

.support-tag {
    display: inline-block;

    color: #0b4dbb;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.support-content h1 {
    font-size: 64px;

    line-height: 1;

    font-weight: 900;

    color: #0a0f1c;

    margin-bottom: 24px;
}

.support-content p {
    font-size: 17px;

    line-height: 1.8;

    color: #475569;

    margin-bottom: 40px;
}

/* FEATURES */

.support-features {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.support-feature {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border-radius: 24px;

    background: white;

    border:
        1px solid rgba(15, 23, 42, .05);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .04);

    transition: .3s ease;
}

.support-feature:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

/* ICON */

.feature-icon {
    width: 64px;
    height: 64px;

    min-width: 64px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    color: white;

    font-size: 24px;
}

.support-feature h5 {
    font-size: 20px;

    font-weight: 800;

    color: #0a0f1c;

    margin-bottom: 6px;
}

.support-feature span {
    font-size: 15px;

    color: #64748b;

    line-height: 1.6;
}

/* ========================================= */
/* MODERN PREMIUM FORM */
/* ========================================= */

.support-form-box {
    background:
        linear-gradient(180deg,
            #ffffff,
            #f8fbff);

    border-radius: 36px;

    padding: 55px;

    border:
        1px solid rgba(255, 255, 255, .7);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .08);

    backdrop-filter: blur(18px);

    max-width: 1050px;

    margin: auto;

    position: relative;

    overflow: hidden;
}

/* GLOW EFFECT */

.support-form-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background:
        radial-gradient(circle,
            rgba(0, 102, 255, .10),
            transparent 70%);

    top: -120px;
    right: -120px;

    pointer-events: none;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 26px;

    position: relative;

    z-index: 2;
}

/* FULL WIDTH */

.full-width {
    grid-column: 1 / -1;
}

/* ========================================= */
/* FORM GROUP */
/* ========================================= */

.form-group {
    display: flex;

    flex-direction: column;
}

/* LABEL */

.form-group label {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #0a0f1c;

    margin-bottom: 12px;

    text-transform: uppercase;
}

.form-group label span {
    color: #0066ff;
}

/* ========================================= */
/* INPUTS */
/* ========================================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    background:
        rgba(255, 255, 255, .85);

    border:
        1px solid rgba(15, 23, 42, .08);

    border-radius: 11px;

    padding: 0 24px;

    font-size: 16px;

    color: #111827;

    outline: none;

    transition:
        border .3s ease,
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, .7),
        0 4px 10px rgba(0, 0, 0, .03);
}

/* ========================= */
/* PHONE INPUT */
/* ========================= */

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

.iti__selected-country {
    padding: 0 12px;

    border-radius: 12px 0 0 12px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #111;

    font-weight: 600;
}

/* HEIGHTS */

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    height: 180px;

    padding-top: 22px;

    resize: none;
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8b95a7;
}

/* HOVER */

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {

    border-color:
        rgba(0, 102, 255, .25);
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

.form-group select:focus {
    background: #fff;
    border-color: #0066ff;
    box-shadow: 0 0 0 5px rgba(0, 102, 255, .1);
}

.h3,
h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0a0f1c;
    margin-bottom: 8px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.support-submit-btn {

    width: 100%;

    height: 74px;

    border: none;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #0066ff,
            #003c99);

    color: white;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: .5px;

    transition: .35s ease;

    box-shadow:
        0 18px 40px rgba(0, 102, 255, .28);
}

/* BUTTON HOVER */

.support-submit-btn:hover {

    transform:
        translateY(-3px) scale(1.01);

    box-shadow:
        0 25px 50px rgba(0, 102, 255, .35);
}

/* ========================================= */
/* SUPPORT LEFT SIDE */
/* ========================================= */

.support-left-wrapper {

    min-height: 850px;

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    padding-top: 40px;

    padding-right: 60px;
}

/* CONTENT WIDTH */

.support-content {
    max-width: 620px;
}

/* TITLE */

.support-content h1 {
    font-size: 92px;

    line-height: .92;

    font-weight: 900;

    margin-bottom: 28px;
}

/* DESCRIPTION */

.support-content p {
    font-size: 20px;

    line-height: 1.9;

    max-width: 620px;
}

/* FEATURES */

.support-features {
    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* FEATURE CARD */

.support-feature {

    padding: 28px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);

    transition: .35s ease;
}

.support-feature:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10);
}



/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1460px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 28px;
    }
}

@media(max-width:991px) {
    .top-header .row {
        text-align: center;
    }

    .logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-actions {
        justify-content: center;
    }

    .desktop-explore {
        display: none !important;
    }

    /* SHOW MOBILE BUTTON ONLY WHEN MENU IS OPEN */

    .navbar-collapse.show .mobile-explore-item {
        display: flex;

        justify-content: center;

        width: 100%;

        margin-top: 5px;

        margin-bottom: 10px;

    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-left img {
        display: block;
        margin: 0 auto 20px;
    }

    .footer-links {
        align-items: center;
    }

    .socials {
        justify-content: center;
    }
}

@media(max-width:992px) {


    .support-form-box {
        padding: 40px 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .support-left-wrapper {

        min-height: auto;

        padding: 50px 0;
        margin-bottom: 50px;
    }

    .support-content {
        max-width: 100%;
    }

    .support-content h1 {

        font-size: 64px;
    }
}

/* ========================= */
/* DESKTOP MEGA MENU */
/* ========================= */

@media(min-width:992px) {

    .nav-item.dropdown {
        position: relative;
    }



    /* MENU */

    .mega-menu {
        width: 400px;

        padding: 20px;

        border: none;

        top: 10px;

        border-radius: 24px;

        background: #000c22;

        gap: 2px;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08);
    }

    /* ITEM */
    .support-left-wrapper {
        min-height: 850px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0px;
        padding-right: 60px;
    }

    .mega-item {
        flex: 1;

        padding: 0 !important;

        background: transparent !important;

        border: none;

        text-align: left;

        transition: .3s ease;
    }

    .mega-item:hover {
        background: transparent !important;

        transform: none;
    }

    /* IMAGE */

    .mega-item img {
        width: 32%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 8px;
        transition: .3s ease;
    }

    .mega-item:hover img {
        transform: translateY(-3px);
    }

    /* CONTENT */

    .mega-content h4 {
        font-size: 20px;

        font-weight: 700;

        color: #ffffff;

        margin-bottom: 4px;
    }

    .mega-content p {
        font-size: 13px;

        line-height: 1.5;

        color: #ffffff;

        margin: 0;
    }

    /* REMOVE DEFAULT */

    .mega-menu .dropdown-item {
        color: #111 !important;
    }

    .mega-menu .dropdown-item:hover {
        color: #111 !important;
    }

    .dropdown-menu {
        animation: fadeMenu .25s ease;
    }

    @keyframes fadeMenu {

        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }
}

@media(max-width:768px) {
    .logo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .logo h1 {
        font-size: 18px;
        text-align: center;
    }

    /* ========================= */
    /* MOBILE DROPDOWN FIX */
    /* ========================= */

    .mega-menu {
        width: 100% !important;

        padding: 12px;

        border-radius: 20px;

        background: #000c22;

        flex-direction: column;

        gap: 12px;
    }

    .support-tag {
        width: 100%;
        text-align: center;
        display: inline-block;
        margin-top: 10px;
        color: #0b4dbb;

        font-size: 14px;

        font-weight: 800;

        letter-spacing: 2px;

        margin-bottom: 20px;
    }



    /* ONLY OPEN WHEN CLICKED */

    .mega-menu.show {
        display: flex !important;
    }

    .mega-item {
        display: flex;

        justify-content: center;

        align-items: center;

        gap: 14px;

        padding: 10px !important;

        border-radius: 16px;

        background: rgba(255, 255, 255, 0.03) !important;
    }

    .mega-item img {
        width: 85px !important;

        height: 55px !important;

        object-fit: contain;

        margin: 0 !important;

        flex-shrink: 0;
    }

    .mega-content {
        flex: 1;
    }

    .mega-content h4 {
        font-size: 18px;

        margin-bottom: 2px;

        color: white;
    }

    .mega-content p {
        font-size: 12px;

        line-height: 1.4;

        color: rgba(255, 255, 255, 0.75);
    }

    .nav-item.dropdown .nav-link {
        justify-content: center !important;

        text-align: center;

        gap: 10px;
    }

    /* EXTRA SMALL DROPDOWN */

    .mega-item {
        gap: 10px;
    }

    .mega-item img {
        width: 70px !important;

        height: 45px !important;
    }

    .mega-content h4 {
        font-size: 16px;
    }

    .mega-content p {
        font-size: 11px;
    }
}

@media(max-width:576px) {

    .support-left-wrapper {
        min-height: auto;
        padding: 48px 0;
        margin-bottom: 0px;
    }

    .support-form-box {
        padding: 28px 18px;
        margin-top: -20px;
        border-radius: 26px;
    }

    .form-group input,
    .form-group select {
        height: 60px;

        font-size: 15px;
    }

    .form-group textarea {
        height: 140px;
    }

    .support-submit-btn {
        height: 64px;

        font-size: 16px;
    }

    .support-content h1 {
        margin-top: 5px;
        font-size: 38px;
    }

    .support-content p {
        padding: 0 20px;
        font-size: 16px;
    }



}