:root {
    --primary: #13b6ec;
    --black: rgb(15, 23, 42);
    /* Booking.com system font stack */
    --text-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--text-font);
    font-size: 16px;
    color: var(--black);
    background-color: #f6f8f9;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.btn-light-primary {
    background-color: rgba(19, 182, 236, 0.1);
    color: var(--primary);
}

.bg-background-light {
    --tw-bg-opacity: 1;
    background-color: #f2f2f2;
}

.btn-primary {
    background: #13b6ec;
    color: #fff;
    border-radius: 8px;
    padding: 6px 16px;
    transition: .25s;
    border: 1px solid #13b6ec;
}

.btn-primary:hover {
    background: #05a2d6;
    color: #fff;
    border: 1px solid #13b6ec;
}

.btn-outline-primary {
    background-color: #fff;
    color: #13b6ec;
    border: 1px solid #13b6ec;
}

.btn-outline-primary:hover {
    background-color: #13b6ec;
    color: #fff;
    border: 1px solid #13b6ec;
}

.text-primary {
    color: #13b6ec !important;

}
.action-btn{
       background: #ea580c;
    color: #fff;
    border: 1px solid #ea580c;
     border-radius: 20px;
    padding: 6px 16px;
    transition: .25s;
}
.action-btn:hover{
     background: #e7702f;
     border: 1px solid #e7702f;
     color: #fff;
}
.four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 1280px) {
    .four-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .four-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 767px) {
    .four-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:576px) {
    .btn {
        font-size: .9rem;
        padding: .375rem .5rem !important;
    }

    .btn-lg {
        font-size: 1rem;
        padding: .5rem .7rem !important;
    }

}

.page-info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
   
    overflow: hidden;
}

.page-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.page-info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-info:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 50, 80, 0.7) 0%, rgba(0, 50, 80, 0.85) 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-info-content {
    z-index: 2;
    text-align: center;
    width: 50%;
    padding: .75rem;
}

.page-info-title {
    font-size: clamp(25px, 3.5vw, 44px);
    color: #fff
}

.page-info-content p {
    color: #d2d2d2;
}

@media(max-width:1366px) {
    .page-info {
        height: 350px;
    }
}

@media(max-width:768px) {
    .page-info {
        height: 250px;
    }

    .page-info-content {

        width: 100%;
    }
}

.nav-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: .75rem;
}

.nav-tab .nav-link {
    background-color: #ffffff;
    border-radius: 18px;
    padding: .5rem 1rem;
    color: #5a5a5a;
    border: 1px solid #d4d4d4;
    transition: .25s;
}

.nav-tab .nav-link.active {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    color: #fff;
}

.nav-tab .nav-link:hover {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    color: #fff;
}

.nav-tab-two {
    display: flex;

    align-items: center;

    gap: 1rem;
    overflow-x: auto;
}

.nav-tab-two .nav-link {
    padding: .5rem 1rem;
    color: #5a5a5a;
    transition: .25s;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    position: relative;

}

.nav-tab-two .nav-link.active,
.nav-tab-two .nav-link:hover {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tab-two .nav-link.active::after,
.nav-tab-two .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
}

