
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}

:root {
	--bg-color: #ffffff;
	--text-color: #000000;
	--main-color: #08338f;
	--second-color: gray;
	--other-color: #12141c;
	--h1-font: 144px;
	--h2-font: 56px;
	--h4-font: 20px;
	--h3-font:15px;
	--p-font: 12.8px;
	--about-h2: 42px;
	--predf-h1:64px;
	--predf-h2:64px;
}

body {
	background: var(--bg-color);
	color: var(--text-color);
}

header {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 15px 16%;
	border-bottom: 1px solid transparent;
	transition: all .40s ease;
}
/* Loading Overlay */
/*https://codepen.io/vdel26/pen/DOXzEo*/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw; /* Use viewport width */
	height: 100vh; /* Use viewport height */
	background-color: rgba(255, 255, 255, 1); /* White background */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999; /* Ensure it's above other content */
	opacity: 1; /* Ensure it's visible initially */
	transition: opacity 1s ease; /* Add transition for opacity change */
	overflow: hidden; /* Hide scrollbar */
  }
  
  .spinner {
	position: relative;
	width: 54px;
	height: 54px;
	display: inline-block;
	background: #74a6f2;
	padding: 10px;
	border-radius: 10px;
  }
  
  .spinner div {
	width: 6%;
	height: 16%;
	background: #FFF;
	position: absolute;
	left: 49%;
	top: 43%;
	opacity: 0;
	border-radius: 50px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	animation: fade 1s linear infinite;
  }
  
  @keyframes fade {
	from {
	  opacity: 1;
	}
  
	to {
	  opacity: 0.25;
	}
  }
  
  .spinner div.bar1 {
	transform: rotate(0deg) translate(0, -130%);
	animation-delay: 0s;
  }
  
  .spinner div.bar2 {
	transform: rotate(30deg) translate(0, -130%);
	animation-delay: -0.9167s;
  }
  
  .spinner div.bar3 {
	transform: rotate(60deg) translate(0, -130%);
	animation-delay: -0.833s;
  }
  
  .spinner div.bar4 {
	transform: rotate(90deg) translate(0, -130%);
	animation-delay: -0.7497s;
  }
  
  .spinner div.bar5 {
	transform: rotate(120deg) translate(0, -130%);
	animation-delay: -0.667s;
  }
  
  .spinner div.bar6 {
	transform: rotate(150deg) translate(0, -130%);
	animation-delay: -0.5837s;
  }
  
  .spinner div.bar7 {
	transform: rotate(180deg) translate(0, -130%);
	animation-delay: -0.5s;
  }
  
  .spinner div.bar8 {
	transform: rotate(210deg) translate(0, -130%);
	animation-delay: -0.4167s;
  }
  
  .spinner div.bar9 {
	transform: rotate(240deg) translate(0, -130%);
	animation-delay: -0.333s;
  }
  
  .spinner div.bar10 {
	transform: rotate(270deg) translate(0, -130%);
	animation-delay: -0.2497s;
  }
  
  .spinner div.bar11 {
	transform: rotate(300deg) translate(0, -130%);
	animation-delay: -0.167s;
  }
  
  .spinner div.bar12 {
	transform: rotate(330deg) translate(0, -130%);
	animation-delay: -0.0833s;
  }
  

::-webkit-scrollbar {
	width: 12px; /* You can set the width of the scrollbar */
  }
  
  /* This styles the scrollbar handle */
  ::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	border: 1px solid darkgrey;
	border-radius: 10px; /* The roundness of the scroll thumb */
	
  }
  
  /* This styles the scrollbar track */
  ::-webkit-scrollbar-track {
	background: white; /* The color of the scroll track */
	border-radius: 10px; /* The roundness of the scroll track */
  }
  
  /* Optional: Styles the scrollbar upon hover */
  ::-webkit-scrollbar-thumb:hover {
	background: lightgrey; /* Color of the scroll thumb when hovered over */
  }

.logo img {
	
	height: 37px;
	width: auto; /* or you could set a specific width in pixels */
  }

.navbar {
	display: flex;
}
.language-selector{
	outline-color: #08338f;
	cursor: pointer;
	font-weight: 600;
    border-radius: 10Px;
    width: 50%;
    padding: 2px;
    background: transparent;
    border: 1px solid black;
    color: black !important;
    text-align: center;
}
.lang-select:hover{
	cursor: default;
	background-color: transparent !important;
}
.thank-you-containter{
    background: #F2F2F2;
    padding: 40px;
    border-radius: 20px;
}


