/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playball&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #F58320;
  --second-color: #11649A;
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Outfit", sans-serif;
  --fancy-font: "Playball", cursive;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #ffd500 !;
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mt-150 {
  margin-top: 150px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-100 {
  margin-top: 100px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
} */

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 20px 0;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
  padding-bottom: 100px;
}

/*=============== HEADER & NAV ===============*/
.header {
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: var(--z-fixed);
  /* box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px; */
}

.header .nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.nav_logo {
  max-width: 180px;
  width: 150px;
}

.nav_toggle,
.nav_close {
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
  transition: color .4s;
}

/* Navigation for mobile devices */

@media screen and (max-width:1150px) {
  .nav_menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #fff;
    width: 80%;
    height: 100%;
    padding: 7.5rem 3.5rem 0;
    border-left: 1px solid var(--black-border);
    transition: right .4s;
    z-index: 9;
  }
}

.nav_list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-bottom: 0;
}

.nav_link {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  transition: color .4s;
}

.nav_link:hover {
  color: var(--first-color);
}

.nav_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.header .phone_number {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .phone_number .phone {
  width: 50px;
  height: 50px;
  background-color: var(--first-color);
  border-radius: 50px;
  padding: 13px;
}


.header .phone_number .phone img {
  width: 40px; /* adjust as needed */
  animation: ring 1.2s infinite;
  transform-origin: center;
}

/* Ring animation */
@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70%, 100% { transform: rotate(0deg); }
}


.header .phone_number .number p {
  margin-bottom: 0;
  font-weight: 200;
}

.header .phone_number .number a {
  color: #000;
  font-weight: 500;
}

