@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0;
	padding: 0;
}

body{
	background: linear-gradient(45deg, #000000, #181817, #553906,
			#292928, #000000);
}

button{
	cursor: pointer;
}
#card-overlay{
	background: rgba(0, 0, 0, 0);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
}

:root{
	--primary-color: #111111;
	--secondary-color: #B38B59;
	--font-main: "Cinzel Decorative", Sans-serif;
	--font-secondary: "Poppins", sans-serif;
	--gradient: linear-gradient(45deg, #000000, #181817, #553906,
			#292928, #000000);
	--gradient-btn: linear-gradient(to right, #e7cc63, #e2b553,
			#d38f40, #a66b2e);
}
#main{
	padding: 10px 70px 10px 70px;
}
@media screen and (max-width: 990px){
	#main{
		padding: 10px 40px 10px 40px;
	}
}
@media screen and (max-width: 770px){
	#main{
		padding: 10px 20px 10px 20px;
	}
}
@media screen and (max-width: 480px){
	#main{
		padding: 10px 20px 10px 20px;
	}
}

#sub-title{
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 500;
	color: var(--secondary-color);
}
#title{
	font-family: var(--font-main);
	font-size: 42px;
	font-weight: 700;
	color: var(--secondary-color);
}

/****************************/
/*hero section*/
#hero-form{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	width: 80%;
	border-radius: 10px;
	border: none;
	bottom: -25%;
	background: white;
	padding: 20px 30px 20px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
#hero-form p:first-child{
	font-weight: 600;
	font-size: 22px;
	width: 100%;
	color: black;
}
#hero-form-field{
	width: 30%;
	margin-top: 20px;
}
#hero-form-field label{
/*	color: var(--primary-color);*/
	color: black;
	font-weight: 600;
	font-size: 18px;
}
#hero-form-field input{
	width: 100%;
	height: 30px;
	padding-left: 0px;
	background: transparent;
	border: none;
	border-bottom: 1px solid black;
	outline: none;
	color: black;
}
#hero-form-field input::placeholder{
	color: gray;
}
#hero-form button{
	width: 150px;
	height: 50px;
	border-radius: 100px;
	background: var(--gradient-btn);
	border: none;
	outline: none;
	margin-top: 20px;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 16px;
}
@media screen and (max-width:480px){
	#hero-form{
		bottom: -30%;
	}
}
#hero-section{
	width: 100%;
	height: 100vh;
	background: white;
	/*background: var(--primary-color);*/
	background: white;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	position: relative;
	/*	border-radius: 0px 0px 100px 100px;*/
	background: var(--gradient);
}
#hero-section img{
	position: absolute;
	bottom: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#hero-left,
#hero-right {
	width: 50%;
	position: relative;
}
#hero-left p{
	color: white;
	text-align: center;
}
#hero-left p:first-child{
	font-size: 52px;
	font-weight: 700;
	font-family: var(--font-main);
}
#hero-left p:nth-child(2){
	font-size: 42px;
	font-weight: 400;
	margin-top: 10px;
	color: white;
}
#hero-left button{
	width: 250px;
	height: 55px;
	margin-top: 20px;
	border: none;
	border-radius: 30px 30px 30px 30px;
	background: var(--gradient-btn);
	position: relative;
	color: white;
	font-weight: 600;
	font-size: 20px;
	z-index: 10;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
#hero-left button:hover{
	background: rgba(255, 255, 255, 1.0);
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
}
#hero-left button,
#hero-left button:hover{
	transition: all 1s;
}
#hero-right{
	position: relative;
	height: 100vh;
}
#hero-right-img-container{
	height: 80vh;
	width: 80%;
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translateX(-50%);
}
#hero-section #hero-right img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
@media screen and (max-width: 480px){
	#hero-left{
		width: 100%;
	}
	#hero-right {
		width: 0%;
	}
	#hero-left p:first-child{
		font-size: 32px;
	}
	#hero-left p:nth-child(2){
		font-size: 20px;
	}
	#hero-left button{
		width: 150px;
		height: 40px;
	}
	#hero-right-img-container{
		height: 30vh;
		width: 50%;
	}
}

