/* ''''''''''''''''''''''''==========-NAvbar ----------------------------------------- */

/* Reset and Base */
.Navbar-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Navbar-header body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.Navbar-header {
    background-color: #fff;
    color: #262121;
    padding: 4px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.Navbar-logo img {
    height: 67px;
}

/* Menu */
.Navbar-main-menu {
    display: flex;
    list-style: none;
}

.Navbar-main-menu li {
    margin: 0 15px;
}

.Navbar-main-menu a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.Navbar-main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #146fb9;
    transition: width 0.3s ease;
}   

.Navbar-main-menu a:hover::after,
.Navbar-main-menu a.Navbar-active::after {
    width: 100%;
}

/* Right Section */
.Navbar-right {
    display: flex;
    align-items: center;
}

.Navbar-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Navbar-btn-outline {
    background-color: #e6b800;
    color: #333;
    border: 2px solid #e6b800;
}

.Navbar-btn-outline:hover {
    background-color: #2d113d;
    color: #fff;
    border: 2px solid #2d113d;
}

/* Mobile Toggle */
.Navbar-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) { 
    .Navbar-main-menu {
        display: none;
        flex-direction: column;
        background-color: #2d113d;
        position: absolute;
        top: 48px;
        left: 165px;
        width: 51%;
        text-align: center;
        padding: 15px 0;
        z-index: 999;
    }

    .Navbar-main-menu.show {
        display: flex;
    }

    .Navbar-main-menu li {
        margin: 12px 0;
    }

    .Navbar-right {
        display: none;
    }

    .Navbar-mobile-toggle {
        display: block;
    }

    .Navbar-logo img {
        height: 45px;
        max-width: 150px;
    }

    .Navbar-main-menu a {
        /* position: relative; */
        /* padding: 5px 0; */
        /* font-weight: 500; */
        /* text-decoration: none; */
        color: #fff9f9;
        transition: color 0.3s ease;
    }

    .Navbar-main-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #5ecb1b;
        transition: width 0.3s ease;
    }
}

/* ]\\\\\\\\\\\\\ footer \\\\\\\\\\\\\/.................................... */

/* Footer Main */
.About-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.About-back-to-top:hover {
    transform: translateY(-5px);
    background-color: #e67200;
    /* Darker orange on hover */
}

.About-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.footer-logo img {
    width: 119%;
    margin-left: -51px;
    margin-top: -17px;
}

/* Responsive */
@media(max-width: 576px) {
    .About-back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .footer-logo img {
        width: 87%;
        margin-left: -15px;
        margin-top: -17px;
    }
}

.travel-footer {
    background-color: #00355F;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    max-width: 1150px;
    margin: auto;
}

/* About */
.footer-about h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Links */
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* Contact */
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    margin: 15px 0;
}

.footer-subscribe input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-subscribe button {
    padding: 10px 1px;
    background: #ff7e00;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background: #e67300;
}

/* Payment Logos */
.footer-payments img {
    height: 25px;
    margin: 5px;
    background: #fff;
    padding: 3px 6px;
    border-radius: 4px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #ddd;
}

/* @media (max-width: 768px) {

     .travel-footer {
         width: 113%;
     }
 } */