/* ========== header css code start ========== */
/* top header css code start */
.top_header {
  background-color: var(--black-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top_header .left_box,
.top_header .right_box {
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}

.top_header .left_box ul li,
.top_header .right_box ul li {
  padding: 0.3rem 0.4rem;
}

.top_header .left_box ul li a,
.top_header .right_box ul li a {
  color: var(--white-color);
  font-size: 0.9rem;
}

.top_header .right_box ul {
  justify-content: right;
}

/* top header css code end */

/* navbar css code start */
.navbar {
  /* background-color: rgba(242, 251, 255, 0.5); */
  background-color: var(--white-color);
  position: fixed;
  top: -100rem;
  left: 0;
  width: 100%;
}

.nav_stickey {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 999;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar .left_box {
  /* flex: 0 0 200px;
    max-width: 200px;
    width: 20%; */
  flex-basis: 90px;
}

.navbar .left_box .logo_box {
  width: 100%;
  padding: 0.4rem 0;
}

.navbar .left_box .logo_box img {
  width: 100%;
}

.navbar .right_box {
  /* flex: 0 0 80%;
    max-width: 80%;
    width: 80%; */
  flex-basis: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .login_box {
  /* flex: 0 0 80%;
    max-width: 80%;
    width: 80%; */
  /* flex-basis: 90%; */
  flex-basis: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .login_btn {
  padding: .5rem 2rem;
  border: 1px solid var(--dark-blue-color);
  color: var(--black-color);
  font-weight: 500;
  border-radius: .5rem;
}

.navbar .right_box .flex_container {
  align-items: center;
  justify-content: right;
  height: 100%;
}

.navbar .right_box .flex_container .navbar_list {
  position: relative;
  height: 100%;
}

.navbar .right_box .flex_container .navbar_list:hover .navbar_list_anker {
  color: var(--dark-blue-color);
}

.navbar .right_box .flex_container .navbar_list .navbar_list_anker {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 0.5rem;
  font-size: 1rem;
  color: var(--black-color);
  font-weight: 500;
  transition: all 0.4s ease-in;
}

.navbar
  .right_box
  .flex_container
  .navbar_list
  .navbar_list_anker
  .fa-angle-down {
  padding: 0 0.3rem;
  font-size: 0.8rem;
  transition: all 0.4s ease-in;
}

.navbar .right_box .flex_container .navbar_list:hover .fa-angle-down {
  transform: rotate(180deg);
}

.navbar .right_box .flex_container .navbar_list .dropdown_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: var(--white-color);
  transition: all 0.4s ease-in;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  /* padding-top: 1rem; */
  display: none;
  /* background-color: rgba(242, 251, 255, 0.5); */
  background-color: var(--white-color);
}

.navbar .right_box .flex_container .navbar_list:hover .dropdown_list {
  display: block;
  animation-duration: 0.5s;
  animation-name: fadeInUp;
}

.navbar
  .right_box
  .flex_container
  .navbar_list
  .dropdown_list
  .navbar_inner_list {
  border-bottom: 1px solid var(--light-gray-color);
  padding: 0.6rem;
  transition: all 0.4s ease-in;
}

.navbar
  .right_box
  .flex_container
  .navbar_list
  .dropdown_list
  .navbar_inner_list
  .navbar_inner_list_anker {
  color: var(--black-color);
  font-weight: 500;
  transition: all 0.4s ease-in;
  font-size: 1rem;
}

.navbar
  .right_box
  .flex_container
  .navbar_list
  .dropdown_list
  .navbar_inner_list:hover {
  background-color: var(--dark-blue-color);
}

.navbar
  .right_box
  .flex_container
  .navbar_list
  .dropdown_list
  .navbar_inner_list:hover
  .navbar_inner_list_anker {
  padding-left: 0.5rem;
}

.humber_menu {
  font-size: 1.5rem;
  color: var(--dark-blue-color);
  display: none;
}

/* navbar css code end */

/* ========== mobile navbar section start ========== */
.mobile_navbar_container {
  width: 100%;
  height: 100vh;
  /* border: 1px solid; */
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 999;
  background-color: rgba(111, 181, 228, 0.5);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease-in;
}
.mobile_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background-color: var(--very-light-blue-color);
}
.mobile_navbar .mobile_logo {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-color);
}
.mobile_navbar .mobile_logo img {
  width: 80px;
}
.mobile_navbar .mobile_logo i {
  font-size: 1.5rem;
  padding: 0.1rem;
  border-radius: 50%;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--dark-blue-color);
}
.mobile_navbar .mobile_nav_list_container {
  padding: 1rem 0.5rem;
  width: 100%;
}
.mobile_nav_list_container .first_ul a {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black-color);
}
.mobile_nav_list_container .first_ul a i {
  font-size: 1rem;
}
.mobile_nav_list_container .first_li a {
  /* border: 1px solid; */
  padding: 0.4rem;
}
.mobile_nav_list_container .second_ul {
  display: none;
  /* margin-top: .4rem; */
  background-color: var(--white-color);
}
.mobile_nav_list_container .second_ul .second_li a {
  padding: 0.4rem;
  /* border: 1px solid red; */
}
/* ========== mobile navbar section start ========== */
/* ========== header css code end ========== */