/*about-section*/
#about-section{
	width: 100%;
	position: relative;
	padding: 0.1px;
	margin-top: 100px;
}

#about-title-section{
	text-align: center;
	margin-top: 100px;
}

/*umrah card container*/
#umrah-card-container{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
	margin-top: 50px;
}

/*umrah card*/
#umrah-card{
	width: 30%;
	border: none;
	background: rgba(255, 255, 255, 1.0);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	position: relative;
	margin-top: 50px;
}
#umrah-card-img-container{
	height: 250px;
	padding: 20px 20px;
	position: relative;
}
#umrah-card-img-container img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	cursor: pointer;
}
#umrah-card-days{
	position: absolute;
	width: 130px;
	height: 130px;
	background: var(--secondary-color);
	transform: translate(-15%, -120%);
	left: 15%;
	top: 120%;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
}
#umrah-card-days p{
	font-size: 54px;
	font-weight: 600;
	text-align: center;
	color: white;
}
#umrah-card-days p span{
	text-align: right;
	font-size: 20px;
	font-weight: 500;
}
#umrah-card-content{
	position: relative;
	margin-top: 15px;
	padding: 20px 10%;
}
#umrah-card-content p:first-child{
	font-weight: 500;
	font-size: 30px;
	font-family: var(--font-main);
}
#umrah-card-content p:first-child a{
	text-decoration: none;
	color: black;
	cursor: pointer;
}
#umrah-card-content p:nth-child(2){
	font-weight: 300;
	font-size: 20px;
	color: #616A6B;
}
#umrah-card-content p:nth-child(2) span{
	font-weight: 500;
	font-size: 48px;
	color: black;
}
#umrah-card-content ul li{
	list-style: none;
	margin-top: 10px;
	font-size: 20px;
}
#umrah-card-content ul li span{
	margin-right: 10px;
}
#umrah-card-content button{
	padding: 5px 15px;
	height: 50px;
	width: 150px;
	color: white;
	background: var(--secondary-color);
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	border: none;
	margin-top: 10px;
}
#umrah-card #umrah-card-content .fa-circle-check{
	color: var(--primary-color);
}
@media screen and (max-width:990px){
	#umrah-card{
		width: 32%;
		margin-top: 50px;
	}
}
@media screen and (max-width:770px){
	#umrah-card{
		width: 48%;
		margin-top: 50px;
	}
}
@media screen and (max-width:480px){
	#umrah-card{
		width: 100%;
		margin-top: 50px;
	}
}

/*Why Choose Us*/
#why-choose-us-title{
	text-align: center;
	width: 100%;
	margin-top: 100px;
}
#why-choose-us{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	margin-top: 10px;
}
#why-choose-us-items{
	margin: 100px 0px;
}
#why-choose-us-items p{
	text-align: center;
	color: var(--secondary-color);
}
#why-choose-us-items p:first-child{
	font-weight: 600;
	font-size: 22px;
	font-family: var(--font-main);
}
#why-choose-us-items p:nth-child(2){
	font-weight: 300;
	font-size: 14px;
	color: #F6F6F6;
}
#why-choose-us-left{
}
#why-choose-us-center{

}
#why-choose-us-img-container{
	overflow: hidden;
	width: 300px;
	height: 300px;
	border-radius: 10% 10% 10% 10%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1.0);
}
#why-choose-us-img-container img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
#why-choose-us-right{
}
@media screen and (max-width: 770px){
	#why-choose-us{
		justify-content: center;
		align-items: center;
	}
	#why-choose-us-left{
		width: 100%
	}
	#why-choose-us-right{
		width: 100%;
	}
	#why-choose-us-items{
		margin: 50px 0px;
	}
}


