@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Serif Display', serif;
    letter-spacing: 0.3px;
}


:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #0f0200;
    --e-global-color-accent: #16285a;
    --e-global-color-text: #4c4c4c;
    --e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-very-red: #201615;
    --e-global-color-very-dark-red: #271b19;
    --e-global-color-light-grayish-red: #a29a99;
    --e-global-color-light-grayish-orange: #fcfaf5;
    --e-global-color-light-grayish-yellow: #f5f4f1;
    --e-global-color-light-yellow: #ffc045;
    --e-global-color-star-yellow: #ffea00;
    --e-global-color-pure-red: #ff0000;
}

/* horizontal scroll */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.text-size-16 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: black;
}

.text-size-14 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: black;
}

.all_button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
    background: #16285a;
    font-family: "Urbanist", sans-serif;
    transition: all 0.8s ease-in-out;
}

.all_button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.all_button i {
    font-size: 12px;
    margin-left: 20px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-white);
}

.all_button:hover i {
    transform: translateX(4px);
}

html {
    scroll-behavior: smooth;
}

/* Home Page */

.header {
    padding: 0px 0px;
    position: relative;
    z-index: 5;
}

.header .logo img {
    /* width: 145px; */
    width: 230px;
    margin-left: -18px;
}

.navbar-collapse .navbar-nav {
    text-align: center;
    align-items: center;
    display: inherit;
}

.navbar-expand-lg {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav li {
    margin: 0 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: #16285a;
    background-color: transparent;
}

.navbar-nav .active>a {
    color: rgb(19, 19, 97);
}

.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
}

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 62px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}

.navbar-nav .drop-down-pages li {
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}

.navbar-nav .drop-down-pages .nav-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 10px 20px;
    /* color: #16285a; */
    transition: all 0.3s ease-in-out;
}

.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}

.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}

.navbar-nav .drop-down-pages .active:first-child>a::before {
    background-image: url(../images/nav-node-hover.png);
}

.navbar-nav .drop-down-pages li:last-child {
    margin: 0;
    border: none;
    display: block !important;
}

.navbar-nav .nav-item .dropdown-item:hover {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: #16285a;
}

.navbar-nav .drop-down-pages .active>a {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-nav .drop-down-pages .active>a:hover {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 10px 10px 0 0;
}

.navbar-nav .drop-down-pages .active:first-child>a {
    border-radius: 10px 10px 0 0;
}

.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 10px 10px;
}

.navbar-nav .drop-down-pages .active:last-child>a {
    border-radius: 0 0 10px 10px;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.navbar-nav .nav-item .book_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    min-width: 160px;
    height: 52px;
    padding: 18px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: var(--e-global-color-white) !important;
    background-color: rgb(19, 19, 97);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .book_now i {
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}

.navbar-nav .nav-item .book_now:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-secondary) !important;
}

.navbar-nav .nav-item .book_now:hover i {
    transform: translateX(4px);
}

/* Banner */

.banner-con {
    padding: 210px 0 330px;
}

.banner-con:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-backgroundimage.png);
}

.banner-con .banner_content {
    margin: 0 23px;
}

.banner-con .banner_content h3 {
    width: 350px;
    padding: 0 54px;
    margin: 0 auto 14px;
    letter-spacing: 2.0px;
    word-spacing: 2.0px;
    position: relative;
}

.banner-con .banner_content h3::before,
.banner-con .banner_content h3::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 42px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}

.banner-con .banner_content h3::before {
    left: 0;
}

.banner-con .banner_content h3::after {
    right: 0;
}

.banner-con .banner_content h1 {
    margin-bottom: 54px;
}

.banner-con .banner_content .banner-box {
    width: 874px;
    height: 113px;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: left;
    background-color: var(--e-global-color-light-grayish-yellow);
}

.banner-con .banner-box .form-group {
    margin-right: 12px;
}

.banner-con .banner-box .upper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.banner-con .banner-box .form-group i {
    font-size: 11px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-right: 10px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
}

.banner-con .banner-box label {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--e-global-color-secondary);
}

.banner-con .banner-box input {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 6px 20px;
    width: 226px;
    height: 37px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid transparent;
    border-radius: 5px;
    overflow: visible;
    outline: none;
}

.banner-con .banner-box input:focus {
    border: 1px solid var(--e-global-color-accent);
}

.banner-con .banner-box button {
    font-size: 20px;
    width: 41px;
    height: 73px;
    border: none;
    float: right;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border-radius: 8px;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}

.banner-con .banner-box button:hover {
    background-color: var(--e-global-color-secondary);
}

.banner-con hr {
    position: absolute;
    bottom: 0;
    right: 105px;
    border: none;
    width: 1px;
    height: 73px;
    background-color: #e3e1da;
}

.banner-con .top-btn {
    display: inline-block;
    left: 0;
    right: 0;
    bottom: -236px;
    margin: 0 auto;
    position: absolute;
}

.banner-con .top-btn figure {
    transition: all 0.3s ease-in-out;
}

.banner-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* Explore */

.explore-con {
    padding: 114px 0 140px 400px;
    overflow: hidden;
}

.explore-con .explore_content h6 {
    margin-bottom: 8px;
}

.explore-con .explore_content h2 {
    margin-bottom: 45px;
}

.explore-con .explore-box {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.explore-con .explore-box .image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.explore-con .explore-box .image::before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/explore-fadeimage.png);
    transition: all 0.3s ease-in-out;
}

.explore-con .explore-box:hover .image::before {
    display: none;
}

.explore-con .explore-box:hover .image {
    opacity: 1;
    background-color: var(--e-global-color-black);
}

.explore-con .explore-box .image img {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.explore-con .explore-box:hover .image img {
    opacity: 70%;
    transform: scale(1.1);
}

.explore-con .explore-box .rating {
    left: 20px;
    top: 18px;
    padding: 7px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: rgb(0 0 0 / 35%);
}

.explore-con .explore-box .rating i {
    font-size: 8px;
    margin-right: 4px;
    color: var(--e-global-color-star-yellow);
}

.explore-con .explore-box .rating span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

.explore-con .explore-box .content {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.explore-con .explore-box .content .place {
    margin-bottom: 6px;
}

.explore-con .explore-box .content i {
    font-size: 11px;
    margin-right: 2px;
    color: var(--e-global-color-white);
}

.explore-con .explore-box .content span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

.explore-con .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 0 !important;
    position: absolute;
    right: 405px;
    top: -114px;
}

.explore-con .owl-carousel .owl-prev,
.explore-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.explore-con .owl-carousel .owl-prev {
    left: -8px;
}

.explore-con .owl-carousel .owl-next {
    right: -8px;
}

.explore-con .owl-carousel .owl-prev:hover,
.explore-con .owl-carousel .owl-next:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* About */

.about-con {
    padding: 138px 0 145px;
    background-color: var(--e-global-color-light-grayish-orange);
}

.about-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/about-backgroundimage.jpg);
}

.about-con .about_wrapper .about-image {
    position: relative;
    top: 0;
    left: 20px;
}

.about-con .about_wrapper .about-image img {
    border-radius: 100%;
}

.about-con .about_wrapper .about-locationimage {
    position: absolute;
    bottom: 6px;
    right: 50px;
}

.about-con .about_wrapper .box {
    left: -60px;
    bottom: 290px;
    width: 258px;
    height: 73px;
    padding: 10px 15px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-white);
    box-shadow: 2px 20px 29px 20px rgb(0 0 0 / 3%);
}

.about-con .about_wrapper .box .text {
    padding-left: 10px;
}

.about-con .about_wrapper .box .value {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    color: var(--e-global-color-accent);
}

.about-con .about_wrapper .box .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.about-con .about_wrapper .box figure {
    margin: 0 -12px;
    display: inline-block;
}

.about-con .about_wrapper .box figure:first-child {
    margin-left: 0;
}

.about-con .about_wrapper .box figure:last-child {
    margin-right: 0;
}

.about-con .about_wrapper .box img {
    width: 48px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-white);
}

