
@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');

@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Caveat:wght@400..700&family=Edu+NSW+ACT+Cursive:wght@400..700&family=Kalam:wght@300;400;700&family=Leckerli+One&family=Marcellus&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+HU:wght@100..400&family=Poetsen+One&display=swap');


:root {
	--primary-color: #2596be;
  --second-color:#d43b7c;
  --primary-rgb: 37, 150, 190;
  --second-rgb: 212, 59, 124;
	--text-color: #585858;
	--yellow-color: #faaf40ff;
	--white: #fff;
	--black: #000;
	--btn-color: #b32137;
	--bg-color: #e9ecefff;
	--youtube: #FF0000;
	--instagram: #C32AA3;
	--whatsapp: #25D366;
	--facebook: #1877F2;
	--google: #ea4335;
	--tripadvisor: #00af87;
	--tiktok: #010101;
	--email: #E87715;
	--phone: #521A97;
	--font-family: "Caveat", cursive;
	--font-secondary: "Playfair", serif;

}

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: "";
  position: fixed; /* or absolute */
  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: var(--primary-color);
  text-align: center;
}
@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: var(--primary-color);
}
body header .topbar ul li:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
body header .navbar {
  background-color: transparent;

  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;

}
@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;

}
@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: var(--primary-color);
  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: var(--primary-color);
  }
}
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: var(--primary-color);
  }
}
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: var(--second-color);
  border-radius: 0;
  font-family: "Raleway", serif;
  border: 1px solid var(--second-color);
  display: block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;

}
body .btn-blue:active, body .btn-blue:focus, body .btn-blue:hover {
  border: 1px solid var(--primary-color) !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: var(--primary-color);
  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: var(--second-color);
  border-radius: 0;
  font-family: "Raleway", serif;
  border: 1px solid var(--second-color);
  display: block;
  width: auto;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  font-family: "El Messiri", sans-serif;
}
body .btn-blue-b:active, body .btn-blue-b:focus, body .btn-blue-b:hover {
  border: 1px solid var(--primary-color)!important;
  background-color: transparent;
  color: rgb(255, 255, 255) !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: var(--primary-color);
}
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: white;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--primary-color);
  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 white !important;
  color: var(--primary-color) !important;
}
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: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  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: 50px;
  font-weight: 400;
  text-align: center;
  margin: 0;
font-family: "Caveat", cursive;
  color: black;
  padding-bottom: 10px;
  line-height: 35px;
}
@media (max-width: 768px) {
  body .section-title {
    font-size: 35px;
    line-height: 28px;
  }
}
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 .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(180deg, rgba(var(--primary-rgb), 0) 25%, rgba(var(--primary-rgb), 0.9) 100%);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: 0.3s;
}

body .destination-list-page .destination-item .overlay {
  content: "";
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0) 25%, rgba(var(--primary-rgb), 0.9) 100%);
  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: 35px;
  font-family: "Caveat", cursive;
  text-align: center;
}
body .destination .destination-swiper .swiper-slide .destination-item .content p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}
body .destination .destination-swiper .swiper-slide .destination-item .content a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--second-color);
  padding: 5px 10px 5px 10px;
}

