
@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+QLD:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+QLD:wght@100..400&family=Rancho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Playwrite+AU+QLD:wght@100..400&family=Rancho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Kaushan+Script&family=Playwrite+AU+QLD:wght@100..400&family=Rancho&display=swap');

body {
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: black;
  top: 0 !important;
  background-color: white; /* or any fallback color */
  z-index: 0; /* To make sure content is above the bg */
}

body::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../img/seranity.jpg'); */
  background-size: contain;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.03; /* Change this to control bg image transparency */
  z-index: -1;  /* Behind content */
  pointer-events: none; /* So clicks pass through */
}
body a {
  text-decoration: none;
  color: white;
}
body ul {
  list-style: none;
}
body p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}
body header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}
body header .topbar {
  top: 0;
  position: relative;
  padding: 10px 0 0;
  background-color: transparent;
}
@media (max-width: 999px) {
  body header .topbar {
    display: none;
  }
}
body header .topbar .bb-1 {
  border-bottom: 1px solid white;
}
body header .topbar ul {
  display: flex;
  padding: 0;
  margin: 0 0 10px;
  float: right;
}
body header .topbar ul li {
  color: white;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px !important;
  padding-right: 10px;
  border-right: 1px solid white;
}
@media (max-width: 999px) {
  body header .topbar ul li {
    font-size: 12px;
  }
}
body header .topbar ul li:first-child {
  font-weight: 700;
  justify-content: center;
  margin-right: auto;
}
body header .topbar ul li:first-child span {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1px 7px;
  color: #2a3a93;
}
body header .topbar ul li:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
body header .navbar {
  background-color: transparent;
  padding: 20px;
  z-index: 5;
  transition: 0.5s;
  width: 100%;
  transition: 0.5s;
}
@media (max-width: 999px) {
  body header .navbar {
    padding: 10px;
    background-color: white;
    position: fixed;
  }
}
body header .navbar .navbar-brand {
  padding: 0;
}
body header .navbar .navbar-brand img {
  width: 150px;
  /* filter: brightness(0) invert(1); */
}
@media (max-width: 999px) {
  body header .navbar .navbar-brand img {
    filter: none;
    width: 150px;
  }
}
body header .navbar .navbar-toggler {
  box-shadow: none;
  border: none;
  box-shadow: none;
  border: none;
  position: absolute;
  z-index: 99;
  right: 0;
}
body header .navbar .navbar-toggler .navbar-toggler-icon {
  box-shadow: none;
  border: none;
  transition: 0.5s;
}
body header .navbar .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
  background-image: url("../img/menu.png") !important;
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(60%) contrast(100%);
}
body header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  transition: 0.5s;
  background-image: url("../img/close.png") !important;
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(60%) contrast(100%);
}
@media (max-width: 999px) {
  body header .navbar .navbar-nav {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 80vw;
    height: 100vh;
    position: fixed !important;
    top: 0;
    right: 0;
    background-color: #f9f9f9;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    align-items: start;
    z-index: 90;
  }
}
body header .navbar .nav-item {
  position: relative;
}
@media (max-width: 999px) {
  body header .navbar .nav-item {
    width: 100%;
  }
}
body header .navbar .nav-item .nav-link {
  font-size: 16px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  font-family: "El Messiri", sans-serif;
}
@media (max-width: 999px) {
  body header .navbar .nav-item .nav-link {
    color: black;
    padding: 10px 0;
    border-bottom: 1px solid black;
    text-align: left;
  }
}
body header .navbar .nav-item .nav-link:before {
  width: 0;
  height: 1px;
  content: "";
  background-color: #2a3a93;
  left: 12px;
  bottom: 6px;
  position: absolute;
  transition: 0.5s;
}
body header .navbar .nav-item .nav-link:hover:before {
  width: 70%;
}
@media (max-width: 999px) {
  body header .navbar .nav-item .nav-link:hover:before {
    display: none;
  }
}
@media (max-width: 999px) {
  body header .navbar .nav-item .nav-link:hover {
    color: #2a3a93;
  }
}
body header .navbar .nav-item .nav-link.active:before {
  width: 70%;
}
@media (max-width: 999px) {
  body header .navbar .nav-item .nav-link.active:before {
    display: none;
  }
}
@media (max-width: 999px) {
  body header .navbar .nav-item .nav-link.active {
    color: #2a3a93;
  }
}
body header .navbar .nav-item .btn-blue {
  margin-top: 20px;
}
body header .navbar .collapse.show .navbar-nav {
  transform: translateX(0);
}
body header .navbar.top-sticky {
  position: fixed;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: white;
}
@media (max-width: 999px) {
  body header .navbar.top-sticky {
    padding: 10px;
  }
}
body header .navbar.top-sticky .nav-item .nav-link {
  color: black;
}
body header .navbar.top-sticky .navbar-brand img {
  filter: none;
}
body .btn-blue {
  padding: 8px 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #2a3a93;
  border-radius: 0;
  font-family: "Raleway", serif;
  border: 1px solid #2a3a93;
  display: block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  font-family: "El Messiri", sans-serif;
}
body .btn-blue:active, body .btn-blue:focus, body .btn-blue:hover {
  border: 1px solid #2a3a93 !important;
  background: transparent;
  color: white !important;
}
body .btn-blue:active::after, body .btn-blue:focus::after, body .btn-blue:hover::after {
  width: 100%;
  right: 0;
}
body .btn-blue:before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: #2a3a93;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-blue:after {
  width: 0;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-blue-b {
  padding: 8px 15px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background-color: #2a3a93;
  border-radius: 0;
  font-family: "Raleway", serif;
  border: 1px solid #2a3a93;
  display: block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  font-family: "El Messiri", sans-serif;
}


