* {
    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);
    }

}

/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 150px 0;
}

.contact-section .row {
    align-items: center;
}

.contact-container {
    max-width: 1400px;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.contact-left h6 {
    color: #0b4dbb;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.contact-left h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    margin-bottom: 18px;
}

.title-line {
    width: 100px;
    height: 4px;
    background: #0057ff;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    max-width: 520px;
}

/* CONTACT INFO */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 24px;
}

/* ICON */

.info-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 10px 25px rgba(11, 77, 187, 0.18);
}

.info-icon i {
    font-size: 22px;

    color: white;

    line-height: 1;
}

.info-icon {
    font-size: 24px;
    color: #0057ff;
    line-height: 1;
}

.info-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0057ff;
    margin-bottom: 2px;
}

.info-item span {
    font-size: 14px;
    color: #222;
}

.response-box {
    display: flex;
    align-items: center;
    gap: 15px;

    background: white;
    padding: 20px;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.response-box i {
    font-size: 30px;
    color: #0b4dbb;
}

.response-box p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ========================= */
/* FORM */
/* ========================= */

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-form-box {

    background:
        linear-gradient(180deg,
            #ffffff,
            #f8fbff);

    border-radius: 36px;

    padding: 35px;

    border:
        1px solid rgba(255, 255, 255, .7);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .08);

    backdrop-filter: blur(18px);

    position: relative;

    overflow: visible;

    max-width: 720px;

    width: 100%;

    margin-left: auto;
}

/* GLOW EFFECT */

.contact-form-box::before {

    content: "";

    position: absolute;

    height: 300px;

    background:
        radial-gradient(circle,
            rgba(0, 102, 255, .10),
            transparent 70%);

    top: -120px;
    right: -120px;

    pointer-events: none;
}

/* SALES TAGS */

.sales-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;

    position: relative;

    z-index: 2;
}

.sales-tags span {

    padding: 12px 18px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .75);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(15, 23, 42, .08);

    color: #0057ff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .3px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .04);
}

/* FORM GROUP */

.form-group {
    margin-bottom: 24px;

    position: relative;
}

.phone-group {
    z-index: 99999;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0a0f1c;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

/* LABEL */

.form-group label {

    display: block;

    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, .88);

    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);
}

/* HEIGHT */

.form-group input,
.form-group select {
    height: 46px;
}

.form-group textarea {

    height: 120px;

    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);
}

/* PHONE INPUT */

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

.iti__selected-country {

    border-radius: 18px 0 0 18px;

    padding: 0 14px;
}

/* BUTTON */

.submit-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 16px;

    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 */

.submit-btn:hover {

    transform:
        translateY(-3px) scale(1.01);

    box-shadow:
        0 25px 50px rgba(0, 102, 255, .35);
}

/* FIX PHONE DROPDOWN */

.iti {
    width: 100%;

    position: relative;

    z-index: 9999;
}

/* COUNTRY LIST */

.iti__country-list {

    z-index: 99999 !important;

    border-radius: 18px;

    border: none;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15);

    overflow: hidden;

    margin-top: 10px;
}

/* FIX DROPDOWN POSITION */

.iti--allow-dropdown {
    width: 100%;
}

.iti__country-container {
    z-index: 999999;
}

.iti__country-list {

    max-height: 260px;

    overflow-y: auto;

    background: white;
}

/* SEARCH INPUT */

.iti__search-input {

    border-radius: 14px;

    border:
        1px solid rgba(0, 102, 255, .15);

    height: 50px;

    padding: 0 16px;
}

#success-message {

    margin-top: 20px;

    text-align: center;

    color: #0b4dbb;

    font-weight: 700;

}

/* ========================= */
/* 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(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);
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-5 {
        padding-left: 40px;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    /* ITEM */

    .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:992px) {
    .contact-container {
        max-width: 1400px;
        margin-top: 50px;
    }

    .contact-left {
        text-align: center;
        margin-bottom: 35px;
    }

    .contact-left-col,
    .contact-form-col {
        width: 100%;
    }

    .contact-left h1 {
        font-size: 34px;
    }

    .contact-left p {
        font-size: 15px;
        max-width: 100%;
    }

    .title-line {
        margin: auto auto 25px;
    }

    .info-item {
        justify-content: center;
    }

    .contact-boat {
        text-align: center;
    }

    .contact-form-box {
        padding: 22px;
        margin: 0;
        justify-self: center;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: space-around;

    }

    .sales-tags {
        display: flex;
        gap: 12px;
        margin-bottom: 35px;
        position: relative;
        z-index: 2;
        justify-content: center;
        flex-wrap: wrap;
    }

    .response-box {
        margin: 0 50px;
        display: flex;
        align-items: center;
        gap: 15px;
        background: white;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
        justify-content: center;
    }
}

@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;
    }

    /* 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;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }

    .info-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .info-item h5 {
        font-size: 13px;
    }

    .info-item span {
        font-size: 12px;
        line-height: 1.4;
    }

    .sales-tags {
        justify-content: space-around;
        gap: 10px;
    }

    .sales-tags span {
        padding: 10px 16px;
        font-size: 12px;
    }

    .response-box {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 15px;
        background: white;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
        justify-content: center;
    }

    .col-lg-7 {
        margin-top: 10px;
    }

    .form-header h3 {
        font-size: 23px;
    }

    .form-header {
        font-size: 14px;
    }

}

@media(max-width:576px) {

    .contact-left h1 {
        font-size: 28px;
    }

    .contact-left p {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 14px;
    }

}