@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    --black: #000;
    --white: #fff;
    --theme-1: #c9ad16;
    --theme-2: #aa7716;
    --textColor: #7c7c7c;
}


a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Wasted-Vindey';
    src: url(../fonts/Wasted-Vindey.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    color: #ffff;
    margin: 0 0 0px;
    font-size: 70px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Wasted-Vindey';
}

h2 {
    color: #000;
    font-size: 45px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Wasted-Vindey';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Wasted-Vindey';
}

h4 {
    color: #000;
    font-size: 25px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Wasted-Vindey';
}

h5 {
    color: #000;
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Wasted-Vindey';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    top: 0px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: 0.5s;
    padding: 13px 30px;
    position: relative;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in;
    text-transform: uppercase;
    transition-duration: 0.5s;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.theme-btn-1:hover {
    top: -10px;
    color: var(--white);
    transition: ease-in;
    transform: scale(1.05);
    transition-duration: 0.5s;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 10px;
}

.section-heading p {
    width: 90%;
    margin: 0px auto;
    max-width: 650px;
}

/*header css start */

.menuSection {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0px 4%;
    position: absolute;
    border-bottom: 1px solid #ffffff62;
}

.menuSection .row {
    align-items: center;
}

.header-logo {
    width: 100%;
    height: 85px;
}

.header-logo a {
    width: 130px;
    height: 130px;
}

.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
}

.menuSec ul li {
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    padding: 30px 10px;
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
}

.menuSec ul li a::before {
    left: 0;
    right: 0;
    width: 0%;
    content: '';
    height: 1px;
    margin: auto;
    bottom: -0.5px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.menuSec ul li a.active::before,
.menuSec ul li a:hover::before {
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
}

.header-search form {
    position: relative;
}

.header-search form input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    color: var(--white);
    padding: 10px 45px 10px 25px;
    background-color: transparent;
    border: 1px solid #ffffffc9;
}

.header-search form input::placeholder {
    color: #ffffffc9;
    text-transform: capitalize;
}