.about-con .about_content h6 {
    margin-bottom: 10px;
}

.about-con .about_content h2 {
    margin-bottom: 20px;
}

.about-con .about_content .text {
    margin-bottom: 50px;
}

.about-con .about_content li {
    width: 134px;
    height: 139px;
    padding: 28px 32px;
    margin: 0 8px;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.about-con .about_content li:hover {
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 15%);
}

.about-con .about_content li .value {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-accent);
}

.about-con .about_content li:first-child {
    margin-left: 0;
}

.about-con .about_content li:last-child {
    margin-right: 0;
}

/* Service */

.service-con {
    padding: 135px 0 100px;
}

.service-con .service_content h6 {
    margin-bottom: 10px;
}

.service-con .service_content h2 {
    margin-bottom: 45px;
}

.service-con .service_content .text {
    margin-bottom: 52px;
    padding: 0 40px;
    color: var(--e-global-color-text);
}

.service-con .service-box {
    padding: 40px 50px;
    margin-bottom: 30px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.service-con .service-box:hover {
    border-bottom: 2px solid #16285a;
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
}

.service-con .service-box .icon {
    min-height: 60px;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.service-con .service-box:hover .icon {
    transform: translateY(-5px);
}

.service-con .service-box h4 {
    margin-bottom: 14px;
}

.service-con .service-box p {
    margin-bottom: 24px;
}

.service-con .service-box .learn_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    color: #16285a;
    transition: all 0.3s ease-in-out;
}

.service-con .service-box .learn_more i {
    font-size: 12px;
    margin-left: 10px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-accent);
}

.service-con .service-box .learn_more:hover {
    color: #16285a;
}

.service-con .service-box .learn_more:hover i {
    transform: translateX(4px);
    color: #16285a;
}

/* Join */

.join-con {
    padding: 138px 0 140px;
    background-color: var(--e-global-color-black);
}

.join-con:before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url(../images/ctaimage.avif); */
}

.join-con .join_content h6 {
    margin-bottom: 10px;
}

.join-con .join_content h2 {
    margin-bottom: 40px;
}

.join-con .join_content .all_button {
    padding: 20px 39px;
}

/* Place */

.place-con {
    padding: 136px 0 140px;
}

.place-con .place_content h6 {
    margin-bottom: 10px;
}

.place-con .place_content h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

.place-con .place-box {
    padding: 15px 15px 20px 15px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%) inset;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.place-con .place-box:hover {
    border: 1px solid var(--e-global-color-accent);
}

.place-con .place-box .image {
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: var(--e-global-color-black);
}

.place-con .place-box .image img {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.place-con .place-box:hover .image img {
    opacity: 80%;
    transform: scale(1.1);
}

.place-con .place-box .lower_content {
    padding: 22px 22px 0;
}

.place-con .place-box .content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.place-con .place-box .calendar {
    display: flex;
    align-items: center;
    padding-right: 14px;
}

.place-con .place-box .people {
    display: flex;
    align-items: center;
    padding-left: 14px;
    border-left: 1px solid #e2e2e2;
}

.place-con .place-box .content i {
    font-size: 12px;
    margin-right: 10px;
    color: #16285a;
}

.place-con .place-box .content span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: black;
}

.place-con .place-box h4 {
    margin-bottom: 18px;
    display: inline-block;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

.place-con .place-box h4:hover {
    color: #16285a;
}

.place-con .place-box .value {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e2e2;
}

.place-con .place-box .value span {
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    color: #16285a;
}

.place-con .place-box .book_now {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: inline-flex;
    /* ðŸ”¥ better than inline-block */
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    /* ðŸ”¥ button feel */
    border: 1.5px solid var(--e-global-color-secondary);
    border-radius: 30px;

    color: var(--e-global-color-secondary);
    background: transparent;

    transition: all 0.3s ease-in-out;
}

/* ICON */
.place-con .place-box .book_now i {
    font-size: 12px;
    transition: transform 0.3s ease-in-out;
    color: inherit;
}

.place-con .place-box .book_now:hover {
    color: #16285a;
}

.place-con .place-box .book_now:hover i {
    transform: translateX(4px);
    color: #16285a;
}

.place-con .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 52px !important;
    position: relative;
}

.place-con .owl-carousel .owl-prev,
.place-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.place-con .owl-carousel .owl-prev {
    left: -4px;
}

.place-con .owl-carousel .owl-next {
    right: -4px;
}

.place-con .owl-carousel .owl-prev:hover,
.place-con .owl-carousel .owl-next:hover {
    color: #ffffff;
    background-color: #16285a;
    border: #000000;
    background: rgb(21, 21, 78);
}

/* Testimonial */

.testimonial-con {
    padding: 158px 0 195px;
    background-color: var(--e-global-color-light-grayish-orange);
}

.testimonial-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/testimonial-backgroundimage.jpg);
}

.testimonial-con .testimonial_wrapper {
    top: 35px;
    height: 380px;
    width: 380px;
    border-radius: 100%;
    background: #f5f0e5;
}

.testimonial-con .testimonial_wrapper .image {
    position: absolute;
}

.testimonial-con .testimonial_wrapper .image img {
    border-radius: 100%;
}

.testimonial-con .testimonial_wrapper .testimonial-circle {
    height: 155px;
    width: 155px;
    line-height: 155px;
    border-radius: 100%;
    text-align: center;
    background: var(--e-global-color-white);
    position: relative;
    top: 112px;
    left: 0;
    right: 0;
    margin: auto;
}

.testimonial-con .testimonial_wrapper .testimonial-image1 {
    right: -4px;
    top: -54px;
}

.testimonial-con .testimonial_wrapper .testimonial-image2 {
    left: 0;
    top: 56px;
}

.testimonial-con .testimonial_wrapper .testimonial-image3 {
    left: 62px;
    bottom: -30px;
}

.testimonial-con .testimonial_wrapper .testimonial-image4 {
    right: -6px;
    bottom: 80px;
}

.testimonial-con .testimonial_contentwrapper {
    padding: 0 60px 0 40px;
}

.testimonial-con .testimonial_content h2 {
    margin-bottom: 40px;
}

.testimonial-con .testimonial-box p {
    line-height: 26px;
    margin-bottom: 32px;
}

.testimonial-con .testimonial-box .content {
    display: flex;
    align-items: center;
}

.testimonial-con .testimonial-box .testimonial-quote {
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-right: 16px;
    margin-bottom: 0;
    border-radius: 100px;
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.testimonial-con .testimonial-box .name {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
    margin-bottom: 6px;
    display: block;
}

.testimonial-con .testimonial-box .review {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.testimonial-con .pagination-outer {
    position: relative;
    display: inline-block;
    top: 28px;
    right: -12px;
}

#carouselExampleControls .carousel-control-prev,
#carouselExampleControls .carousel-control-next {
    font-size: 20px;
    line-height: 20px;
    top: 0;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}

#carouselExampleControls .carousel-control-prev {
    left: 0;
}

#carouselExampleControls .carousel-control-next {
    right: -38px;
}

#carouselExampleControls .carousel-control-prev:hover,
#carouselExampleControls .carousel-control-next:hover {
    color: var(--e-global-color-accent);
}

/* Partner */

.partner-con {
    padding: 135px 0 130px;
}

.partner-con .partner_content h6 {
    margin-bottom: 10px;
}

.partner-con .partner_content h2 {
    margin-bottom: 35px;
}

.partner-con ul {
    width: 100%;
    float: left;
}

.partner-con ul li {
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    width: 25%;
    height: 156px;
    line-height: 156px;
    transition: 0.3s all ease-in-out;
    float: left;
    text-align: center;
}

.partner-con ul li:last-child {
    display: inline-block;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
}

.partner-con .second li {
    display: inline-block;
    border-right: 1px solid #e7e7e7;
    border-bottom: none;
}

.partner-con .second li:last-child {
    display: inline-block;
    border-bottom: none;
}