.header .phone_number_mobile {
  display: none;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */


/* Active link */


/*=============== HOME ===============*/

.home {
  background: url('../img/hero-banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
  min-height: -webkit-fill-available; /* iOS Safari fix */
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.home .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  z-index: 1;
  pointer-events: none; /* optional: allows clicks to pass through */
}

.home .banner_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 50%;
  color: #fff;
  height: 70vh;
}

.home .banner_content h1 {
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.home .banner_content p {
  font-weight: 300;
  line-height: 30px;
}

.home .banner_content .btns {
  display: flex;
  align-items: center;
  gap: 20px;
}










.travel-section {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.travel-card {
  width: 250px;
  height: 400px;
  border-radius: 20px;
  /* overflow: hidden; */
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.center {
  position: relative;
}

.circular-text {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}

.rotate-text {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  animation: rotateText 6s linear infinite;
}

.plane-icon {
  position: absolute;
  top: 25px;
  left: 37%;
  transform: translateX(-60%);
  z-index: 999;
  transform: rotate(45deg);
  font-size: 25px;
  color: #fff;
}



/*=============== BUTTON ===============*/
.main_btn {
  display: flex;
  background: var(--first-color);
  color: var(--white-color);
  font-weight: 400;
  padding: 12px 2rem;
  transition: box-shadow .4s;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

.main_btn:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, .3);
  color: var(--white-color);
}


.border_btn{
  border-color: var(--first-color);
  background: transparent;
}


.subtitle {
  font-family: var(--fancy-font);
  color: var(--first-color);
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section_head {
  font-size: 48px;
  line-height: 52px;
  font-weight: 800;
}



/*=============== services ===============*/
.services{
  padding: 70px 0;
}

.services .grid_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.services .serviceSwiper {
  padding: 30px 0 80px;
}

.services .item {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  border-radius: 16px;
  padding: 30px;
  /* text-align: center; */
  height: 300px;
  background: #fff;
}

.services .item .icon {
  width: 70px;
  height: 70px;
  background-color: #f2f6ff;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
}

.services .item .icon img {
  width: 50px;
}

.services .item h6 {
  font-size: 20px;
}

.services .item p {
  font-weight: 300;
}






.services-grid {
  padding: 50px 0;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4,1fr);
  margin: 0 auto;
}

@media screen and (max-width:991px){
  .services-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:600px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* .service-card {
  padding: 30px 20px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 250px;
} */

/* .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.service-card:hover::before {
  opacity: 1;
} */

/* 
.service-card h3 {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.service-card:hover h3 {
  opacity: 1;
  transform: translateY(0);
} */



/* Individual background images or gradients */
/* .air-ticket {
  background-image: url('../img/services/air-ticket.webp');
}

.visa {
  background-image:  url('/assets/img/services/visa-service.webp');
}

.holiday {
  background-image: url('/assets/img/services/holiday-package.webp');
}

.umrah {
  background-image: url('/assets/img/services/umrah-package.webp');
} */

.service-card:hover {
  transform: translateY(-10px);
}



.service-card{
  display: flex;
  align-items: center;
  gap: 20px;
  border: .3px solid var(--first-color);
  padding: 10px;
  transition: all .3s;
  border-radius: 10px;
}
.service-card .icon{
  width: 60px;
}

.service-card h3{
  margin-bottom: 0;
  font-size: 18px;
}



/*=============== explore_package ===============*/


.explore_package .flex_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.explore_package .flex_row h3 {
  font-size: 32px;
  font-weight: 700;
}

.explore_package .flex_row a {
  color: var(--first-color);
}

.explore_package .grid_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}


.explore_package .ipackageSwiper,
.explore_package .dpackageSwiper {
  padding-bottom: 100px;
}

.explore_package .item {
  width: 100%;
  height: 370px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* .explore_package .item p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white; 
  font-weight: bold; 
  font-size: 1.2rem; 
  text-align: center;
} */

.explore_package .item p {
  margin-bottom: 0;
}

.explore_package .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
  /* border-top-left-radius: 20px;
  border-bottom-right-radius: 20px; */
}

.explore_package .item .overlay {
  width: 280px;
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  /* opacity: 0; */
  transition: opacity 1s 1s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.explore_package .item .overlay p{
  display: block;
  font-size: 18px;
  margin-bottom: 0;
}
.explore_package .item .overlay h6 {
  font-size: 1.25rem;
  font-weight: 500;
  display: none;
  /* margin: 10px 0; */
}

.explore_package .item .overlay_btn {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  background: var(--first-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
/* 
.explore_package .item .overlay_btn:hover {
  text-decoration: underline;
} */


/* Animation */

/* .explore_package .item:hover .overlay{
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}
.explore_package .item:hover{
  animation: remove-overflow 2s forwards;
}

.explore_package .item:not(:hover){
  animation:show-overflow 2s forwards;
}

.explore_package .item:not(:hover) .overlay{
  animation:remove-data 1s forwards;
} */



@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }

  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }

  50% {
    transform: translateY(-10rem);
  }

  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }

  50% {
    overflow: hidden;
  }
}


/* 
.explore_package .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.explore_package .overlay p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.3s ease;
  margin-bottom: 0;
}

.explore_package .overlay h6 {
  font-size: 22px;
  color: #fff;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.3s ease;
  margin-top: 0;
}

.explore_package .overlay h6 span {
  font-weight: 200;
}

.explore_package .item:hover .overlay {
  opacity: 1;
}

.explore_package .item:hover img {
  transform: scale(1.1);
  /* Slight zoom effect */
/* } */

.explore_package .item:hover .overlay p {
  transform: translateY(0);
}

.explore_package .item:hover .overlay h6 {
  transform: translateY(0);
}

*/
/*=============== popular_destination ===============*/

.popular_destination {
  position: relative;
  z-index: 2;
}

.popular_destination .fly-bg {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  z-index: -1;
}

.popular_destination .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

}



.popular_destination .item .flex_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popular_destination .center .image {
  height: 500px !important;
}

.popular_destination .center .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular_destination .item .flex_row .image {
  height: 240px;
}

.popular_destination .item .flex_row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular_destination .item .image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}


.popular_destination .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.popular_destination .image:hover .overlay {
  transform: translateY(0);
}

.popular_destination .overlay p {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popular_destination .image:hover .overlay p {
  opacity: 1;
}





/*=============== why_choose_us ===============*/
.why_choose_us {
  position: relative;
  padding-top: 50px;
}

.why_choose_us .right_image {
  position: absolute;
  top: 100px;
  right: 0;
  opacity: .5;
}

.why_choose_us .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

.why_choose_us .image {
  background: url(/assets/img/circleblur.png);
  background-size: cover;
  background-position: center;
}


.why_choose_us .item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.why_choose_us .item .icon {
  background-color: var(--first-color);
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  border-radius: 50px;
  padding: 10px;

}

.why_choose_us .item .point h6 {
  margin-bottom: 5px;
  font-size: 20px;
}

.why_choose_us .item .point p {
  margin-bottom: 0;
  font-weight: 200;
}



.why_choose_us_about .image {
  height: 400px;
}

.why_choose_us_about .image img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


.why_choose_us_about .grid_row {
  margin-top: 50px !important;
}

/*=============== COUNTER ===============*/

.counter .counter_box {
  background-color: #F58320;
  border-radius: 20px;
  padding: 70px 40px;
  /* background: url(/assets/img/footer.jpg);
  background-size: cover;
  background-position: center; */
}

.counter .counter_box .flex_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter .item h3 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;

}