.btn-blue-bs {
  padding: 8px 15px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background-color: #2a3a93;
  border-radius: 0;
  font-family: "Raleway", serif;

  display: block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  font-family: "El Messiri", sans-serif;
}

.btn-blue-bs:active, body .btn-blue-b:focus, body .btn-blue-b:hover {
  border: 1px solid #000000 !important;
  background-color: transparent;
  color: rgb(0, 0, 0) !important;
}

body .btn-blue-b:active, body .btn-blue-b:focus, body .btn-blue-b:hover {
  border: 1px solid #f3bb23 !important;
  background-color: transparent;
  color: rgb(0, 0, 0) !important;
}
body .btn-blue-b:active:after, body .btn-blue-b:focus:after, body .btn-blue-b:hover:after {
  width: 100%;
  right: 0;
}
body .btn-blue-b:active:before, body .btn-blue-b:focus:before, body .btn-blue-b:hover:before {
  background-color: #f3bb23;
}
body .btn-blue-b:before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-blue-b:after {
  width: 0;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-white-b {
  padding: 8px 15px;
  color: #2a3a93;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffffff;
  border-radius: 0;
  font-family: "Raleway", serif;

  display: inline-block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;

  font-family: "El Messiri", sans-serif;
}
body .btn-white-b:active, body .btn-white-b:focus, body .btn-white-b:hover {
  border: 1px solid #2a3a93 !important;
  color: #ffffff !important;
  background-color: #2a3a93;
  
}
body .btn-white-b:active:after, body .btn-white-b:focus:after, body .btn-white-b:hover:after {
  width: 100%;
  right: 0;
}
body .btn-white-b:active:before, body .btn-white-b:focus:before, body .btn-white-b:hover:before {
  background-color: white;
}
body .btn-white-b:before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-white-b:after {
  width: 0;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: 0.6s;
}
body .btn-border {
  padding: 6px 15px;
  color: #2a3a93;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #2a3a93;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
body .btn-border:hover {
  border: 1px solid #041126;
}
body .btn-border:before {
  width: 0;
  height: 100%;
  content: "";
  background: linear-gradient(-100deg, #041126 50%, transparent 50%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .btn-border:after {
  width: 0;
  height: 100%;
  content: "";
  background: linear-gradient(80deg, #041126 50%, transparent 50%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s;
}
body .section-title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  font-family: "Kaushan Script", cursive;
  color: black;
  padding-bottom: 10px;
  line-height: 50px;
}
@media (max-width: 768px) {
  body .section-title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  body .section-titles {
    font-size: 28px;
    line-height: 40px;
  }
}
.section-titles{
    font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  font-family: "Kaushan Script", cursive;
  color: black;
  padding-bottom: 10px;
  line-height: 50px;
}
body .section-des {
  margin-bottom: 20px;
  font-size: 16px;
  color: black;
}
body .swiper-button-prev {
  display: block;
  left: 0;
}
body .swiper-button-prev:after {
  color: white;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: block;
  font-family: "bootstrap-icons";
  content: "\f12f";
  text-align: center;
  line-height: 45px;
}
body .swiper-button-next {
  display: block;
  right: 20px;
}
body .swiper-button-next:after {
  color: white;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: block;
  font-family: "bootstrap-icons";
  content: "\f138";
  text-align: center;
  line-height: 45px;
}
body .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid white;
}
body .swiper-pagination-bullet-active {
  background-color: white;
}
body .hero {
  position: relative;
  overflow: hidden;
 height: 700px; ;
 
}
body .hero .content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  text-align: center;
  color: var(--white);

  width: 95%;
}
body .hero .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  /* Send video to background */
  transform: translate(-50%, -50%);
}
body .hero .hero-swiper {
  height: 600px;
}
body .hero .hero-swiper .swiper-slide img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .hero .hero-swiper .swiper-slide .content {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: 20px;
  width: 90%;
}
body .hero .hero-swiper .swiper-slide .content h1 {
  font-size: 52px;
  font-weight: 400;
  margin: 0;
  padding-bottom: 20px;
  color: white;
  line-height: 60px;
  font-family: "Kaushan Script", cursive;

  /* New styles below */

  display: inline-block; /* so background fits the text */
  padding: 10px 20px; /* space around text */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* soft dark shadow */
  border-radius: 8px; /* optional: rounded corners */
}