.partner-con ul li figure img {
    transition: 0.3s all ease-in-out;
    filter: grayscale(100%);
}

.partner-con ul li:hover figure img {
    filter: none;
    transform: scale(1.1);
}

/* Footer */

.footer-con .footer_upperportion {
    background: var(--e-global-color-very-red);
}

.footer-con .upper_portion {
    display: flex;
    align-items: center;
    padding: 66px 0 60px 80px;
}

.footer-con .upper_portion .footer-logo img {
    width: 145px;
}

.footer-con .upper_portion p {
    font-weight: 700;
    word-spacing: 3.4px;
    padding-left: 105px;
    text-transform: capitalize;
    color: var(--e-global-color-white);
    font-family: "Playfair Display", serif;
}

.footer-con .upper_portion form {
    float: left;
    width: 45.5%;
}

.footer-con .upper_portion .form-group {
    padding-left: 42px;
}

.footer-con .upper_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 18px 26px;
    width: 100%;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}

.footer-con .upper_portion input:focus {
    border: 1px solid var(--e-global-color-accent);
}

.footer-con .upper_portion button {
    font-size: 20px;
    width: 55px;
    height: 47px;
    top: 4px;
    right: 4px;
    border: none;
    float: right;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border-radius: 6px;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}

.footer-con .upper_portion button:hover {
    background-color: var(--e-global-color-secondary);
}

.footer-con .footer_lowerportion {
    background: #000000;
}

.footer-con .middle_portion {
    padding: 86px 64px 82px 80px;
}

.footer-con .middle_portion .logo-content h4 {
    margin-bottom: 14px;
}

.footer-con .middle_portion h5 {
    margin-bottom: 20px;
    color: var(--e-global-color-white);
}

.footer-con .middle_portion p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
    padding-right: 40px;
    color: white;
}

.footer-con .middle_portion .social-icons li {
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .social-icons a {
    margin-left: 0 !important;
}

.footer-con .middle_portion .social-icons i {
    font-size: 14px;
    height: 44px;
    width: 44px;
    line-height: 42px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

.footer-con .middle_portion .social-icons li:first-child {
    margin-left: 0;
}

.footer-con .middle_portion .social-icons li:last-child {
    margin-right: 0;
}

.footer-con .middle_portion .links {
    padding-left: 6px;
}

.footer-con .middle_portion .use-link {
    padding-left: 26px;
}

.footer-con .middle_portion li {
    margin-bottom: 6px;
}

.footer-con .middle_portion li:last-child {
    margin-bottom: 0 !important;
}

.footer-con .middle_portion li a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 13px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion li p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 0;
    color: var(--e-global-color-light-grayish-red);
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion li i {
    font-size: 10px;
    line-height: 10px;
    color: var(--e-global-color-white);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion li:hover p,
.footer-con .middle_portion li:hover a,
.footer-con .middle_portion li:hover i {
    color: var(--e-global-color-accent);
}

.footer-con .middle_portion .icon .text {
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
}

.footer-con .middle_portion .icon i {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
}

.footer-con .middle_portion .icon a {
    margin-left: 0 !important;
}

.footer-con .copyright p {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 25px 0;
    text-align: center;
    color: var(--e-global-color-light-grayish-red);
    border-top: 1px solid rgb(255 255 255 / 15%);
}

/* Sub banner */

/* .sub_banner .sub_banner_con {
    padding: 142px 0 154px;
    text-align: center;
    background: var(--e-global-color-black);
}

.sub_banner .sub_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 55%;
    position: absolute;
    background: url(../images/subbanner-backgroundimage.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sub_banner .sub_banner_con h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 30px;
}

.sub_banner .sub_banner_con p {
    margin-bottom: 40px;
}

.sub_banner .sub_banner_con .box {
    padding: 10px 24px 12px;
    text-align: center;
    border-radius: 6px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 40%);
    transition: all 0.3s ease-in-out;
}

.sub_banner .sub_banner_con .box span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}

.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    margin: 0 10px;
    display: inline-block;
    color: var(--e-global-color-white);
} */

.sub_banner_con {
    padding: 100px 0 60px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.sub_banner_con .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.sub_banner_content h1 {
    font-size: 50px;
    font-weight: 700;
}

.rating-line {
    font-size: 18px;
    font-weight: 600;
}

.certificate-text {
    font-size: 15px;
    letter-spacing: .5px;
}

.award-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    /* More space between logos */
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 96%;
    margin: 20px auto 0;
}

/* Larger Logo Size */
.award-logos img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Effect â€” Premium Touch */
.award-logos img:hover {
    transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .award-logos img {
        height: 70px;
    }

    .award-logos {
        gap: 15px;
        padding: 15px 10px;
    }
}


/* MOBILE */
@media (max-width: 576px) {
    .sub_banner_con {
        padding: 80px 10px 40px;
    }

    .sub_banner_content h1 {
        font-size: 32px;
    }

    .award-logos img {
        height: 50px;
    }

    .rating-line {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .sub_banner_con {
        display: none !important;
    }
}



/* Contact Page */

/* Contact info */

.contactinfo-con {
    padding: 135px 0;
}

.contactinfo-con .contactinfo_content h6 {
    margin-bottom: 10px;
}

.contactinfo-con .contactinfo_content h2 {
    margin-bottom: 45px;
}

.contactinfo-con .contact-box {
    padding: 46px 50px;
    text-align: center;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.contactinfo-con .contact-box:hover {
    border: 1px solid var(--e-global-color-accent);
}

.contactinfo-con .contact-box .icon {
    height: 60px;
    margin-bottom: 26px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.contactinfo-con .contact-box:hover .icon {
    transform: translateY(-5px);
}

.contactinfo-con .contact-box h4 {
    margin-bottom: 14px;
}

.contactinfo-con .contact-box p,
.contactinfo-con .contact-box a {
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-accent);
}

/* Contact Form */

.contactform-con {
    background-color: #16285a;
}

.contactform-con::before {
    content: "";
    width: 49%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/contactusimage.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.contactform-con .contact-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}

.contactform-con .contact-bottomimage img {
    opacity: 10%;
}

.contactform-con .contact_wrapper {
    display: none;
}

.contactform-con .contact_content {
    padding: 135px 0 135px 40px;
    position: relative;
    z-index: 1;
}

.contactform-con .contact_content h6 {
    margin-bottom: 10px;
}

.contactform-con .contact_content h2 {
    margin-bottom: 38px;
}

.contactform-con .contact_content .form-group {
    margin-bottom: 22px;
}

.contactform-con .contact_content .input1 {
    float: left;
    margin-right: 22px;
}

.contactform-con .contact_content input,
.contactform-con .contact_content textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 58px;
    width: 236px;
    padding: 10px 10px 10px 26px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    font-family: "Rajdhani", sans-serif;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}

.contactform-con .contact_content textarea {
    height: 118px;
    width: 100% !important;
    padding: 16px 26px;
    resize: none;
    outline: none;
    overflow: auto;
}

.contactform-con .contact_content .message {
    margin-bottom: 22px;
}

.contactform-con .contact_content input:focus,
.contactform-con .contact_content textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-secondary);
}

.contactform-con .contact_content .submit_now {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    padding: 20px 35px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: #000000;
    font-family: "DM Sans", sans-serif;
    transition: all 0.8s ease-in-out;
    text-align: center;
    outline: none;
    border-style: none;
}

.contactform-con .contact_content .submit_now:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}

.contactform-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 22px;
    color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}

.contactform-con .contact_content .submit_now:hover i {
    transform: translateX(4px);
    color: var(--e-global-color-secondary);
}

.contactform-con .contact_content input::placeholder,
.contactform-con .contact_content textarea::placeholder {
    color: var(--e-global-color-text);
}

.contactform-con .contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-black);
}

/* Map */

.map-con {
    padding: 140px 0;
}

