*{
	margin: 0;
	padding: 0;
	font-size:18px;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

:root{
	--primary-accent-clr:linear-gradient(30deg, #fc4a1a, #f7b733);
	--header-bg-clr:var(--primary-accent-clr);
	--sunset-clr:#fc4a1a;
	--footer-bg-clr:var(--primary-accent-clr);
}

.rwd,.navMenuCont{
	display: none;
}

.images{
	width: 100%;
	height: 100%;
}

.col-50{
    width:50%;
}

.lAr-padd{
    padding:50px 10%;
}

.gap-20{
    gap: 20px;
}

.gap-50{
    gap: 50px;
}

.disp{
    display: flex;
}

.fix-disp{
    display: flex;
}

.disp-Ctr{
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-cols{
    flex-direction: column;
}

.flex-wrap{
    flex-wrap:wrap;
}

.tt-Cap{
    text-transform: capitalize;
}

.ta-Ctr{
    text-align: center;
}

.title{
    text-transform: capitalize;
    font-size:36px;
    font-family:Merienda-VariableFont;
}

.titleH2{
    text-transform: capitalize;
    font-size:32px;
}

.strong{
    font-size: 1.4em;
}

.csr-pointer{
	cursor: pointer;
}

.rtl{order: 1;}
.ltr{order: 2;}


#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 9999;
	overflow-y: hidden;
}
.preloader-container {
	width: 280px;
	height: 280px;
	border-radius: 30px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	animation: fadeInScale 1s ease-in-out, bannerCycle 8s infinite;
}
@keyframes fadeInScale {
	from { opacity: 0; transform: scale(0.8); }
	to { opacity: 1; transform: scale(1); }
}
@keyframes bannerCycle {
	0%, 20% { background-image: url('../images/add/addBanner.png'); }
	25%, 45% { background-image: url('../images/add/add2Banner.png'); }
	50%, 70% { background-image: url('../images/add/addBanner.png'); }
	75%, 100% { background-image: url('../images/add/add2Banner.png'); }
}
.preloader-line {
	margin-top: 20px;
	width: 280px;
	height: 8px;
	background: #ddd;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.preloader-progress {
	height: 100%;
	width: 0%;
	background:linear-gradient(30deg, #fc4a1a, #f7b733);
	border-radius: 20px;
	transition: width 0.03s linear;
}
.preloader-number-counting {
	margin-top: 15px;
	font-size: 1.5rem;
	color:#fc4a1a;
	font-weight: bold;
}

/*Image slider*/

.slider-container{
	position: relative;
	width:100%;
	height:90vh;
	overflow: hidden;
}

.slider-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	height: 90vh;
}

.slide img {
	width: 100%;
	height: 100%;
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	font-size:30px;
	padding:20px;
	cursor: pointer;
	z-index: 2;
	border-radius: 50%;
}

.arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.arrow-left {
	left: 5%;
}

.arrow-right {
	right: 5%;
}

.dots {
	text-align: center;
	position: absolute;
	bottom: 15px;
	width: 100%;
}

.dot {
	height: 12px;
	width: 12px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}

.dot.active {
	background-color: #717171;
}
/*header*/

#header-cont{
	background-image:var(--header-bg-clr);
	transition: all 0.3s ease;
	padding: 10px 5%;
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-active{
	position: fixed;
	width: 100%;
	z-index: 9999;
}

#header-cont .logo{
	width: 100px;
	display: flex;
}

#header-cont .st0 {
	fill: white;
	stroke: white;
	stroke-width: 21;
	stroke-miterlimit: 10;
}

#header-cont nav ul{
	gap: 100px;
	display: flex;
	align-items: center;
	justify-content:center;
}

#header-cont nav ul li{
	position: relative;
}

#header-cont nav ul li a{
	text-transform: capitalize;
	color:white;
	display: block;
}

#header-cont nav ul li ul{
	position: absolute;
	display: none;
	z-index:999;
	top: 100%;
	left:-50%;
	min-width: 200px;
	padding-top:25px;
}