@media (max-width: 768px) {
  body .hero .hero-swiper .swiper-slide .content h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
body .hero .hero-swiper .swiper-slide .content p {
  color: white;
  font-size: 16px;
  font-weight: 400;
}
body .mt-30 {
  margin-top: 30px;
}
body .destination {
  padding: 35px 0;
}
body .destination .destination-swiper {
  padding: 30px 0;
}
body .destination .destination-swiper .swiper-slide .destination-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  padding: 0;
}
body .destination .destination-swiper .swiper-slide .destination-item .overlay {
	content: "";
	background: linear-gradient(to top, rgba(0, 0, 0, 0.486), #00000000);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: 0.3s;
}

body .destination .destination-swiper .swiper-slide .destination-item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
body .destination .destination-swiper .swiper-slide .destination-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px 20px 20px;
  text-align: left;
}
body .destination .destination-swiper .swiper-slide .destination-item .content h5 {
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  color: white;
  font-weight: 600;
  font-size: 25px;
  font-family: "Kaushan Script", cursive;
}
body .destination .destination-swiper .swiper-slide .destination-item .content p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}
body .destination .destination-swiper .swiper-slide .destination-item .content a {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  background-color: #f3bb23;
  padding: 5px 10px 5px 10px;
}

body .destination .destination-swiper .swiper-slide .destination-item .content a:hover {
  background-color: red;
  color: #fff; /* optional: to improve contrast */
}
body .destination .destination-swiper .swiper-slide .destination-item:hover img {
  transform: scale(1.2);
}
body .package {
  background: linear-gradient(to bottom, white 40%, transparent 40%), url("../img/package-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 999px) {
  body .package {
    padding-bottom: 0;
  }
}
body .package .package-swiper {
  padding: 30px 0;
}
body .package .package-swiper .swiper-slide .package-item .package-img {
  height: 300px;
  overflow: hidden;
}
body .package .package-swiper .swiper-slide .package-item .package-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .package .package-swiper .swiper-slide .package-item h5 {
  font-size: 25px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: "El Messiri", sans-serif;
  color: #2a3a93;
}
body .package .package-swiper .swiper-slide .package-item .content {
  padding: 10px;
  background-color: white;
}
body .package .package-swiper .swiper-slide .package-item .content .duration {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
  text-align: center;
}

.package-img {
  position: relative;
  overflow: hidden;
}

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

.duration-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #b71010;
  color: rgb(255, 255, 255);
  padding: 2px 0;
  text-align: center;
  font-weight: 600px;
}
.ptexts{

  font-size: 15px;
}
.duration {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight:600;
}

.book-button {
  text-align: center;
  margin-top: 5px;
  padding-top: 5px;
}

.book-button a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 5px 25px 5px 25px;
  background-color: #2a3a93;
}

.book-button a:hover {
  color: #ff6600;
background-color:#2a3a93;
}

.book-txi {
  text-align: center;
  margin-top: 5px;
  padding-top: 5px;
}

.book-taxi a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  padding: 5px 25px 5px 25px;
  background-color: #f3bb23;
}

.book-taxi a:hover {
  color: #ffffff;
background-color:#2a3a93;
}