/*Experience Section*/
#experience-section{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	height: 70vh;
}
#experience-card{
	width: 30%;
	height: 200px;
	border-radius: 30px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--secondary-color);
}
#experience-card p{
	margin: 20px 0px;
}
#experience-card p:first-child{
	font-size: 50px;
	font-weight: 900;
	color: var(--secondary-color);
}
#experience-card p:first-child span{
	font-size: 24px;
	font-weight: 600;
	color: white;
}
#experience-card p:nth-child(2){
	font-weight: 500;
	font-size: 18px;
	color: white;
}
@media screen and (max-width: 480px){
	#experience-section{
		height: 800px;
	}
	#experience-card{
		width: 100%;
		height: 200px;
		margin-top: 20px;
	}
}


/*Special Packages*/
#special-packages{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#special-card{
	width: 32%;
	height: 350px;
	border: none;
	overflow: hidden;
	border-radius: 20px;
	margin: 15px 0px;
	position: relative;
}
#special-card:nth-child(4){
	width: 66%;
}
#special-card a{
	text-decoration: none;
	color: black;
}
#special-card img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
#special-card #special-card-overlay{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 0%;
	background: var(--secondary-color);
	opacity: 0;
}
#special-card #special-card-overlay{
	height: 100%;
}
#special-card #special-card-overlay,
#special-card:hover #special-card-overlay {
	transition: all 0.5s;
}
#special-card #special-card-content{
	position: absolute;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 100px;
	border: none;
	border-radius: 20px;
	background: white;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
#special-card #special-card-content,
#special-card:hover #special-card-content{
	transition: all 0.5s;
}
#special-card #special-card-content{
	bottom: 10%;
}
#special-card #special-card-content p:first-child{
	font-weight: 600;
	font-size: 22px;
}
#special-card #special-card-content p:nth-child(2){
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
}
@media screen and (max-width: 770px){
	#special-card{
		width: 45%;
		height: 300px;
		margin: 15px 15px;
	}
	#special-card:nth-child(3){
		width: 100%;
	}
	#special-card:nth-child(4){
		width: 45%;
	}
}
@media screen and (max-width: 480px){
	#special-card{
		width: 100%;
		height: 300px;
		margin: 15px 15px;
	}
	#special-card:nth-child(4){
		width: 100%;
	}
}


/*Testimonial Section*/
#testimonial-section{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#testimonial-card{
	height: 350px;
	border-radius: 10px;
	border: none;	
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 100px 10px 100px;
	color: white;
}
#testimonial-left{
	width: 50%;
}
#testimonial-img-container{
	width: 60%;
	height: 300px;
	background: skyblue;
	perspective: 1000px;
	box-shadow: -10px -10px 3px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}
#testimonial-img-container img{
	width: 100%;
	height: 100%;
	transform: rotateY(-15deg);
}
#testimonial-right{
	width: 50%;
}
#testimonial-quote-icon{
	font-size: 44px;
}
#testimonial-stars{
	margin-top: 20px;
}
#testimonial-review{
	margin-top: 10px;
	font-size: 22px;
}
#testimonial-name{
	margin-top: 10px;
	font-weight: 700;
	font-size: 32px;
}

/*About us*/
#about-us-section{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
	margin-top: 50px;
}
#about-us-section-left{
	width: 45%;
}
#about-us-section-left p:first-child{
	font-size: 32px;
	font-weight: 600;
	font-family: var(--font-main);
	color: var(--secondary-color);
}
#about-us-section-left p:nth-child(2){
	font-size: 20px;
	font-weight: 400;
	color: #515A5A;
	color: white;
	text-align: justify;
	margin-top: 10px;
}
#about-us-section-center{
	width: 50%;
	height: 50vh;
}
#about-us-section-center img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
#about-us-section-right{
	width: 30%;
}
@media screen and (max-width:480px){
	#about-us-section{
		align-items: start;
		justify-content: space-between;
		margin-top: 50px;
		padding: 20px 10px 20px 10px;
	}
	#about-us-section-left{
		width: 100%;
	}
	#about-us-section-left p:nth-child(2){
		text-align: justify;
	}
	#about-us-section-center{
		width: 100%;
		margin-top: 20px;
	}
}