#header-cont nav ul li:hover > ul {
	display: block;
}

#header-cont nav ul li ul li{
	background-image: linear-gradient(30deg, snow, whitesmoke);
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 5px;
	animation: floatRightLeft 0.4s ease forwards;
	transform: translateX(50px);
}

#header-cont nav ul li:hover ul li {
	animation: floatRightLeft 0.4s ease forwards;

}

#header-cont nav ul li ul li a{
	color: var(--sunset-clr);
}

#header-cont nav ul li ul li ul {
	position: absolute;
	top:-26px;
	left:95%;
	padding-left: 20px;
}

@keyframes floatRightLeft {
	to {
		transform: translateX(0);
	}
}

#header-cont .wb-user-icon, .rwd-user-icon, .menu-icon{
	border-radius: 50%;
	font-size: 20px;
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content:center;
	background-color: white;
	color:var(--sunset-clr);
}

#header-cont .getTouchCont{
	gap:30px;
	display: flex;
	align-items: center;
	justify-content:center;
}

#header-cont .wd-getTouchBtn{

	padding: 10px 20px;
	border-radius: 50px;
	color: var(--sunset-clr);
	text-transform: capitalize;
	background: linear-gradient(30deg, snow, whitesmoke);

}

.banner-cont{
	width: 100%;
	height: 90vh;
}

/*cards*/
.cards-sect{
	gap:50px 1%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.card-cont{
	gap:10px;
	width:24.2%;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-cont:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px 5px #fc4a1a;
}

.card-cont img{
    border-radius: 20px 20px 0 0;
    width: 100%;
    height:220px;
}

.card-cont .card-content{
    padding:12px;
    display: flex;
    flex-direction: column;
    gap:10px;
}

.card-cont .card-content h3{
	font-size:24px;
}

.card-cont .card-content a {
    display: inline-block;
    padding: 12px 25px;
    background-image: linear-gradient(30deg, #fc4a1a, #f7b733);
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
    font-weight: 500;
    margin-top: auto;
}
.card-cont .card-content a:hover {
    background-image: linear-gradient(30deg, #f7b733, #fc4a1a);
}


.why-choose-cont{
    padding:20px 0 0 50px;
    gap:20px;
}
.why-choose-cont:last-child li {
    position: relative;
    padding-left:35px;
}
.why-choose-cont:last-child li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-size: 1.5em;
    line-height: 1;
}

.why-choose-cont:last-child li h3{
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
}


.faq-cont{
    padding: 20px;
}
.faq-item {
    margin-bottom:15px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    border-color:#fc4a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faq-question {
    background-color: #f9f9f9;
    padding:8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: #444;
    font-size: 1.2em;
    border-bottom: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
}
.faq-question:hover {
    background-color: #eee;
}
.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.5em;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    padding:8px 12px;
    background-color: #fff;
    display: none;
    border-top: 1px solid #ddd;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    border-radius: 0 0 8px 8px;
}
.faq-answer p {
    text-align: left;
    margin-bottom: 0;
}

.form-faq-sect{
	align-items: flex-start;
	justify-content: flex-start;
}

.form-cont{
	padding:25px;
	width:500px;
}

.form-group{
    border:1px solid #aaa;
    border-radius: 8px;
}

.input{
    width: 100%;
    padding: 8px 10px;
    height: 40px;
    font-size:24px;
    border: none;
    background: none;
    outline: none;
}

.textarea{
    padding: 8px 10px;
    font-size: 24px;
    min-width: 100%;
    max-width: 100%;
    min-height: 15vh;
    max-height: 15vh;
    outline: none;
    border: none;
}

.input::placeholder,.textarea::placeholder{
    text-transform: capitalize;
}

.submit-btn{
    color: #fff;
    border: none;
    padding:12px;
    font-size: 20px;
    border-radius: 8px;
    letter-spacing:5px;
    text-transform: uppercase;
    background: radial-gradient(circle, rgba(16, 158, 56, 1) 0%, rgba(9, 84, 30, 0.88) 100%);
}

.submit-btn:hover {
    background: radial-gradient(circle, rgba(9, 84, 30, 1) 0%, rgba(16, 158, 56, 0.88) 100%);
}

.getATouch-sect{
	height:90vh;
}

.get-touch-img{
	width: 250px;
}

.getATouchIcon{
	color: var(--sunset-clr);
}

#footer-cont{
	padding: 60px 10% 20px 10%;
    background-image: var(--footer-bg-clr);
}

