
@font-face {
    font-family: 'Playfair Display';
    src: url("../fonts/PlayfairDisplay.eot?") format("eot"), url("../fonts/PlayfairDisplay.ttf") format("truetype");
  }

  @font-face {
    font-family: 'Lora';
    src: url("../fonts/Lora.eot?") format("eot"), url("../fonts/Lora.ttf") format("truetype");
  }

  h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair Display', serif;
  }

  p{
    font-family: 'Lora', serif;
  }

  a{
    font-family: 'Lora', serif;
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000000bf;
}

.logo img {
    width: 180px;
    height: 100px;
    object-fit: contain;
}

nav {
    width: 40%;
}

nav ul {
    display: flex;
    padding-left: 0;
    margin: 0;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 350px;
    background: transparent;
    left: 0;
    top: 85px;
}

nav ul li {
    list-style: none;
}

nav ul li {
    list-style: none;
}

select#languageSelect {
    margin-right: 15px;
    background: #E7D7C1;
    color: #2F4F4F;
    border: 1px solid #2F4F4F;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
}

select#languageSelect:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
}

option {
    background: transparent;
    color: #000;
}

.language button {
    margin-right: 15px;
    background: #E7D7C1;
    color: #2F4F4F;
    border: 1px solid #2F4F4F;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
}

.language button:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
}

.banner-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.banner-image {
    height: 100vh;
}

nav a {
    color: #fff;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(35%, -50%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(35%, -50%);
    width: 30%;
    z-index: 9;
}

.banner-text a {
    position: relative;
    top: 20px;
    background: #E7D7C1;
    color: #2F4F4F;
    border: 1px solid #2F4F4F;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
}

.banner-text a:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
}

.banner-text h1 {
    font-size: 50px;
    color: #fff;
}

.banner-text p {
    font-size: 25px;
    color: #fff;
}

section.banner::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #00000038;
    position: absolute;
    top: 0;
    left: 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Initially Hide Navigation Elements */
.nav-menu {
    display: none;
}

/* Show Nav when Active */
.nav-menu.show {
    display: block;
}

/* Center Nav Items */
.nav-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.nav-menu ul li {
    padding: 10px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #3a5f5f;
    font-weight: bold;
}



/* Hamburger Lines */
.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #3a5f5f;
    position: absolute;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* Transform to Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Always Show Logo and Language Selector */
.language, .logo {
    display: flex;
    gap: 10px;
}

.left__side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.left__side {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

section.about {
    padding: 90px 0;
}

section.about {
    padding: 90px 0;
    background: #A8B5A4;
}

.right__side h1 {
    color: #3A5F5F;
    font-size: 42px;
    font-weight: 700;
}

.right__side h3 {
    color: #F5F5DC;
    font-size: 24px;
    font-weight: 500;
}

.right__side p {
    color: #3A5F5F;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    /* opacity: 80%; */
}

.right__side a {
    background: #E7D7C1;
    color: #2F4F4F;
    border: 1px solid #2F4F4F;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
}

.right__side a:hover {
    background: #B0C4DE;  /* Misty Blue for a cool hover effect */
    color: #F5F5DC;  /* Soft Ivory for contrast */
    border-color: #B0C4DE;
    transition: 0.3s ease-in-out;
}

.right__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
}

.top-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 8px;
}

.destination__name p {
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 30px;
}

.cousines___001 {
    height: 370px;
    border-radius: 12px;
    /* overflow: hidden; */
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
    overflow: hidden;
}

