@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@300;400;700;900&display=swap');
* {
  font-family: Poppins, sans-serif;
}
a:hover {
  opacity: .9;
  transition: .3s ease all;
}
.top-header {
  padding: 22px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to bottom, #002d6f 0%, transparent 100%);
  transition: all .3s ease;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* LEFT */
.header-left {
  flex: 1;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.info-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.info-item i {
  margin-right: 8px;
  font-size: 15px;
}
/* CENTER */
.header-logo {
  flex: 0 0 auto;
  text-align: center;
}
.header-logo img {
  max-height: 72px;
}
/* RIGHT */
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.header-right a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}
.header-right a:hover {
  background: #fff;
  color: #123d74;
}
.currency-select {
  width: 80px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: transparent;
  color: #fff;
  padding: 0 8px;
  margin-left: 10px;
}
.currency-select option {
  color: #000;
}
/* Tablet */
@media(max-width:991px) {
  .header-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .header-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .header-right {
    justify-content: center;
  }
}
/* Mobile */
@media(max-width:576px) {
  .info-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .header-info {
    flex-direction: column;
  }
}
.nav-links {
  margin-top: 20px;
  margin-bottom: 10px;
}
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /*
      display: flex;
      align-items: center;
      gap: 35px;*/
}
.nav-links ul li {
  position: relative;
  margin: .25rem;
}
.nav-links ul li a {
  display: block;
  padding: 10px;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: .3s;
  border-radius: 10px;
}
.nav-links ul li a:hover, .nav-links ul li .dropdown-toggle:focus, .nav-links ul li .dropdown-toggle:hover {
  color: #FFF;
  background: #f99f1c;
  transition: .3s;
}
.nav-links ul li a.active {
  color: #FFF;
  background: #0061aa;
}
.dropdown-menu {
  background-color: #183f7790;
  border-radius: 10px;
}
.dropdown-menu a {
  color: #FFF;
  text-align: left !important;
  font-weight: normal !important;
  font-size: 14px !important;
}
/* Mobile Fix */
@media (max-width: 991px) {
  .dropdown-menu {
    position: relative;
  }
  .nav-links > ul {
    background-color: #0061aa90;
  }
  .nav-links ul.dropdown-menu li a {
    text-align: center !important;
    background-color: #00000090;
    font-size: .8rem !important;
    margin: 5px 5%;
    width: 90%;
  }
  .dropdown-menu li a:hover, .dropdown-menu li a:focus {
    color: #FFF !important;
    background: #f99f1c !important;
    transition: .3s;
  }
}
.top-header.fixed {
  padding: 0px;
  padding-top: 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0061aa;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  animation: slideDown .3s ease;
  z-index: 9999;
}
.top-header.fixed .nav-links {
  margin-top: 0;
  margin-bottom: 0;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.custom-toggler {
  width: 48px;
  height: 48px;
  background: #0061aa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-toggler:focus {
  box-shadow: none;
}
.custom-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background: #FFF;
}
.custom-toggler .navbar-toggler-icon::before, .custom-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #FFF;
}
.custom-toggler .navbar-toggler-icon::before {
  top: -7px;
}
.custom-toggler .navbar-toggler-icon::after {
  top: 7px;
}
#heroCarousel .carousel-item {
  height: 700px;
}
#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, .45);*/
}
#heroCarousel .carousel-caption {
  bottom: 10%;
  transform: translateY(50%);
  z-index: 2;
}
#heroCarousel .carousel-caption h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.36);
}
#heroCarousel .carousel-caption p {
  font-size: 20px;
  margin-bottom: 30px;
}
#heroCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  display: none;
}
#heroCarousel .carousel-control-prev-icon, #heroCarousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}
@media(max-width:768px) {
  #heroCarousel .carousel-item {
    height: 450px;
  }
  #heroCarousel .carousel-caption h1 {
    font-size: 36px;
  }
  #heroCarousel .carousel-caption p {
    font-size: 16px;
  }
}
#heroCarousel {
  margin-top: 0;
}
#heroCarousel h1 {
  color: #FFF;
}
#heroCarousel .carousel-item {
  /*height: 100vh;*/
}
#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1.blue_title {
  color: #0061aa;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
