@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}
.wp-icon{
    position: fixed;
    top: 80%;
    left: 90%;
    filter: drop-shadow(0 0.5rem 1rem rgba(0,0,0,0.2));
    transition: all 0.3s ease-in-out;
}
.wp-icon:hover img{
    transform: rotateY(360deg);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
.text-orange{
    color: #EB9819;
}
.text-blue{
    color: #1A0E38;
}
.about-img{
    transition: all 0.3s ease-in-out;
}
.about-img:hover{
transform: translateY(-20px);
box-shadow: 0 0.5rem 1rem gray;
transition: all 0.3s ease-in-out;
}
.padding{
    padding-top: 60px;
    padding-bottom: 60px;
}
a{
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.droplink{
    z-index: 9;
}
.dropdown-menu{
    display: none;
}
.droplink:hover .dropdown-menu {
    display: block;
}
a:hover{
    color: #1A0E38;
    transition: all 0.3s ease-in-out;
}

h1{
    font-size: 3rem;
}

/* header css starts here ..........................................  */
nav{
    width: 100%;
    height: 80px;
    transform: translateY(50px);
    box-shadow: 0 0.2rem .5rem rgba(0,0,0,0.1);
}
nav .container{
    position: relative;
}
.navbar{
    position: absolute;
    left: 0px;
    top: 0px;
}
.navbar .nav-item{
    margin-left: 1rem;
}
.navbar-brand img{
    width: 120px;
}
.navbar .nav-item .nav-link{
    color: #000;
    font-weight: 600;
    font-family: "Nunito";
    transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover{
    color: #1A0E38;
    transition: all 0.3s ease-in-out;
}
.link,.link2,.active-link{
    position: relative;
}
.active-link::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 7px;
    width: 90%;
    height: 3px;
    background-color: #1A0E38;
    border-radius: 3px;
}
.mob-active-link{
    color: #EB9819;
}

.link::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 7px;
    width: 90%;
    height: 3px;
    background-color: #1A0E38;
    opacity: 0.6;
    border-radius: 3px;
    visibility: hidden;
    transform: translateY(-100px) scale(0);
    transition: all 0.5s ease-in-out;
}
.link:hover::after{
    visibility: visible;
    transform: translateY(0px) scale(1);
    transition: all 0.5s ease-in-out;
}
.link2::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 7px;
    width: 90%;
    height: 3px;
    background-color: #1A0E38;
    opacity: 0.6;
    border-radius: 3px;
    visibility: hidden;
    transform: translateY(100px) scale(0);
    transition: all 0.5s ease-in-out;
}
.link2:hover::after{
    visibility: visible;
    transform: translateY(0px) scale(1);
    transition: all 0.5s ease-in-out;
}
.navbar-brand{
    position: absolute;
}
.bars{
    width: 100%;
}
/* header css ends here ..........................................  */


/* banner css starts here ..........................................  */
.banner{
    padding-top: 220px;
    padding-bottom: 60px;
}
.icons-ul li{
 margin-right: 5px;
}
.vertical-text{
    transform: rotate(-90deg);
}
.my-swiper-container,.my-swiper-container2,.my-swiper-container3{
    width: 100%;
    min-height: 70vh;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    position: relative;
}