.footer-company-link{
	gap: 20px;
	display: flex;
	align-content: flex-start;
	justify-content: space-between;
}

.f-link-cont h3{
    text-transform: capitalize;
    font-size: 28px;
    color: white;
}

.f-link-cont a{
    text-transform: capitalize;
    color: white;
}

.f-link2{
	width: 33.33%;
}

.footer-services-link{
	gap: 20px;
	display: flex;
	align-content: flex-start;
	justify-content: space-between;
}

.f-social-links-cont{
    padding:20px 0;
    gap: 50px;
    display: flex;
	align-content:center;
	justify-content:center;
}

.f-social-links abbr a{
    display: flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    width:40px;
    height:40px;
    background-color:white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.f-social-links:hover{
    border-radius: 50%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.f-social-links abbr a i{
    color: var(--sunset-clr);
}


@media screen and (max-width:1200px){
	.lAr-padd{
	    padding:50px 5%;
	}
	#header-cont{padding:8px 3%;}

	#footer-cont{
		padding: 60px 5% 20px 5%;
	}
}

@media screen and (max-width:992px){
	#header-cont nav ul{gap: 40px;}

	.slider-container,.slide,.banner-cont,.getATouch-sect{height: auto;}

	.arrow{font-size:20px;padding: 15px;}

	.card-cont{
		width:32%;
	}

	.form-cont{
		padding:20px;
		width:100%;
	}

	
}

@media screen and (max-width:768px){
	.wd, #header-cont .getTouchCont{
		display: none;
	}

	.rwd{
		display: block;
	}

	.col-50{
	    width:100%;
	}

	.disp-Ctr,.footer-company-link,.footer-services-link{
		flex-direction: column;
	}

	.rtl{order: 2;}
	.ltr{order: 1;}


	#header-cont{
		padding:5px 2%;
	}

	.navMenuCont{
		gap:10px;
		display: flex;
		align-items: center;
		justify-content:center;
	}

	#header-cont nav{
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		background: white;
		transition: all 0.3s ease-in-out;
		z-index: 1000;
	}

	#header-cont nav ul {
		flex-direction: column;
		gap:10px;
	}

	#header-cont nav ul li{
		width: 100%;
	}

	#header-cont nav ul li a {
		color:white;
		background-image: linear-gradient(30deg, #fc4a1a, #f7b733);
		width: 100%;
		padding: 10px 30px;
		display: flex;
		justify-content: space-between;
	}

	#header-cont nav ul li ul {
		position: static;
		padding-left:0;
		padding-top:10px;
		width: 100%;
	}

	#header-cont nav ul li ul li{
		padding: 0;
	}

	#header-cont nav ul li ul li a{
		color: white;
	}

	#header-cont nav ul li ul li ul {
		position: static;
		padding-left:0;
	}

	.rwd-close-icon{
		display: flex;
		justify-content: flex-end;
	}

	.close-icon{
		border-radius: 50%;
		font-size: 30px;
		margin:15px;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content:center;
		background-color: white;
		color:var(--sunset-clr);
		border:1px solid #fc4a1a;
	}

	.card-cont{
		width:49%;
	}

	.get-touch-img{
		width: 100%;
	}

	.f-social-links-cont{
		gap: 20px;
	}

	.f-link2{
		width:100%;
	}
}

@media screen and (max-width:500px){
	.card-cont{
		width:100%;
	}

	.card-cont img{
		height: 280px;
	}
}