body .package .package-swiper .swiper-slide .package-item .content .duration li {
  font-size: 16px;
  font-weight: 400;
}
body .package .package-swiper .swiper-slide .package-item .content .duration li:first-child {
  margin-right: 10px;
}
body .package .package-swiper .swiper-slide .package-item .content a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}
body .package .package-swiper .swiper-slide .package-item .content a:hover {
  color: #ffffff;
}
body .package .package-swiper .swiper-slide .package-item:hover .package-img img {
  transform: scale(1.2);
}
body .news {
  padding: 50px 0;
  color: white;
}
@media (max-width: 999px) {
  body .news {
    margin: 0;
  }
}
body .news .section-des {
  padding-bottom: 30px;
}
body .news .news-item .news-img {
  height: 300px;
  overflow: hidden;
}
body .news .news-item .news-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .news .news-item h5 {

	font-size: 20px;
	font-weight: 400;
	line-height: 25px;
font-family: "El Messiri", sans-serif;
	color: #2a3a93;

}
body .news .news-item .content {
  padding: 20px;
  background-color: white;
  box-shadow: 1px 1px 2px 1px #ddd;
}
body .news .news-item .content .time {
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
}
body .news .news-item .content .time li {
  font-size: 12px;
  font-weight: 400;
  color: black;
}
body .news .news-item .content a {
  color: #2a3a93;
  font-size: 11px;
  font-weight: 400;
}
body .news .news-item:hover .news-img img {
  transform: scale(1.2);
}
body .instagram {
  margin-bottom: -50px;
}
body .instagram .instagram-item {
  height: 250px;
  overflow: hidden;
  position: relative;
}
body .instagram .instagram-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
body .instagram .instagram-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  font-family: "bootstrap-icons";
  content: "\f437";
  color: white;
  font-size: 18px;
  justify-content: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
body .instagram .instagram-item:hover img {
  transform: scale(1.2);
}
body .instagram .instagram-item:hover:before {
  opacity: 1;
}
body .about {
  overflow: hidden;
  color: black;
  position: relative;
  text-align: left;
  padding: 70px 0 35px;
}
@media (max-width: 999px) {
  body .about .d-flex {
    justify-content: center;
  }
}
@media (max-width: 999px) {
  body .about {
    text-align: center;
  }
}
body .about .section-title {
  text-align: left;
  font-size: 40px;
  line-height: 43px;
}
@media (max-width: 999px) {
  body .about .section-title {
    text-align: center;
  }
}
body .about .map {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}
body .about .about-img {
 
  margin-bottom: 20px;

}

/* Mobile Override */
@media (max-width: 768px) {
  .herop {
    margin-top: -200px;
  }
}
@media (max-width: 999px) {
  body .about .about-img {
    overflow-x: scroll;
  }
}
body .about .about-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -20px;
}
body .whatsapp-icon {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  animation: zoom 5s infinite;
}
@media (max-width: 999px) {
  body .whatsapp-icon {
    width: 50px;
    height: 50px;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
body .preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body .preloader img {
  width: 150px;
  height: auto;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.5);
    transform: scale(1.05);
  }
}