.slide-img{
    width: 100%;
    height: 70vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0)), url('../images/slider.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

:root {
    --swiper-navigation-size: 16px !important;
}
.swiper-button-prev, .swiper-button-next{
    position: absolute;
    left: 94% !important;
    top: 55% !important;
    padding: 15px;
    background-color: #EB9819;
    width: 60px !important;
    height: 60px !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-size: 40px;
    background-repeat: no-repeat;
}
.swiper-button-prev{
    left: 94% !important;
    top: 33% !important;
    transform: rotate(-180deg);
    animation: left 1s infinite alternate-reverse ;
    transition: all 0.5s ease-in-out;
}
.swiper-button-next{
    animation: right 1s infinite alternate-reverse;
    transition: all 0.5s ease-in-out;
}
@keyframes left {
    from{
        transform: translateX(0) rotate(-180deg);
    }to{
        transform: translateX(-15px) rotate(-180deg);
    }
}

@keyframes right {
    from{
        transform: translateX(0);
    }to{
        transform: translateX(15px);
    }
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
  }

.btn-1{
    padding: 8px 16px;
    border-radius: 5px;
    color: #EB9819;
    border:2px solid #EB9819;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.btn-1::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #EB9819;
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.btn-1:hover::after{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.btn-1:hover{
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btn-3{
    padding: 8px 16px;
    border-radius: 5px;
    color: #fff;
    border:2px solid #EB9819;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.btn-3::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #EB9819;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.btn-3:hover::after{
    width: 0%;
    transition: all 0.3s ease-in-out;
}
.btn-3:hover{
    color: #EB9819;
    transition: all 0.3s ease-in-out;
}

.btn-2{
    padding: 8px 16px;
    border-radius: 5px;
    color: #fff;
    border:2px solid #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.btn-2::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.btn-2:hover::after{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.btn-2:hover{
    color: #000;
    transition: all 0.3s ease-in-out;
}
.filter-box{
    width: 75%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem gray;
    position: absolute;
    top: 100%;
    left: 15%;
    border-radius: 10px;
    z-index: 22;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.filter-box div{
    width: 80%;
    padding: 8px 16px;
}
.filter-box div div{
    width: 25%;

}
.filter-box .btn-box{
    width: 20%;
    height: 100%;
    background-color: #EB9819;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.form-select{
    border: none;
    border-right: 2px solid rgba(0,0,0,0.2);
    border-radius: 0px;
}
.form-select:focus{
    border-color: none;
    box-shadow: none;
    border: none;
    outline: none;
    border-right: 2px solid rgba(0,0,0,0.2);
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.bg-yellow{
    background-color: #EB9819;
}

.package-img img{
    border-radius: 10px;
    transition: all 0.3s ease-in-out !important;
}
.package-img img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out !important;
}

/* banner css ends here ..........................................  */


/* section css starts here ..........................................  */
.place-bg-img{
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 4px 16px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease-in-out !important;
}
.my-swiper-container2{
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0)), url('../images/5.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.slide-img2{
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0)), url('../images/5.webp');
    background-repeat: no-repeat;
    background-size: cover;
}
.my-swiper-container3{
    min-height: 45vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0.5)), url('../images/4.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.place-bg-img div{
    transform: translateY(200%) translateX(40%);
    transition: all 0.3s ease-in-out;
}
.place-bg-img1:hover{
    transform: translateX(-15px) translateY(15px);
    box-shadow: 0 .3rem .8rem rgba(0,0,0,0.2);
    transition: all 0.3s ease !important;
}
.place-bg-img2{
    transition: all 0.3s ease;
}
.place-bg-img2:hover{
    margin: -15px 15px;
    box-shadow: 0 .3rem .8rem rgba(0,0,0,0.2);
    transition: all 0.3s ease !important;
}
.place-bg-img:hover div{
    transform: translateY(-350%) translateX(40%);
    transition: all 0.3s ease-in-out;
}
/* section css ends here ..........................................  */


/* section css starts here ..........................................  */
.bg-blue{
    background-color: #1A0E38;
}
.footer-ul li {
    margin-top: 10px;
}
.footer-ul li a{
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.footer-ul li:hover{
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}
/* section css ends here ..........................................  */


/* North page css starts here ..........................................  */
.padding3{
    padding-top: 200px;
    padding-bottom: 60px;
}
.cardd{
    border-radius: 10px;
    transition: all .3s ease-in-out;
}
.cardd:hover{
    box-shadow: 0 0.2rem .5rem rgba(0,0,0,0.2);
    transition: all .3s ease-in-out;
}


/* North page css ends here ..........................................  */


/* section css starts here ..........................................  */
.bg-trip{
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0.5)), url('../images/2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.form-control:focus{
    box-shadow: none;
    outline: none;
    border: 1px solid #1A0E38;
}
.position{
    position: relative;
    min-height: 130vh;
}
.position2{
    position: relative;
    min-height: 90vh;
}
.plan-form{
    position: absolute;
    top: -20%;
    left: 10%;
    width: 80%;
    border-radius: 10px;
    padding: 30px 25px;
}
/* section css ends here ..........................................  */

/* section css starts here ..........................................  */
.bg-about{
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0.5)), url('../images/north.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.bg-contact{
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0.5)), url('../images/3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.bg-service{
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(to right , rgba(26,14,56,0.9),rgba(26,14,56,0.5)), url('../images/1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#keyword{
    border: none;
}

.spinner-border{
    display: none;
}
.overlay{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 33;
    visibility: hidden;
    justify-content: center;
    align-items: center;
}
.disabled-link {
    pointer-events: none; /* Prevents click events */
    text-decoration: none; /* Remove underline */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
    opacity: 0.5;
}
/* section css ends here ..........................................  */

/* section css starts here ..........................................  */
/* section css ends here ..........................................  */

/* footer css starts here ..........................................  */
/* footer css ends here ..........................................  */


@media screen and (max-width:1200px) {
    .filter-box{
        top: 110%;
    }
}
@media screen and (max-width:1140px) {
    
}
@media screen and (max-width:992px) {
    .banner{
        padding-bottom: 0px;
    }
    .slide-img{
        min-height: 70vh;
    }
    .navbar{
        z-index: 99;
    }
    .navbar-nav-ul .nav-item .nav-link:hover{
        color: #EB9819;
        transition: all 0.3s ease-in-out;
    }
    .my-swiper-container,.my-swiper-container2,.my-swiper-container3{
        padding-top: 60px;
        padding-bottom: 60px;
       
    }
    .my-swiper-container2, .my-swiper-container3{
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .filter-box{
        top: 140%;
        left: 15%;
    }
    
   
    .swiper-button-next{
        left: 90% !important;
        top: 50% !important;
    }
    .swiper-button-prev{
        top: 50% !important;
        left: 5% !important;   
    }
    
    .vertical-text{
        transform: rotate(0deg);
    }
   
    .navbar-nav-ul{
        position: fixed;
        top: 0px;
        left: -100%;
        background-color: rgba(26,14,56,0.8);    
        width: 50%;
        height: 100%;
        z-index: 999;
        padding:60px 60px;
        box-shadow: 0 .5rem 1rem gray;
        /* border: 10px solid #000; */
        
    }
    .navbar-nav-ul li{
        margin-top: 10px;
    }
    .navbar-nav-ul li a{
        color: #fff;
        font-weight: bold;
    }
    .mySwiper{
        z-index: 20;
    }
    .bars:hover,.close-btn:hover{
        cursor: pointer;
    }
    .navbar-brand img{
        width: 70px;
    }
    nav{
        transform: translateY(0px);
    }
    .banner{
        padding-top: 0px;
    }
    .filter-box{
        display: none;
    }
    .padding2{
        padding: 0px;
    }
}
@media screen and (max-width:768px) {
    .navbar-nav-ul{
        width: 70%;
    }
    h1{
        font-size: 2.5rem;
    }
    .btn-1,.btn-2,.btn-3{
        padding: 5px 10px;
        font-size: 14px;
    }
    .filter-box{
        width: 250px;
        height: 60%;
        position: absolute;
        top: 140%;
        left: 33%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .filter-box .btn-box{
        width: 100%;
        height: 20%;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 10px;
    }
    .filter-box div{
        width: 100%;
    }
   
    .filter-box div div{
        width: 100%;
    }
    .filter-box{
        display: none;
    }
}
@media screen and (max-width:550px) {
    .filter-box{
        left: 20%;
    }
    .swiper-button-next{
        left: 80% !important;
    }
    .place-bg-img:hover div{
        transform: translateY(-230%) translateX(60%);
        transition: all 0.3s ease-in-out;
    }
    .filter-box{
        display: none;
    }
    .swiper-button-prev, .swiper-button-next{
        background-size: 30px;
        width:40px;
        height:40px;
        padding: 8px;
    }
}
@media screen and (max-width:400px) {
    .navbar-nav-ul{
        width: 80%;
    }
    .filter-box{
        left: 10%;
    }
    .place-bg-img:hover div{
        transform: translateY(-220%) translateX(60%);
        transition: all 0.3s ease-in-out;
    }
    .filter-box{
        display: none;
    }
    h1{
        font-size: 2rem;
    }
    p{
        font-size: 14px;
    }
}
@media screen and (max-width:320px) {
    .navbar-nav-ul{
        width: 90%;
    }
    .position{
        min-height: 150vh;
    }
    .filter-box{
        display: none;
    }
}

.wp-icon{
    z-index: 1000 !important;
}