.counter .item h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}

.counter .item h2 span {
  font-weight: 200;
  font-size: 36px;
}

.counter .item h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 200;
}





.testimonial{
  padding: 50px 0;
}


.tetsimonial_wrapper .box{
  max-width: 60%;
  margin: auto;
  border: 1px solid var(--first-color);
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width:991px){
  .tetsimonial_wrapper .box{
    max-width: 80%;
  }
}
@media screen and (max-width:600px){
  .tetsimonial_wrapper .box{
    max-width: 100%;
  }
}


.tetsimonial_wrapper .pro_image {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  overflow: hidden;
  /* display: none; */
}

.tetsimonial_wrapper .quote{
  position: absolute;
  bottom: 0px;
  right: 30px;
  width: 100px;
  opacity: .2;
}





.testimonial .testimonialSwiper {
  max-height: 280px;
  padding: 0px 50px;
}

.testimonial .swiper-slide {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial .swiper-slide .image {
  max-width: 200px;
  min-width: 200px;
  max-height: 200px;
  min-height: 200px;

}

.testimonial .swiper-slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial .slider_content {
  background-color: #11649A;
  padding: 22px;
  /* border-radius: 20px; */
  max-height: 280px;
  overflow: hidden;
}

.testimonial .slider_content .flex_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial .slider_content .quote {
  width: 50px;
  opacity: .2;
}

.testimonial .slider_content .rating {
  border: .5px solid #ffd14f;
  padding: 5px 15px;
  border-radius: 50px;
}

.testimonial .slider_content p {
  color: #fff;
  font-weight: 200;
}

.testimonial .slider_content h6 {
  color: #fff;
  letter-spacing: 1px;
}

.testimonial .slider_content .rating i {
  color: #ffd14f;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--first-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}


.swiper-pagination-bullet-active {
  background: var(--first-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}




/* =============== PACKAGE PAGE ============ */

.packages {
  position: relative;
}

.packages .fly_img {
  position: absolute;
  top: 0;
  width: 500px;
  transform: rotate(180deg);
}

.packages .circle-1 {
  position: absolute;
  z-index: 1;
  right: -300px;
  top: 600px;
  width: 700px;
  opacity: .6;
}

.packages .circle-2 {
  position: absolute;
  z-index: 1;
  left: -300px;
  bottom: 0px;
  width: 700px;
  opacity: .6;
}


.packages .tab_row .nav-pills {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 70px;
}

.packages .tab_row .nav-pills .nav-link {
  border: 1px solid var(--first-color);
  color: #F58320;
  border-radius: 50px;
  padding: 4px 24px;
}

.packages .tab_row .nav-pills .nav-link.active {
  background-color: var(--first-color);
  color: #fff;
}

.packages .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.packages .item {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  height: auto;
  -webkit-box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  z-index: 2;
  transition: all 0.3s ease;
}

.packages .item .image {
  height: 300px;
  width: 100%;
  transition: all .3s;
  overflow: hidden;
}

.packages .item:hover img {
  transform: scale(1.1);
}

.packages .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all .3s;
}

.packages .item .content {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.packages .item .content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.packages .item .content h6 {
  font-size: 16px;
  color: #838383;
  font-weight: 300;
}

.packages .content .main_btn {
  padding: 8px 16px;
}




/* contact page */


.contact_page {
  background-size: cover;
}
.contact_page .section-heading{
  text-align: start;
  font-size: 24px;
}
.contact_page .section-heading::after{
  display: none;
}


.contact_page  .card{
  margin-top: 30px;
  border: .2px solid var(--first-color);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  background: transparent;
  border-radius: 20px;
}
.contact_page  .card h6{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_page  .card .flex_row{
  display: flex;
  gap: 10px;
}
.contact_page  .card i{
  color: var(--first-color);
}
.contact_page  .card a{
  color: #000;
}


@media screen and (max-width:991px){
  .contact_page .card{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:600px){
  .contact_page .card{
    grid-template-columns: 1fr;
  }
}



/* =============== DESTINATIONS PAGE ============ */

.destinations {
  position: relative;
}

.destinations .fly_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  transform: rotate(180deg);
}

.destinations .circle-1 {
  position: absolute;
  z-index: 1;
  right: -300px;
  top: 100px;
  width: 700px;
  opacity: .6;
}

.destinations .circle-2 {
  position: absolute;
  z-index: 1;
  left: -300px;
  bottom: 0px;
  width: 700px;
  opacity: .6;
}

.destinations .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destinations .item {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  -webkit-box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.destinations .item .image {
  height: 350px;
  width: 100%;

}

.destinations .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.destinations .item .content {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destinations .item .content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.destinations .item .content h6 {
  font-size: 16px;
  color: #838383;
  font-weight: 300;
}

.destinations .content .main_btn {
  padding: 12px 24px;
}





/* ==============  Contact  ============ */
.contact_page {
  position: relative;
}

.contact_page .fly_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  transform: rotate(180deg);
}


.contact_page .grid_row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  /* align-items: center; */
}
.contact_page .contact_details{
  background-color: var(--first-color);
  padding: 50px;
  border-radius: 30px;

}

.contact_page .contact_details .item {
  display: flex;
  margin-bottom: 30px;
  gap: 10px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  align-items: center;
}

.contact_page .contact_details .icon {
  width: 80px;
  height: 80px;
  background-color: var(--first-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_page .contact_details .icon i {
  color: #fff;
  font-size: 30px;
}

.contact_page .contact_details p {
  margin-bottom: 0;
  font-size: 16px;
  /* text-align: center; */
}

.contact_page .contact_details a {
  color: #000;
  font-size: 16px;
}

.contact_page .contact_details h6{
  color: #fff;
}
.contact_page .contact_details ul{
  display: flex;
  gap: 10px;
}
.contact_page .contact_details ul li a{
  font-size: 22px;
  color: #fff;
}

.contact_page .image{
  border-radius: 30px;
  overflow: hidden;
}

/* 

.contact_page .contact_box{
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact_page .contact_box .address,
.contact_page .contact_box .email,
.contact_page .contact_box .call{
  display: flex;
  gap: 10px;
} */






.about {
  position: relative;
}

.about .fly-img {
  position: absolute;
  top: 0;
  right: 200px;
  width: 600px;
  transform: rotate(180deg);
}

.about .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about .grid_row p {
  font-weight: 300;
  max-width: 90%;
  line-height: 32px;
}



.about .travel-section {
  display: flex;
  gap: 0px;
  align-items: center;
  position: relative;
}

.about .travel-card {
  width: 200px;
  height: 400px;
  border-radius: 50px;
  overflow: hidden;
}

.about .travel-card:nth-child(2) {
  margin-left: -20px;
}

.about .travel-card:nth-child(3) {
  margin-left: -20px;
  margin-top: 0px;
}

.about .travel-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 100px;
}

.about .center {
  position: relative;
}








.package_details {
  position: relative;
  padding-bottom: 0;
}

.package_details .fly-img {
  position: absolute;
  top: 0;
  right: 200px;
  width: 600px;
  transform: rotate(180deg);
}



.package_details .grid_row {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 50px;
  align-items: center;
}

.package_details .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package_details .content h6 {
  color: #838383;
  font-weight: 300;
}

.package_details .price_btn {
  max-width: fit-content;
}

.package_details .price_btn .main_btn {
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px 24px;
}

.package_details .content p {
  max-width: 90%;
  line-height: 32px;
  font-weight: 300;
}

.package_details .travel-section {
  padding-top: 50px;
  gap: 0;
}

.package_details .travel-section .center {
  margin-top: 100px !important;

}

.package_details .travel-section .travel-card:nth-child(1) {
  transform: rotate(-10deg);
}

.package_details .travel-section .travel-card:nth-child(2) {
  transform: rotate(10deg);
}



.inclusion_exclusion {
  position: relative;
  padding-top: 0;
}

.inclusion_exclusion .circle-1 {
  position: absolute;
  top: 0px;
  left: -350px;
  z-index: -1;
}

.inclusion_exclusion .circle-2 {
  position: absolute;
  top: -200px;
  right: -350px;
  z-index: -1;
}

.inclusion_exclusion h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.inclusion_exclusion ul {
  margin-bottom: 30px;
}

.inclusion_exclusion li {

  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.inclusion_exclusion li i {
  color: var(--first-color);
  font-size: 22px;
}

.inclusion_exclusion li span {
  font-size: 18px;
  text-transform: uppercase;
}

.inclusion_exclusion .image {
  width: 100%;
  height: 500px;
}

.inclusion_exclusion .image img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.gallery{
  display: none;
}
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}


.gallery .grid .box {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

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





.mission_vision{
  padding: 50px 0;
}
.mission_vision .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mission_vision p {
  font-weight: 300;
  line-height: 28px;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #fff;
  padding: 40px 0 0px;
  position: relative;
  z-index: 1;
  border-top: .5px solid var(--first-color);
}

.footer .footer_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
  z-index: -1;
  object-fit: cover;
}

.footer .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer .footer_logo {
  margin-bottom: 30px;
}

.footer .social_icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .social_icons li {
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.footer .social_icons li i {
  font-size: 18px;
  color: #fff;
}

.footer .social_links li {
  margin-bottom: 15px;

}

.footer .social_links li a {
  color: #000;
  font-weight: 300;
  transition: color .4s;
}

.footer .social_links li a:hover {
  color: var(--first-color);
}

.footer .contact_details .item {
  display: flex;
  margin-bottom: 15px;
  gap: 15px;
  align-items: center;
}

.footer .contact_details .icon {
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .contact_details .icon i {
  color: #fff;
}

.footer .contact_details p {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.footer .contact_details p span{
  color: #0000005e;
}
.footer .mail a{
  font-weight: 300;
}

.footer .contact_details a {
  color: #000;
}


.footer .flex_row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (max-width:991px){
  .footer .flex_row{
    gap: 10px;
  }
}
@media screen and (max-width:600px){
  .footer .flex_row{
    flex-direction: column;
  }
}


.footer .flex_row .item{
  border: .2px solid var(--first-color);
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.footer .flex_row .item p{
  margin-bottom: 0;

  
}
.footer .flex_row .item p a{
  color: var(--first-color);
}


.footer .copyright{
  border-top: 1px solid var(--first-color);
  padding: 30px 0;
}
.footer .copyright p{
  font-weight: 300;
}




.contact_wrapper .card{
  padding: 20px;
  text-align: center;
  height: 300px;
  /* border: none; */
  box-shadow: var(--primary-shadow);
  border-radius: 10px;
}
.contact_wrapper .card{
  display: flex;
  gap: 0;
}
.contact_wrapper .card img{
  width: 60px;
  height: 60px;
  margin: 10px auto;
}
.contact_wrapper .card h6{
  font-size: 22px;
  font-weight: 600;
}
.contact_wrapper .card a{
  color: #000;
  font-size: 18px;
  font-weight: 400;
}



.contact_wrapper h6 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}


/* modal */

.modal {
  border-color: transparent;
}

.modal .btn-close:focus {
  box-shadow: none;
}

.modal .modal-content {
  border-radius: 30px;
  overflow: hidden;
  border: none;
  padding: 20px 20px;
}

.modal .modal-header,
.modal .modal-footer {
  border: none;
}

.modal input {
  height: 55px;
  border-radius: 16px;
}

.modal input:focus {
  box-shadow: none;
  border: .3px solid #F58320;
}

.modal select:focus {
  box-shadow: none;
  border: .3px solid #F58320;
}

.modal input::placeholder {
  font-size: 14px;
  font-weight: 300;
}

.modal select {
  height: 55px;
  border-radius: 16px;
}




/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */

@media screen and (max-width:340px) {
  .container {
    margin-inline: 1rem;

  }

}

@media screen and (min-width:768px) {
  .nav_menu {
    width: 40%;
  }
}


@media screen and (min-width:1150px) {
  .header .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav_toggle,
  .nav_close {
    display: none;
  }

  .nav_menu {
    width: initial;
  }

  .nav_list {
    flex-direction: row;
    align-items: center;
    column-gap: 24px;
  }

  .bg-header .nav_link {
    color: var(--text-color);
  }

  .bg-header .active-link,
  .bg-header .nav_link:hover {
    color: var(--first-color);
  }

  .bg-header .main_btn,
  .bg-header .main_btn:hover {
    color: var(--white-color);
  }

}


/* For large devices */






.open-button {
  background-color: var(--first-color);
  /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.5); */
  color: white;
  padding: 0px;
  border: none;
  cursor: pointer;
  opacity: 1;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-radius: 50px;

  opacity: 0;
  /* Hidden by default */
  visibility: hidden;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

.open-button i {
  font-size: 24px;
}

.open-button:hover i {
  color: #fff;
}



.swiper-pagination-bullet {
  background-color: gray;
}

/* Change the color of the active bullet */
.swiper-pagination-bullet-active {
  background-color: var(--first-color) !important;
}



.page_socialicons{
  position: fixed;
  left: 10px;
  bottom: 0px;
  z-index: 999 !important;
}

.page_socialicons li{
  width: 40px;
  height: 40px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50px;
  
}
.page_socialicons li a{
  color: #fff;
}