.destination__name.swip {
    width: 99%;
    margin: auto;
    bottom: 21px;
    border-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.swiper.mySwiper.cousine {
    padding-top: 20px;
    padding-bottom: 50px;
}

.left__cuisine h1 {
    color: #3A5F5F;
    font-size: 42px;
    font-weight: 700;
    /* padding-bottom: 15px; */
}

.destination__name {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: transparent;
    backdrop-filter: blur(6px);
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    border-bottom-left-radius: 12px;
}

.top-image {
    height: 100%;
}

.destination__card {
  position: relative;
  min-height: 450px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  background: #e7d7c1;
  border: 1px solid #3a5f5f;
}

.row.destination {
    row-gap: 25px;
}

section.destination {
    padding: 90px 0;
}

.top___heading {
    text-align: center;
}

.top___heading p {
    padding-bottom: 30px;
}

section.itinerary {
    background: url('../images/itenerary.jpg');
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center 0px;
    padding: 90px 0;
    position: relative;
}

.single_itenerary {
    width: 500px;
    height: 450px;
    background: #a8b5a4;
    border-radius: 12px;
    padding: 40px;
    padding-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}

.single_itenerary p {
    padding-bottom: 30px;
    color: #3a5f5f;
    font-size: 18px;
    font-weight: 500;
}

.single_itenerary h1 {
    color: #3A5F5F;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 15px;
}

.right__side.iter {
    height: auto;
}

.top__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.experience {
    background: url('../images/heritage.jpg');
    background-repeat: no-repeat;
    padding: 90px 0;
    background-size: cover;
    /* filter: grayscale(1); */
}

.top___heading h1 {
    color: #3A5F5F;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 15px;
}

.top___heading p {
    padding-bottom: 30px;
    color: #3a5f5f;
    font-size: 24px;
    font-weight: 500;
}

.single__card {
    position: relative;
}

.single__card {
    position: relative;
    height: 500px;
}

.top__image {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.top__image::before {
    content: '';
    display: block;
    width: 85%;
    height: 85%;
    position: absolute;
    background: #00000078;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 0;
    transition: .2s all;
    border-radius: 12px;
}

.top__image:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.top___heading.exp h1 {
    color: #F5F5DC;
}

.top___heading.exp p {
    color: #F5F5DC;
}

.top___image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.small__Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.bottom__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    margin: 18px 0;
}

.top___image {
    width: 100%;
    height: 350px;
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
}

.small__Image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
}

section.gallery {
    padding: 90px 0;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

  .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #3A5F5F;
    background-color: transparent;
    border-bottom: 2px solid #3A5F5F;
    border-radius: 0;
    padding: 0 0 5px;
}

.nav-pills .nav-link {
    border-radius: 0;
    padding: 0;
    margin-right: 15px;
    color: #3A5F5F;
}

.image___swiper {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
}

.warpper__div select {
    border: 1px solid #2F4F4F;
    padding: 10px;
    border-radius: 8px;
    color: #3a5f5f;
}

.warpper__div input::placeholder {
    color: #3a5f5f;
    font-size: 14px;
}

.warpper__bottom h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: .5px;
    line-height: 30px;
}

.warpper__bottom {
    color: #fff;
    left: 50%;
    transform: translate(-50%, 0);
    background: transparent;
    backdrop-filter: blur(6px);
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    border-bottom-left-radius: 12px;
    position: absolute;
    bottom: 0;
}

section.exprence {
    padding: 90px 0;
    background: #A8B5A4;
}

.single__card.testimonial {
    width: 100%;
    border: 1px solid #3a5f5f;
    border-radius: 12px;
    box-shadow: rgb(58 95 95) 0px 3px 8px;
}

.single__card.testimonial {
    width: 100%;
    border: 1px solid #c89b78;
    border-radius: 12px;
    box-shadow: rgb(231 215 193) 0px 3px 8px;
    height: 320px;
}

footer h3 {
    color: #c89b78;
    letter-spacing: 0;
    line-height: 100%;
}

.top__testimonial {
    padding: 20px 0;
}

.top__testimonial svg {
    width: 100px;
    height: 100px;
    border: 2px solid #c89b78;
    border-radius: 50%;
    padding: 10px;
}

section.testimonial {
    padding: 90px 0;
    position: relative;
}

.bottom__testimonial h4 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 35px;
}

