body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background:#F8FCFF;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.navbar-brand img{
    height: 60px;
    width: 300px;
    object-fit: contain;
}
.navbar-nav .nav-link{
    color: #003366;
    font-size: 16px;
    font-weight: 600;
    margin-left: 18px;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover{
    color: #0d6efd;
}
.navbar-nav .nav-link.active{
    color: #0d6efd;
}
@media (max-width:991px){

    .navbar-nav{
        text-align: center;
        margin-top: 15px;
    }

    .navbar-nav .nav-link{
        margin: 8px 0;
    }

    .navbar-brand img{
        height: 50px;
        width: auto;
    }
}

/*================ Hero Slider ================*/

.hero-slider{
    margin-top:85px; /* because header is fixed */
}

.carousel-item{
    position:relative;
    height:90vh;
}

.carousel-item img{
    width:100%;
    height:90vh;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.carousel-caption{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    width:80%;
}

.carousel-caption h5{
    color:#FFD54F;
    font-size:22px;
    margin-bottom:15px;
}

.carousel-caption h1{
    font-size:60px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
}

.carousel-caption p{
    color:#fff;
    font-size:20px;
}

.carousel-caption .btn{
    background:#FF6633;
    color:#fff;
    border:none;
    border-radius:50px;
    font-weight:600;
}

.carousel-caption .btn:hover{
    background:#3399CC;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.2);
    border-radius:50%;
}

.carousel-control-prev{
    left:30px;
}

.carousel-control-next{
    right:30px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .carousel-item,
.carousel-item img{
    height:100vh !important;
}
}
@media(max-width:991px){

.carousel-item,
.carousel-item img{
    height:70vh;
}

.carousel-caption{
    width:95%;
}

.carousel-caption h1{
    font-size:34px;
}

.carousel-caption h5{
    font-size:18px;
}

.carousel-caption p{
    font-size:16px;
}

.carousel-control-prev,
.carousel-control-next{
    width:45px;
    height:45px;
}

}


/*================ ABOUT =================*/

.about-section{
    background:#ffffff;
}

.sub-title{
    color:#FF6633;
    font-weight:700;
    letter-spacing:2px;
    font-size:15px;
}

.about-section h2{
    font-size:40px;
    color:#1E5E8A;
    font-weight:700;
    margin:15px 0 20px;
}

.about-section p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.about-btn{
    background:#3399CC;
    color:#fff;
    border-radius:50px;
    padding:12px 30px;
}

.about-btn:hover{
    background:#FF6633;
    color:#fff;
}

/*================ WHY CHOOSE =================*/

.why-section{
    background:#F7FBFF;
}

.why-section h2{
    color:#1E5E8A;
    font-size:40px;
    font-weight:700;
}

.why-section p{
    color:#666;
}

.choose-box{

    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.choose-box img{
    width:70px;
    margin-bottom:20px;
}

.choose-box h4{
    color:#1E2D5A;
    font-size:24px;
    margin-bottom:15px;
}

.choose-box p{
    color:#777;
    line-height:1.8;
}

.choose-box:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(51,153,204,.18);
    border-bottom:4px solid #FF6633;

}
@media(max-width:991px){

.about-section h2,
.why-section h2{

    font-size:30px;

}

.choose-box{

    margin-bottom:20px;

}

}


/*================ Popular Destination =================*/

.destination-section{
    background:#fff;
}

.section-title{
    color:#1E5E8A;
    font-size:40px;
    font-weight:700;
}

.destinationSwiper{
    width:100%;
    overflow:hidden;
    padding:10px 0 30px;
    position:relative;
}

.destinationSwiper .swiper-slide{
    height:auto;
}

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.4s;
    height:100%;
}

.destination-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.destination-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.6),transparent);
}

.destination-card h5{
    position:absolute;
    left:20px;
    bottom:15px;
    color:#fff;
    font-size:22px;
    font-weight:700;
    z-index:2;
}

.destination-card:hover img{
    transform:scale(1.1);
}