/*******************/
#card{
	height: 500px;
	width: 30%;
	border-radius: 0% 10% 0% 10%;
	border: none;
	background-color: whitesmoke;
	overflow: hidden;
	color: white;
	position: relative;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
}
#card #card-img{
	width: 100%;
	height: 200px;	
}
#card-img img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
}
#card-content{
	padding: 15px 20px;
	color: black;
}
#card-content h1{
	font-size: 24px;
	margin-bottom: 10px;
	color: black;
	font-family: var(--font-main);
}
#card-content li{
	list-style: none;
	font-style: italic;
	margin-top: 5px;
	color: black;
}
#card-content li strong{
	font-size: 24px;
	color: #F39C12;
}
#card-content button{
	padding: 10px 10px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	background-color: var(--primary-color);
	color: white;
	border-radius: 20px;
	margin-top: 20px;
	cursor: pointer;
	height: 50px;
}
#card-content button:first-child{
	width: 48%;
}
#card-content button:nth-child(2){
	width: 48%;
}
#night{
	background-color: var(--primary-color);
	padding: 10px 15px;
	position:absolute;
	font-weight: 600;
	font-size: 18px;
	top: 30px;
	left: 0px;
	width: 150px;
	text-align: center;
	color: white;
}

/***************************/
	#about-padding{
		padding: 50px 70px 50px 70px;
	}
	#breadcrumb-overlay{
		position: absolute;
		z-index: 99;
		width: 100%;
		height: 100%;
		bottom: 0%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 1.0), transparent);
	}
	#breadcrumb{
		height: 70vh;
		width: 100%;
		position: relative;
		text-align: center;
	}
	#breadcrumb img{
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
	}
	#breadcrumb-content{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 999;
	}
	#breadcrumb p:first-child{
		font-weight: 600;
		font-size: 72px;
		color: white;
	}
	@media screen and (max-width: 480px){
		#breadcrumb p:first-child{
			font-weight: 600;
			font-size: 42px;
			color: white;
		}
	}

/**********************/
#transport-section{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
#transport-section-left{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#transport-section-img-container{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
}
#transport-section-img-container img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
#transport-section-right{
	width: 45%;
	height: 100%;
	height: 100%;
	border-radius: 10px;
	padding: 10px 10px 10px 10px;
}
#transport-section-right p:first-child{
	color: var(--secondary-color);
	font-weight: 600;
	font-size: 32px;
}
#transport-section-right p:nth-child(2){
	color: var(--secondary-color);
	font-weight: 400;
	font-size: 18px;
	margin-top: 10px;
	text-align: justify;
}
#transport-section-right button{
	width: 150px;
	height: 50px;
	border: none;
	border-radius: 5px;
	background: var(--gradient-btn);
	margin-top: 20px;
	color: white;
}
@media screen and (max-width: 770px){
	#transport-section-left{
		width: 100%;
	}
	#transport-section-right{
		width: 100%;
		padding: 10px 10px 10px 10px;
	}
	#transport-section-right p:first-child{
		font-size: 32px;
	}
	#transport-section-right p:nth-child(2){
		font-size: 18px;
		margin-top: 10px;
		text-align: justify;
	}
}
@media screen and (max-width: 480px){
	#transport-section-left{
		width: 100%;
	}
	#transport-section-right{
		width: 100%;
		padding: 10px 10px 10px 10px;
	}
	#transport-section-right p:first-child{
		font-size: 32px;
	}
	#transport-section-right p:nth-child(2){
		font-size: 18px;
		margin-top: 10px;
		text-align: justify;
	}
}