.bottom__testimonial span {
    font-size: 15px;
    letter-spacing: .5px;
    line-height: 25px;
    font-weight: 500;
}

.bottom__testimonial p {
    font-size: 14px;
    line-height: 20px;
}

.bottom__testimonial {
    color: #3a5f5f;
}

.single__card.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 12px;
}

.swiper-pagination-bullet-active {
    background: #c89b78;
}

.swiper-button-prev {
    top: 28%;
    left: 87%;
    width: 40px;
    background: #e2d2bc;
    border-radius: 50%;
    height: 40px;
}

.swiper-button-next {
    top: 28%;
    right: 100px;
    width: 40px;
    background: #e2d2bc;
    border-radius: 50%;
    height: 40px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    color: #3a5f5f;
}

footer ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 25px;
    font-weight: 500;
}

footer ul li a {
    color: #e7d7c1;
    text-decoration: none;
}

.mail a {
    color: #e7d7c1;
}

footer {
    padding: 90px 0;
    background: #3f3f3f;
    padding-bottom: 0;
}

.footer-logo img {
    width: 100%;
}

footer h3 {
    /* color: #e7d7c1; */
    letter-spacing: 0;
    line-height: 100%;
}

ul.footer-boottom li {
    margin-bottom: 0;
}

ul.footer-boottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px;
    /* color: #3a5f5f; */
    margin-bottom: 18px;
}

.warpper-footer {
    display: flex;
    margin-top: 10px;
    border-top: 2px solid #9f7b60;
    padding-top: 10px;
}

.social a {
    font-size: 25px;
    color: #e7d7c1;
    text-decoration: none;
    margin-right: 10px;
}

span.address-icon {
    background: #e7d7c1;
    color: #3a5f5f;
    font-size: 14px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}

.social {
    text-align: center;
}

.warpper-footer p {
    color: #e7d7c1;
    font-weight: 600;
    letter-spacing: .5px;
}

ul.footer-boottom a {
    font-weight: 600;
    letter-spacing: .5px;
    margin-left: 20px;
}

.hamburger {
    position: fixed;
    top: 38px;
    left: 20px;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #e7d7c1;
    transition: 0.3s;
}

footer p {
    text-align: left;
    color: #ccbeaa;
    margin-bottom: 0;
}

footer ul li {
    text-align: left;
    /* width: 40%;
    margin: auto; */
}

.wrapper-footer {
    width: 70%;
    margin: auto;
    text-align: left;
}

.footer-logo {
    width: 90%;
}

address {
    text-align: left;
    color: #e7d7c1;
    display: flex;
    gap: 10px;
}

.logo {
    justify-content: center;
}

.language {
    justify-content: end;
    margin-right: 20px;
}

/* Full-screen Navigation */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000de;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.5s ease-in-out;
    z-index: 1000;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    color: #e7d7c1;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #B0C4DE;
}

/* Active class */
.nav-menu.active {
    transform: translateY(0);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

section.banner::before {
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #00000038;
    position: absolute;
    content: '';
}

section.banner {
    position: relative;
}

.form__banner {
    background: #e7d7c182;
    position: absolute;
    right: 40px;
    padding: 25px 25px;
    border-radius: 12px;
    width: 25%;
    transform: translate(0, -50%);
    z-index: 9;
    border: 1px solid #3a5f5f;
    top: 58%;
}

.form__banner form {
    display: flex;
    flex-direction: column;
}

.warpper__div {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
}

.form__banner button {
    padding: 10px;
    border-radius: 8px;
    width: 30%;
    margin: auto;
    color: #3a5e5e;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #2F4F4F;
}

.warpper__div input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #2F4F4F;
}

.swiper-wrapper {
    padding: 0 0 40px;
}

