@import url('https://fonts.google.com/css2?family=Nunito:wght@200;300;400;600;700 & display=swap');

:root{
	--orange: #0066b2;
}

* {
	font-family: 'Nunito', sans-serif;
	margin: 0; padding: 0;
	box-sizing: border-box;
	text-transform: capitalize;
	outline: none; border: none;
	text-decoration: none;
	transition: all .2s linear;
}

*::selection{
	background: var(--orange);
	color: #fff;
}

html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 6rem;
	scroll-behavior: smooth;
}
.gallery-image {
    width: 100%; /* Set the width to 100% */
    height: 0; /* Set initial height to 0 */
    padding-top: 100%; /* Maintain 1:1 aspect ratio */
    object-fit: cover; /* Cover the entire container */
}

section{
	padding: 2rem 9%;
}

.heading{
	text-align: center;
	padding: 2.5rem 0;
}

.heading span{
	font-size: 3.5rem;
	background: rgba(255, 125, 100, .1);
	color: var(--orange);
	border-radius: .5rem;
	padding: .2rem 1rem;
	display: inline-block;
}

.heading span.space {
	background: none;
}
header{
	position: fixed;
	top: 0; left: 0;
	right: 0;
	background: #0066b2;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 9%;
}

header .logo{
	font-size: 2.5rem;
	font-weight: bolder;
	color: #fff;
	text-transform: uppercase;
}

header .logo span{
	color: var(--orange);
}

header .navbar a{
	color: #fff;
	font-size: 2rem;
	margin: 0.8rem;
}

header .navbar a:hover{
	color: #333;
}

#menu-bar{
color: #fff;
border: 0.1rem solid #fff;
border-radius: 0.5rem;
font-size: 3rem;
padding: 0.5rem 1.2rem;
cursor: pointer;
display: none;
}

.btn {
	display: inline-block;
	margin-top: 1rem;
	background: var(--orange);
	color: #fff;
	padding:.8rem 3rem;
	border: 2rem solid var(--orange);
	cursor: pointer;
	font-size: 1.7rem;
}

.btn:hover{
	background: rgba(255, 165, 0, .2);
	color: var(--orange);
}

.btn1 {
	display: inline-block;
	margin-top: 1rem;
	background: #fff;
	color: var(--orange);
	padding:.8rem 3rem;
	border: 2rem solid var(--orange);
	cursor: pointer;
	font-size: 1.7rem;	
}

.btn1:hover{
	background: var(--orange);
	color: #fff;
}

.home{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: relative;
	z-index: 0;
}

.home .content{
	text-align: center;
}

.home .content h3{
	font-size: 4.5rem;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
}

.home .content p{
	font-size: 2.5rem;
	color: #fff;
	padding:.5rem 0;
}