.map-con iframe {
    width: 100%;
    height: 547px;
    border-radius: 20px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.map-con iframe:hover {
    filter: none;
}

/* Team Page */

/* Team */

.team-con {
    padding: 135px 0 80px;
}

.team-con .team_content h6 {
    margin-bottom: 10px;
}

.team-con .team_content h2 {
    margin-bottom: 50px;
}

.team-con .team-box {
    margin-bottom: 65px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.team-con .team-box figure {
    width: 314px;
    height: 314px;
    margin: 0 auto 28px;
    border-radius: 100%;
    overflow: hidden;
}

.team-con .team-box figure img {
    transition: all 0.3s ease-in-out;
}

.team-con .team-box:hover figure img {
    transform: scale(1.1);
}

.team-con .team-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-con .team-box span {
    display: block;
    margin-bottom: 16px;
}

.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.team-con .team-box i {
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.team-con .team-box li:hover {
    transform: translateY(-5px);
}

.team-con .team-box li:first-child {
    margin-left: 0;
}

.team-con .team-box li:last-child {
    margin-right: 0;
}

.team-con .team-box:hover i {
    background-color: var(--e-global-color-secondary);
}

/* Destination Page */

/* Place */

.destinationpage-place {
    padding-bottom: 110px;
}

.destinationpage-place .place_content h2 {
    margin-bottom: 35px;
}

.destinationpage-place .place-box {
    margin-bottom: 30px;
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
}

.destinationpage-place .nav-tabs {
    width: 54%;
    margin: 0 auto 52px;
    justify-content: center;
    border-bottom: 2px solid #ebebeb;
}

.destinationpage-place .tabs-box .nav-tabs li a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    position: relative;
    top: 2px;
    padding: 22px 35px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.destinationpage-place .tabs-box .nav-tabs li a:hover {
    color: var(--e-global-color-accent);
}

.destinationpage-place .tabs-box .nav-tabs>li>a.active {
    color: var(--e-global-color-accent);
    border-bottom: 2px solid var(--e-global-color-accent);
}

/* Faq Page */

/* Faq */

.faq-con {
    padding: 136px 0 140px;
}

.faq-con .faq_content h6 {
    margin-bottom: 10px;
}

.faq-con .faq_content h2 {
    margin-bottom: 45px;
}

.faq-con h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
}

.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 5%);
}

.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}

.faq-con .accordion-card .btn-link h5 {
    color: var(--e-global-color-accent);
}

.faq-con .accordion-card .collapsed h5 {
    color: var(--e-global-color-secondary);
}

.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-accent);
}

.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}

.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}

.faq-con .accordian-inner .card-header a {
    padding: 22px 26px;
}

.faq-con .accordian-inner .card-body {
    padding: 0 26px 20px;
}

.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}

.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}

.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}

.faq-con .accordion-card .btn-link:before {
    content: "\f062";
    font-size: 15px;
    top: 20px;
    right: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-accent);
}

.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-secondary);
}

/* About Page */

/* About */

.aboutpage-con {
    padding: 138px 0 145px;
}

.aboutpage-con .about_wrapper .about-image {
    position: relative;
    top: 0;
    left: 0;
}

.aboutpage-con .about_wrapper .about-image img {
    border-radius: 0%;
}

.aboutpage-con .about_wrapper .about-locationimage {
    position: absolute;
    bottom: 6px;
    right: 70px;
}

.aboutpage-con .about_content h6 {
    margin-bottom: 10px;
}

.aboutpage-con .about_content h2 {
    margin-bottom: 20px;
    font-size: 44px;
}

.aboutpage-con .about_content .text {
    margin-bottom: 30px;
}

.aboutpage-con .about_content ul {
    margin-bottom: 30px;
    display: inline-block;
}

.aboutpage-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}

.aboutpage-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: #16285a;
    border: 2px solid #16285a;
}

.aboutpage-con .about_content ul li p {
    font-weight: 500;
    padding-left: 32px;
    color: var(--e-global-color-secondary);
}

.aboutpage-con .about_content .all_button {
    padding: 20px 38px;
}

/* Activity */

.activity-con {
    background-color: #16285a;
}

.activity-con::before {
    content: "";
    width: 49%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/about4thimage.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.activity-con .activity-bottomimage {
    position: absolute;
    left: 0;
    bottom: 0;
}

.activity-con .activity-bottomimage img {
    opacity: 10%;
}

.activity-con .activity_wrapper {
    display: none;
}

.activity-con .activity_content {
    position: relative;
    z-index: 1;
    padding: 130px 70px 135px 0;
}

.activity-con .activity_content h6 {
    margin-bottom: 10px;
}

.activity-con .activity_content h2 {
    margin-bottom: 20px;
}

.activity-con .activity_content .text {
    margin-bottom: 50px;
}

.activity-con .activity_content li {
    width: 134px;
    height: 139px;
    padding: 28px 32px;
    margin: 0 8px;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-secondary);
}

.activity-con .activity_content li:hover {
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 15%);
}

.activity-con .activity_content li .value {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-left: -20px;
    margin-bottom: 6px;
    color: #16285a;
}

.activity-con .activity_content li:first-child {
    margin-left: 0;
}

.activity-con .activity_content li:last-child {
    margin-right: 0;
}

/* Explore */

.aboutexplore-con {
    padding: 135px 0 140px;
}

.aboutexplore-con .explore_content h6 {
    margin-bottom: 10px;
}

.aboutexplore-con .explore_content h2 {
    margin-bottom: 45px;
}

.aboutexplore-con .explore-box {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.aboutexplore-con .explore-box .image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.aboutexplore-con .explore-box .image::before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/explore-fadeimage.png);
    transition: all 0.3s ease-in-out;
}

.aboutexplore-con .explore-box:hover .image::before {
    display: none;
}

.aboutexplore-con .explore-box:hover .image {
    opacity: 1;
    background-color: var(--e-global-color-black);
}

.aboutexplore-con .explore-box .image img {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.aboutexplore-con .explore-box:hover .image img {
    opacity: 70%;
    transform: scale(1.1);
}

.aboutexplore-con .explore-box .rating {
    left: 20px;
    top: 18px;
    padding: 7px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: rgb(0 0 0 / 35%);
}

.aboutexplore-con .explore-box .rating i {
    font-size: 8px;
    margin-right: 4px;
    color: var(--e-global-color-star-yellow);
}

.aboutexplore-con .explore-box .rating span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

.aboutexplore-con .explore-box .content {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.aboutexplore-con .explore-box .content .place {
    margin-bottom: 6px;
}

.aboutexplore-con .explore-box .content i {
    font-size: 11px;
    margin-right: 2px;
    color: var(--e-global-color-white);
}

.aboutexplore-con .explore-box .content span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

.aboutexplore-con .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 54px !important;
    position: relative;
    text-align: center;
}

.aboutexplore-con .owl-carousel .owl-prev,
.aboutexplore-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.aboutexplore-con .owl-carousel .owl-prev {
    left: -8px;
}

.aboutexplore-con .owl-carousel .owl-next {
    right: -8px;
}

.aboutexplore-con .owl-carousel .owl-prev:hover,
.aboutexplore-con .owl-carousel .owl-next:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Home 2 */

/* Banner */

.travel_banner_outer {
    background-color: var(--e-global-color-light-grayish-orange);
}

.banner2-con {
    padding: 70px 0 165px;
    background-color: var(--e-global-color-light-grayish-orange);
}

.banner2-con:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 12%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner2-backgroundimage.jpg);
}

.banner2-con .banner_content h3 {
    padding-left: 54px;
    margin-bottom: 14px;
    letter-spacing: 2.0px;
    word-spacing: 2.0px;
    position: relative;
}

.banner2-con .banner_content h3::before {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 42px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}

.banner2-con .banner_content h1 {
    font-size: 90px;
    line-height: 96px;
    margin-bottom: 40px;
}

.banner2-con .banner_content h1 span {
    color: var(--e-global-color-accent);
}

.banner2-con .banner_content .all_button {
    padding: 21px 37px;
}