.cousines___001 {
    height: 370px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.swiper-button-next.cousine {
    top: 95%;
    right: 46%;
}

.swiper-button-prev.cousine {
    top: 95%;
    right: unset;
    left: 46%;
}

section.cousine {
    background: url(../images/cusine.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

section.abot-banner {
    position: relative;
    height: 70vh;
    background: url(../images/about-us.jpg);
    background-size: cover;
    background-position: 100% 80%;
}

.banner-sect {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

section.abot-banner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #00000059;
}

.banner-sect h1 {
    font-size: 65px;
    color: #ffffff;
    position: relative;
    margin-bottom: 0;
}

/* Mission Section Styling */
.mission-section {
    background: url('../images/spritual-mission.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    position: relative;
  }

  .mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Soft overlay */
  }

  .mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

  .mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .mission-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    border: 1px solid #3a5f5f;
}

  .mission-point:hover {
    transform: translateY(-10px);
  }

  .mission-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .mission-point p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
  }


  /* Section Titles */
  .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3a5f5f;
}

  .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #f5f5dc;
    margin-bottom: 40px;
    position: relative;
    z-index: 9;
}

  /* Offer Slides */
  .offer-slide {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .offer-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }

  .offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .offer-content {
    padding: 20px;
  }

  .offer-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #385c5c;
  }

  .offer-text {
    font-size: 16px;
    color: #385c5c;
  }

  .image____wrapper-main img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

section.offer-swiper-section {
    background: url(../images/elephant.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.offer-swiper-section {
    padding: 50px 0;
    padding-bottom: 20px;
}

.swiper.offer-swiper {
    padding: 50px 0;
    padding-top: 15px;
}

.our-promise-new {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #a8b5a4;
}

  .promise-background {
    /* background: url('../images/cultural.jpg') no-repeat center center/cover; */
    filter: brightness(0.5) blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .promise-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .promise-content {
    max-width: 1100px;
    width: 90%;
    text-align: center;
  }

  .glass-effect {
    background: rgb(231 215 193);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px 0 rgb(231 215 193 / 55%);
    border: 1px solid #3a5f5f;
}

.promise-heading {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #3a5f5f;
}

.promise-tagline {
    font-size: 22px;
    margin-bottom: 40px;
    color: #3a5f5f;
}

  .promise-points {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .point {
    flex: 1 1 250px;
    background: rgb(168 181 164);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid #3a5f5f;
}

  .point:hover {
    transform: translateY(-10px);
  }

  .point img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .point h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f5f5dc;
}

.point p {
    font-size: 16px;
    opacity: 0.8;
    color: #f5f5dc;
}

section.itinerary.about__01 {
    background: url(../images/sunset.jpg);
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

section.itinerary.about__01::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000006b;
}

.single_itenerary.about__01 {
    height: 355px;
    width: 400px;
    background: #a8b5a433;
    border: 1px solid #3a5f5f;
    z-index: 9;
    box-shadow: rgb(58 95 95 / 54%) 0px 3px 8px;
}

.single_itenerary.about__01 p {
    color: #e7d7c1;
    padding-bottom: 0;
}

.single_itenerary.about__01 h2 {
    color: #e7d7c1;
}

.banner-sect.itinery {
    width: 70%;
    text-align: center;
}

.banner-sect.itinery p {
    color: #fff;
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 0;
}

section.abot-banner.itinery {
    background: url(../images/itinerary01.jpg);
}

.why-choose-us {
    padding: 80px 20px;
    background: #fafafa;
  }

  .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #3a5f5f;
    font-family: 'Playfair Display', serif;
}

  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(58 95 95 / 48%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
}

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

  .card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #3a5f5f;
}

  .card p {
    font-size: 1rem;
    padding: 0 20px 20px;
    color: #3A5F5F;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }

  .featured-itineraries {
    padding: 80px 20px;
    background: url(../images/feature.jpg);
    background-size: cover;
    background-position: bottom;
}

  .section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    /* color: #e4d4bf; */
    position: relative;
    z-index: 9;
}

h2.section-title.package {
    color: #e4d4bf;
}

  .warpperfeature {
    border: 1px solid #3a5f5f;
    overflow: hidden;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    background: #e7d7c1;
}

  .swiper {
    padding-bottom: 50px;
  }

  .itinerary-card {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }

  .itinerary-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .itinerary-content {
    padding: 20px;
    text-align: center;
  }

  .itinerary-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #3a5f5f;
  }

  .itinerary-content p {
    font-size: 1rem;
    color: #3a5f5f;
    margin-bottom: 20px;
  }

  .itinerary-card:hover {
    transform: translateY(-10px);
  }

  .right__side.iter__001 {
    justify-content: center;
    align-items: center;
}