.home .video-container video{
	position: absolute;
	top: 0; left: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/*.home .controls{
	padding: 1rem;
	border-radius: 5rem;
	background: rgba(0, 0, 0, .7);
	position: relative;
	top: 10rem;
}*/

.home .controls .vid-btn{
	height: 2rem;
	width: 2rem;
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	margin: 0 .5rem;
}

.home .controls .vid-btn.active {
	background: var(--orange);
}


.packages .box-container{
	display: flex;
	flex-wrap: wrap;
}

.packages .box {
    flex: 1 1 calc(33.333% - 2rem);
    margin: 1.5rem; /* Increase the margin to add more space between the cards */
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}


.packages .box-container .box{
	flex :1 1 30rem;
	border-radius: .5rem;
	overflow: hidden;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.packages .box-container .box img{
	height: 25rem;
	width: 100%	;
	object-fit: cover;
}

.packages .box-container .box .content{
	padding: 2rem;
}

.packages .box-container .box .content h3{
	font-size: 2rem;
	color: #333;
}


.packages .box-container .box .content p{
	font-size: 1.7rem;
	color: #666;
	padding: 1rem 0;
}

.packages .box-container .box .content .price h4{
	font-size: 2.5rem;
	color: #0066b2;
	padding-top: 1rem;
}

.packages .box-container .box .content .price h6{
	font-size: 1.5rem;
	color: #333;
	/*padding-top: 1rem;*/
}

.packages .box-container .box .content .price .original-price{
	text-decoration: line-through;
}

.contact .row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.contact image {
    flex: 1 1 calc(33.333% - 2rem); /* Adjust the width as needed */
    margin: 1rem; /* This replaces the gap property */
}


.contact .row .image {
	flex:1 1 35rem;
}

.contact .row .image img{
	width: 100%;
}

.contact .row form {
	flex:1 1 50rem;
	padding: 2rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
	border-radius: .5rem;
}

.contact .row form .inputBox{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.contact .row form .inputBox input, .contact .row form textarea{
width: 49%;
margin: 1rem 0;
padding: 1rem;
font-size: 1.7rem;
color: #333;
background: #f7f7f7;
text-transform: none;
}

.contact .row form textarea{
	height: 15rem;
	resize: none;
	width: 100%;
}


.footer{
	background: #0a2351;
}

.footer .box-container{
	display: flex;
	flex-wrap: wrap;
}

.footer .box {
    flex: 1;
    max-width: calc(50% - 1.5rem); /* Adjust the width based on your preference */
    margin-bottom: 1.5rem;
    margin-right: 2rem; /* Margin between boxes */
    box-sizing: border-box;
}

.footer .box:last-child {
    margin-right: 0; /* Remove right margin from the last box */
}

.footer .box-container .box{
	padding: 1rem 0;
	flex: 1 1 25rem;
}

.footer .box-container .box h3{
	font-size: 2.5rem;
	padding: .7rem 0;
	color: #fff;
}

.footer .box-container .box p{
	font-size: 1.5rem;
	padding: .7rem 0;
	color: #eee;
}

.footer .box-container .box a{
	display: block;
	font-size: 1.5rem;
	padding: .7rem 0;
	color: #eee;
}

.footer .box-container .box a: hover{
	color: var(--orange);
	text-decoration: underline;
}

.footer .credit{
	text-align: center;
	padding: 2rem 1rem;
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: normal;
	color: #fff;
	border-top: .1rem solid rgba(255, 255, 255, .2);
}

.footer .credit span{
	color: #0066b2;
}

 /* Adjust the size of images */
.slick-carousel img {
    max-width: 100%; /* Ensure images don't overflow their containers */
    height: auto;
}

/* Optionally, adjust the container width */
.slick-carousel {
    max-width: 80%; /* Adjust as needed */
    margin: 0 auto; /* Center the carousel */
}



/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Background color */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Airplane icon */
.airplane {
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  background-image: url('https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.youtube.com%2F%40alanwarhajjumrahtourssurat8807&psig=AOvVaw2rxsbD0fqRE8ip59k-O8B5&ust=1709046790343000&source=images&cd=vfe&opi=89978449&ved=0CBMQjRxqFwoTCMigyMmlyYQDFQAAAAAdAAAAABAE'); /* Replace with your airplane icon */
  background-size: contain;
  background-repeat: no-repeat;
  animation: airplaneAnimation 1s linear infinite; /* Adjust animation duration as needed */
}

/* Animation for the airplane */
@keyframes airplaneAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



/*media queries*/

@media (max-width:1200px){
	html {
			font-size: 55%;
	}
}

@media (max-width:991px){
	header{
		padding: 2rem;
	}

	section{
		padding: 2rem;
	}
}

@media (max-width: 768px){
	#menu-bar{
		display: initial;
	}

	header .navbar{
		position: absolute;
		top: 100%; right: 0; left: 0;
		background: #0066b2;
		border-top: .1 solid rgb(255,255,255,.2);
		padding: 1rem 2rem;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	header .navbar.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		background: var(--orange);
		font-size: 2rem;
	}

	header .navbar a{
		display: block;
		border-radius: .5rem;
		padding: 1.5rem;
		margin: 1.5rem 0;
		background: var(--orange) ;
	}
}

@media(max-width:450px ){
	html{
		font-size: 50%;
	}

	.heading span{
		font-size: 2.5rem;
	}
}