.header-search form button {
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    border: none;
    position: absolute;
    color: var(--white);
    background-color: transparent;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*header css start */

/*banner css start */

.main_slider {
    display: flex;
    min-height: 850px;
    position: relative;
    align-items: flex-end;
    padding: 150px 4% 100px;
    justify-content: center;
}

.bannerSlider {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.bannerSlider .slick-slide {
    opacity: 1;
    margin: 0px;
    height: 100%;
}

.bannerSlider .slick-track,
.bannerSlider .slick-list {
    height: 100%;
}

.banner-main-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-main-slider::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background-image: url(../images/banner-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_slider .row {
    position: relative;
}

.banner_text {
    z-index: 1;
    position: relative;
}

.banner_text h2 {
    color: var(--white);
}

.banner_text p {
    opacity: 0.6;
    max-width: 550px;
    color: var(--white);
    margin-bottom: 15px;
}

.banner_text ul {
    gap: 10px;
    display: flex;
    margin-top: 100px;
    align-items: center;
    justify-content: flex-start;
}

.banner_text ul li a {
    width: 50px;
    height: 50px;
    opacity: 0.5;
    display: flex;
    font-size: 18px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
}

.banner_text ul li a:hover {
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-img-heading {
    overflow: hidden;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.banner-img-heading h4 {
    margin-left: 120px;
    margin-bottom: 10px;
    color: var(--white);
}

.banner-img-heading::before {
    left: 50%;
    width: 80%;
    height: 1px;
    content: '';
    bottom: 0px;
    position: absolute;
    background-color: var(--white);
}

.banner-img-heading::after {
    left: 0%;
    width: 100%;
    height: 1px;
    content: '';
    bottom: 0px;
    position: absolute;
    border-bottom: 1px solid #ffffff8a;
}

.banner-nav-slider-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 0px 11.84px 4.16px rgba(0, 0, 0, 0.34);
}

.banner-nav-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-nav-slider-item::before {
    left: 0;
    right: 0;
    top: 0px;
    width: 90%;
    bottom: 0;
    content: '';
    height: 95%;
    padding: 1px;
    margin: auto;
    position: absolute;
    border-radius: 10px;
    background-size: cover;
    background: linear-gradient(180deg, var(--white), #ffffff57, #ffffff17);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bannerNavSlider .slick-slide {
    opacity: 0;
    margin: 0px 5px;
}

.bannerNavSlider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerNavSlider .slick-slide.slick-active {
    opacity: 1;
}

.bannerNavSlider .slick-list {
    overflow: visible;
}

.bannerNavSlider .slick-dots li {
    width: 11px;
    height: 11px;
    display: flex;
    opacity: 0.5;
    border-radius: 50%;
    align-items: center;
    border: 1px solid var(--white);
}

.bannerNavSlider .slick-dots li button::before {
    top: -0.7px;
    left: -1.2px;
    width: 11px;
    height: 11px;
    display: none;
    display: flex;
    font-size: 3px;
    line-height: 11px;
    color: transparent;
    align-items: center;
    justify-content: center;
}

.bannerNavSlider .slick-dots li button {
    height: 11px;
    width: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerNavSlider .slick-dots li.slick-active {
    opacity: 1;
    transform: scale(1.2);
}

.bannerNavSlider .slick-dots li.slick-active button::before {
    color: #fff;
    display: block;
}

/*banner css end*/

/* banner-bottom-bar */

.banner-bot ul {
    gap: 10px;
    display: flex;
    padding: 15px 0px;
    margin-bottom: 0;
    position: relative;
    align-items: center;
}

.banner-bot ul li h6 {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 33px;
    color: var(--textColor);
    text-transform: uppercase;
}

.banner-bot ul li h6 span {
    display: block;
    line-height: 21px;
    color: #909090;
}

.banner-bot ul li {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-left: 1px solid #00000085;
    padding-left: 12px;
}

.banner-bot ul li button {
    border: unset;
}

.banner-bot {
    z-index: 2;
    padding: 20px 30px;
    position: relative;
    border-radius: 20px;
    border: 2px solid transparent;
    background-color: #fff;
    background-color: rgb(255, 255, 255);
    box-shadow: 4.782px -1.462px 11.57px 1.43px rgba(0, 0, 0, 0.19);
}

.banner-bot::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 98.5%;
    height: 90%;
    content: '';
    opacity: 0.5;
    margin: auto;
    position: absolute;
    border-radius: 10px;
    border: 1px solid var(--theme-2);
}

.banner-bot ul li:first-child {
    border-left: unset;
}

ul.search-icon li a.btn-1 {
    font-size: 14px;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #1bbc9b;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 0;
    padding-left: 10px;
}

.bann-bot {
    z-index: 1;
    margin-top: -40px;
    position: relative;
}

.banner-bot ul li input {
    width: 100%;
    padding: unset;
    border: unset;
    outline: none;
}

.banner-bot ul li i {
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    position: absolute;
    color: var(--theme-2);
}

.banner-bot ul li select {
    border: unset;
    outline: none;
    padding: unset;
    font-weight: 500;
    color: var(--black);
    -webkit-appearance: auto;
}

.banner-bot ul li.flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-bot ul li.justify-content-end {
    width: 55%;
    display: flex;
}


/* banner-bottom-bar */

/* about sec */

.about-sec {
    padding: 100px 0px;
}

.about-col-1 {
    left: 12.5px;
    position: relative;
}

.about-col-1 .about-text {
    padding: 0px 30px 30px 0px;
}

.about-col-1 .about-text p {
    margin-bottom: 20px;
}

.about-col-1 .about-img {
    height: 250px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px 0px 20px 20px;
}

.about-col-1 .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-col-1 .about-img::before {
    top: 10px;
    left: 10px;
    content: '';
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
    position: absolute;
    pointer-events: none;
    outline: 1px solid var(--white);
    border-radius: 12px 0px 12px 12px;
}

.about-col-2 {
    right: 12px;
    height: 100%;
    position: relative;
}

.about-col-2 .about-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 20px 0px;
}

.about-col-2 .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-col-2 .about-img::before {
    top: 10px;
    left: 10px;
    content: '';
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
    position: absolute;
    pointer-events: none;
    outline: 1px solid var(--white);
    border-radius: 12px 12px 12px 0px;
}

.about-col-2 .about-text {
    padding: 50px 0px 50px 50px;
}

/* about sec */

/* Journey-sec  */

.Journey-sec {
    position: relative;
    padding: 100px 0px;
    background-image: url(https://celestiquetravel.com/wp-content/uploads/2025/10/Journey-bg-1.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.Journey-sec::before {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../images/Journey-bg-overlay.png);
    background-position: center;
    background-size: cover;
}

.Journey-sec .row {
    z-index: 1;
    position: relative;
    align-items: center;
}

.counter-box {
    color: #fff;
    margin-top: 40px;
    border-width: 1px;
    text-align: center;
    padding: 30px 15px;
    border-style: solid;
    border-radius: 20px;
    border-color: var(--theme-2);
    background-color: rgba(255, 255, 255, 0);
}

.counter-box .count-icon {
    width: 60px;
    height: 60px;
    display: flex;
    font-size: 20px;
    margin: 0px auto;
    border-radius: 50%;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.counter-box .counter {
    font-size: 25px;
    color: var(--white);
    margin-bottom: 10px;
}

.counter-box .count-title {
    color: #fff;
}

.Journey-heading h4 {
    color: var(--white);
}

.schedule-btn {
    margin-top: 50px;
    text-align: center;
}

/* Journey-sec  */

/* explore-sec */

.explore-sec {
    overflow-x: hidden;
    padding-bottom: 100px;
}

.explore-heading {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
}

.explore-heading .custom-width {
    max-width: 650px;
}

.explore-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 15px 0px;
    position: relative;
    border-radius: 15px;
}

.explore-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    margin: auto;
    position: absolute;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.explore-box::after {
    left: 0;
    right: 0;
    top: 10px;
    width: 94%;
    content: '';
    height: 94.5%;
    padding: 1px;
    margin: auto;
    position: absolute;
    border-radius: 10px;
    background-size: cover;
    background: linear-gradient(180deg, var(--white), #ffffff57, #ffffff17);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.explore-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-box-text {
    left: 0;
    bottom: 0;
    padding: 20px;
    position: absolute;
}

.explore-box-text h4 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 5px;
}

.explore-box-text p {
    height: 0px;
    overflow: hidden;
    color: #ffffffc9;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.explore-box-text a {
    height: 0px;
    overflow: hidden;
    width: fit-content;
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    border-bottom: 1px solid transparent;
}

.explore-box:hover .explore-box-text p {
    margin-bottom: 10px;
}

.explore-box:hover .explore-box-text p,
.exlporeSlider .slick-current .explore-box-text p {
    height: 50px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.explore-box:hover .explore-box-text a,
.exlporeSlider .slick-current .explore-box-text a {
    height: 25px;
    transition: ease-in;
    transition-duration: 0.5s;
    border-color: var(--white);
}

.exlporeSlider {
    width: 100vw;
    max-width: 1600px;
}

.exlporeSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.exlpore-slider-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exlpore-slider-btn button {
    width: 50px;
    height: 50px;
    display: flex;
    color: #cccccc;
    border-radius: 50%;
    align-items: center;
    transition: ease-in;
    justify-content: center;
    background: transparent;
    transition-duration: 0.5s;
    border: 1px solid #f8f1da;
}

.exlpore-slider-btn button:hover {
    opacity: 1;
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    border-color: transparent;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.load-btn {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

/* explore-sec */

/* destination-sec */

.destination-sec {
    padding: 100px 0px;
}


/* destination-sec */

/* packages-sec */

.packages-sec {
    padding: 100px 0px;
}

.packages-box {
    display: flex;
    min-height: 100%;
    text-align: center;
    padding: 45px 35px;
    border-radius: 25px;
    flex-direction: column;
    border: 1px solid #cccccc;
}

.packages-box h5 {
    gap: 15px;
    display: flex;
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
    align-items: center;
    text-transform: uppercase;
    justify-content: flex-start;
}

.packages-box h5 i {
    width: 65px;
    height: 65px;
    display: flex;
    flex-shrink: 0;
    font-size: 22px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.packages-box h3 {
    text-align: left;
}

.packages-box h3 span {
    font-size: 25px;
    text-align: left;
    color: #666666;
}

.packages-box p {
    text-align: left;
    margin-bottom: 15px;
}

.packages-box ul li {
    gap: 10px;
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.packages-box ul li i {
    font-size: 14px;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.packages-box a.theme-btn-1 {
    font-weight: 600;
    text-align: center;
    padding: 10px 40px;
    color: var(--black);
    margin: auto auto 0px;
    display: inline-block;
    background: transparent;
    border: 1px solid var(--theme-2);
}

.packages-box a.theme-btn-1:hover {
    color: var(--white);
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

/* packages-sec */

/* inner banner */

.inner-banner {
    display: flex;
    min-height: 550px;
    padding-top: 130px;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: url(https://celestiquetravel.com/wp-content/uploads/2025/10/inner-banner-1-1.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inner-banner::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background-image: url(../images/banner-overlay.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-banner .banner_text {
    z-index: 1;
    position: relative;
}

/* inner banner */

/* Contact page Starts */
.contact-page-card {
    width: 90%;
    margin: auto;
    padding: 50px;
    display: flex;
    max-width: 360px;
    min-height: 100%;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    background-color: var(--theme-1);
}

.contact-page-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.contact-page-card a {
    color: var(--white);
}

.contact-page-card:hover {
    cursor: pointer;
    background-color: #1f1f1f;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.contact-page-card:hover img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(96%) saturate(18%) hue-rotate(239deg) brightness(105%) contrast(105%);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.contact-page-card:hover h5,
.contact-page-card:hover a {
    color: white;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.contact-page-card h5 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white);
    padding: 20px 0 15px 0;
}

section.contact-sec {
    padding: 100px 0;
}

/* Chrome, Safari, Edge, Opera */
.cf-input input::-webkit-outer-spin-button,
.cf-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.cf-input input[type="number"] {
    -moz-appearance: textfield;
}

.cf-input input {
    width: 100%;
    height: 55px;
    outline: none;
    margin: 10px 0;
    padding: 20px 0px;
    color: var(--black);
    border: 1px solid transparent;
    border-bottom: 1px solid #e3e7ea;
}

.cf-input input::placeholder,
.cf-input textarea::placeholder {
    color: #250503;
    text-transform: uppercase;
}

.cf-input textarea {
    width: 100%;
    height: 150px;
    resize: none;
    display: block;
    padding: 20px 0px;
    align-content: end;
    border: 1px solid transparent;
    border-bottom: 1px solid #e3e7ea;
}

.contact-form {
    padding-bottom: 100px;
}

.cf-input .web-btn:hover::after {
    opacity: 0.5;
}

.cf-input button {
    margin-top: 25px;
}

.contact-img {
    width: 100%;
    height: 610px;
    overflow: hidden;
    border-radius: 10px;
}

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

.contact-formPage h3 {
    margin-bottom: 20px;
}

.contact-formPage p {
    margin-bottom: 10px;
}

/* Contact page Ends */

/* travel-sec */

.travel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.travel-heading .custom-width {
    max-width: 650px;
}

.travel-box-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.travel-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-box-img::before {
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 94%;
    content: '';
    padding: 1px;
    height: 94.5%;
    margin: auto;
    position: absolute;
    border-radius: 10px;
    background-size: cover;
    background: linear-gradient(180deg, var(--white), #ffffff57, #ffffff17);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.travel-box-text {
    padding: 20px 35px;
}

.travel-box-text p {
    margin: 15px 0px;
}

.travel-box-text a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
}

.travel-box {
    margin: 25px 0px;
    border-radius: 15px;
    border: 1px solid #e4e4e4;
}

/* travel-sec */

/* testimonials-sec */

.testimonials-sec {
    padding: 100px 0px;
}


.testimonialSlider {
    border-radius: 20px;
    box-shadow: 0px 2px 14.72px 1.28px rgba(0, 0, 0, 0.19);
}

.testimonial-slider-item {
    text-align: center;
    padding: 30px 30px 20px;
}

.testimonial-slider-item img {
    width: 75px;
    height: 75px;
    margin: 0px auto;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-slider-item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 10px;
}

.testimonial-slider-item ul li i {
    color: #e68721;
    font-size: 20px;
}

.testimonial-slider-item h5 {
    margin-top: 20px;
    padding-top: 15px;
    text-transform: uppercase;
    border-top: 1px solid #cfd1ce;
}

.testimonial-slider-item h5 span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #7c7c7c;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.testimonial-slider-item-text {
    padding: 10px;
}

.testimonial-slider-item-text p {
    max-width: 650px;
    margin: 0px auto;
}


.testimonials-place-slider-img {
    width: 100%;
    height: 375px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-place-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialSlider .slick-prev,
.testimonialSlider .slick-next {
    top: unset;
    width: 45px;
    height: 45px;
    bottom: -10px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: ease-in-out;
    background: var(--white);
    transition-duration: 0.5s;
    border: 1px solid var(--theme-2);
}

.testimonialSlider .slick-prev:hover,
.testimonialSlider .slick-next:hover {
    border: transparent;
    transition: ease-out;
    transition-duration: 0.5s;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.testimonialSlider .slick-slide {
    opacity: 1;
    margin: 0px 5px;
}

.testimonialSlider .slick-prev {
    z-index: 1;
    left: 35px;
}

.testimonialSlider .slick-next {
    right: 35px;
}

.testimonialSlider .slick-prev::before,
.testimonialSlider .slick-next::before {
    content: '\f060';
    color: var(--textColor);
    transition: ease-in;
    transition-duration: 0.5s;
    font-family: 'fontAwesome';
}

.testimonialSlider .slick-next::before {
    transform: rotate(180deg);
}

.testimonialSlider .slick-prev:hover::before,
.testimonialSlider .slick-next:hover::before {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.testimonialsPlaceSlider .slick-slide {
    margin: 0px 1px;
}

/* testimonials-sec */

.inner-travel-sec {
    padding: 100px 0px;
}

/* destination-detail-box */

.destination-detail-box .travel-box-img {
    height: 480px;
}

.destination-detail-box .travel-box-img::before {
    height: 92%;
    width: 97%;
    margin: auto;
}

.destination-detail-box .travel-box {
    border: none;
}

.destination-detail-box .travel-box-text {
    padding: 0;
    margin-top: 25px;
}

/* destination-detail-box */

/* footer */

.footerSec {
    overflow: hidden;
    position: relative;
    background-image: url(../images/footer-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footerSec::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-color: var(--black);
}

.footerSec .row {
    z-index: 1;
    position: relative;
}

.footerSec h4 {
    position: relative;
    margin-bottom: 20px;
    color: var(--white);
    padding-bottom: 10px;
}

.footerSec h4::before {
    left: 0;
    bottom: 0;
    width: 40px;
    content: '';
    opacity: 0.5;
    height: 1.5px;
    position: absolute;
    background-color: var(--white);
}

.footer-logo {
    width: 125px;
    height: 125px;
}

.footer-logo a,
.footer-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social-icon {
    height: 100%;
}

.footer-social-icon ul {
    gap: 5px;
    height: 100%;
    display: flex;
    padding-top: 25px;
    align-items: center;
    justify-content: flex-end;
}

.footer-social-icon ul li a {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    display: flex;
    font-size: 15px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
}

.footer-social-icon ul li a:hover {
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.custom-border-top {
    position: relative;
    padding-top: 50px;
}

.custom-border-top::before {
    top: 0;
    left: 0;
    height: 1px;
    content: '';
    width: 100vw;
    opacity: 0.4;
    position: absolute;
    background-color: var(--white);
}

.custom-border-top::after {
    top: 0;
    right: 100%;
    height: 1px;
    content: '';
    width: 100vw;
    opacity: 0.4;
    position: absolute;
    background-color: var(--white);
}

.foot-links ul {
    columns: 2;
}

.foot-links ul li a {
    opacity: 0.5;
    margin-bottom: 15px;
    color: var(--white);
}

.foot-links ul li a:hover {
    opacity: 1;
}

.news-letter p {
    opacity: 0.9;
    margin: 0px 0px 20px;
    color: var(--white);
}

.news-letter form input {
    width: 100%;
    height: 50px;
    opacity: 0.5;
    text-align: center;
    border-radius: 50px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.news-letter form input::placeholder {
    color: var(--white);
    text-transform: uppercase;
}

.news-letter form button {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    color: var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: linear-gradient(90deg, var(--theme-1) 0%, var(--theme-2) 100%);
}

.footer-contact {
    padding: 0px 35px;
}

.footer-contact ul li a {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-btm {
    z-index: 1;
    margin-top: 40px;
    padding: 10px 0px;
    position: relative;
    background-color: var(--white);
}

.copy-txt {
    text-align: center;
}

.copy-txt p {
    font-weight: 500;
    color: var(--black);
}

/* footer */


/*Inner Destination Detail Start*/

.inner-destination-detail-sec {
    padding: 100px 0;
}

.inner-destination-detail-one-images img {
    width: 100%;
    height: 535px;
    border-radius: 20px;
}

.inner-destination-detail-one-text h2 {
    margin-bottom: 5px;
}

.inner-destination-detail-one-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-destination-detail-one-images:before {
    content: "";
    position: absolute;
    border: 2px solid #bedcfac9;
    width: 93%;
    height: 90%;
    border-radius: 20px;
}

.inner-dest-detail-maldives-box {
    position: relative;
}

.inner-dest-detail-maldives-heading h2 {
    font-size: 28px;
    color: var(--white);
}


.inner-dest-detail-maldives-heading p {
    color: #a5adac;
    font-size: 13px;
    line-height: 23px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.inner-dest-detail-maldives-heading a {
    font-size: 14px;
    text-decoration: underline;
    color: var(--white);
}

.inner-dest-detail-maldives-box.chg {
    margin-top: 30px;
}

.inner-dest-detail-maldives-heading {
    position: absolute;
    bottom: 0;
    padding: 30px 30px;
}

.inner-destination-detail-one-text {
    margin-top: 18px;
}

.inner-destination-detail-one-text p {
    color: #8d8d8d;
    font-weight: 500;
    margin-bottom: 18px;
}

.inner-dest-detail-bottom-text-row p {
    color: #8d8d8d;
    font-weight: 500;
    margin-bottom: 18px;
}

.inner-dest-detail-bottom-text-row {
    margin-top: 35px;
}

.inner-destination-detail-img-box img {
    width: 100%;
    height: 310px;
    border-radius: 18px;
    object-fit: cover;
}

.inner-destination-detail-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-destination-detail-img-box:before {
    content: "";
    position: absolute;
    width: 95%;
    height: 94%;
    border: 2px solid #bedcfac9;
    border-radius: 18px;
}

.inner-dest-detail-maldives-img img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    border-radius: 18px;
}

.inner-dest-detail-images-row {
    margin-top: 30px;
}

.inner-dest-detail-maldives-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-dest-detail-maldives-img:before {
    content: "";
    position: absolute;
    width: 95%;
    height: 95%;
    border: 2px solid #bedcfac9;
    border-radius: 18px;
}




/*Inner Destination Detail Ends*/







.booking-form-heading {
    text-align: center;
    margin-bottom: 25px;
}

.booking-form-heading p {
    color: #8d8d8d;
    font-weight: 500;
    width: 60%;
    margin: 0 auto;
    margin-top: 5px;
}

.booking-form-box select {
    width: 100%;
    height: 58px;
    border: 1px solid #bdbdbd;
    border-radius: 50px;
    padding: 0 20px;
    color: #9f9fa0;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 25px;
}

.booking-form-box input {
    width: 100%;
    height: 58px;
    border: 1px solid #bdbdbd;
    border-radius: 50px;
    padding: 0 20px;
    color: #9f9fa0;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}


.booking-form-box input::placeholder {
    color: #9f9fa0;
    font-weight: 500;
    font-size: 14px;
}

.booking-form-box textarea::placeholder {
    font-size: 14px;
    color: #909091;
    font-weight: 500;
}

.booking-form-box textarea {
    width: 100%;
    resize: none;
    height: 158px;
    display: block;
    font-size: 14px;
    color: #9f9fa0;
    font-weight: 500;
    align-content: end;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid #bdbdbd;
}

.booking-form-button {
    text-align: center;
}


.booking-form-sec {
    padding: 100px 0;
}

.date-wrapper input {
    margin-bottom: 0;
}

.date-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

span.icon {
    position: absolute;
    right: 23px;
    background: #ffffff;
    pointer-events: none;
}


/* how-we-work-sec */


.how-we-work-sec {
    padding: 100px 0px;
}

.how-we-work-text h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

.how-we-work-text p {
    margin-bottom: 20px;
}

.how-we-work-img {
    height: 400px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.how-we-work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-we-work-img::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.3;
    position: absolute;
    background-color: #000;
}

.how-we-work-img::after {
    top: 10px;
    left: 10px;
    content: '';
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
    position: absolute;
    border-radius: 10px;
    pointer-events: none;
    outline: 1px solid var(--white);
}

.inner-Journey-sec .row {
    align-items: unset;
}

.inner-Journey-sec .section-heading h2 {
    color: #fff;
}

.inner-Journey-sec .section-heading {
    margin-bottom: 0px;
}

.inner-Journey-sec .counter-box {
    min-height: 95%;
}

.planning-fee-sec {
    padding: 100px 0px;
}

.fee-box {
    padding: 20px;
    min-height: 95%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid var(--theme-2);
}

.fee-bottom-text {
    text-align: center;
    margin-top: 50px;
}

.count-icon img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

/* how-we-work-sec */


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/