* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.text-red {
    color: #e5252a;
}

/* =========================
   HEADER BASE
========================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo img {
    height: 44px;
    display: block;
}

/* =========================
   NAVIGATION DESKTOP
========================= */
.nav-menu {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding-left: 0 !important;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #001846;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    width: 100%!important;
}

.nav-menu ul li a:hover, 
.nav-menu ul li a.active {
    color: #cf2128;
}

/* =========================
   RIGHT SECTION (DESKTOP)
========================= */
/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Quote Button */
.quote-btn {
    background-color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    fill: var(--e-global-color-43f9732);
    color: var(--e-global-color-43f9732);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #C3C3C3;
    border-radius: 18px 18px 18px 18px;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
    text-decoration: none;
}

.quote-btn:hover {
    color: #b71c22;
}





/* Dropdown Container */
/* =========================
   COUNTRY DROPDOWN
========================= */

.country-dropdown {
    position: relative;
    display: inline-block;
}

/* =========================
   BUTTON STYLE (Dark Rounded)
========================= */

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #b71c22;
    padding: 10px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover button effect */
.dropdown-btn:hover {
    color: #ffffff !important;
    border: 2px solid #3b82f6;
    background: #2f2f2f;

}



/* Arrow icon */
.dropdown-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.country-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU CARD
========================= */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);

    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    margin: 0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;

    z-index: 9999;
}

/* Show on hover */
.country-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =========================
   MENU ITEMS
========================= */

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #0f1e40;
    transition: background 0.3s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f4f6fb;
}

/* Flag image */
.dropdown-menu img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #cf2128;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 991px) {

    .header-container {
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        max-height: 1000px;
        padding: 10px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .nav-menu ul li a.active {
        background: #cf2128;
        color: #ffffff;
    }

    .header-right {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-top: 10px;
    }
}



























/* ===============================
   Support SECTION
================================ */
.support-section {
    background-image: url(../../assets/img/contact/Ellipse-10.png);
    background-position: 45px -603px;
    background-repeat: no-repeat;
    padding: 9rem 0 3rem 0;
    text-align: center;
    position: relative;
}

/* ===============================
   HEADER
================================ */
.support-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.badge-icon {
    color: #cf2128;
    margin-right: 6px;
}

.support-tag {
    display: inline-block;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.support-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1F2853;
    margin-bottom: 15px;
}

.support-header h2 span {
    color: #CF2128;
}

.support-header p {
    font-size: 16px;
    color: #555;
}

/* ===============================
   FORM CARD
================================ */
.support-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1F2853;
}

.form-group label span {
    color: #CF2128;
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f0f0f2;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #CF2128;
    background: #fff;
}

.form-group textarea {
    resize: none;
}

.full {
    margin-top: 20px;
}

/* ===============================
   CAPTCHA
================================ */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-box {
    padding: 12px 20px;
    background: linear-gradient(135deg, #cfcfcf, #a5a5a5);
    border-radius: 6px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 4px;
    color: #111;
    user-select: none;
}

.refresh-btn {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

.captcha-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f0f0f2;
}

/* ===============================
   BUTTON
================================ */
.submit-btn {
    margin-top: 30px;
    padding: 14px 30px;
    background: #CF2128;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b71c22;
}

/* ===============================
   MAP SECTION
================================ */
.map-section {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.map-section img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .support-header h2 {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .support-form-wrapper {
        padding: 30px 20px;
    }

    .submit-btn {
        width: 100%;
    }
}
















.contact-info-section {
    background: #ffffff;
    padding: 3rem 0;
}

.contact-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.contact-item {
    flex: 1;
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #ffffff;
    font-size: 32px;
}

.contact-item h3 {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2853;
}

.contact-item p {
    font-size: 16px;
    font-weight: 500;
    color: #1F2853;
}

@media (max-width: 992px) {
    .contact-info-container {
        flex-direction: column;
        gap: 50px;
    }
}











































/* footer */
.xberra-footer {
    color: #cfd5f6;
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-container {
    background: #1f2a56;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
    padding: 2rem 0rem;

}

.footer-title {
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-head-logo {
    width: 360px;
    margin-bottom: 10px;
    padding: 10px;
}

.footer-logo {
    width: 140px;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.footer-description {
    max-width: 400px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
}

.countries-available {
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {

   .footer-head-logo {
    width: 250px;
    margin-bottom: 10px;
    padding: 10px;
}
}

























/* scroll to top */
/* =========================
   SCROLL TO TOP BUTTON
========================= */ 
.scroll-top-btn {
    position: fixed;
    bottom: 60px;
    right: 30px;
    background: #046bd2;
    /* Bootstrap blue */
    color: #fff;
    padding: 4px 6px;
    font-size: 16px;
    font-weight: 600;
    /* box shape */

    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.scroll-top-btn svg {
    fill: #fff;
}



.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #084298;
    /* darker blue */
    transform: translateY(-3px);
}