.tours_overview {
  background: #f2f2f2;
}
.tours_overview .tour_card {
  position: relative;
  transition: all 0.5s ease
}
.tours_overview .tour_card .position-relative {
  background: #FFF;
}
.tours_overview .tour_card h3 {
  font-size: 20px;
}
.tour_card .rating {
  color: #f99f1c;
}
.tour_card .tour_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000090;
  /* Hide by default */
  opacity: 0;
  visibility: hidden;
  /* Animation */
  transition: all 0.3s ease;
  /* Make it a block element */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  /* Optional: Force white text */
}
.tour_card:hover {
  scale: 1.05;
  z-index: 999;
  transition: all 0.5s ease;
}
.tour_card:hover .tour_overlay {
  opacity: 1;
  visibility: visible;
  box-shadow: -1px 1px 22px 0px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: -1px 1px 22px 0px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: -1px 1px 22px 0px rgba(0, 0, 0, 0.49);
  transition: all 0.5s ease;
}
@media(max-width:991px) {
  .tour_card .tour_overlay {
    opacity: 0;
    visibility: visible;
  }
  .tour_card:hover .tour_overlay {
    opacity: 0;
    visibility: visible;
  }
  .tour_card .tour_overlay a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
  }
}
.tour_overlay h1 {
  color: #FFF;
  font-weight: 700;
  font-size: 1.2rem;
}
.tour_overlay h3 {
  color: #f99f1c;
  font-size: 0.5rem;
  border-bottom: 1px solid #FFF;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.tour_overlay a {
  background-color: transparent;
  color: #FFF;
  border: 1px solid #FFF;
  text-decoration: none;
  font-size: .7rem;
  padding: 10px 20px;
  margin-top: 20px;
}
.tour_overlay a:hover {
  background-color: #f99f1c;
  color: #FFF;
}
.exc_tour-card {
  position: relative;
  transition: 0.3s ease all;
}
.exc_tour-card:hover {
  transform: scale(1.02);
  transition: 0.3s ease all;
}
.exc_tour-card a.tour_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.exc_tour-card .exc_tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00000090;
  padding: 15px;
  color: #FFF;
}
.text-orange {
  color: #f99f1c;
}
.text-gray {
  color: #6f6f6f;
}
.text-blue {
  color: #0061aa;
}
.features-slider .carousel-item {
  text-align: center !important;
  color: #666;
}
.features-slider .carousel-inner {
  width: 90%;
  margin-left: 5%;
  ;
}
.features-slider .feature-card {
  border: 1px solid #ccc;
  display: block;
  padding: 15px;
}
.features-slider .carousel-item i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #0061aa;
}
.features-slider button {
  display: inline-block;
  background: #0061aa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.features-slider button span {
  width: 100% !important;
  height: 100% !important;
}
.reviews-section {
  background: #efefef;
}
.review-card {
  background: #FFF;
}
.reviews_cnt .quote-icon {
  font-size: 3rem;
}
.bg-white {
  background: #FFF;
}
.bg-blue {
  background: #0061aa;
}
.bg-light-blue {
  background-color: #e1f2ff;
}
.footer_border {
  background: url("../images/footer_stripe.png") repeat-x;
  display: block;
  width: 100%;
  height: 25px;
}
.footer {
  background: #005ea8;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer-menu {
  font-size: .8rem;
  margin: 0;
  padding: 0;
}
.footer-copy {
  font-size: .8rem;
}
.footer-award {
  max-width: 110px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
}
.social-icon:hover {
  background: #fff;
  color: #005ea8;
}
.inner_banner {
  position: relative;
  width: 100%;
  height: 340px;
  background-color: #0b1d3a;
  overflow: hidden;
}
.inner_banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.inner_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.inner_banner .inner_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
  font-size: 2.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
  margin: 0;
}

@media (max-width: 768px) {
  .inner_banner {
    height: 240px;
  }
  .inner_banner .inner_title {
    font-size: 1.5rem;
  }
}
.trip-tabs {
  /*position: sticky;
    top: 80px;*/
  /* ارتفاع الهيدر */
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
}
.trip-tabs .nav {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 12px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.trip-tabs .nav li {
  list-style: none;
}
.trip-tabs .nav a {
  position: relative;
  display: inline-block;
  color: #0061aa;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s;
}
.trip-tabs .nav a:hover {
  color: #f7941d;
}
.trip-tabs .nav a.active {
  color: #f7941d;
}
.trip-tabs .nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 4px;
  background: #f7941d;
  border-radius: 5px;
}
.book-btn {
  background: #0061aa;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 18px;
  text-transform: none !important;
  font-weight: 700;
  transition: .3s;
}
.book-btn:hover {
  background: #084b88;
}
.book-btn::after {
  display: none !important;
}
.btn-orange {
  background: #f99f1c;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 18px;
  text-transform: none !important;
  font-weight: 700;
  transition: .3s;
}
.btn-orange:hover {
  background: #ed9413;
}
.btn-orange::after {
  display: none !important;
}
.tour_bg {
  background: #f2f2f2;
  padding: 20px 0;
}
.carousel-indicators {
  position: static;
  margin-top: 30px;
  justify-content: center;
  gap: 10px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cfcfcf;
  border: none;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: #ababab;
  transform: scale(1.3);
}





.facebook{
	background-color: #395398;
}
.whatsapp{
	background-color: #32ba46;
}
.w-15 {
    width: 15% !important;
}
ul li::marker {
  color: #f99f1c;
  font-weight: bold;
}