.banner2-con .banner_wrapper .image {
    overflow: hidden;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.banner2-con .banner_wrapper .banner-image1 {
    position: relative;
    left: 20px;
    top: 0;
}

.banner2-con .banner_wrapper .banner-image2 {
    position: relative;
    left: 20px;
    bottom: -30px;
}

.banner2-con .banner_wrapper .banner-image3 {
    position: absolute;
    right: -152px;
    top: 95px;
}

.banner2-con .banner_wrapper .banner-image3::before {
    content: "";
    right: -68px;
    bottom: -68px;
    width: 238px;
    height: 238px;
    border-radius: 100%;
    position: absolute;
    z-index: -1;
    background-color: var(--e-global-color-white);
}

.banner2-con .banner_wrapper .image img {
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.banner2-con .banner_wrapper .image:hover img {
    transform: scale(1.1);
}

.banner2-con .banner_wrapper .box {
    left: -140px;
    bottom: 88px;
    width: 258px;
    height: 73px;
    padding: 10px 15px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-white);
    box-shadow: 2px 20px 29px 20px rgb(0 0 0 / 3%);
}

.banner2-con .banner_wrapper .box .text {
    padding-left: 10px;
}

.banner2-con .banner_wrapper .box .value {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    color: var(--e-global-color-accent);
}

.banner2-con .banner_wrapper .box .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.banner2-con .banner_wrapper .box figure {
    margin: 0 -12px;
    display: inline-block;
}

.banner2-con .banner_wrapper .box figure:first-child {
    margin-left: 0;
}

.banner2-con .banner_wrapper .box figure:last-child {
    margin-right: 0;
}

.banner2-con .banner_wrapper .box img {
    width: 48px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-white);
}

/* Benefit */

.benefit-con {
    padding: 135px 0 140px;
}

.benefit-con .benefit_content h6 {
    margin-bottom: 10px;
}

.benefit-con .benefit_content h2 {
    margin-bottom: 45px;
}

.benefit-con .benefit-box {
    padding: 40px 50px 45px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.benefit-con .benefit-box .icon {
    min-height: 60px;
    margin-bottom: 28px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.benefit-con .benefit-box:hover .icon {
    transform: translateY(-5px);
}

.benefit-con .benefit-box h4 {
    margin-bottom: 14px;
}

/* About */

.about2-con {
    background-color: var(--e-global-color-accent);
}

.about2-con::before {
    content: "";
    width: 49%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/about2-leftbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.about2-con .about-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about2-con .about-bottomimage img {
    opacity: 10%;
}

.about2-con .about_wrapper .about-leftbackground {
    display: none;
}

.about2-con .about_wrapper .about-locationimage {
    position: absolute;
    right: -60px;
    top: 290px;
}

.about2-con .about_content {
    position: relative;
    z-index: 1;
    padding: 135px 0 135px 78px;
}

.about2-con .about_content h6 {
    margin-bottom: 10px;
}

.about2-con .about_content h2 {
    margin: 0 -15px 20px 0;
}

.about2-con .about_content .text {
    margin-bottom: 30px;
}

.about2-con .about_content ul {
    margin-bottom: 40px;
    display: inline-block;
}

.about2-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}

.about2-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    border: 2px solid var(--e-global-color-white);
}

.about2-con .about_content ul li p {
    font-weight: 500;
    padding-left: 32px;
    color: var(--e-global-color-white);
}

.about2-con .about_content .all_button {
    padding: 20px 38px;
    background-color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}

.about2-con .about_content .all_button i {
    transition: all 0.8s ease-in-out;
}

.about2-con .about_content .all_button:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}

.about2-con .about_content .all_button:hover i {
    color: var(--e-global-color-secondary);
}

/* Making */

.making-con {
    background-color: var(--e-global-color-light-grayish-orange);
}

.making-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/whqatmakedoimage.avif);
}

.making-con .making_content {
    padding: 135px 0 115px;
}

.making-con .making_content h6 {
    margin-top: -78px;
}

.making-con .making_content h2 {
    margin-bottom: 40px;
}

.making-con .making-box {
    padding: 40px 30px 35px;
    margin-bottom: 25px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.making-con .box1 {
    padding: 40px 25px 35px;
}

.making-con .making-box .icon {
    height: 60px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.making-con .making-box:hover .icon {
    transform: translateY(-5px);
}

.making-con .making-box h4 {
    font-size: 18px;
    line-height: 22px;
    /* margin-bottom: 14px; */
    margin-top: 15px;
}

.making-con .making-image {
    position: absolute;
    bottom: 0;
    right: -300px;
}

.making-con .making-image:before {
    content: "";
    position: absolute;
    width: 670px;
    height: 670px;
    top: 80px;
    right: 80px;
    border-radius: 100%;
    z-index: -1;
    background-color: var(--e-global-color-white);
}


/* Join */

.join2-con:before {
    opacity: 60%;
    background-image: url(../images/ctaimage.avif);
    text-align: left;
}

/* Testimonial */

.testimonial2-con {
    padding: 135px 0 140px;
}

.testimonial2-con .testimonial_content h6 {
    margin-bottom: 10px;
}

.testimonial2-con .testimonial_content h2 {
    margin-bottom: 45px;
}

.testimonial2-con .testimonial-box {
    padding: 50px 30px 45px 35px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid #16285a;
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%) inset;
}

.testimonial2-con .testimonial-box .testimonial-quoteimage {
    margin-bottom: 20px;
}

.testimonial2-con .testimonial-box p {
    margin-bottom: 24px;
}

.testimonial2-con .review-content {
    padding-left: 16px;
    display: flex;
}

.testimonial2-con .review-content .testimonial-personimage {
    position: relative;
    top: 2px;
    left: -15px;
}

.testimonial2-con .review-content .testimonial-personimage img {
    width: 54px !important;
    border-radius: 100px;
}

.testimonial2-con .testimonial-box ul {
    margin-bottom: 6px;
}

.testimonial2-con .testimonial-box ul li {
    display: inline-block;
}

.testimonial2-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: #16285a;
}

.testimonial2-con .review-content .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
}

.testimonial2-con .review-content .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: black;
}

.testimonial2-con .owl-carousel .owl-item img {
    width: auto !important;
}

.testimonial2-con .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 52px !important;
    position: relative;
    text-align: center;
}

.testimonial2-con .owl-carousel .owl-prev,
.testimonial2-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.testimonial2-con .owl-carousel .owl-prev {
    left: -4px;
}

.testimonial2-con .owl-carousel .owl-next {
    right: -4px;
}

.testimonial2-con .owl-carousel .owl-prev:hover,
.testimonial2-con .owl-carousel .owl-next:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Home 3 */

/* Banner */

.banner3-con {
    padding: 188px 0 220px;
    background-color: #a8ad9c;
}

.banner3-con:before {
    content: "";
    position: absolute;
    opacity: 75%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--banner-images);
}

.banner3-con .top-btn {
    position: absolute;
    z-index: 1;
    top: 156px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}

.banner3-con .top-btn:hover {
    transform: translateY(-5px);
}

.banner3-con ul {
    position: absolute;
    left: -280px;
    top: 128px;
    z-index: 2;
}

.banner3-con ul li {
    margin: 15px 0;
    transition: all 0.3s ease-in-out;
}

.banner3-con ul li:first-child {
    margin-top: 0;
}

.banner3-con ul li:last-child {
    margin-bottom: 0;
}

.banner3-con ul li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 50%);
    transition: all 0.3s ease-in-out;
}