/* ========== about us css code start ========= */

.about_us_container .left_box {
  /* border: 1px solid; */
  /* flex: 0 0 60%;
    max-width: 60%; */
  flex-basis: 60%;
  width: 100%;
  /* min-height: 600px; */
}

.about_us_container .left_child_box {
  /* border: 1px solid red; */
  /* flex: 0 0 40%;
    max-width: 40%; */
  flex-basis: 40%;
  width: 100%;
  position: relative;
}

.about_us_container .left_child_box .about_img_text_box {
  position: absolute;
  top: 39px;
  left: 32px;
  width: 288px;
  /* width: 100%; */
  padding: 0.5rem;
  background-color: var(--white-color);
}

.about_us_container
  .left_child_box
  .about_img_text_box
  .about_img_text_child_box {
  background-color: var(--dark-blue-color);
  width: 100%;
  /* height: 100%; */
  padding: 3rem;
}

.about_us_container
  .left_child_box
  .about_img_text_box
  .about_img_text_child_box
  h3 {
  font-size: 2rem;
  color: var(--white-color);
  line-height: 2.5rem;
}

.about_us_container .left_child_box .left_bottom_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  /* width: 100%; */
  z-index: -1;
}

.about_us_container .right_child_box {
  /* border: 1px solid green; */
  /* flex: 0 0 60%;
    max-width: 60%; */
  flex-basis: 60%;
  /* width: 100%; */
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.about_us_container .right_child_box .about_img {
  width: 100%;
  padding: 0.5rem;
  background-color: var(--white-color);
}

.about_us_container .right_child_box .about_img img {
  width: 100%;
}

.about_us_container .right_box {
  /* border: 1px solid; */
  /* flex: 0 0 40%;
    max-width: 40%; */
  flex-basis: 40%;
  width: 100%;
  padding: 0.5rem;
}

.about_us_container .right_box .about_breef_container .flex_container {
  padding-top: 1.5rem;
}

.about_us_container .right_box .about_breef_container .about_breff_left_box {
  /* flex: 0 0 20%;
    max-width: 20%; */
  flex-basis: 70px;
  height: 70px;
  background-color: var(--dark-blue-color);
  padding: 0.2rem;
}

.about_us_container
  .right_box
  .about_breef_container
  .about_breff_left_box
  img {
  width: 100%;
}

.about_us_container .right_box .about_breef_container .about_breff_right_box {
  /* flex: 0 0 80%; */
  flex-basis: 80%;
  padding-left: 1rem;
}

/* ========== about us css code end ========= */

/* ========== remember us css code start ========= */
.remember_us_section {
  background-image: url(../img/remember-us-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 2.5rem 0;
  margin-top: 2rem;
  position: relative;
  z-index: -1;
}

.remember_us_section .layer_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}

.remember_us_container > .flex_container {
  gap: 1rem;
  /* flex-wrap: wrap; */
}

.remember_us_section .remember_box {
  flex-basis: 270px;
  /* border: 1px solid red; */
  padding: 1rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: left;
  background-color: #eff4ef;
  transition: all 0.4s ease-in;
  border-radius: 0.5rem;
}
.remember_us_section .remember_box img {
  width: 50px;
  display: block;
  margin: 0 auto;
  padding-top: 2rem;
}
.remember_us_section .remember_box:nth-child(1) {
  background-color: rgba(239, 244, 239, 0.8);
}
.remember_us_section .remember_box:nth-child(2) {
  background-color: rgba(238, 245, 248, 0.8);
}
.remember_us_section .remember_box:nth-child(3) {
  background-color: rgba(251, 242, 241, 0.8);
}
.remember_us_section .remember_box:nth-child(4) {
  background-color: rgba(251, 242, 241, 0.8);
}

.remember_us_section .remember_box:hover {
  background-color: var(--black-color);
}

.remember_us_section .remember_box > h3 {
  color: var(--gray-colorr);
  font-size: 1.6rem;
  text-align: left;
  padding-top: 2rem;
}

.remember_us_section .remember_box > p {
  color: #3d3d3d;
  font-weight: 400;
  /* text-align: center; */
  padding-top: 1rem;
}

/* ========== remember us css code end ========= */

/* ========== popular destinations css code start ========== */
.popular_section {
  background-attachment: fixed;
  background-image: url(../img/map-image.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.popuplar_destination_container .luxury_room_container {
  /* border: 1px solid; */
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.popuplar_destination_container .luxury_room_container .luxury_room_flex_box {
  /* border: 1px solid; */
  display: flex;
  gap: 0.8rem;
}
.popuplar_destination_container
  .luxury_room_container
  .luxury_room_flex_box
  .luxury_room {
  flex-basis: 300px;
  /* border: 1px solid; */
  height: 300px;
  flex-grow: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.4s ease-in;
  position: relative;
}
.popuplar_destination_container
  .luxury_room_container
  .luxury_room_flex_box
  .luxury_room2 {
  flex-basis: 400px;
}
.popuplar_destination_container
  .luxury_room_container
  .luxury_room_flex_box
  .luxury_room:hover {
  transform: scale(1.01);
}

@media (max-width: 768px){
  .popuplar_destination_container .luxury_room_container .luxury_room_flex_box{
    flex-wrap: wrap;
  }
}
/* ========== popular destinations css code end ========== */

/* ========== why choose css code start ========== */
.why_choose_section {
  position: relative;
  margin-bottom: 5rem;
  padding: 3rem 0;
  margin-top: 2rem;
}

.why_choose_section:before {
  background-color: var(--dark-blue-color);
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.why_choose_section .left_box {
  /* border: 1px solid green; */
  padding: 1rem;
  flex-basis: 40%;
  background-image: url(../img/why-choose.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 540px; */
}

.why_choose_section .right_box {
  /* border: 1px solid yellow; */
  flex-basis: 60%;
}

.why_choose_section .right_box .why_choose_text_box {
  /* border: 1px solid red; */
  padding: 1rem 0;
  margin-left: 2rem;
  position: relative;
}

.why_choose_container
  .right_box
  .why_choose_text_box
  .why_choose_text_child_box {
  width: 66%;
  /* border: 1px solid green; */
  float: right;
  position: relative;
}

.why_choose_text_child_box .h2had,
.why_choose_text_child_box .h5had {
  color: var(--white-color);
}

.why_choose_text_child_box .why_choose_breef_container .flex_container {
  padding-bottom: 1.8rem;
  gap: 1rem;
}

.why_choose_text_child_box
  .why_choose_breef_container
  .why_choose_breff_left_box {
  flex-basis: 60px;
  height: 60px;
  /* background-color: var(--black-color); */
  padding: 0.2rem;
  /* border: 1px solid; */
}

.why_choose_text_child_box
  .why_choose_breef_container
  .why_choose_breff_left_box
  img {
  width: 100%;
}

.why_choose_text_child_box
  .why_choose_breef_container
  .why_choose_breff_right_box {
  /* flex: 0 0 80%; */
  flex-basis: 80%;
  padding-left: 1rem;
}

.why_choose_text_child_box
  .why_choose_breef_container
  .why_choose_breff_right_box
  .paragraf {
  color: var(--white-color);
  padding-top: 0.5rem;
  /* font-family: cursive; */
}

.why_choose_text_box .why_choose_text_child_box .call_us_button {
  position: absolute;
  bottom: -6rem;
  left: 0;
  background-color: var(--white-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 0.5rem;
}

.why_choose_text_box .why_choose_text_child_box .call_us_button i {
  font-size: 3rem;
  color: var(--dark-blue-color);
}

.why_choose_text_box .why_choose_text_child_box .call_us_button a {
  font-size: 2rem;
  font-family: sans-serif;
  color: var(--black-color);
  transition: all 0.3s ease-in;
}

.why_choose_text_box .why_choose_text_child_box .call_us_button a:hover {
  color: var(--dark-blue-color);
}

/* ========== why choose css code end ========== */

/* ========== testimonial css code start ========== */
.testimonial_section {
  background-image: url(../img/testimonial-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 2.5rem 0 0 0;
  position: relative;
  z-index: -1;
}

.testimonial_section .layer_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.testimonial_container .left_box {
  /* border: 1px solid red; */
  flex-basis: 40%;
  padding: 1rem 1rem 0rem 0;
}

.testimonial_container .left_box > .h3had {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white-color);
}

.testimonial_container .left_box .testimonial_contact_container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial_container .left_box .testimonial_contact_container > i {
  font-size: 2rem;
  color: var(--white-color);
}

.testimonial_container
  .left_box
  .testimonial_contact_container
  .call_now_box
  > .h6had {
  font-weight: 400;
  color: var(--white-color);
  padding-bottom: 0.5rem;
}

.testimonial_container
  .left_box
  .testimonial_contact_container
  .call_now_box
  .call_anker {
  font-weight: 400;
  color: var(--white-color);
  font-size: 1.5rem;
  font-family: sans-serif;
}

.testimonial_container .right_box {
  /* border: 1px solid green; */
  flex-basis: 60%;
  max-width: 60%;
  padding: 1rem 0 0rem 1rem;
  /* height: 600px; */
}

.testimonial_container .right_box .right_child_box {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  padding: 2rem 2rem 0 2rem;
}

.testimonial_container .right_box .right_child_box > .h5had {
  letter-spacing: 0.3rem;
}

.testimonial_container .right_box .right_child_box > .h3had {
  font-weight: 600;
  color: var(--dark-blue-color);
}

.testimonial_container .right_box .right_child_box .swiper {
  max-width: 635px;
  width: 100%;
  height: 100%;
}

.testimonial_container .right_box .right_child_box .swiper-slide {
  display: flex;
  flex-direction: column;
}

.testimonial_container .right_box .right_child_box .swiper-slide .paragraf {
  padding-top: 2rem;
}

.testimonial_container
  .right_box
  .right_child_box
  .swiper-slide
  .testimonial_icons_box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  align-items: center;
}

.testimonial_container
  .right_box
  .right_child_box
  .swiper-slide
  .testimonial_icons_box
  .testimonial_icons {
  flex-basis: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-blue-color);
}

.testimonial_container
  .right_box
  .right_child_box
  .swiper-slide
  .testimonial_icons_box
  .testimonial_icons
  > i {
  font-size: 1.8rem;
  color: var(--white-color);
}

.testimonial_container
  .right_box
  .right_child_box
  .swiper-slide
  .testimonial_icons_box
  .h6had {
  font-size: 1rem;
}

/* ========== testimonial css code end ========== */

/* ========== blog css code start ========== */
.blog_container .blog_box .blog_img_box {
  width: 100%;
  background-color: var(--dark-blue-color);
}

.blog_container .blog_box .blog_img_box img {
  width: 100%;
  object-fit: cover;
}

.blog_container .blog_box .blog_text_box {
  padding: 1rem;
  background-color: var(--dark-blue-color);
}

.blog_container .blog_box .blog_text_box > .h3had {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-color);
}

.blog_container .blog_box .blog_text_box > .paragraf {
  margin-top: 0.5rem;
  color: var(--white-color);
}

.blog_container .swiper {
  position: relative;
  width: 100%;
}

.blog_container .swiper .blog_img_box img {
  width: 100%;
}

.blog_container .swiper::before {
  content: "";
  position: absolute;
  top: -74px;
  left: -26%;
  width: 150%;
  height: 88px;
  border-radius: 100%;
  z-index: 100;
  background-color: var(--white-color);
  /* border:1px solid red; */
  overflow: hidden;
}

.blog_container .swiper::after {
  content: "";
  position: absolute;
  bottom: -74px;
  left: -26%;
  width: 150%;
  height: 88px;
  border-radius: 100%;
  z-index: 1000;
  background-color: var(--white-color);
  /* border:1px solid red; */
  overflow: hidden;
}

/* ========== blog css code end ========== */

/* ========== interior faciliies css code start ========== */
.interior_section {
  background-image: url(../img/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.interior_section .count_down_container {
  gap: 1rem;
}
.interior_section .count_down_container .count_down_box {
  border-right: 1px solid;
  flex-basis: 200px;
  flex-grow: 1;
  color: var(--white-color);
  text-align: center;
}
.interior_section .count_down_container .count_down_box span {
  font-size: 3.5rem;
  font-weight: 600;
}
.interior_section .count_down_container .count_down_box:nth-child(4) {
  border-right: none;
}
.interior_section .flex_container {
  gap: 1rem;
  flex-wrap: wrap;
}
.interior_section .facilities_box {
  gap: 1rem;
}
.interior_section .facilities_box {
  flex-basis: 300px;
  border: 1px solid;
  flex-grow: 1;
  padding: 1rem;
  border: 0.5rem;
  background-color: rgba(196, 196, 196, 0.35);
}
.interior_section .facilities_box .icons_box {
  width: 70px;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.interior_section .facilities_box .icons_box img {
  width: 100%;
}
.interior_section .facilities_box .text_box {
  display: flex;
  gap: 0.3rem;
}
.interior_section .facilities_box .text_box .check_box {
  width: 20px;
  /* border: 1px solid; */
}
.interior_section .facilities_box .text_box .check_box img {
  width: 100%;
}
.interior_section .facilities_box .text_box .para_box {
  width: 90%;
  color: var(--white-color);
}
/* ========== interior faciliies css code end ========== */

/* ========== connect with other css code start ========== */
.connect_with_other_section {
  background-color: #002e6c;
  color: var(--white-color);
}
.connect_with_other_section .flex_container {
  gap: 1rem;
}
.connect_with_other_section .connect_with_left_box {
  flex-basis: 25%;
  width: 25%;
  /* border: 1px solid; */
}
.connect_with_other_section .connect_with_left_box h3 {
  font-size: 1.5rem;
}
.connect_with_other_section .connect_with_right_box {
  flex-basis: 70%;
  /* border: 1px solid; */
  width: 70%;
}
.connect_with_other_section .connect_with_right_box .swiper {
  width: 100%;
  height: 100%;
  /* border: 1px solid red; */
}
.connect_with_other_section .connect_with_right_box .swiper-slide{
  background-color: var(--white-color );
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: .5rem;
  overflow: hidden;
  /* padding: 1rem; */
  /* border-radius: 50% 50% 0 0; */
}
.connect_with_other_section .connect_with_right_box .swiper-slide .img_box {
  width: 100%;
  /* height: 100px; */
  /* border-radius: 50%; */
  /* overflow: hidden; */
}
.connect_with_other_section .connect_with_right_box .swiper-slide .img_box img {
  width: 100%;
}
.connect_with_other_section .connect_with_right_box .swiper-slide .para_box{
  /* border: 1px solid red; */
  width: 100%;
  /* height: 100%; */
  color: var(--black-color);
  padding: 1rem;
}
.connect_with_other_section .connect_with_right_box .swiper-slide .para_box strong{
  font-size: .8rem;
  padding-top: .6rem;
}

@media (max-width: 768px){
  .connect_with_other_section .flex_container{
    flex-wrap: wrap;
  }
  .connect_with_other_section .connect_with_left_box,
  .connect_with_other_section .connect_with_right_box{
    flex-basis: 100%;
  }
}
/* ========== connect with other css code end ========== */

/* ========== membership plan css code start ========== */
.membership_section{
  padding-bottom: 2rem;
}
.membership_section .flex_container{
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
.membership_section .flex_container .plan_box{
  /* flex-basis: 300px; */
  /* border: 1px solid; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 3rem 1rem;
  /* flex-grow: 1; */
  text-align: center;
  border-radius: .5rem;
  color: white;
}
.membership_section .flex_container .plan_box h2{
  font-size: 2rem;
  font-weight: 400;
}
.membership_section .flex_container .plan_box:nth-child(1){
  background-color: #4364A7;
}
.membership_section .flex_container .plan_box:nth-child(2){
  background-color: #C11717;
}
.membership_section .flex_container .plan_box:nth-child(3){
  background-color: #4D368C;
}
.membership_section .flex_container .plan_box button{
  /* border: 1px solid; */
  color: var(--white-color);
  background-color: var(--dark-blue-color);
}
.membership_section .flex_container .plan_box h3{
  padding-top: 1rem;
  font-size: 2rem;
  font-weight: 400;
}
.membership_section .flex_container .plan_box .list_box{
  display: flex;
  gap: .3rem;
  align-items: center;
  padding-bottom: 1rem;
  padding-left: 2rem;
}
.membership_section .flex_container .plan_box .list_box:nth-child(2) p{
  color: var(--white-color);
}
.membership_section .flex_container .plan_box .list_box i{
  color: var(--dark-blue-color);
}
.membership_section .flex_container .plan_box .list_box p{
  color: white;
}
.membership_section .flex_container .plan_box .choose_btn{
  border: 1px solid var(--dark-blue-color);
  background-color: transparent;
  outline: none;
  color: var(--white-color);
}
.membership_section .flex_container .plan_box .choose_btn:hover{
  background-color: var(--dark-blue-color);
  color: var(--white-color);

}

@media (max-width:768px){
  .membership_section .flex_container{
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  }
  .top_header{
    display: none;
  }
}
@media (max-width:480px){
  .membership_section .flex_container{
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
/* ========== membership plan css code end ========== */

/* ========== inquery now css code start ========== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.contact-image {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form {
  flex: 1;
  background: #f7f3ee;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2a2a2a;
  max-width: 500px;
}

form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  border-radius: 4px;
  resize: none;
}

textarea {
  margin-bottom: 20px;
}

button {
  background-color: #c29464;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #a6794f;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  button {
    width: 100%;
  }
}
/* ========== inquery now css code end ========== */

.travel-associates {
  padding: 60px 20px;
  text-align: center;
}

.travel-associates h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.travel-associates h2 span {
  color: var(--dark-blue-color);
  font-weight: 700;
}

.travel-associates p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.separator {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #fff; /* optional */
  padding: 10px 0;
}

.logo-track {
  display: flex;
  width: calc(200%); /* double width for looping */
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 80px;
  margin: 0 40px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* whatsapp section start */
.whatsapp_container{
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 4%;
  right: 1%;
  /* border: 1px solid red; */
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25D366;
  border-radius:.7rem;
}
.whatsapp_container a i{
  font-size: 1.6rem;
  color: white;
}
/* whatsapp section end */