.footer-phone {
  font-size: 30px; /* Adjust as needed: 14px, 1.1rem, etc. */
  font-weight: 500; /* Optional: makes it slightly bolder */
  color: #ffffff; /* Optional: customize the text color */
}
.bi-telephone {
  font-size: 30px;
  margin-right: 6px;
  color: #ffffff; /* Optional: icon color */
}
body footer {

  /* background: linear-gradient(to bottom, #1100af9c, rgba(30, 0, 197, 0.63) 30%), url("../img/footer-bg.webp");  */
  background: linear-gradient(to bottom, #2a3a93 0%, rgba(0, 58, 195, 0.8) 60%), url("../img/footer-bg.webp");
  padding: 150px 0 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-color: #f8f9fa;
}
@media (max-width: 999px) {
  body footer {
    text-align: center;
  }
}
body footer h5 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "El Messiri", sans-serif;
}
body footer .links {
  padding: 0;
}
body footer .links li {
  margin-bottom: 5px;
}
body footer .links li a {
  font-size: 20px;
  font-weight: 400;
  color: white;
  font-family: "El Messiri", sans-serif;
}
body footer .links li i {
  font-size: 20px;
  font-weight: 400;
  color: white;
}
body footer .links .social {
  margin: 0;
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media (max-width: 999px) {
  body footer .links .social {
    justify-content: center;
  }
}
body footer .links .social li a i {
  width: 35px;
  height: 35px;
  color: white;
  border: 1px solid white;
  line-height: 35px;
  font-size: 10px;
  display: block;
  text-align: center;
  background: transparent;
  margin: 3px;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body footer .links .social li a i:hover {
  color: #2a3a93;
}
body footer .links .social li a i:hover:after {
  transform: translateY(0);
}
body footer .links .social li a i:after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  z-index: -1;
  transition: 0.5s;
}
body footer .copyright {
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid white;
}
body footer .copyright p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  color: white;
}
body footer .copyright a {
  color: white;
}
body .page-header {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
body .page-header .content,
body .page-header .package-page {
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 56px;
}
@media (max-width: 768px) {
  body .page-header .content,
  body .page-header .package-page {
    width: 100%;
  }
}
body .page-header .content h1,
body .page-header .package-page h1 {
	font-size: 40px;
	font-weight: 400;
	text-align: center;
	font-family: "Kaushan Script", cursive;
	color: rgb(255, 255, 255);
	line-height: 35px;
}
@media (max-width: 768px) {
  body .page-header .content h1,
  body .page-header .package-page h1 {
    font-size: 28px;
    line-height: 30px;
  }
}
body .page-header .content ul,
body .page-header .package-page ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body .page-header .content ul li,
body .page-header .package-page ul li {
  margin-right: 5px;
  padding-right: 17px;
  position: relative;
  font-size: 16px;
  padding-left: 0;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body .page-header .content ul li:before,
body .page-header .package-page ul li:before {
  font-family: "bootstrap-icons";
  content: "\f280";
  position: absolute;
  font-size: 12px;
  color: white;
  right: 0;
  line-height: 16px;
}
body .page-header .content ul li:last-child,
body .page-header .package-page ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
body .page-header .content ul li:last-child:before,
body .page-header .package-page ul li:last-child:before {
  display: none;
}
body .page-header .content ul li a,
body .page-header .package-page ul li a {
  color: white;
}
body .page-header .content ul li i,
body .page-header .package-page ul li i {
  font-size: 16px;
  color: white;
  background-color: #2a3a93;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  display: block;
  text-align: center;
}
body .page {
  padding: 10px 0;
}
body .page .about-page-content h5 {

}
body .page .about-page-content h5 span {
  font-style: italic;
  text-transform: capitalize;
}
body .page .about-page-content .bg-primary {
  background-color: #2a3a93;
}
body .page .about-page-content img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .vision-card h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  color: black;
}
body .page .gallery-swiper {
  margin-bottom: 30px;
}
body .page .gallery-swiper .gallery-item {
  overflow: hidden;
}
body .page .gallery-swiper .gallery-item img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .gallery-item {
  overflow: hidden;
  position: relative;
}
body .page .gallery-item img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .gallery-item .overlay {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: 0.3s;
}
body .page .gallery-item:hover .overlay {
  opacity: 1;
}
body .page .news-item .news-img {
  height: 300px;
  overflow: hidden;
}
body .page .news-item .news-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .news-item h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  color: black;
}
body .page .news-item .content {
  padding: 20px;
  background-color: white;
  box-shadow: 1px 1px 2px 1px #ddd;
}
body .page .news-item .content .time {
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
}
body .page .news-item .content .time li {
  font-size: 12px;
  font-weight: 400;
  color: black;
}
body .page .news-item .content a {
  color: #2a3a93;
  font-size: 11px;
  font-weight: 400;
}
body .page .news-item:hover .news-img img {
  transform: scale(1.2);
}
body .page .destination-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  padding: 0;
}
body .page .destination-item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
body .page .destination-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px 20px 20px;
  text-align: left;
}
body .page .destination-item .content h5 {

	padding: 0;
	margin: 0;
	padding-bottom: 10px;
	color: white;
	font-weight: 600;
	font-size: 25px;
	font-family: "Kaushan Script", cursive;

}
body .page .destination-item .content p {

	font-size: 16px;
	font-weight: 400;
	color: white;
	margin-bottom: 10px;

}
body .page .destination-item .content a {

	color: rgb(0, 0, 0);
	font-size: 16px;
	font-weight: 400;
	background-color: #f3bb23;
	padding: 5px 10px 5px 10px;

}