.banner3-con ul li a:hover i {
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

.banner3-con .banner_content {
    position: relative;
    z-index: 1;
}

.banner3-con .banner_content h3 {
    letter-spacing: 2.0px;
    margin-bottom: 18px;
}

.banner3-con .banner_content h3 span {
    top: -4px;
    font-size: 28px;
    padding: 0 20px;
    position: relative;
}

.banner3-con .banner_content h1 {
    margin-bottom: 26px;
}

.banner3-con .banner_content p {
    padding: 0 95px;
    margin-bottom: 36px;
}

.banner3-con .banner_content .all_button {
    padding: 21px 37px;
}

.banner3-con .banner_content .all_button:hover,
.banner3-con .banner_content .all_button:hover i {
    color: var(--e-global-color-secondary);
}

.banner3-con .banner_content .all_button:hover {
    background-color: var(--e-global-color-white);
}

.banner3-con .banner_content ul {
    display: none;
}

/* About */

.about3-con {
    padding: 140px 0 200px;
}

.about3-con .about-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about3-con .about-bottomimage img {
    opacity: 10%;
}

.about3-con .about_wrapper .about-image1 {
    position: relative;
    left: 0;
    top: 0;
}

.about3-con .about_wrapper .about-image1::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -62px;
    bottom: -62px;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    z-index: -1;
}

.about3-con .about_wrapper .about-image2 {
    position: absolute;
    right: -56px;
    bottom: -102px;
}

.about3-con .about_wrapper .about-image2 img {
    border: 8px solid var(--e-global-color-white);
}

.about3-con .about_wrapper .image img {
    border-radius: 20px;
}

.about3-con .about_wrapper .video-icon {
    position: absolute;
    width: 101px;
    height: 101px;
    line-height: 96px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    text-align: center;
    background-color: rgb(0 0 0 / 45%);
    border: 2px solid rgb(255 255 255 / 50%);
}

.about3-con .about_wrapper .video-icon img {
    border-radius: 0 !important;
    border: none !important;
    width: auto !important;
}

.about3-con .about_content {
    z-index: 1;
    position: relative;
    padding: 116px 0 0 48px;
}

.about3-con .about_content h6 {
    margin-bottom: 10px;
}

.about3-con .about_content h2 {
    margin-bottom: 20px;
}

.about3-con .about_content .text {
    margin-bottom: 30px;
}

.about3-con .about_content .propertise {
    margin-bottom: 35px;
}

.about3-con .about_content ul {
    display: inline-block;
}

.about3-con .about_content .list1 {
    padding-right: 22px;
}

.about3-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}

.about3-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: #16285a;
    border: 2px solid #16285a;
}

.about3-con .about_content ul li p {
    font-weight: 500;
    padding-left: 30px;
    color: var(--e-global-color-secondary);
}

.about3-con .about_content .all_button {
    padding: 20px 38px;
}

/* Service */

.service3-con {
    background-color: white;
}

.service3-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url(../images/service3-backgroundimage.jpg); */
}

/* Explore */

.explore3-con .container {
    max-width: 1710px;
    margin: 0 auto;
}

/* Activity */

.activity3-con::before {
    background-image: url(../images/activity3-rightbackground.jpg);
}

/* Testimonial */

.testimonial3-con {
    padding: 135px 0 140px;
    background-color: var(--e-global-color-light-grayish-orange);
}

.testimonial3-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/testimonial-backgroundimage.jpg);
}

.testimonial3-con .testimonial_content h6 {
    margin-bottom: 10px;
}

.testimonial3-con .testimonial_content h2 {
    margin-bottom: 45px;
}

.testimonial3-con .testimonial-box {
    padding: 44px 50px 44px 38px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
}

.testimonial3-con .testimonial-box .testimonial-personimage {
    width: 19%;
    float: left;
}

.testimonial3-con .testimonial-box .testimonial-personimage img {
    border-radius: 100%;
}

.testimonial3-con .testimonial-box .content {
    width: 81%;
    padding-left: 25px;
    display: inline-block;
}

.testimonial3-con .testimonial-box p {
    margin-bottom: 10px;
}

.testimonial3-con .testimonial-box ul {
    margin-bottom: 10px;
}

.testimonial3-con .testimonial-box ul li {
    display: inline-block;
}

.testimonial3-con .testimonial-box ul li i {
    font-size: 14px;
    line-height: 14px;
    color: var(--e-global-color-light-yellow);
}

.testimonial3-con .testimonial-box .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
}

.testimonial3-con .testimonial-box .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.testimonial3-con .owl-carousel .owl-nav {
    display: block !important;
    margin-top: 52px !important;
    position: relative;
    text-align: center;
}

.testimonial3-con .owl-carousel .owl-prev,
.testimonial3-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.testimonial3-con .owl-carousel .owl-prev {
    left: -4px;
}

.testimonial3-con .owl-carousel .owl-next {
    right: -4px;
}

.testimonial3-con .owl-carousel .owl-prev:hover,
.testimonial3-con .owl-carousel .owl-next:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* For place pages */

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}

.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    transform: translate(0, -25%);
}

.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}

.project_modal .modal.show .modal-dialog {
    transform: translate(0, 0);
}

.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}

.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}

.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}

.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}

.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}

.project_modal button.btn-close {
    border: 0;
    -webkit-appearance: none;
}

.project_modal button {
    text-transform: none;
    overflow: visible;
}

.project_modal .modal-header button i {
    color: var(--e-global-color-white);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}

.project_modal .fa-x:before {
    content: "\58";
}

.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}

.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}

.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}

.project_modal .blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}

.project_modal .modal-body .blog-img {
    float: left;
    width: 100%;
}

.project_modal .modal-body .blog-img figure {
    position: relative;
}

.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}

.project_modal .modal-content .project_content {
    padding: 40px 0 40px 20px;
}

.project_modal .modal-content .project_content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}

.project_modal .modal-content .project_content .text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}

.project_modal .modal-content .project_content .properties {
    margin-bottom: 20px;
}

.project_modal .modal-content .project_content .properties ul {
    padding-left: 25px;
}

.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}

.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}

.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.project_modal .modal-content .project_content .all_button {
    padding: 20px 30px;
}

/* Service Detail */

.service_detail {
    padding: 130px 0 120px;
}

.service_detail .main-box {
    position: relative;
}

.service_detail .main-box .image {
    margin-bottom: 30px;
}

.service_detail .main-box .image img {
    width: 100%;
    border-radius: 20px;
}

.service_detail .main-box h3 {
    font-size: 24px;
    line-height: 30px;
}

.service_detail .main-box p {
    margin-bottom: 10px;
}

.service_detail .main-box .text2 {
    margin-bottom: 20px;
}

.service_detail .main-box .list {
    margin-bottom: 20px;
}

.service_detail .main-box .list li {
    margin-bottom: 6px;
    padding-left: 28px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-text);
}

.service_detail .main-box .list li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 17px;
    top: 2PX;
    left: 0;
    border-radius: 100px;
    position: absolute;
    text-align: center;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page {
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-orange);
}

.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}

.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}

.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}

.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 15px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.error_page .error_content .back_home i {
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}

.error_page .error_content .back_home:hover i {
    transform: translateX(4px);
}

/* Coming Soon */

.comingsoon_outer {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-orange);
}

.comingsoon_outer .logo_outer {
    margin-bottom: 70px;
}

.comingsoon_outer .logo_outer img {
    width: 145px;
}

.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.comingsoon_outer .sub_banner_content h1 {
    font-size: 90px;
    line-height: 92px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}

.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}

.comingsoon_outer .sub_banner_content form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comingsoon_outer .sub_banner_content .form-group {
    margin-bottom: 30px;
}

.comingsoon_outer .sub_banner_content input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 14px 16px 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}

.comingsoon_outer .sub_banner_content button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 15px 30px 18px;
    height: 100%;
    top: 0;
    right: -5px;
    border-radius: 0 8px 8px 0;
    position: absolute;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    overflow: visible;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-accent);
}

.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
}

.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}

.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}

.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}

.comingsoon_outer .sub_banner_content .social-icon a {
    transition: all 0.3s ease-in-out;
}

.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 36px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-accent);
    background-color: transparent;
    border: 1px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: #16285a;
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 8px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    transform: translateY(-5px);
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
    }
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* home page css start  golden triangle tours css*/
.gt-section {
    padding: 20px 0;
    background: #ffffff;
}

.gt-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
}

.gt-main-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.gt-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 15px;
}

.gt-row.reverse {
    flex-direction: row-reverse;
}