.destination-card:hover{
    transform:translateY(-8px);
}
.destinationSwiper .swiper-button-prev,
.destinationSwiper .swiper-button-next{
    width:45px;
    height:45px;
    background:#3498CC;
    color:#fff;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.destinationSwiper .swiper-button-prev::after,
.destinationSwiper .swiper-button-next::after{
    font-size:18px;
    font-weight:700;
}

.destinationSwiper .swiper-button-prev{
    left:10px;
}

.destinationSwiper .swiper-button-next{
    right:10px;
}

@media(max-width:991px){

    .section-title{
        font-size:30px;
    }

    .destination-card img{
        height:220px;
    }

    .destinationSwiper .swiper-button-prev,
    .destinationSwiper .swiper-button-next{
        display:none;
    }

}
/* ================= FAQ Section ================= */

.faq-section{
    background:#F7FBFF;
}

.section-title{
    color:#1E5E8A;
    font-size:38px;
    font-weight:700;
}
.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button{
    background:#fff;
    font-weight:600;
    color:#1E5E8A;
    padding:18px;
}

.accordion-button:not(.collapsed){
    background:#EAF6FF;
    color:#FF6633;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}
.accordion-body{
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

.section-title{
    font-size:28px;
}

}


/*================ Packages =================*/
.package-section{
    background:#F8FCFF;
}

.package-title{
    color:#1E5E8A;
    font-size:40px;
    font-weight:700;
}

.view-all-btn{
    background:#FF6B35;
    color:#fff;
    text-decoration:none;
    padding:10px 25px;
    border-radius:30px;
    font-weight:600;
}

.view-all-btn:hover{
    background:#3498CC;
    color:#fff;
}

.package-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.price-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:#FF6B35;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.package-content{
    padding:20px;
}

.package-content h4{
    color:#1E5E8A;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.package-btn{
    display:block;
    text-align:center;
    background:#9ACD4F;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
}

.package-btn:hover{
    background:#3498CC;
    color:#fff;
}

.carousel-control-prev,
.carousel-control-next{
    width:50px;
    height:50px;
    background:#3498CC;
    border-radius:50%;
    top:45%;
}

/* .carousel-control-prev{
    left:-20px;
}

.carousel-control-next{
    right:-20px;
} */

@media(max-width:991px){

.package-title{
    font-size:30px;
}

.package-card{
    margin-bottom:20px;
}

.carousel-control-prev,
.carousel-control-next{
    display:none;
}
.view-all-btn {
    display: none;
}

}
.packageSwiper{
    padding:20px 5px;
}

.swiper-slide{
    height:auto;
}

/*================ Travel Service =================*/
.cab-section{
    background:#f8fbfd;
}

.cabSwiper{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    transform:rotate(-3deg);
}

.cabSwiper img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:5px;
}
.cab-home{
    padding-left: 70px;
}
.cab-tag{
    display:inline-block;
    background:#3498CC;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.cab-section h2{
    font-size:42px;
    font-weight:700;
}

.cab-section h2 span{
    color:#3498CC;
}

.cab-section p{
    color:#666;
    line-height:30px;
    margin:20px 0;
}

.cab-btn{
    background:#3498CC;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.cab-btn:hover{
    background:#1d80b3;
    color:#fff;
    transform:translateY(-3px);
}
@media(max-width:991px){

    .cab-home{
        padding-left:20px;
        padding-right:20px;
        margin: 20px;
    }

    .cabSwiper{
        transform:none;
        border-radius:16px;
        margin:0 10px;
        overflow:hidden !important;
    }

    .cabSwiper img{
        height:220px;     
        width:100%;
        object-fit:cover;
        display:block;
    }


}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
     .cabSwiper img{
        height:auto;
     }
}
/*================ Testimonial =================*/
/* .testimonial-section{
    background:#f8fbfd;
} */

.testimonial-card{
    background:#f8fbfd;
    padding:25px;
    border-radius:20px;
    /* box-shadow:0 10px 15px rgba(0,0,0,.08); */
    text-align:center;
    transition:.3s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

.testimonial-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:3px solid #3498CC;
}

.testimonial-card h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#3498CC;
    font-size:14px;
    display:block;
    margin-bottom:10px;
}

.testimonial-card p{
    font-size:15px;
    color:#666;
    line-height:24px;
}
/*================ whatsapp =================*/

.whatsapp-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-btn img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.whatsapp-btn:hover img{
    transform: scale(1.1);
}

/* ================= Footer ================= */

.footer{
    background:#1E5E8A;
    color:#fff;
    padding:60px 0 20px;
}

.footer-logo{
    width:220px;
    height:auto;
}

.footer h5{
    font-size:20px;
    margin-bottom:20px;
    font-weight:700;
    color:#fff;
}

.footer p{
    color:#e6e6e6;
    line-height:1.8;
    font-size:15px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li a{
    color:#e6e6e6;
    text-decoration:none;
    transition:.3s;
}

.footer-links li a:hover{
    color:#FF6633;
    padding-left:5px;
}

.footer hr{
    border-color:rgba(255,255,255,.2);
    margin:30px 0 20px;
}

.footer .text-center p{
    color:#d9d9d9;
    font-size:14px;
}
.footer-detail a{
    color: #fff;
    text-decoration: none;
}
.footer-detail a:hover{
    color: #FF6633;
}
.footer-detail img{
   width: 20px;
   height: 20px;
}
@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-logo{
    margin-bottom:20px;
}

}