.navbar a {
	color: black;
	font-size: var(--p-font);
	font-weight: 600;
	padding: 10px 25px;
	margin: 0 2px;
	border-radius: 0.5rem;
	transition: all .40s ease;
}
@keyframes textShadowMove {
	from {
	  text-shadow: -9px 4px 8px #0065ff;
	}
	to {
	  text-shadow: 9px 4px 8px #0065ff;
	}
  }
  
  
  
  .navbar a:hover, .navbar a.active {
	text-shadow: 9px 4px 8px #0065ff; /* Apply the same style for hover and active states */
}



#menu-icon {
	font-size: 36px;
	color: var(--text-color);
	z-index: 10001;
	cursor: pointer;
	display: none;
}

section {
	padding: 160px 5% 90px;
}


.home {
	
	height: 100vh;
	width: 100%;
	position: relative;
	background: url(../img/home-bg.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.home-text h1 {
	font-size: var(--h1-font);
	letter-spacing: 2px;
	font-family: 'Remhu';
	font-style: normal;
	font-weight: 400;
	color: #000000;
}

span {
	color: var(--main-color);
}

.home-text h4 {
	color: var(--main-color);
	font-size:var(--h4-font);
	font-weight: 600;
	margin-bottom: -10px;
}

.home-text h3 {
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
    padding: 5px;
    border-radius: 10px;
    margin-top: -10px;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: var(--h3-font);
    line-height: 22px;
    color: #ffffff;
    background: #0000002e;
}

.home-text img{
width: 480px;
margin-top: 30px;
margin-bottom: 6px;
}

.btn {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	font-size: 17px;
	font-weight: 500;
	background: #0A2239;
	color: white;
	transition: all .40s ease;
}

.btn:hover {
	backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
	transform: scale(1.01) translateY(-5px);
	background: transparent;
	color: #0A2239;
	border: 1px solid #0A2239;
}

.btn2 {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	margin-left: 30px;
	font-size: 17px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}


@media (max-width: 450px) {
.btn2 {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	margin-left: 0px;
	font-size: 17px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}
}

.btn2:hover {
	backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
	transform: scale(1.01) translateY(-5px);
	background: transparent;
	color: #0A2239;
	border: 1px solid var(--main-color);
}

.btn-lan {
	padding: 10px;
	border-radius: 30px;
	font-size: 12.8px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}

.btn-lan:hover{
	background: transparent;
	color: var(--main-color);
	border: 1px solid var(--main-color);
}
.btn-lan a{
	text-decoration: none;
	color: white;
}







header.sticky {
	padding: 10px 16%;
	background: white;
	box-shadow: -2px 0px 6px 0px #a0a0a0;
}








.last-text p {
	text-align: center;
	padding: 15px;
	color: var(--second-color);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
}


.last-text a{
	text-align: center;
    text-decoration: none;
    color: var(--second-color);
}
.last-text a:hover{
    color: var(--main-color);
    font-weight: 600;
}



.text-shadow{
	text-shadow: 0 0 20px white;
}



.top {
	position: fixed;
	bottom: 2.1rem;
	right: 2.1rem;
}

.top svg {
	color: white;
	background: var(--main-color);
	font-size: 20px;
	padding: 10px;
	border-radius: 80px;
	width: 30px;
	height: 30px;
}

@media (max-width: 1325px) {
	header {
		background-color: transparent;
		padding: 16px 3%;
	}

	header.sticky {
		padding: 8px 3%;
	}

	section {
		padding: 130px 3% 60px;
	}
}

@media (max-width: 970px) {
	:root {
	    
		--h1-font: 112px;
		--h2-font: 46.4px;
		--h3-font:13px;
		--h4-font:15px;
		--p-font: 16px;
		--about-h2: 39px;
		--predf-h1:39px;
		--predf-h2:35px;
	}
	
	
	.home-text img{
		width: 350px;

		}


	section {
		padding: 70px 1% 60px;
	}

	.home {
		height: 85vh;
	}

	.about {
		grid-template-columns: 1fr;
	}

	.main-text {
		grid-template-columns: 1fr;
	}

	.about-img {
		display: none;
	}
	

	.contact {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 830px) {
	#menu-icon {
		display: block;
	}

	.navbar {
		box-shadow: 0 0 6px black;
    
    position: absolute;
    top: -600px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    text-align: left;
    transition: all .40s ease;
}

	.navbar a {
		display: block;
		/*padding: 1rem;*/
		margin: 1rem;
	}

	.navbar.active {
		top: 100%;
	}

	:root {
		--h1-font: 112px;
		--h2-font: 46.4px;
	}
}

@media (max-width:440px) {
	.btn2 {
		display: inline-block;
		padding: 10px 60px;
		border-radius: 11px;
		font-weight: 500;
		background: var(--main-color);
		color: white;
		transition: all .40s ease;
		margin-top: 20px;
	}
	
}





@media (max-width:1350px){
	.last-text p{
		margin-top:20px
	}
}