.need-help-wrapper {
    background: linear-gradient(90deg, #3da7e3 0%, #2b6fd6 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.modal-header {
    background: linear-gradient(74deg, #104a6c 15%, #095893 100%);
    color: #fff;
}

/* Remove default border + radius if needed */
@media(min-width:1024px){

    .w-lg-75{
        width: 75%;
        margin: 0 auto;
    }
}
.accordion-button {
    border: none;
    box-shadow: none;
    background-color: #ffffff;
    border-radius: 6px;
}

.accordion-button:not(.collapsed) {
    border-radius: 6px 6px 0 0;
}

.accordion-collapse .accordion-body {
    background-color: #F0F6FE;
}

/* Remove focus outline + shadow */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Hover effect on accordion button */
.accordion-button:hover {
    background-color: #cfe2ff;
    /* change to any color you like */
}

/* Optional: remove border from collapsed content */
.accordion-collapse {
    border: none;
}

.accordion-item {
    border: none;
    /* remove border */
}

.accordion-item:not(:last-child) {
    margin-bottom: 15px;

}

.card {
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.shadow-bottom {
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

/* header css start */
.navbar {
    background: #f6f8f9;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.navbar-brand.logo img {
    height: 50px;
    width: auto;
}
.nav-link {
    font-weight: 500;
}
header .search-container {
 
    background: #f3f3f3;
    border-radius: 20px;
}
header .search-container input{
    padding: 0;
    font-size: .9rem;
}
header .search-container input::placeholder{
    opacity: .5;
}
header .search-container input i{
    color:#bdb7b7;
}
@media (max-width: 1024px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}

/* Desktop above 1024px */
@media (min-width: 1400px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .75rem;
    }
}

@media(max-width:576px) {
    header .top-header a {
        font-size: .85rem;
    }
}

/* header css end */




.section {
    padding: clamp(22px, 4.09vw, 90px) 0;
}

.heading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(20px, 2vw, 40px);

}

.section-heading {
    font-size: clamp(20px, 2.5vw, 32px);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title-sm {
    font-size: clamp(17px, 2vw, 18px);
    font-weight: 600;
    position: relative;
    padding-bottom: .5rem;
    color: #13b6ec;

}

.section-title-sm:after {
    content: "";
    height: 2px;
    width: 100px;
    background: #caf2ff;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.card {
    border-radius: 1rem;
}

.view-all-link {
    font-weight: 500;
    flex: 0 0 100px;
}
.mob-view-link{
    display: none;
}
@media(max-width:680px){
    .heading-wrapper {
    
    align-items: flex-start;
    

}
.view-all-link{
    display: none;
}
.mob-view-link{
   display: block;
        margin: 1rem auto 0;
        text-align: center;

}
}
/* tour Package Section css start */
.tour-pachage-section{
    background-color: #fff;
}
.tour-package {
    position: relative;
    overflow: hidden;
     background-color: #f5f7f8;
}


.tour-package .tour-price {
    border-radius: 16px;
    background-color: #f97316;
    color: #fff;
    padding: 3px 13px;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: .85rem;
}
.tour-package .tour-period{
      border-radius: 16px;
    background-color: #fff;
    color: #13b6ec;
    padding: 3px 13px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .85rem;
}


.card.tour-package img {
    width: 100%;
    height: 220px;
    border-radius: 1rem;
    object-fit: cover;
}
.tour-package  .title-wrapper{
display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tour-package  .title-wrapper .stars{
    font-size: 16px;
}
.tour-package  .title-wrapper .stars span{
    color: #353535;
    font-size: .85rem;
    font-weight: 500;
}
.card.tour-package h3 {
     font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.card.tour-package p{
    margin: 1rem 0 1.5rem;
}

.card.tour-package {
    display: flex;
    flex-direction: column;
}

.card.tour-package .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.card.tour-package .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
    flex: 1 1 auto;
    margin-bottom: 1.5rem;
}

.card.tour-package .book-trip {
    margin-top: auto;
}

.book-trip{
    border-radius: 20px;
    padding: .5rem 1rem;
}
.trending-card .trending-layout{
    display: flex;
}

.tour-package.trending-card .tour-period {
    border-radius: 16px;
    background-color: #fff;
    color: #13b6ec;
    padding: 5px 8px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 99;
}
.tour-package.trending-card .img-wrapper{
    flex: 0 0 350px;
    position: relative;
}
.tour-package.trending-card .img-wrapper .stars{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 16px;
}
.tour-package.trending-card .stars span {
    color: #353535;
    font-size: .85rem;
    font-weight: 500;
}
.trending-card .trending-layout img{
   width: 100%;
   object-fit: cover;
}
.trending-card .trending-layout .price{
   font-size: clamp(16px, 1.4vw, 28px);
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 0;
    display: inline-block;

}
.trending-card  .facility{
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;

}
.trending-card  .facility li{
     padding: 5px 12px;
    border-radius: 12px;
    background-color: #4ca8d4;
    color: #fefdfd;
    font-size: .9rem;
    line-height: 1;
}
@media(max-width:992px){
    .trending-layout{
        flex-direction: column;
    }
    .tour-package.trending-card .img-wrapper {
    flex: auto;
}
.card.tour-package img {
    height: 151px;
}
.card.tour-package p {
    margin: 0.2rem 0 0.8rem !important;
}
.trending-card .facility {

    gap: 0.5rem;
  
}
.trending-card .facility li {
    padding: 4px 10px;
    font-size: 0.8rem;
   
}
}
/* tour Package Section css end */

/* destination css start */
.destination-card{
    position: relative;
    overflow: hidden;

}
.destination-card img{
    transition: transform 0.3s ease;
    object-fit: cover;
}
.destination-card .price{
      font-size: clamp(16px, 1.2vw, 17px);
    font-weight: 500;
    color: #ea580c;
    margin-bottom: 0;
    display: block;
}
.destination-card .stretched-link{
    z-index: 999;
}
@media(min-width:1366px){
    .destination-card img{
        min-height: 400px;
    }
}
.destination-card:hover img {
transform: scale(1.05);
}
.destination-card:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
        background: linear-gradient(45deg, #0d0c0c75, transparent);
}
.destination-card .info{
    position: absolute;
    left: 0 ;
    bottom: 1rem;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    align-items: end;
    width: 100%;
    padding: 0 1rem;
}
.destination-card .info .d-name{
    font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    color: #fff;
    margin-bottom:0;
}
.active-tour{
    color: #cbd5e1;
    font-size: .9rem;
}
@media(max-width:768px){
    .destination-card img {
 
    height: 200px;
}
}
/* destination css end */


/* footer css Start */
footer {
    background-color: #0f172a;
    color: #909faa;
    font-size: .95rem;
}

footer .top-footer {
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    max-height: 60px;
    width: auto;
}

.socila-list {
    margin: 2rem 0 0 0;
    padding: 0;
    list-style: unset;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.socila-list li {
    --size: 35px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d2b4d;
    transition: .25s;
}

.socila-list li a {
    color: #c1c1c1;
    display: inline-block;
}

.socila-list li:hover {
    background-color: #13b6ec;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: clamp(16px, 16px + 1vw, 19px);
    margin-bottom: 1.5rem;
    color: #fff;
}

.list-style {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;

    gap: .7rem;
}
.list-style i{
    color:#13b6ec;
}

.list-style li a {
    color: #909faa;
    transition: .25s;
    display: inline-block;
}

.list-style li:hover a {
    color: #13b6ec;
    transform: translateX(3px);
}

.bottom-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid #dadada1c;
    color: #909faa;
}



@media(max-width:768px) {
    .list-style {
        flex-direction: row;
        flex-wrap: wrap;

    }

    .list-style li a {

        white-space: nowrap;
        background: #17223d;
        padding: .25rem .5rem;
        border-radius: 6px;
    }
}

/* footer css end */


.trending-destination:hover h3{
color: #13b6ec;
}
.trending-destination img{
    transition: transform 0.3s ease;
}
.trending-destination:hover img{
    transform: scale(1.05);
}
.trending-destination .img-wrapper{
    position: relative;
    overflow: hidden;
}
.trending-destination .img-wrapper:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1717174a;
}
.trending-destination h3{
    font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
    margin-bottom: 0;
    transition: all .25s;
}
.trending-destination .active-tour {
    color: #606060;
    font-size: .9rem;
}

/* Why book with us start */

.promise-wrapper .icon-box{
   --size: clamp(50px, 6.3vw, 70px);
    height: var(--size);
    width: var(--size);
    border-radius: 1rem;
    background-color: rgb(19 146 236 / 0.2);
    color: #1392ec;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .75rem;
    margin-inline: auto;
}
.promise-wrapper .icon-box i{
    font-size: clamp(22px,2vw,44px);
    
}
.promise-wrapper h3{
   font-size: clamp(18px, 1.2vw, 23px);
   font-weight: 700;
}
/* Why book with us end */
/* contact section css start */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #03182d 0%, #021326 100%);
}

.contact-section .content-area h2 {
    font-size: clamp(1.2rem, 2.3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-section .content-area p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
}

.contact-section .contact-info {
    margin-top: 50px;
}

.contact-section .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-section .info-item i {
    color: #1f9cff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-section .info-label {
    color: rgba(255, 255, 255, .6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 200;
}

.contact-section .info-value {
    color: #fff;
    font-weight: 700;
}

.contact-section .contact-form-card {
    background: #071737;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-section .form-label {
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-section .form-control,
.contact-section .form-select {
    background: #16233f;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    min-height: 50px;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    background: #16233f;
    color: #fff;
    border-color: #1f9cff;
    box-shadow: 0 0 0 .2rem rgba(31,156,255,.25);
}

.contact-section .form-control::placeholder {
    color: rgba(255,255,255,.4);
}

.contact-section textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-section .btn-submit {
    border: none;
    min-height: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 12px;
    transition: .3s;
}

@media (max-width: 991.98px) {
    .contact-section .content-area {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-section .content-area p {
        margin: auto;
        font-size: .9rem;
    }

    .contact-section .info-item {
        justify-content: center;
    }

    .contact-section .form-control,
    .contact-section .form-select,
    .contact-section .btn-submit {
        min-height: 35px;
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    .contact-section .contact-form-card {
        padding: 20px;
    }

    .contact-section .info-value {
        font-size: 1.15rem;
    }

    .contact-section .content-area p {
        font-size: .9rem;
    }

    .contact-section .form-control,
    .contact-section .form-select,
    .contact-section .btn-submit {
        min-height: 35px;
        font-size: .9rem;
    }
}
/* contact section css end */

/* Package details css start */
.package-info{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}
.package-info li{
    padding: .25rem .5rem;
    border-radius: 8px;
    background-color: #0a81bb;
    border: 1px solid #655a5a2e;
    color: #e7e7e7;
    font-size: .9rem;
}
.hilight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.hilight-grid .card{
    border-radius: .5rem;
    background: #f3f3f3;
    box-shadow: none;
}
.read-more-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.1rem;
   
}

.read-more-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
     max-height: 200px;
    overflow-y: auto;
}

.read-more-text.expanded::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 29%);
    background-color: #F5F5F5;
}

.read-more-text.expanded::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.read-more-text.expanded::-webkit-scrollbar-thumb
{
	background-color: #b9b9b9;
}

.read-more-btn {
    border: 0;
    background: transparent;
    color: #1392ec;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    margin-bottom: .75rem;
}

/* Best Time to Visit css start */
.Season-card .Season-card-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.Season-card .Season-card-header h3{
    font-size: clamp(1.1rem , 2vw, 1.2rem);
        font-weight: 600;
        margin-bottom: 0;
}
.Season-card .icon-box{
   --height: clamp(45px, 4.5vw, 70px);
    --width: clamp(40px, 4vw, 65px);
    height: var(--height);
    width: var(--width);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Season-card .icon-box i{
    font-size: clamp(1rem,1.8vw,2rem);
}
.Season-card .icon-box.dry{
    background-color: #ffedd5;
    color: #f57114;
}
.Season-card .icon-box.wet{
     background-color: #d2e0f3;
    color: #3370d4;
}
.Season-card  ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.Season-card  ul  li{
    padding: .25rem .5rem;
    border-radius: 8px;
    background-color: #f3f3f3;
   
    
    font-size: .9rem;
}
/* quick link css start */
.quick-link-section{
    background-color: #0d1529;
}
.quick-link-section h2{
  
   font-size: clamp(18px, 1.2vw, 23px);
    font-weight: 700;
       color: #ea580ccf;
    border-bottom: 1px solid #ededed33;
    padding-bottom: 0.7rem;
    margin-bottom: 1rem;
}
.quick-link-wrapper{
    padding: 0;
    margin: 0;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  margin-bottom: 2rem;
}
.quick-link-wrapper li{
    padding-left: 1.5rem;
    position: relative;

}
.quick-link-wrapper li:hover a {
    color: #13b6ec;
    transform: translateX(3px);
}
.quick-link-wrapper li:hover:after {
    color: #13b6ec;
    left:3px ;
}
.quick-link-wrapper li:after{
    content: "\F7CD";
    position: absolute;
    top: 0px;
    left: 0;
    font-family: "bootstrap-icons" !important;
    color: #89a7bd;
    transform: rotate(45deg);
     transition: .25s;
}
.quick-link-wrapper  li a {
    color: #909faa;
    transition: .25s;
    display: inline-block;
}
/* policy css start */
.policy-sub-heading{
    font-size: clamp(16px, 16px + .6vw, 19px);
}
.blog-tab .nav-link{
    background-color: #eaeaea;
    color: #222;
}
.blog-tab .nav-link.active{
    background-color: #35bdb2;
    color: #ffffff;
}