.package-info .box{
    box-shadow: rgba(0, 0, 0, 0.13) 0px -1px 8px;
    padding: 20px;
    border-radius: 15px;
    display: none;
}
.package-info .box p{
        color: #858585;
        line-height: 30px;
        font-size: 17px;
}
.package-info-text.readmore{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
            line-clamp: 4;
    -webkit-box-orient: vertical;
    
}

.package-info .box h3{
    font-size: 25px;
    text-transform: uppercase;
}

.package-info .box h3 span{
    color: var(--primary-clrOne);
}
.package-info .box span{
    color: var(--primary-clrOne);
    font-weight: 700;
    cursor: pointer;
}




/* package box  */
.package-info {
    padding-bottom: 0px;
    display: none;
}
.package-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: rgb(0 0 0 / 40%) 2px 2px 15px;
    background-color: #fff;
    border-radius: 5px;
    height: 365px;
 
}
.packages .container .package-box:last-child{
    margin-bottom: 0px;
} 
.packages .package-box .left {
    width: 30%;
    display: flex;
}
.packages .package-box .left a{
    width: 100%;
}
.packages .package-box .left img{
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

    object-fit: cover;
    height: 365px;
}
.packages .package-box .middle{
    width: 50%;
    padding-left: 40px;
}
.packages .package-box .middle span{
    margin-top: 8px;
    display: inline-block;
    color: #ffffff;
    font-weight: 00;
    background-color: #e13607;
    padding: 5px 10px;
    font-size: 14px;
}
.packages .package-box .right{
    width: 22%;
    text-align: center;
}
.packages .package-box .right h5{
    font-size: 25px;
    color: #e13600;
    line-height: 20px;
}
.packages .package-box .right small{
    margin-bottom: 14px;
    display: inline-block;
    color: #5f5f5f;
    font-size: 15px;
}
.packages .package-box h3 {
    font-size: 21px;
    text-transform: uppercase;

    color: #686868;
    transform: translateY(-20px);
}
.middle small{
    color: #939393;
    font-size: 14px;
    line-height: 23px;
    display: block;
}

.packages .package-box .middle ul li {
    font-size: 15px;
    color: #7d7c7c;
    line-height: 25px;
    background-image: url(../img/in-check-mark.png);
    background-repeat: no-repeat;
    padding-left: 20px;
}
.packages .package-box .middle  h5 {
    font-size: 15px;
    margin: 15px 0 8px;
    color: #6a6a6a;
}
.packages .package-box .right a:last-child{
    background-color:var(--primary-clrTwo);
}
.packages .package-box .middle  ul {
    height: 100px;
    overflow-y: scroll;
}
.packages .package-box .right .glbl-btn{
    width: 85%;

    font-size: 16px;
    border-radius: 5px;
    padding: 10px;
}

/* detail page  */
.detail-page .left {
    width: 62%;
}
.detail-page .left-banner{
    width: 100%;
}
.detail-page .left-banner {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;

}
.detail-page .left-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-page  h3 {
    font-size: 21px;
    background-color: var(--primary-clrTwo);
    display: inline-table;
    padding: 20px;
    border-radius: 5px;
    color: #fff;
    outline: 1px solid #ffffffb0;
    outline-offset: -5px;
    font-weight: 300;
    box-shadow: 0 0 20px -10px rgba(0,0,0,.8);
    margin-bottom: 25px;
}
.detail-page .tour-hightlights{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        border-radius: 5px;
        margin-bottom: 30px;
      
}