body .page .destination-item .content .overlay {
	content: "";
	background: linear-gradient(to top, rgba(0, 0, 0, 0.486), #00000000);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: 0.3s;
}

body .page .destination-item .content a:hover{


  background-color: red;
  color: #fff; /* optional: to improve contrast */


}
body .page .destination-item:hover img {
  transform: scale(1.2);
}
body .page .page-item {
  margin-bottom: 30px;
}

.p-date{

  color: rgb(32, 0, 146);
  font-family: "El Messiri", sans-serif;
  font-size: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}
body .page .page-item h5 {
  font-size: 32px;
  line-height: 35px;
  font-family: "El Messiri", sans-serif;
  font-weight: 400;
  margin: 0;

}
body .page .page-item .duration {
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  display: flex;
}
body .page .page-item .duration li {
  font-size: 16px;
  font-weight: 400;
}
body .page .page-item .duration li:first-child {
  margin-right: 10px;
}
body .page .page-item h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}
body .page .page-item h6 span {
  color: #555;
}
body .page .page-item h4 {
  margin: 0;
  padding: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 23px;
  color: #555;
  margin-bottom: 10px;
}
body .page .page-item h4 span {
  font-size: 16px;
}
body .page .pagination {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
body .page .pagination .page-item {
  margin: 5px !important;
  box-shadow: none;
}
body .page .pagination .page-item .page-link {
  border: 1px solid #2a3a93;
  color: #2a3a93;
  border-radius: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 25px;
}
body .page .pagination .page-item .page-link:hover {
  background-color: #2a3a93;
  color: white;
}
body .page .pagination .page-item.active .page-link {
  background-color: #2a3a93;
  color: white;
}
body .page .itinerary .item .title {
  cursor: pointer;
}
body .page .itinerary .item .title h5 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  border-bottom: 1px dotted #555;
}
body .page .itinerary .item .content {
  display: none;
  margin-bottom: 20px;
}
body .page .itinerary .item .content h5 {
  font-size: 20px;
  color: #2a3a93;
  padding: 0;
  font-weight: 400;
  margin: 15px 0 5px;
  line-height: 22px;
}
body .page .itinerary .item .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .page .itinerary .item .content ul li {
  position: relative;
  margin: 0;
  line-height: 18px;
  font-size: 16px;
  padding: 5px 0 5px 15px;
}
body .page .itinerary .item .content ul li:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2a3a93;
}
body .page .itinerary .item .content ul li ul {
  margin-left: 10px !important;
}
body .page .itinerary .item .content ul li ul li:before {
  position: absolute;
  left: 0;
  border-radius: 50%;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2a3a93;
}
body .page .sidebar-swiper .swiper-slide .package-item .package-img {
  height: 300px;
  overflow: hidden;
}
body .page .sidebar-swiper .swiper-slide .package-item .package-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .sidebar-swiper .swiper-slide .package-item h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
body .page .sidebar-swiper .swiper-slide .package-item .content-package {
  padding: 20px;
  background-color: white;
}
body .page .sidebar-swiper .swiper-slide .package-item .content-package .duration {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
}
body .page .sidebar-swiper .swiper-slide .package-item .content-package .duration li {
  font-size: 12px;
  font-weight: 400;
}
body .page .sidebar-swiper .swiper-slide .package-item .content-package .duration li:first-child {
  margin-right: 10px;
}
body .page .sidebar-swiper .swiper-slide .package-item .content-package a {
  color: #2a3a93;
  font-size: 11px;
  font-weight: 400;
}
body .page .sidebar-swiper .swiper-slide .package-item:hover .package-img img {
  transform: scale(1.2);
}
body .page .sidebar-swiper .swiper-slide .news-item .news-img {
  height: 300px;
  overflow: hidden;
}
body .page .sidebar-swiper .swiper-slide .news-item .news-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .sidebar-swiper .swiper-slide .news-item h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  color: black;
}
body .page .sidebar-swiper .swiper-slide .news-item .content {
  padding: 20px;
  background-color: white;
  box-shadow: 1px 1px 2px 1px #ddd;
}
body .page .sidebar-swiper .swiper-slide .news-item .content .time {
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
}
body .page .sidebar-swiper .swiper-slide .news-item .content .time li {
  font-size: 12px;
  font-weight: 400;
  color: black;
}
body .page .sidebar-swiper .swiper-slide .news-item .content a {
  color: #2a3a93;
  font-size: 11px;
  font-weight: 400;
}
body .page .sidebar-swiper .swiper-slide .news-item:hover .news-img img {
  transform: scale(1.2);
}
body .page .location-item {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
  background-color: white;
  padding: 0 5px;
  left: 0;
  top: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 5px;
}
body .page .location-item li {
  color: black;
  padding: 5px 10px;
  border: 1px solid black;
  background-color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}
body .page .location-item li:last-child {
  margin-right: 0;
}
body .page .location-item li a {
  color: black;
}
body .page .package-item .package-img {
  height: 300px;
  overflow: hidden;
}
body .page .package-item .package-img img {
  width: 100%;
  height: 300px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page .package-item h5 {

	font-size: 25px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 10px;
	font-family: "Kaushan Script", cursive;
	color: #2a3a93;

}
body .page .package-item .content {
  padding: 20px;
  background-color: white;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.062745098);
}
body .page .package-item .content .duration {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
}
body .page .package-item .content .duration li {
  font-size: 18px;
  font-weight: 400;
}
body .page .package-item .content .duration li:first-child {
  margin-right: 10px;
}
body .page .package-item .content a {
  color: #2a3a93;
  font-size: 19px;
  font-weight: 400;
}