/*********************************/
	#hotel-padding{
		padding: 50px 20px 50px 20px;
	}
	#hotel-container{
		margin-top: 100px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		position: relative;
	}
	#hotel-card{
		height: 450px;		
		width: 30%;
		position: relative;
		margin-bottom: 100px;
	}
	#hotel-img-container{
		width: 100%;
		height: 50%;
		overflow: hidden;
		position: relative;
	}
	#hotel-img-container img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	#night-container{
		position: absolute;
		bottom: 0%;
		left: 0%;
		width: 60%;
		height: 30px;
		background: #232424;
		display: flex;
		align-items: center;
		justify-content: left;
	}
	#night-container p:first-child{
		color: var(--secondary-color);
		font-weight: 600;
		font-size: 22px;
		margin-left: 20px;
	}
	#hotel-content{
		padding: 20px 20px 20px 20px;
		height: 50%;
		background: #232424;
		position: relative;
		color: #e5e7e9;
		/*display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		flex-direction: column;*/
	}
	#hotel-content p:first-child{
		font-size: 28px;
		font-weight: 600;
	}
	#hotel-content p:nth-child(2){
		margin-top: 10px;
		font-size: 16px;
	}
	#hotel-content #hotel-card-col-btn{
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 30px;
	}
	#hotel-content #hotel-card-col-btn p:first-child{
		font-size: 18px;
	}
	#hotel-content #hotel-card-col-btn p:first-child span{
		font-weight: 500;
		font-size: 22px;
		color: var(--secondary-color);
		margin-right: 5px;
	}
	#hotel-content button{
		background: var(--secondary-color);
		border: none;
		padding: 10px 20px 10px 20px;
		font-weight: 600;
		font-size: 15px;
		color: white;
	}
	@media screen and (max-width: 770px){
		#hotel-container{
			margin-top: 100px;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			position: relative;
		}
		#hotel-card{
			width: 45%;
			margin: 50px 10px;
		}
	}
	@media screen and (max-width: 480px){
		#hotel-card{
			width: 100%;
		}
	}


/******************************/
#visa-section{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
#visa-section-item{
	width: 49%;
	height: 400px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--secondary-color);
}
#visa-section-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#visa-section-item:hover img{
	transform: scale(1.1);
}
#visa-section-item img,
#visa-section-item:hover img{
	transition: all 1s;
}
#visa-section-item-content{
	position: absolute;
	bottom: 10%;
	left: 5%;
}
#visa-section-item-content p:first-child{
	font-weight: 600;
	font-size: 28px;
	color: white;
}
@media screen and (max-width:480px){
	#visa-section-item{
		width: 100%;
		height: 300px;
		margin-top: 10px;
		margin-bottom: 30px;
	}
}

/******************************/
	#pop-up-form{
		width: 100%;
		padding: 20px 20px 20px 20px;
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
		align-items: center;
		background: white;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
		margin-top: 50px;
		border-radius: 20px;
	}
	#pop-up-form p:first-child{
		font-weight: 600;
		font-size: 22px;
		color: black;
		width: 100%;
	}
	#pop-up-form input{
		width: 30%;
		height: 40px;
		outline: none;
		border: none;
		border-bottom: 1px solid gray;
		margin: 10px 10px;
	}
	#pop-up-form button{
		width: 150px;
		height: 40px;
		background: var(--gradient-btn);
		border: none;
		border-radius: 10px;
	}
	#pop-up-right .fa-solid,
	#pop-up-right .fa-brands{
		color: var(--secondary-color);
	}
	@media screen and (max-width: 480px){
		#pop-up-panel{
			width: 80%;
			height: 80%;
		}
		#pop-up-left{
			width: 100%;
			height: 50%;
		}
		#pop-up-right{
			width: 100%;
			margin-top: 20px;
		}
		#pop-up-content p:nth-child(2){
			margin-top: 10px;
		}
		#pop-up-form input{
			width: 40%;
		}
	}

	/****************************/
	#content-container{
		max-height: 70vh;
		background: transparent;
		overflow: auto;
		border-radius: 10px;
		position: relative;
		padding: 30px 30px 30px 30px;
		margin-top: 50px;
		text-align: justify;
		color: var(--secondary-color);
	}
	 #content-container::-webkit-scrollbar {
	    width: 12px;
	}
	#content-container::-webkit-scrollbar-track {
	    background: white;
	}
	#content-container::-webkit-scrollbar-thumb {
	    background-color: var(--secondary-color);
	    border-radius: 6px;
	    border: 3px solid white;
	}
	#content-container::-webkit-scrollbar-thumb:hover {
	    background-color: #555;
	}

	@media screen and (max-width: 480px){
		#content-container{
			padding: 30px 5px 30px 5px;
		}
	}
	