body .destination .destination-swiper .swiper-slide .destination-item .content a:hover {
  background-color: var(--primary-color);
  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 {
  height: auto;
 
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  overflow: hidden;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-img {
  height: 265px;
  overflow: hidden;
  position: relative;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 h5 {
  font-size: 39px;
  font-weight: 400;
  margin: 8px 0 10px;
  line-height: 1.2;
  font-family: "Caveat", cursive;
  color: var(--primary-color);
  text-align: center;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge.badge-popular {
  background: linear-gradient(135deg, #1dbf73, #129b5a);
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge.badge-seller {
  background: linear-gradient(135deg, #2d8bd1, var(--second-color));
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge.badge-offer {
  background: linear-gradient(135deg, #7b2cbf, var(--second-color));
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .duration-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--second-color);
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .duration-bar span {
  font-size: 14px;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .content {
  padding: 16px;
  background: #f5f6f8;
  display: flex;
  flex-direction: column;
  min-height: 150px;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #1f2937;
  font-weight: 600;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .meta-row .rating-stars {
  color: #faaf40ff;
  white-space: nowrap;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .highlight-line {
  color: #3f3f46;
  margin: 0 0 12px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row li {
  font-size: 12px;
  color: #1f2937;
  background: #e8ecf2;
  border: 1px solid #d5deea;
  padding: 4px 9px;
  border-radius: 999px;
  line-height: 1.25;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row li i {
  color: var(--primary-color);
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .price-line {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .price-line span {
  font-size: 49px;
  color: var(--second-color);
  text-shadow: 0 2px 8px rgba(var(--second-rgb), 0.2);
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a {
  flex: 1;
  min-width: 0;
  text-align: center;
  border-radius: 9px;
  font-weight: 700;
  padding: 9px 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary-color), var(--second-color));
  border: 1px solid transparent;
}
body .package .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a.btn-outline {
  color: var(--primary-color);
  background: #fff;
  border: 1px solid var(--primary-color);
}

body .package.package-showcase {
  padding-top: 16px;
}

body .package.package-showcase .package-showcase-head {
  margin-bottom: 14px;
}

body .package.package-showcase .section-title {
  font-size: clamp(42px, 3.4vw, 58px);
  line-height: 1.1;
  margin-bottom: 12px;
}

body .package.package-showcase .section-des {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.45;
}

body .package.package-showcase .package-swiper {
  position: relative;

}

body .package.package-showcase .package-swiper .swiper-slide {
  height: auto;

}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 {
  border-radius: 14px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);

  overflow: hidden;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-img {
  height: 265px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: none;
  margin: 10px 10px 0;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-img img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge {
  left: 0;
  top: 0;
  padding: 10px 16px 10px 12px;
  border-radius: 0 0 10px 0;
  background: linear-gradient(90deg, var(--primary-color), rgba(var(--primary-rgb), 0.78));
  font-size: 15px;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-transform: none;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge span {
  opacity: 0.8;
  margin: 0 2px;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .featured-badge::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: rgba(var(--primary-rgb), 0.85) transparent transparent transparent;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .top-rating {
  display: none;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .top-rating i {
  color: #ffd56a;
  margin-right: 4px;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .duration-bar {
  display: none;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .content {
  background: var(--white);
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: center;
  align-items: center;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .trip-duration {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .trip-duration i {
  margin-right: 4px;
  color: var(--primary-color);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 h5 {
  font-family: var(--font-family);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.06;
  color: var(--primary-color);
  margin: 0;
  text-align: center;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .meta-row {
  display: none;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .highlight-line {
  text-align: center;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 2px;
  min-height: 0;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row.quick-info-divider {
  justify-content: center;
  gap: 0;
  margin: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  width: 100%;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row.quick-info-divider li {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  position: static;
  white-space: nowrap;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row.quick-info-divider li + li::before {
  display: inline-block;
  content: "|";
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.32);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row.quick-info-divider li i {
  color: var(--primary-color);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .price-line {
  display: none;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 {
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.26);
  margin-top: 6px;
  width: 100%;
  display: flex;
}

body .package.package-showcase .package-swiper .swiper-button-prev,
body .package.package-showcase .package-swiper .swiper-button-next {
  top: 48%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  margin-top: 0;
  z-index: 10;
  
}

body .package.package-showcase .package-swiper .swiper-button-prev {
  left: 0;
}

body .package.package-showcase .package-swiper .swiper-button-next {
  right: 0;
}

body .package.package-showcase .package-swiper .swiper-button-prev:after,
body .package.package-showcase .package-swiper .swiper-button-next:after {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  background-color: rgba(var(--primary-rgb), 0.85);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a {
  border-radius: 0;
  padding: 11px 12px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46px;
  white-space: nowrap;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a.btn-outline {
  border: 0;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a.btn-primary {
  border: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--second-color));
}

body .package.package-showcase .package-swiper .swiper-slide.swiper-slide-active .package-item.package-card-v2,
body .package.package-showcase .package-swiper .swiper-slide.swiper-slide-next .package-item.package-card-v2 {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: none;
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: rgba(var(--primary-rgb), 0.6);
}

body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2:hover .package-img img {
  transform: scale(1.05);
}

@media (max-width: 999px) {
  body .package.package-showcase .section-title {
    font-size: 36px;
  }

  body .package.package-showcase .section-des {
    font-size: 16px;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-img {
    height: 210px;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .trip-duration {
    font-size: 13px;
    gap: 10px;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 h5 {
    font-size: 30px;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .highlight-line {
    font-size: 14px;
    min-height: 0;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row.quick-info-divider li {
    font-size: 12px;
  }

  body .package.package-showcase .package-swiper .swiper-slide .package-item.package-card-v2 .package-cta-group-v2 a {
    font-size: 12px;
    padding: 9px 10px;
    min-height: 42px;
  }

  body .package.package-showcase .package-swiper .swiper-button-prev,
  body .package.package-showcase .package-swiper .swiper-button-next,
  body .package.package-showcase .package-swiper .swiper-button-prev:after,
  body .package.package-showcase .package-swiper .swiper-button-next:after {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
  }

  body .package.package-showcase .package-swiper .swiper-button-prev,
  body .package.package-showcase .package-swiper .swiper-button-next {
    display: none;
  }
}
body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}
body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2:hover .package-img img {
  transform: scale(1.05);
}
body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2:hover .package-cta-group-v2 a.btn-primary {
  filter: brightness(1.08);
}
body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2:hover .package-cta-group-v2 a.btn-outline {
  color: #fff;
  background: var(--primary-color);
}
body .package:not(.package-showcase) .package-swiper .swiper-slide.swiper-slide-active .package-item.package-card-v2,
body .package:not(.package-showcase) .package-swiper .swiper-slide.swiper-slide-next .package-item.package-card-v2 {
  transform: scale(1.03);
  border-color: var(--primary-color);
  box-shadow: 0 22px 46px rgba(var(--primary-rgb), 0.2);
}
@media (max-width: 999px) {
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2,
  body .package:not(.package-showcase) .package-swiper .swiper-slide.swiper-slide-active .package-item.package-card-v2,
  body .package:not(.package-showcase) .package-swiper .swiper-slide.swiper-slide-next .package-item.package-card-v2 {
    transform: none;
  }
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2 h5 {
    font-size: 33px;
  }
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2 .meta-row {
    font-size: 12px;
  }
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2 .highlight-line {
    font-size: 15px;
  }
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2 .quick-info-row li {
    font-size: 11px;
  }
  body .package:not(.package-showcase) .package-swiper .swiper-slide .package-item.package-card-v2 .duration-bar span {
    font-size: 13px;
  }
  body .package .package-swiper .swiper-slide .package-item.package-card-v2 .price-line {
    font-size: 13px;
  }
  body .package .package-swiper .swiper-slide .package-item.package-card-v2 .price-line span {
    font-size: 34px;
  }
}

.book-txi {
  text-align: center;
  margin-top: 5px;
  padding-top: 5px;
}

.book-taxi a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 5px 25px 5px 25px;
  background-color: var(--second-color);
}

.book-taxi a:hover {
  color: #ffffff;
background-color:var(--primary-color);
}

body .news {

  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;
	color: var(--primary-color);

}
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: var(--primary-color);
  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: 50px;
  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 {
  display: flex;
  margin-bottom: 20px;
  margin-left: 15px;
}
@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: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body .preloader img {
  width: 150px;
  height: auto;
  animation: preloader-zoom 2.2s ease-in-out infinite;
  filter: none;
}

@keyframes preloader-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
  100% {
    transform: scale(1);
  }
}

.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 {
  padding: 150px 0 0;
  background: linear-gradient(135deg, var(--primary-color), #011453); /* Gradient from dark to lighter gray */
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

@media (max-width: 999px) {
  body footer {
    text-align: center;
  }
}
body footer h5 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;

}
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;

}
body footer .links li i {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

body footer .footer-contact-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

body footer .footer-contact-highlight li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 18px;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

body footer .footer-contact-highlight li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 24px;
  font-weight: 700;
}

body footer .footer-contact-highlight li i {
  font-size: 30px;
  line-height: 1;
  color: #ffd3eb;
}

body footer .footer-contact-highlight li a,
body footer .footer-contact-highlight li .footer-phone {
  font-size: 20px;

  line-height: 0.1;
  color: #fff;
  font-family: 'Handlee', cursive !important;

}

@media (max-width: 999px) {
  body footer .footer-contact-highlight {
    gap: 12px;
  }

  body footer .footer-contact-highlight li {
    width: 100%;
    justify-content: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  body footer .footer-contact-highlight li:not(:last-child)::after {
    display: none;
  }

  body footer .footer-contact-highlight li a,
  body footer .footer-contact-highlight li .footer-phone {
    font-size: 18px;
  }
}
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: var(--primary-color);
}
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 .footer-social-highlight {
  margin: 18px 0 0;
  display: flex;
  justify-content: center;
  padding-left: 0;
}
body footer .footer-social-highlight li {
  margin: 0;
}
body footer .footer-social-highlight a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body footer .footer-social-highlight a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}
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: 50px;
	font-weight: 400;
	text-align: center;
	font-family: "Caveat", 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: 40px;
    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: var(--primary-color);
  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: var(--primary-color);
}
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: linear-gradient(180deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.65));
  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;
  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: var(--primary-color);
  font-size: 18px;
  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: 35px;
font-family: "Caveat", cursive;
text-align: center;
}
body .page .destination-item .content p {

	font-size: 16px;
	font-weight: 400;
	color: white;
	margin-bottom: 10px;
  text-align: center;

}
body .page .destination-item .content a {

	color: rgb(255, 255, 255);
	font-size: 16px;
	font-weight: 400;
	background-color: var(--second-color);
	padding: 5px 10px 5px 10px;

}


body .page .destination-item .content .overlay {
	content: "";
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.62), rgba(var(--primary-rgb), 0));
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: 0.3s;
}

body .page .destination-item .content a:hover{


  background-color: var(--primary-color);
  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: 40px;
  line-height: 35px;
font-family: var(--font-family);
  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 var(--primary-color);
  color: var(--primary-color);
  border-radius: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 25px;
}
body .page .pagination .page-item .page-link:hover {
  background-color: var(--primary-color);
  color: white;
}
body .page .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  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: var(--primary-color);
  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: var(--primary-color);
}
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: var(--primary-color);
}
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: var(--primary-color);
  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: var(--primary-color);
  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: 30px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 10px;
	font-family: "Caveat", cursive;
	color: var(--primary-color);

}
body .page .package-item .content {
  padding: 20px;
  background-color: white;
}
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: #ffffff;
  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.package-list-page .package-item.package-card-v2 {
  border: 1px solid rgba(var(--primary-rgb), 0.6);
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .page.package-list-page .package-item.package-card-v2 .package-img {
  height: 250px;
  position: relative;
}
body .page.package-list-page .package-item.package-card-v2 .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
body .page.package-list-page .package-item.package-card-v2 .featured-badge {
  left: 12px;
  top: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--second-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  z-index: 2;
}
body .page.package-list-page .package-item.package-card-v2 .top-rating {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
body .page.package-list-page .package-item.package-card-v2 .top-rating i {
  color: #ffd56a;
  margin-right: 4px;
}
body .page.package-list-page .package-item.package-card-v2 .content {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex: 1;
}
body .page.package-list-page .package-item.package-card-v2 h5 {
  font-family: var(--font-family);
  font-size: 31px;
  line-height: 1.25;
  color: #1d2e39;
  margin: 0;
}
body .page.package-list-page .package-item.package-card-v2 .highlight-line {
  text-align: center;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
body .page.package-list-page .package-item.package-card-v2 .quick-info-row.quick-info-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  flex-wrap: wrap;
  padding: 0;
}
body .page.package-list-page .package-item.package-card-v2 .quick-info-row.quick-info-divider li {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--primary-rgb), 0.18);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}
body .page.package-list-page .package-item.package-card-v2 .quick-info-row.quick-info-divider li i {
  color: var(--primary-color);
}
body .page.package-list-page .package-item.package-card-v2 .package-cta-group-v2 {
  width: 100%;
  display: flex;
  gap: 8px;
  margin-top: auto;
}
body .page.package-list-page .package-item.package-card-v2 .package-cta-group-v2 a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46px;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
body .page.package-list-page .package-item.package-card-v2 .package-cta-group-v2 a.btn-outline {
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
}
body .page.package-list-page .package-item.package-card-v2 .package-cta-group-v2 a.btn-primary {
  border: 1px solid var(--second-color);
  background: var(--second-color);
  color: #fff;
}
body .page.package-list-page .package-item.package-card-v2:hover .package-img img {
  transform: scale(1.05);
}

@media (max-width: 999px) {
  body .page.package-list-page .package-item.package-card-v2 .package-img {
    height: 210px;
  }
  body .page.package-list-page .package-item.package-card-v2 h5 {
    font-size: 26px;
  }
  body .page.package-list-page .package-item.package-card-v2 .highlight-line {
    font-size: 13px;
  }
  body .page.package-list-page .package-item.package-card-v2 .package-cta-group-v2 a {
    min-height: 42px;
    font-size: 12px;
    padding: 9px 10px;
  }
}

body .page .page-form {
  margin-bottom: 50px;
  background: var(--primary-color);
  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: var(--primary-color);
  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: 40px;
  line-height: 22px;
  font-family: var(--font-family);
  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: var(--primary-color);
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  padding: 3px 8px;
  border: none;
  font-size: 12px;
  border: 1px solid var(--primary-color);
  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: var(--primary-color);
}


.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: 60px;
	font-weight: 400;
	text-align: center;
	font-family: var(--font-family);
	color: black;
	line-height: 35px;

}


.phone-txt{
  font-family: "El Messiri", sans-serif;

  font-size: 30px;
}

.footer-txt{
  color: #fff;
  font-size: 20px;
}

.footer-q{
  	font-family: "Caveat", cursive;
    font-size: 50px;
}

.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;

  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;
}



.hore-txtp{
font-family: "El Messiri", sans-serif;
font-size: 20px;
color: white;
}

.contact-txt{
  

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);

}

.top-c {
  display: flex;            /* enable flexbox */
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  text-align: center;       /* center inline text */
  flex-wrap: wrap;          /* optional: wrap items on small screens */
  width: 100%;              /* full width container */
}


.custom-shape-divider-bottom-1755270533 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1755270533 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 35px;
}

.custom-shape-divider-bottom-1755270533 .shape-fill {
    fill: #FFFFFF;
}


/* Fullscreen slider */
#heroCarousel .carousel-item {
  height: 80vh;
  position: relative;
}

/* Slider images */
#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption styling without background */
#heroCarousel .carousel-caption {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  text-align: center;
  color: #fff; /* You can change this color */
  padding: 0; /* remove background padding */
  right: -35%;
}

/* Heading and paragraph */
#heroCarousel .carousel-caption h5 {
  font-size: 4.5rem; /* change font size */

  font-family: "Caveat", cursive;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.85),
    0 4px 24px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 1);
}

#heroCarousel .carousel-caption p {
  font-size: 1.2rem; /* change font size */
  line-height: 1.6;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.9),
    0 2px 14px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.22);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 6px;
}

/* Custom arrows */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  background-size: 50%, 50%;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
}

/* Indicators styling */
#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

#heroCarousel .carousel-indicators .active {
  background-color: #fff;
}

/* Responsive text */
@media (max-width: 1024px) {
  #heroCarousel .carousel-caption h5 {
    font-size: 2rem;
  }
  #heroCarousel .carousel-caption p {
    font-size: 1rem;
    padding: 4px 12px;
  }
}

@media (max-width: 768px) {
  #heroCarousel .carousel-caption h5 {
    font-size: 2rem;
  }
  #heroCarousel .carousel-caption p {
    font-size: 0.9rem;
    padding: 4px 10px;
  }
}



.quote-section {
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 10px;
}



.quote-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

}

.quote-section h1 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Grid layout for the form fields */
.quote-section .quote-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  grid-auto-rows: auto;
  gap: 1rem;
  align-items: end;
}

/* Form group styling */
.quote-section .form-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.quote-section .form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
}

.quote-section .form-group input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background-color: #ffffff;
  color: #333333;
  outline: none;
}

.quote-section .form-group input::placeholder {
  color: #8c8c8c;
}

.quote-section input[type='date'] {
  line-height: 1.25;
  cursor: pointer;
}

.quote-section .form-group input:focus {
  border-color: var(--second-color);
  box-shadow: 0 0 0 2px rgba(var(--second-rgb), 0.18);
}

/* Button styling */
.quote-section .btn-quote {
  background-color: var(--second-color);
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
  align-self: end;
}

.quote-section .btn-quote:hover {
  background-color: var(--primary-color);
}

/* Responsive behavior */
@media (max-width: 768px) {
  .quote-section .quote-form {
    grid-template-columns: 1fr;
  }
  .quote-section .btn-quote {
    width: 100%;
  }
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}