body .page .package-item .content a:hover{
  color: #ffffff;

}
body .page .package-item:hover .package-img img {
  transform: scale(1.2);
}
body .page .page-form {
  margin-bottom: 50px;
  background: #2a3a93;
  padding: 40px 20px;
}
body .page .page-form h5 {
  color: white;
  font-size: 20px;
  line-height: 22px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin: 0;
  padding-bottom: 10px;
}
body .page .page-form p {
  color: white;
}
body .page .page-form hr {
  border-color: white;
}
body .page .page-form .btn-blue {
  border-color: white;
  margin-left: auto;
  background-color: #041126;
  border-color: #041126 !important;
}
body .page .page-form .btn-blue:active, body .page .page-form .btn-blue:focus, body .page .page-form .btn-blue:hover {
  background-color: #041126;
  border-color: #041126 !important;
}
body .page .page-form .book-form input {
  width: 100%;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.2509803922);
  border: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: white;
}
body .page .page-form .book-form input::-moz-placeholder {
  color: white;
}
body .page .page-form .book-form input::placeholder {
  color: white;
}
body .page .page-form .book-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.2509803922);
  color: white;
}
body .page .page-form .book-form textarea::-moz-placeholder {
  color: white;
}
body .page .page-form .book-form textarea::placeholder {
  color: white;
}
body .page .page-form .book-form textarea::-moz-placeholder {
  color: white;
}
body .page .page-form .book-form textarea::placeholder {
  color: white;
}
body .page .social {
  margin: 0;
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media (max-width: 999px) {
  body .page .social {
    justify-content: start;
  }
}
body .page .social li a i {
  width: 35px;
  height: 35px;
  color: black;
  border: 1px solid black;
  line-height: 35px;
  font-size: 10px;
  display: block;
  text-align: center;
  background: transparent;
  margin: 3px;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body .page .social li a i:hover {
  color: white;
}
body .page .social li a i:hover:after {
  transform: translateY(0);
}
body .page .social li a i:after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  z-index: -1;
  transition: 0.5s;
}
body .page .contact-item {
  margin-bottom: 20px;
}
body .page .contact-item p {
  font-size: 19px;
  padding: 0;
  margin-bottom: 3px;
  font-weight: 400;
  color: black;
}
body .page .contact-item .item {
  display: flex;
  align-items: center;
}
body .page .contact-item .item i {
  font-size: 16px;
  color: #2a3a93;
  margin-right: 10px;
}
body .page .contact-item .item a {
  font-size: 25px;
  line-height: 20px;
  font-weight: 600;
  color: black;
}
body .page .contact-form {
  margin-bottom: 50px;
}
body .page .contact-form h5 {
  color: black;
  font-size: 30px;
  line-height: 22px;
  font-family: "El Messiri", sans-serif;
  font-weight: 400;
  margin: 0;
  padding-bottom: 10px;
}
body .page .contact-form p {
  color: black;
}
body .page .contact-form .book-form label {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
body .page .contact-form .book-form input {
  width: 100%;
  padding: 10px 12px;
  background-color: white;
  border: none;
  border-bottom: 1px solid #555;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: black;
}
body .page .contact-form .book-form textarea {
  width: 100%;
  padding: 10px 12px;
  background-color: white;
  border: none;
  border-bottom: 1px solid #555;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: black;
}
body .Language {
  position: fixed;
  right: -10px;
  bottom: 30%;
  z-index: 2;
}
body .Language select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  background-color: #2a3a93;
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  padding: 3px 8px;
  border: none;
  font-size: 12px;
  border: 1px solid #2a3a93;
  border-right: none;
  font-family: var(--oswald);
  text-transform: uppercase;
}
body .Language select:focus {
  border: none;
}
body .Language select:active {
  border: none;
}
body .VIpgJd-ZVi9od-ORHb,
body .VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}/*# sourceMappingURL=styles.css.map */


.custom-shape-divider-bottom-1753450736 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
 
}

.custom-shape-divider-bottom-1753450736 img {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1753450736 .shape-fill {
    fill: #FFFFFF;
}
.mp{
  margin-top: -55px;
}

.second-txt{
  color: #2a3a93;
}


.package-img {
  position: relative;
  overflow: hidden;
}

.duration-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f3bb23;
  color: #000000;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
  white-space: nowrap;
}