.gt-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.gt-image {
    flex: 1;
}

.gt-content {
    flex: 1;
}

.gt-content h3 {
    font-size: 31px;
    margin-bottom: 15px;
    line-height: normal;
}

.gt-content p {
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    margin-bottom: 15px;
}

.gt-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.gt-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.gt-buttons {
    display: flex;
    gap: 15px;
}

.gt-btn-primary {
    background: #16285a;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.gt-btn-primary:hover {
    color: #ffffff;
}

.gt-btn-outline {
    border: 2px solid #16285a;
    color: #16285a;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.gt-btn-outline:hover {
    background: #000000;
    color: white;
}

.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

.tour-highlights li i {
    color: #c89b3c;
    /* premium gold */
    font-size: 16px;
}


/* âœ… MOBILE RESPONSIVE */
@media screen and (max-width: 900px) {

    .gt-row,
    .gt-row.reverse {
        flex-direction: column;
    }

    .gt-main-heading {
        font-size: 26px;
    }

    .gt-content h3 {
        font-size: 22px;
    }

    .gt-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .gt-btn-primary,
    .gt-btn-outline {
        width: 100%;
        text-align: center;
    }
}


/* whatsapp button css */
.whatsapp-btn {
    background: #25D366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn .wa-icon {
    font-size: 22px;
    /* icon size increase */
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}


/* client gallery css */
.client-gallery-section {
    background: #fefaf7;
    padding: 50px 0;
}

.gallery-container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    /* Small gutter */
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    /* Increased height */
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.gallery-grid img:hover {
    transform: scale(1.03);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* top header css */
/* ===== TOP BAR STYLING ===== */
/* TOPBAR BASE */
.topbar {
    background: rgb(19, 19, 97);
    padding: 6px 0;
    color: #fff;
    font-size: 12px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-right: 17px;
}

.topbar i {
    font-size: 15px;
    margin-right: 4px;
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .topbar{
        font-size: 10px;
    }

    .topbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;   /* ⭐ MOST IMPORTANT */
        gap: 6px;
    }

    /* LEFT SIDE */
    .topbar-left {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap; /* ⭐ phone + email same row */
        flex-shrink: 1;      /* left side adjust kare */
    }

    .topbar-left span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* EMAIL FULL SHOW */
    .topbar-left .email-item a {
        white-space: nowrap; /* ⭐ full email ek line */
    }

    /* RIGHT SIDE ICONS */
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;  /* ⭐ icons kabhi tootenge nahi */
    }
}




/* css brans */
.trusted-brands-section {
    padding: 50px 0;
    text-align: center;
    background: #f7f7f7;
}

.trusted-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    color: #333;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px;
    flex-wrap: wrap;
}

.brand-item img {
    height: 60px;
    width: auto;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: 0.3s ease;
}

.brand-item img:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 576px) {
    .trusted-logos {
        gap: 20px;
    }

    .brand-item img {
        height: 45px;
    }
}


/* customize css tour detials div */
.tourDetails_section {
    padding: 20px 0;
}

.tourDetails_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tourDetails_list {
    display: flex;
    /* flex-direction: column; */
    gap: 25px;
}

.tourDetails_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon_box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* background: #f1f1f1; */
    font-size: 22px;
}

.text_box h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.text_box p {
    margin: 0;
    color: #000000;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
    .tourDetails_title {
        font-size: 26px;
        text-align: center;
    }

    .tourDetails_list {
        gap: 20px;
        flex-direction: column-reverse;
    }

    .icon_box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .text_box h4 {
        font-size: 18px;
    }

    .text_box p {
        font-size: 14px;
    }
}


/* tour highlights css */
.tourHighlights_section {
    padding: 3px 0;
}

.tourHighlights_title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 25px;
    /* font-family: "Playfair Display", serif; */
}

.tourHighlights_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 25px;
}

.tourHighlights_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tourHighlights_item i {
    font-size: 24px;
    color: #0d6efd;
    /* premium blue */
    background: rgba(13, 110, 253, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.tourHighlights_item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: black;
}

/* Mobile */
@media (max-width: 768px) {
    .tourHighlights_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* itinerary  */
.itinerary-section {
    padding: 50px 20px;
}

.itinerary-title {
    font-size: 30px;
    margin-bottom: 40px;
    margin-left: -21px;
}

/* Timeline Wrapper */
.timeline {
    position: relative;
    margin-left: 40px;
    margin-left: -10px;
}

/* Vertical Line */
.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d0c5b8;
}

/* Each Item */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

/* Icons */
.timeline-icon {
    width: 22px;
    height: 22px;
    background: #d0c5b8;
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 0;
    transform: translateY(4px);
    transition: all 0.4s ease;
}

/* Icon Active Color */
.timeline-item.active .timeline-icon {
    background: #16285a;
    /* Luxury brown */
    box-shadow: 0 0 12px rgba(183, 124, 64, 0.6);
}

/* Content */
.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.timeline-content p {
    font-size: 15px;
    color: #000000;
    margin-top: 8px;
}

/* MOBILE */
@media (max-width: 576px) {
    .timeline {
        margin-left: -21px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }
}

/* include exclude css */
.inc-exc-clean {
    padding: 0px 0;
    margin-top: -40px;
}

/* Headings */
.inc-head,
.exc-head {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    /* font-family: "Cormorant Garamond", serif; */
}

/* Lists */
.inc-clean-list,
.exc-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-clean-list li,
.exc-clean-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
}

/* Green Tick */
.inc-clean-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71;
    font-weight: 700;
}

/* Red Cross */
.exc-clean-list li::before {
    content: "\2716";
    position: absolute;
    left: 0;
    top: 0;
    color: #e74c3c;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {

    .inc-head,
    .exc-head {
        font-size: 24px;
        margin-top: 25px;
    }

    .inc-clean-list li,
    .exc-clean-list li {
        font-size: 16px;
    }
}



/* client gallery itinerary page  */
.clientGallery_section {
    padding: 40px 0;
    background: #faf7f3;
    text-align: center;
}

.clientGallery_title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #2d1f1f;
}

.clientGallery_slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.clientGallery_slide img:hover {
    transform: scale(1.03);
}

/* itinerary box call us and whatsapp button */
.contact-box-custom h4 {
    font-size: 22px;
    font-weight: 500;
    /* margin-bottom: 18px; */
    margin-top: 22px;
    /* font-family: "Playfair Display", serif; */
}

.reach-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reach-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.whatsapp-btn {
    background: #16285a;
}

.whatsapp-btn:hover {
    background: #000000;
}

.call-btn {
    background: #16285a;
}

.call-btn:hover {
    background: #000000;
}

.reach-btn i {
    font-size: 18px;
}

/* Mobile */
@media(max-width: 576px) {
    .reach-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .reach-btn {
        justify-content: center;
        font-size: 15px;
    }
}

/* itinerary form css */
.tourBookingBox {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.booking-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #c07a3a;
    box-shadow: 0 0 5px rgba(192, 122, 58, 0.4);
}

.rowTwo {
    display: flex;
    gap: 15px;
    width: 100%;
}

.rowTwo .form-group {
    flex: 1;
}

/* MOBILE RESPONSIVE */
@media(max-width: 576px) {
    .rowTwo {
        flex-direction: column;
        gap: 10px;
    }
}


.nextBtn,
.backBtn,
.submitBtn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background: #16285a;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.nextBtn:hover,
.backBtn:hover,
.submitBtn:hover {
    background: #000000;
}

.form-step {
    display: none;
}

.active-step {
    display: block;
}

/* PRICE BOX */
.priceBox {
    background: #f8f2ec;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 16px;
}

.review-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-box p {
    margin: 6px 0;
    font-size: 15px;
}

/* FIX RADIO OPTION ALIGNMENT */
/* MAIN WRAPPER */
.radioBox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

/* RADIO BUTTON ALIGN FIX */
.radioBox input[type="radio"] {
    margin-top: 3px;
    transform: scale(1.1);
}

