* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #654520;
    --color: #ffffff;
    --hover-color: #0c86d8;
    --color2: #c7c7c7;
    --color3: #d6c4c4;
    --svg: #cecece;
    --hover-svg: #0c86d8;
    --menu: #cacaca;
    --btn: #0b9faf;
    --btn-hover: #02626d;

    --footer-bg: #8EACCD;
    --footer-color: #d8cdcd;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 10px 90px;
    font-family: Arial, sans-serif;
    padding-right: 101px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;


}

.navbar-brand {
    color: var(--color);
    font-size: 24px;
    font-weight: bold;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--menu);
    margin: 4px 0;
}

.navbar-menu {
    list-style: none;
    display: flex;
}

.navbar-item {
    margin-left: 20px;
}

.navbar-item a {
    color: var(--color);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 9px 6px;
}

.navbar-item a:hover {
    color: var(--color2);

}

a:hover svg {
    fill: var(--hover-svg);

}

.login {
    /* position: relative; */
    padding-left: 110px;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .login {
        padding-left: 0px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .navbar-menu.active {
        display: flex;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        background-color: var(--bg-color);
        align-items: center;
        left: 0;
        justify-content: center;
        z-index: 99;
        overflow: hidden;
    }

    .navbar-item {
        margin: 10px 0;
    }

    .navbar-toggle {
        display: flex;
        z-index: 999;
    }
}

/* Others */
.decode {
    position: fixed;
    left: 15px;
    bottom: 10px;
    text-decoration: none;
    padding: 10px 12px;
    margin: 2px;
    background-color: #232323;
    color: #f3f3f3;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 50%);
    cursor: pointer;
    z-index: 999;
}

.modal {
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(233, 233, 233);
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    margin: auto;
    padding: 30px;
    max-width: 366px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: modalcontact;
    animation-duration: 0.4s;

}

@keyframes modalcontact {
    0% {
        background-color: #ffffff;
        transform: translateY(30px);
    }

    100% {
        background-color: #fff;
        transform: translateY(0px);
    }
}

.hero-section-1 {
    background-color: var(--bg-color);
    color: var(--color);
    /* padding: 120px 20px; */
    text-align: center;
    font-family: sans-serif;
    height: 100vh;
    background: url(website_img/travel1.jpg) no-repeat center center / cover;
}

.hero-content {
   
    height: 71vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 99%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #38579f;
    color: #2e5fd3;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #957878;
}

.btn-cta {
    background-color: var(--btn);
    color: var(--color);
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background-color: var(--btn-hover);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}


.other_con {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0px;
    margin-top: 60px;
}

.others_item {
    width: 345px;
    height: auto;
    margin: 10px 12px;
    padding: 7px 5px;
    background: linear-gradient(145deg, #5c74cd, #9ba1a7);
    margin: 30px 16px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.others_box {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    position: relative;
    top: -51px;
    left: 33%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.others_body_content {
    background-color: #00000012;
    padding: 14px 13px;
    border-radius: 6px;
    font-family: emoji;
    margin-bottom: 52px;
    color: var(--color);
    text-shadow: 0px 12px 12px #4b4b4b;
}

.others_body_content h1 {
    margin: 28px 10px;
    font-family: ui-monospace;
}

.others_box1 {
    background: url("website_img/travel2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
}

.others_box2 {
    background: url("website_img/travel3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
}

.others_box3 {
    background: url("website_img/travel4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
}


.con-contact-form {
    font-family: Arial, sans-serif;
    /* background-color: var(--bg-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 90%;
}

.contact-form:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);

}

.contact-form h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
    outline: none;
    border: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color2);

    outline: none;

}

.contact-form form textarea {
    height: 150px;
    flex-direction: column;
}

.contact-form form button {
    background-color: var(--btn);
    color: var(--color);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form form button:hover {
    background-color: var(--btn-hover);
}



.faq-container {

    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 90px;

}

.faq-container h3 {
    cursor: pointer;
    font-family: math;
    color: var(--bg-color);
}

.faq-heading {
    text-align: center;
    margin: 71px 0px;
    color: var(--bg-color);
    font-size: 30px;
    font-family: sans-serif;
}

.faq-item {
    margin-bottom: 20px;
}

.question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    color: var(--bg-color);
    margin: 35px 0px;
}

.answer {
    display: none;
    transition: max-height 0.3s ease-out;
}

.answer.show {
    display: block;
}

.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease-out;
}




.footer-map {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    padding: 40px 0;
}

.footer-map .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-map .footer-map-info {
    width: 45%;
}

.footer-map .footer-map-map {
    width: 45%;
}

.footer-map h3 {
    margin-bottom: 10px;
    color: var(--color);
}

.footer-map p {
    margin: 5px 0;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-map .container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-map .footer-map-info,
    .footer-map .footer-map-map {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .footer-map .footer-map-info,
    .footer-map .footer-map-map {
        width: 48%;
    }
}


body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.header-container {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    box-shadow: 0px 1px 9px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 60px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.support-text {
    background-color: #00bfff;
    color: white;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 5px;
}

.phone-number {
    color: #00bfff;
    font-size: 12px;
}



/* Ensure the header container is flexible */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 20px; */
    background-color: #f8f9fa;
}



.contact-info {
    text-align: center;
    font-size: 13px;
   
}

.contact-info .support-text {
    display: block;
    font-weight: bold;
}

.contact-info .phone-number {
    display: block;
    color: #007bff;
 
}

.login-info {
   text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-link {
    font-size: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;

}

.login-link:hover {
    text-decoration: underline;
}

/* for faq */

.answer {
    display: none; /* Hide the answer by default */
    transition: max-height 0.3s ease-out;
}

.answer.show {
    display: block; /* Show the answer when the 'show' class is added */
}

.rotated {
    transform: rotate(180deg); /* Rotate the icon */
    transition: transform 0.3s ease-out;
}




/* Offer */
.item_offer {
      border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px 7px;
    margin: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.item_offer:hover {
      transform: scale(0.9);
    background-color: #d0e2f1;
}

.item_offer img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.item_offer .text p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .item_offer {
        flex-direction: column;
        text-align: center;
    }

    .item_offer img {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