.primary-txt{

	font-size: 40px;
	font-weight: 400;
	text-align: center;
	font-family: "Kaushan Script", cursive;
	color: black;
	line-height: 35px;

}


.phone-txt{
  font-family: "El Messiri", sans-serif;

  font-size: 30px;
}

.footer-txt{
  font-family: "El Messiri", sans-serif;
  color: #fff;
  font-size: 20px;
}

.footer-q{
  	font-family: "Kaushan Script", cursive;
    font-size: 40px;
}

.social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.social li a i {
  font-size: 18px;
  color: #333;
}


.footer-links {
  font-size: 20px; /* Change to any size: 14px, 1rem, etc. */
  padding: 0;
  margin: 0;
  font-family: "El Messiri", sans-serif;
  color: white;
  padding-top: 18px;
}

.footer-links li {
  padding: 0 10px;
  border-left: 1px solid #ccc;
}

.footer-links li:first-child {
  border-left: none; /* Remove border from first item */
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.vehicle-card {
  background: #f4f4f4;
  padding: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* Ensure height uniformity inside Swiper */
}

/* Uniform image box */
.vehicle-card img {
  width: 100%;
  max-width: 220px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Card text styling */
.vehicle-card h3 {
    font-family: "El Messiri", sans-serif;
  color: #000000;
  font-size: 20px;
}

.vehicle-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Book button */
.book-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;

}

.book-btn:hover {
  background-color: #e0a800;
}





.taxi-btn {
  display: block;
  left: 0;
}
.taxi-btn:after {
  color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgb(0, 0, 0);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: block;
  font-family: "bootstrap-icons";
  content: "\f12f";
  text-align: center;
  line-height: 45px;
}


.custom-shape-divider-top-1753545475 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1753545475 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 53px;
}

.custom-shape-divider-top-1753545475 .shape-fill {
    fill: #FFFFFF;
}

.hero-txt{
  font-family: "Kaushan Script", cursive;
  font-size: 60px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-txt {
    font-size: 45px;
  }
}


.hore-txtp{
font-family: "El Messiri", sans-serif;
font-size: 20px;
color: white;
}

.contact-txt{
  
font-family: "El Messiri", sans-serif;
font-size: 30px;
color: rgb(0, 0, 0);

}

.abut-txt{
  
font-family: "El Messiri", sans-serif;
font-size: 25px;
color: rgb(0, 0, 0);

}

.tour-txt{
  
font-family: "El Messiri", sans-serif;
font-size: 25px;
color: rgb(0, 0, 0);

}

.hname{

  
	font-size: 25px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 10px;
	font-family: "El Messiri", sans-serif;
	color: #2a3a93;
  padding-top: 10px;

}


	.package-img {
    position: relative;
}

.price-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: #fff;
    font-weight: bold;
    padding: 5px 12px;
    
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}


.herop {
    background: linear-gradient(to bottom, #fff 20%, rgba(0, 58, 195, 0.8) 60%), url("../img/package-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -201px;
}

.why-choose{
  z-index: 10;
}
.contents{
  background-color: white;
  margin-bottom: 10px;
  padding-bottom: 10px;
}



.content {
    position: relative;
    z-index: 1;
    padding: 150px 20px;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in-up.start-animation {
    opacity: 1;
    transform: translateY(0);
}

.exclusive-journeys {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.exclusive-journeys .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.exclusive-journeys .section-des {
  font-size: 1rem;
  line-height: 1.6;
}

/* Overlay sits above background but below text */
.exclusive-journeys .overlay {
  z-index: 1;
}

.exclusive-journeys .container-fluid {
  z-index: 2;
  position: relative;
}


.feature-box {
  background: #ffffff;
  transition: all 0.4s ease;
  cursor: pointer;
}
.feature-box .icon {
  color: #2a3a93;
  transition: transform 0.4s ease, color 0.4s ease;
}
.feature-box h5 {
  color: #333;
  font-weight: 600;
}
.feature-box p {
  font-size: 0.9rem;
  color: #555;
}

/* Background hover animation */
.animate-bg:hover {
  background: linear-gradient(135deg, #2a3a93, #3f51b5);
  color: #fff;
}
.animate-bg:hover .icon {
  transform: scale(1.3) rotate(10deg);
  color: #fff;
}
.animate-bg:hover h5, 
.animate-bg:hover p {
  color: #fff;
}

.price-boxa{
  font-size: 25px;
  color: red;
  font-weight: 700;
}