*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins';
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
}

header{
	position: fixed;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5rem;
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(8px);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 3rem;
	z-index: 1000;
}
.logo{
	color: white;
	font-size: 1.3rem;
	font-weight: 600;
	text-wrap: nowrap;
	transition: 0.3s ease-in-out;
}
.logo:hover{
	transform: scale(1.1);
}
.nav-links{
	display: flex;
	gap: 2rem;
}
li a{
	position: relative;
	color: white;
	font-weight: 300;
}
li a::before{
	position: absolute;
	content: '';
	width: 0;
	left: 0;
	height: 5px;
	top: 25px;
	border-radius: 1rem;
	transition: 0.3s ease-in-out;
	background: linear-gradient(to right,rgb(0,157,255),rgb(255,0,255));
}
li a:hover::before{
	width: 100%;
}
.visit-btn{
	padding: 0.8rem 1.5rem;
	border-radius: 3rem;
	border: none;
	font-weight: 500;
	font-size: 1rem;
	color: white;
	cursor: pointer;
	text-wrap: nowrap;
	transition: 0.3s ease-in-out;
	background: linear-gradient(to right,rgb(0,157,255),rgb(255,0,255));
}
.visit-btn:hover{
	background: linear-gradient(to right,rgb(255,0,255),rgb(0,157,255));
	transform: scale(1.03);
}
#menu-icon{
	font-size: 2rem;
	display: none;
}

section{
	min-height: 100vh;
	padding: 8rem 12%;
	width: 100%;
	position: relative;
}
.home{
	display: flex;
	align-items: center;
	justify-content: center;
}
.home .home-container{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10rem;
}
.home img{
	width: 30vw;
	border-radius: 50%;
}
.info-box{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}
.info-box h1{
	font-size: 4rem;
	font-weight: 600;
}
.info-box span{
	background: linear-gradient(to right,rgb(255,0,255),rgb(0,157,255));
	background-clip: text;
	color: transparent;
	font-size: 2rem;
}
.btn-group{
	display: flex;
	gap: 1rem;
}
.btn{
	border-radius: 3rem;
	padding: 0.5rem 1.5rem;
	border: 2px solid black;
	cursor: pointer;
	font-weight: 500;
	text-wrap: nowrap;
	transition: 0.2s ease-in-out;
}
.btn:hover{
	background-color: black;
	color: white;
}
.socials{
	display: flex;
	gap: 2rem;
}
.socials i{
	font-size: 2rem;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}
.socials i:hover{
	transform: scale(1.1);
}
/*--- about---*/
.about{
	padding: 80px 60px;
	color: black;
}
.about-title{
	background: linear-gradient(to right,rgb(255,0,255),rgb(0,157,255));
	background-clip: text;
	color: transparent;
	text-align: center;
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 3rem;
}
.row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-col-1{
	flex-basis: 35%;
}
.about-col-1 img{
	width: 100%;
	border-radius: 15px;
}
.about-col-2{
	flex-basis: 60%;
}
.about-col-2 p{
	background: black;
	background-clip: text;
	color: transparent;
	font-size: 2rem;
}



/*----- expertise -----*/

.section-title{
	text-align: center;
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 3rem;
}
.expertise-info{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}
.expertise img{
	width: 25vw;
	border-radius: 3rem;
}
.grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 2rem;
}
.grid-card{
	border: 2px solid black;
	border-radius: 3rem;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	justify-content: left;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}
.grid-card:hover{
	transform: scale(1.02);
	background-color: black;
	color: white;
}
.grid-card i{
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.grid-card span{
	font-size: 1.5rem;
	font-weight: 500;
	background: linear-gradient(to right,rgb(0,157,255),rgb(255,0,255));
	background-clip: text;
	color: transparent;
}
::-webkit-scrollbar{
	width: 20px;
}
::-webkit-scrollbar-track{
	background-color: rgb(219,219,219);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(to bottom,rgb(0,157,255),rgb(255,0,255));
}

.engagements-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap: 2rem;
}
.engagements-card{
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1.5rem;
	border: 2px solid black;
	border-radius: 3rem;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.engagements-card:hover{
	background-color: black;
	color: white;
	transform: translateY(-10px)scale(1.02);
}
.engagements-card img{
	width: 20vw;
	border-radius: 1rem;
}

/*---------------contact-------------*/
.contact-left{
	flex-basis: 35%;
}
.contact-right{
	flex-basis: 60%;
}
.contact-left p{
	margin-top: 30px;
}
.contact-left p i{
	color: blue;
	margin-right: 15px;
	font-size: 25px;
}
.social-icons{
	margin-top: 30px;
}
.social-icons a{
	text-decoration: none;
	font-size: 30px;
	margin-right: 15px;
	color: blue;
	display: inline-block;
	transition: transform 0.5s;
}
.social-icons a:hover{
	color: red;
	transform: translateY(-5px);
}
.btn.btn2{
	display: inline-block;
	background: red;
}
.contact-right form{
	width: 100%;
}
form input, form textarea{
	width: 100%;
	border: 0;
	outline: none;
	background: #262626;
	padding: 15px;
	margin: 15px 0;
	color: white;
	font-size: 15px;
	border-radius: 6px;
}
form .btn2{
	padding: 14px 60px;
	font-size: 18px;
	margin-top: 20px;
	cursor: pointer;
}


footer{
	bottom: 0;
	left: 0;
	height: 10rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}
footer ul{
	display: flex;
	align-items: center;
	gap: 3rem;
}
footer ul li a{
	color: black;
	font-weight: 600;
}
.copyright{
	font-size: 300;
	margin-top: 2rem;
}

@media(max-width:1280px){
	header{
		padding: 1rem 2rem;
		gap: 2rem;
	}
	.home .home-container{
		gap: 3rem;
	}
	.expertise-info{
		flex-direction: column;
	}
}

@media(max-width:768px){
	header{
		padding: 1rem 1rem;
		gap: 1rem;
	}
	header .logo{
		font-size: 1rem;
	}
	header .visit-btn{
		display: none;
	}
	.home-container{
		flex-direction: column;
	}
	.grid{
		grid-template-columns: repeat(1,1fr);
	}
	.expertise-info img{
		width: 70vw;
	}
	.engagements-card img{
	width: 60vw;
	border-radius: 1rem;
}
}

@media(max-width:600px){
	header #menu-icon{
		display: block;
	}
	.nav-links{
		position: absolute;
		top: 100%;
		margin-top: 1rem;
		width: 100%;
		padding: 1rem;
		color: white;
		display: flex;
		flex-direction: column;
		text-align: center;
		background: rgba(0,0,0,0.9);
		border-radius: 3rem;
		display: none;
	}
	.nav-links li{
		margin-top: 1.5rem;
		padding: 1rem;
	}
	.nav-links.active{
		display: block;
	}
	header{
		padding: 1rem 5rem;
		gap: 8rem;
	}
	header .logo{
		font-size: 1.5rem;
	}
	.home-container img{
		width: 40vw;
	}
	footer ul{
		gap: 1rem;
	}
	.about-col-1, .about-col-2{
		flex-basis: 100%;
	}
	.about-col-1{
		margin-bottom: 30px;
	}
	.about-col-2{
		font-size: 9px;
	}
}