/* CONTENT FIX */
.radioContent {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3;
}

/* TITLE FIX */
.radioContent strong {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px;
}

/* DESCRIPTION FIX */
.radioContent p {
    margin: 2px 0 0 0 !important;
    padding: 0 !important;
    font-size: 13px;
}

/* HOVER EFFECT (premium look) */
.radioBox:hover {
    border-color: #c07a3a;
    background: #fff6ef;
}


/*  */


/* cusdtom alert css */
.custom-alert {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.custom-alert .alert-content {
    background: #fff;
    padding: 22px 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    font-family: "Inter", sans-serif;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    animation: popup 0.25s ease;
}

.custom-alert .alert-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.custom-alert .alert-content button {
    background: #C19A6B;
    border: none;
    padding: 9px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

@keyframes popup {
    from {
        transform: scale(0.75);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* thankyou popup */
.thankyou-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}

.thankyou-box {
    background: #fff;
    padding: 28px 35px;
    border-radius: 12px;
    text-align: center;
    width: 320px;
    animation: popUp 0.3s ease-out;
    border-top: 5px solid #c49b63;
    /* premium brown gold shade */
}

.thankyou-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2e2e2e;
}

.thankyou-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.thankyou-box button {
    background: #c49b63;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.thankyou-box button:hover {
    background: #a4814b;
}

@keyframes popUp {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* vaitor css */
.bookBox_container {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 340px;
    margin-left: auto;
    margin-top: 20px;
}

.bookBox_title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #2b2b2b;
    text-align: center;
}

.bookBox_cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bookBox_card {
    background: #f8f9fb;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.bookBox_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bookBox_card img {
    max-width: 258px;
    width: 103%;
    height: auto;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .bookBox_container {
        margin: 20px auto;
        max-width: 100%;
    }

    .bookBox_card img {
        max-width: 150px;
    }
}

/* plan my trip css */
/* MAIN SECTION */
.tpPlanSection {
    padding: 34px 0;
    background: #ffffff;
}

.tpContainer {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 45px;
    padding: 0 25px;
}

/* LEFT SIDE */
.tpLeft {
    width: 50%;
}

.tpTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tpIntro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: black;
}

.tpSubTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.tpSteps li {
    margin-bottom: 18px;
    line-height: 1.5;
}

.tpSteps p {
    margin: 4px 0 0;
    color: #000000;
}

/* RIGHT FORM BOX */
.tpRight {
    width: 50%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.12);
}

.tpForm label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.tpForm input,
.tpForm select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 18px;
    background: #fff;
    transition: 0.3s;
}

.tpForm input:focus,
.tpForm select:focus {
    border-color: #c49b69;
    box-shadow: 0 0 7px rgba(196, 155, 105, 0.4);
}

.tpRow {
    display: flex;
    gap: 20px;
}

.tpGroup {
    flex: 1;
}

.tpContactTitle {
    margin: 25px 0 15px;
    text-align: center;
    font-size: 20px;
}

/* BUTTON */
.tpSubmitBtn {
    width: 100%;
    padding: 14px;
    background: #16285a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tpSubmitBtn:hover {
    background: #000000;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .tpContainer {
        flex-direction: column;
    }

    .tpLeft,
    .tpRight {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .tpRow {
        flex-direction: column;
    }

    .tpRight {
        padding: 25px;
        border-radius: 15px;
    }
}

/* car rental page css */
.carRentalContainer {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* INTRO */
.carRentalIntro {
    padding: 70px 0 40px;
    text-align: center;
}

.carRentalTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.carRentalText {
    font-size: 16px;
    line-height: 1.8;
    max-width: 1151px;
    margin: auto;
    color: black;
}

/* FLEET */
.fleetSection {
    padding: 27px 0;
}

.fleetTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.fleetGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fleetCard {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    text-align: center;
    transition: 0.3s;
}

.fleetCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleetName {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #222;
    background: #fafafa;
}

.fleetCard:hover {
    transform: translateY(-6px);
}


/* HIRE CAB FORM */
.hireCabSection {
    padding: 60px 0;
}

.hireTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: black;
}

.hireSub {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.hireCabForm {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.12);
}

.formRow {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.hireCabForm input,
.hireCabForm textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.hireCabForm textarea {
    resize: none;
    height: 120px;
    margin-bottom: 20px;
}

.submitCabBtn {
    width: 100%;
    padding: 14px;
    background: #16285a;
    color: #fff;
    font-size: 17px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.submitCabBtn:hover {
    background: #000000;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .fleetGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .formRow {
        flex-direction: column;
    }

    .fleetGrid {
        grid-template-columns: 1fr;
    }
}

/* agra sightseeing */
.agraGuideSection {
    padding: 70px 0;
    background: #ffffff;
}

.agraGuideContainer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.agraGuideImage {
    flex: 0 0 42%;
}

.agraGuideImage img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

/* CONTENT */
.agraGuideContent {
    flex: 1;
}

.agraGuideTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    font-family: "Playfair Display", serif;
}

.agraGuideSubTitle {
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 12px;
    color: #111;
    font-family: "Playfair Display", serif;
}

.agraGuideText {
    font-size: 16.5px;
    line-height: 1.8;
    color: #000000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .agraGuideContainer {
        flex-direction: column;
        padding: 25px;
        gap: 30px;
    }

    .agraGuideImage {
        width: 100%;
    }

    .agraGuideTitle {
        font-size: 28px;
        text-align: center;
    }

    .agraGuideSubTitle {
        font-size: 22px;
        text-align: center;
    }

    .agraGuideText {
        text-align: center;
        font-size: 15.5px;
    }
}


/* agra monuments */
.agraMonumentsSection {
    padding: 30px 0;
    background: #f9f9f9;
}

.agraMonumentsContainer {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.agraMonumentsTitle {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
    font-family: "Playfair Display", serif;
}

.agraMonumentsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.agraMonumentCard {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agraMonumentCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.agraMonumentCard h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
    font-family: "Playfair Display", serif;
}

.agraMonumentCard p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .agraMonumentsTitle {
        font-size: 30px;
    }

    .agraMonumentsGrid {
        grid-template-columns: 1fr;
    }

    .agraMonumentCard {
        padding: 22px;
    }

    .agraMonumentCard h3 {
        font-size: 22px;
    }

    .agraMonumentCard p {
        font-size: 15.5px;
    }
}

/* category page banner hero css */
.simplePageHeader {
    background: #ffffff;
    padding: 20px 15px;
    /* border-bottom: 1px solid #000000; */
}

.simplePageHeader_container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.simplePageHeader h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.breadcrumb {
    font-size: 14px;
    color: #000000;
}

.breadcrumb a {
    color: #c07a3a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb span {
    margin: 0 6px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .simplePageHeader {
        padding: 40px 15px;
    }

    .simplePageHeader h1 {
        font-size: 26px;
    }
}

/* thankyou css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
}

.thankyou-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9f9f9, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-box {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: #16285a;
}

.check-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #16285a;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-box h1 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.thankyou-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #16285a;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 480px) {
    .thankyou-box {
        padding: 30px 20px;
    }

    .thankyou-box h1 {
        font-size: 24px;
    }

    .thankyou-box p {
        font-size: 14px;
    }
}

/* notebox */
.note-box {
    padding: 15px 19px;
    margin: 61px 0;
    /* background: #f8f9fa; */
    /* border-left: 4px solid #c89b3c; */
    font-size: 15px;
    line-height: 1.6;
    margin-top: -80px;
}

.note-box a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.note-box a:hover {
    text-decoration: underline;
}

/* why choose us */
.why-choose-us {
    padding: 10px 0;
}

.making-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.making-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.making-box .icon img {
    width: 60px;
    margin-bottom: 15px;
}

.making-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.making-box p {
    color: #666;
    line-height: 1.6;
}

.why-choose-us h2 {
    margin-bottom: 0px;
}

.why-choose-us p {
    margin-bottom: 0;
}

/*whatsappbutton css*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;   /* 👈 LEFT side */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