.detail-page .tour-hightlights h4{
    background-color: var(--primary-clrOne);
    padding: 12px 19px;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.detail-page .tour-hightlights ul{
    padding: 20px;
}
.detail-page .tour-hightlights ul li {
    list-style: none;
    line-height: 30px;
    margin-left: 18px;
    color: #747474;
    font-size: 16px;
    list-style-image: url(../img/FINGER.png);
}
.detail-page .tour-hightlights ul li img{
    width: 16px;
    margin-right: 8px;
    transform: translateY(4px);
}

/* day wise tour itanary  */
/* Style the accordion buttons */
.tour-itenary .accordion {
    width: 100%;
    border: unset;
    padding: 14px;
    font-size: 16px;
    background-color: var(--primary-clrTwo);
    border-radius: 3px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.4s, color 0.4s;
    margin-bottom: 4px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-transform: uppercase;
}

.accordion::before {
    content: '\002B';
    color: var(--primary-clrTwo);
    font-weight: bold;
    float: right;
    margin-left: 10px;
    transition: transform 0.2s;
    font-size: 25px;
    font-weight: 200;
    background-color: #fff;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    border-radius: 100%;
}

.accordion.active::before {
    content: "\2212";
    transform: rotate(183deg);
}

.accordion.active, .accordion:hover {
    background-color: #3b837d;
}
.tour-itenary .panel {

    background-color: white;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 5px;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    position: relative;
}
.tour-itenary .panel{
    font-size: 16px;
    color: #747474;
    list-style-type: disc;
}

.panel-content {
    padding: 16px;
}
.tour-itenary .accordion p {
    font-size: 15px;
    color: #6c6a6a;
}

.tour-itenary .meals {
    background-color:var(--primary-clrOne);
    padding: 9px 25px;
    color: #fff;
    margin-top: 15px;
}

.tour-itenary ul {
    margin: 15px;
    padding: 0px 25px;
    text-align: justify;
}
.tour-itenary ul li {
    list-style: none;
    margin-bottom: 6px;
    list-style-type: disc;
    font-size: 14px;
    line-height: 23px;
}
.tour-itenary h4 {
    font-size: 28px;
    color: #f3722a;
    margin-bottom: 12px;
}

/* inclusion and exclusion  */
.inclusion-exclusion {
    margin-top: 35px;
    padding: 35px;
    background-color: #fff;
    border-radius: unset !important;
    box-shadow: 0 0 10px 12px rgb(38 36 36 / 9%);
    outline: #f55d0461 solid 1px;
    outline-offset: -5px;
}
.inclusion-exclusion .tabs a{ 
    background-color: #858585;
    padding: 8px 25px;
    color: #fff;
}
.inclusion-exclusion ul{
    display: none;
}
.inclusion-exclusion ul li{
    font-size: 15px;
    color: #696969;
    line-height: 26px;
}
.inclusion-exclusion .active-tab{
 background-color: var(--primary-clrOne) !important;
}
.inclusion-exclusion .inclusion li{
    list-style-image: url(../img/in-check-mark.png);
    background-repeat: no-repeat;
    background-size: unset;
    margin-left: 30px;
}
.inclusion-exclusion .inclusion li.text-danger{
    list-style-image: unset;
}
.inclusion-exclusion .inclusion li.text-danger b{
color: red;
}
.inclusion-exclusion .inclusion li b.text-danger{
    color: red !important;
    list-style: none !important;
    list-style-image: unset !important;
}

.inclusion-exclusion .exclusion li{
    list-style-image: url(../img/close.png);
    background-repeat: no-repeat;
    background-size: unset;
    margin-left: 30px;
}
.tabs {
    margin-bottom: 25px;
}
.detail-page .right{
    width: 35%;
}
.review_detail .box {
    box-shadow: rgb(155 149 149 / 49%) 0 1px 11px;
    padding: 20px;
    border-radius: 5px;
    background-color: #e9e9e95c;
    color: #565656;
    outline: #d5d5d5 solid 1px;
    outline-offset: -4px;
    word-wrap: break-word;
    margin-bottom: 30px;
}
.review_detail .box h5 {
    font-size: 18px;
}
.review_detail .box h5 span{
    color: #f34f00;
}
 .review_detail .box .flex {
    margin: 9px 0px;
}
.review_detail .box .strong{
    margin-right: 5px;
}
.review_detail small{
    font-size: 15px;
    text-transform: uppercase;
}



/* about  */
.banner.inner-banner {
background-color: var(--primary-clrOne);
text-align: center;
}
.banner.inner-banner h2{
    color: #fff;
}
.about .box {
    padding: 35px;
    width: 90%;
    margin: auto;
    box-shadow: 0 5px 10px 0 rgb(193 184 184 / 50%);
    border-radius: 15px;
    transform: translateY(-90px);
    background-color: #fff;
}
.about .box p {
    font-size: 15px;
    color: #555;
    line-height: 26px;
    margin-bottom: 8px;
}
.about .box b{
    font-size: 17px;
    color: #474747;
}
.about {
    padding-bottom: 0;
}
.box.privacy p{
    font-family: Poppins-Medium;
}
.box.privacy  ul li{

    list-style-image: url(../img/FINGER.png) !important;
    list-style: none;
    font-size: 15px;
    color: #505050;
    margin-bottom: 12px;
} 
/* contact  */

.contact-form {
    background-color: #cdcdcda6;
    padding: 0 20px 20px;
    border-radius: 5px;
    margin-top: 40px;
    box-shadow: 0 3px 10px rgb(0 0 0 / .2);
}
.contact-form{
    font-size: 22px;
    text-align: center;
    padding: 24px 0px;
}
.contact-form h4{
    color: #2d2d2d;
    text-transform: uppercase;
    border-bottom: 1px solid #838383;
}
.contact-form .heading {
    margin-bottom: 12px;
}
.contact-form .heading small{
    color: #4d4d4d;
    font-size: 16px;
}
.contact-form form textarea{
    width: 90% !important;

}
/* contact-page  */
.contact-pannel {
    padding: 60px 0px;
}
.contact-pannel .box {
    background-color: #F9F9F7;
    width: 24%;
    text-align: center;
    height: 280px;
    box-shadow: 0 0 20px -10px rgba(0,0,0,.8);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    outline: 1px solid #817e7c21;
    outline-offset: -11px;
}
.contact-pannel .box h4{
    font-size: 20px;
}
.contact-pannel .box p{
    color: #403e3e;
    line-height: 25px;
}
.contact-pannel .box a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.main-contact {
    margin-top: 60px;
}
.main-contact form{

    padding: 30px 0px;
    border-radius: 15px;
}
.main-contact input, .main-contact select {
    width: 45%;
    background-color: #f9f9f796;
    border: 1px solid #cdcdcdad;
    margin: 5px;
}
.main-contact textarea{
    background-color: #f9f9f796;
    border: 1px solid #cdcdcdad;
    width: 93%;
}
.main-contact .left{
    width: 45%;
}
.main-contact .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;

}
.main-contact .right {
    width: 52%;
    text-align: center;
    box-shadow: 0 0 20px -10px rgba(0,0,0,.8); 
    border-radius: 15px;
    
}
.main-contact .right .heading{
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    padding: 14px 0;
    background-color: var(--primary-clrOne);
    font-size: 23px;
    color: #fff;
    margin-bottom: 0;
}
.main-contact .right form input[type="submit"]{
    margin-top: 15px;
    padding: 18px 0;
}


  input,select{
    width: 90%;
    border: unset;
    border: 1px solid #cdcdcd;
    border-radius: 7px;
    outline: none;
    padding: 13px 14px;
    margin: 4px 0px;
    color: #757575;
    font-size: 14px;
    font-weight: 100;
}

 textarea{
    width: 94%;
    border: unset;
    width: 9;
    border-radius: 5px;
    margin-top: 5px;
    height: 160px;
    outline: unset;
    padding: 15px;
    border: 1px solid #cdcdcd;
}
 input[type="submit"]{
    width: 94%;
    border: unset;
    background-color: var(--primary-clrTwo);
    color: #fff;
    font-size: 17px;
}


/* inner pages  */
.luxury-stays-maldives{
    background-image: linear-gradient(rgb(0 0 0 / 73%),rgb(0 0 0 / 58%)), url(../img/maldives.avif);
    padding: 81px 0px;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.luxury-stays-maldives h2{
    color: #fff;
}





.box.privacy.cancellation h3 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}


.about .box.privacy.cancellation table th {
    background: #f3722a;
    padding: 8px;
    color: #fff;
    font-weight: 300;
}
.about .box.privacy.cancellation table {
    width: 100%;
    margin: 20px 0;
}
.about .box.privacy.cancellation table td {
        padding: 8px;
    border: 1px solid #c3c3c3a1;
    border-top: unset;
    font-size: 15px;
    color: #333;
}

 .table-container {
      overflow-x: auto; /* Enables horizontal scrolling */
      width: 100%;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px; /* Ensures the table maintains a minimum width */
    }

    th, td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #f4f4f4;
    }