.swiper.mySwiperr {
    padding: 10px 0;
}

.itinerary-details {
    padding: 80px 20px;
    background: #a7b4a3;
}

  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }

  .accordion-item {
    background: #e7d7c1;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #3a5f5f;
    border-radius: 15px;
}

.accordion-header {
    width: 100%;
    background: #e7d7c1;
    color: #3a5f5f;
    font-size: 1.2rem;
    text-align: left;
    padding: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

  .accordion-header:hover {
    background: #B0C4DE;
    color: #F5F5DC;
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
  }

  .accordion-body p {
    font-size: 1rem;
    margin: 20px 0;
  }

  .accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
  }

  .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  /* Basic Styling for the section */
.create-package {
    padding: 40px 0;
    background: url(../images/map-itr.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

section.create-package::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #00000085;
    position: absolute;
    top: 0;
    z-index: 0;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.package-card {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #365959;
}

.wrapper__type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.package-card img {
    width: 100%;
    border-radius: 8px;
    height: 230px;
    object-fit: cover;
}

.package-card h3 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #3a5f5f;
}

.package-card input {
    margin-top: 10px;
}

.total-amount, .gst {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.submit-package:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
}

.close {
    color: #395e5e;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}

.modal-content h3 {
    font-size: 20px;
    color: #395e5e;
}

.modal-content p {
    font-size: 14px;
    color: #395e5e;
}

.close:hover,
.close:focus {
    color: #395e5e;
    text-decoration: none;
    cursor: pointer;
}

/* Package Cards and Form Group Styling */
.create-package .form-group {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    justify-content: space-between;
    color: #3A5F5F;
}

select, input[type="checkbox"] {
    margin-top: 5px;
}

/* Button Styling */
.submit-package {
    background-color: #e7d7c1;
    color: #3a5f5f;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 5px;
    border: 1px solid #395e5e;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.wrapped_____customise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 9;
}

.form-group select {
    border-radius: 5px;
    padding: 5px;
    color: #3A5F5F;
    border-color: #3a5f5f;
}

.wrapper__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.abot-banner.itinery.experience {
    background: url(../images/map__001.jpg);
    padding: 0;
    background-position: center;
}

section.abot-banner.itinery.experience::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #00000059;
}

.experience-categories-section {
    padding: 80px 20px;
    background: #f8f8f8;
  }

  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #3a5f5f;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #3a5f5f;
}

.filter-btn.active {
    background: #e7d7c1;
    color: #3a5f5f;
    border-color: #3a5f5f;
}

.filter-btn:hover{
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
    transition: 0.3s ease-in-out;
}

  .experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .experience-card:hover {
    transform: translateY(-5px);
  }

  .experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .experience-card h3 {
    padding: 20px 0;
    font-size: 16px;
    color: #3a5f5f;
    text-align: center;
    margin-bottom: 0;
}

.experience-cards-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #a8b5a4;
}

  .experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .experience-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
}

  .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .experience-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

  .card-content {
    padding: 20px;
    text-align: center;
}

  .card-content h3 {
    font-size: 25px;
    margin-bottom: 0;
    color: #3a5f5f;
    font-weight: 600;
    padding-top: 0;
}

