/* =======================
   Import Google Fonts
======================= */
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@700&family=Poppins:wght@400;500;600&display=swap');


body {
    font-family: 'Poppins', sans-serif;

}

a {
    text-decoration: none !important;
}





.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.nav-item {
    font-size: 15px;

}



.dropdown-submenu {
    position: relative;
    font-size: 14px;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
    font-size: 14px;
}


.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


.dropdown-toggle::after {
    margin-left: 6px;
}

.dropdown-item:hover {
    background-color: #2f2f8f;
    color: #fff;
}

.dropdown-item {
    font-size: 14px;
}

.custom-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* space between word & arrow */
    position: relative;
}

.custom-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #000;
}

.custom-toggle:hover::after {
    border-left-color: #fff;
}

.contact-btn {
    background: #2f2f8f;
    color: white;
    padding: 7px 24px;
}

.contact-btn:hover {
    background: #2f2f8f;
    color: white;
    padding: 7px 24px;
}

.top-bar {
    background: #2f2f8f;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 6px 0;
}

.navbar-brand img {
    height: 45px;
}


.hero-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #444444ab;
}

.section-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #2f2f8f;
}

.para {
    font-family: "Poppins";
    font-size: 15px;
    color: gray;
    margin-top: 20px;
}





/*=================== Footer================== */
.footer {
    background: #2f6d9b;
    color: #fff;
    padding: 40px 0 0;
    font-size: 14px;
}

.footer-logo {
    max-height: 55px;
}

.footer h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.follow-text {
    margin-right: 10px;
    font-weight: 600;
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.footer-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    background: #ff6b3d;
    padding: 10px;
    border-radius: 4px;
    height: 32px;
}

.footer-cta {
    margin: 35px 0;
}

.btn-call {
    border: 2px solid #ff6b3d;
    color: #ff6b3d;
    padding: 10px 22px;
    border-radius: 30px;
    margin-right: 10px;
    display: inline-block;
}

.btn-trip {
    background: #ff6b3d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
}

.footer-bottom {
    background: #0f4c81;
    padding: 15px 0;
    margin-top: 20px;
}

.footer-bottom a {
    margin-left: 15px;
    font-size: 13px;
}

.footer-bottom a {
    margin-left: 15px;
    font-size: 13px;
}

@media (max-width: 767px) {
    .footer-bottom a {
        display: block;
        margin: 5px 0;
    }
}

.popup-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.popup-left {
    display: flex;
    justify-content: center;

}

.popup-left img {
    max-width: 100%;
}

.popup-right {
    padding: 40px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.submit-btn {
    background: #2f2f8f;
    color: #fff;
    padding: 12px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #ff6b3d;
    color: #fff;
}

@media (max-width: 768px) {
    .popup-left {
        display: none;
    }
}

.whatsapp-float-right {
    position: fixed;
    bottom: 90px;
    /* above footer CTA */
    right: 20px;
    /* RIGHT side */
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}



.whatsapp-float-left:hover {
    background-color: #1ebe5d;
    color: #fff;
}

.mobile-toggle-btn {
    position: absolute;
    color: rgb(27, 26, 26);
    left: 22rem;
    z-index: 1030;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle-btn i {
    font-size: 1.5rem;
}



a {
    text-decoration: none;
    color: black;
    font-size: 13px;
}

a[aria-expanded="true"] .rotate {
    transform: rotate(90deg);
}

.rotate {
    transition: transform 0.3s ease;
}