.card-content p {
    font-size: 16px;
    color: #3c6161;
    margin-bottom: 20px;
    text-align: center;
}

.view-more {
    display: inline-block;
    padding: 10px 20px;
    background: #e7d7c1;
    color: #3a5f5f;
    border-color: #3a5f5f;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    border: 1px solid;
}

  .view-more:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
    transition: 0.3s ease-in-out;
  }

  .featured-experiences-section {
    padding: 60px 20px 20px;
    background: url(../images/about-us.jpg);
}

  .featured-experiences-swiper {
    overflow: hidden;
  }

  .experience-slide {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
  }

  .experience-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .slide-content {
    padding: 20px 0;
    text-align: center;
}

  .slide-content h3 {
    font-size: 1.8rem;
    color: #3a5f5f;
    margin-bottom: 10px;
  }

  .slide-content p {
    font-size: 1rem;
    color: #3a5f5f;
  }

  .warpper____cardsss {
    width: 100%;
    padding: 10px;
    background: #e7d7c1;
    border: 1px solid #3a5f5f;
    border-radius: 20px;
}

.call-to-action-section {
    position: relative;
    background: url('../images/sunset.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
}

  .cta-overlay {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    text-align: center;
    padding: 0 20px;
  }

  .cta-heading {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
  }

  .cta-subheading {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
  }

  .cta-button {
    margin-right: 15px;
    background: #E7D7C1;
    color: #2F4F4F;
    border: 1px solid #2F4F4F;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    transition: background 0.3s ease;
  }

  .cta-button:hover {
    background: #B0C4DE;
    color: #F5F5DC;
    border-color: #B0C4DE;
  }

  section.abot-banner.itinery.destination {
    background: url(../images/sunset.jpg);
    padding: 0;
    background-position: center;
}

.filter-section {
    padding: 60px 0;
  }

  .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
  }

  .filter-controls input, .filter-controls select {
    padding: 10px 15px;
    border: 1px solid #385c5c;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 0;
    color: #385c5c;
}

  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .destination-card h3 {
    margin: 15px;
    font-size: 1.5rem;
  }

  .destination-card p {
    margin: 0 15px 15px 15px;
    color: #385c5c;
  }

  .destination-cards {
    padding: 80px 0;
    background-color: #a8b5a4;
}

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #385c5c;
    border: 1px solid #3a5f5f;
    padding: 10px;
    background: #e7d7c1;
}

  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }

  .destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

  .card-content {
    padding: 20px;
    text-align: center;
  }

  .featured-regions {
    padding: 80px 0;
    background: url(../images/himalaysa.jpg);
    /* padding-bottom: 20px; */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

  .swiper.regionsSwiper {
    padding: 10px 0;
}

.region-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  border: 1px solid #3a5f5f;
  padding: 10px;
  background: #e7d7c1;
}

  .region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  .region-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .region-card h3 {
    margin: 15px 0;
    font-size: 1.5rem;
    color: #385c5c;
  }

  section#indiaMapSection {
    background: #a7b4a3;
}

.image____wrapper-main {
  padding: 10px;
  background: #e7d7c1;
  border: 1px solid #3a5f5f;
  border-radius: 16px;
}



#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #e7d7c1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
}

.glow-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #3a5f5f 30%, transparent 80%);
  animation: pulse 3s ease-in-out infinite;
  margin-bottom: 30px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.fade-text {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards 1s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

#enterBtn {
  padding: 12px 28px;
  font-size: 18px;
  background: #3a5f5f;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#enterBtn:hover {
  background: #2e4d4d;
}

span.address-icon {
    background: #e7d7c1;
    color: #3a5f5f;
    font-size: 14px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}

.mail {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.mail a {
    color: #e7d7c1;
}

.form__banner h3 {
    color: #3a5f5f;
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 18px;
}

.warpper__div label {
    color: #3a5f5f;
    font-weight: 500;
    font-size: 14px;
}