@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto+Mono:wght@300;500&family=Poppins:wght@600&display=swap%27");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

html {
	font-family: "Inter", sans-serif;
	font-size: 12px;
}

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

.buttons {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
}

.primary-btn {
	display: inline-block;
	background-color: #5e3bee;
	color: white;
	font-size: 1.8rem;
	padding: 0.6em 1.6em;
	border-radius: 50px;
}
.buttons .primary-btn.outline {
	background-color: transparent;
	border: 2px solid #5e3bee;
	color: #5e3bee;
}
.buttons svg {
	width: 50px;
	color: #5e3bee;
}

.container {
	width: 90%;
	margin: 0 auto;
	max-width: 1000px;
}

/* Navigation */
.nav-container {
	height: 3.75%;
	background: #fff;
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.header-container {
	background-color: #eaebf4;
	height: 80vh;
}

.wrapper {
	max-width: 62.5%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wrapper2 {
	margin-top: 8vh;
}

.first-content h1 {
	position: relative;
	font-weight: 700;
	font-size: 73px;
	line-height: 100%;
	margin-top: 10%;
	/* or 73px */

	letter-spacing: -0.035em;
	overflow: hidden;

	color: #000000;
	bottom: -70px;
	opacity: 0;

	animation: reveal 1s ease-in-out forwards;
}

@keyframes reveal {
	0% {
		bottom: -70px;
		opacity: 0;
	}
	100% {
		bottom: 0px;
		opacity: 1;
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.contact-container form {
	margin-top: 6vh;
	display: flex;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 3.75%;
}

ul,
li {
	list-style: none;
}

nav ul {
	display: flex;
	padding: 0;
}

nav .logo {
	height: 3.5%;
}

.nav-items li {
	list-style: none;
	margin: auto 3vw;
	font-size: 16px;
}

.nav-items a {
	color: #000000;
	text-decoration: none;
}

.first-content h2 {
	font-weight: 700;
	font-size: 73px;
	line-height: 100%;
	margin-top: 5%;
	/* or 73px */

	text-align: justify;
	letter-spacing: -0.035em;
	color: #5e3bee;

	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.first-content p {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.75;

	letter-spacing: -0.01em;

	margin-top: 10%;
}

.first-image {
	padding-left: 300px;
}

.wrapper3 h2 {
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: space-between;
	margin-left: 25%;
	margin-right: 25%;

	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 100%;
}

.information {
	padding-top: 2%;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: space-between;
	width: 50%;
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 100%;
}

.information p {
	padding-top: 2vh;
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	color: #9ea2bf;
}

.stats {
	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: center;
}

.stats hr {
	margin-top: 2vh;
	width: 96%;
	border-color: #eaebf4;
	color: #eaebf4;
	background-color: #eaebf4;

	align-items: center;
}

.input100 {
	position: relative;
	display: block;
	width: 100%;
	background: #fff;
	opacity: 87%;
	font-size: 18px;
	color: #8f8fa1;
	line-height: 2;
	border: none;
}

input.input100 {
	padding: 0 25px 0 25px;
}

.submit100 {
	position: relative;
	display: block;
	width: 150%;
	transition: all 0.5s ease;
	opacity: 87%;
	font-size: 15px;
	color: #fdfdfe;
	line-height: 3.5;
	border: none;

	background: #5e3bee;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.submit100:hover {
	transition: all 0.5s ease;

	cursor: pointer;
	background: #4126ad;
}

.languages {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	max-width: 50%;
	margin: 0 auto;
}

.language {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.language .img-wrapper {
	width: 3rem;
	height: 3rem;
}

.language a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.languages img {
	width: 100%;
}

.languages p {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 0%;
	color: #9ea2bf;
	padding-top: 20px;
}

.Github-wrapper p {
	color: #5e3bee;
}

.Github-wrapper h2 {
	color: #9ea2bf;
}

.Github-wrapper {
	align-items: center;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 80px;

	font-size: 15px;
}

/* Scroll */

.scroll-top {
	z-index: 100;
	height: 60px;
	width: 60px;
	background-color: white;
	position: fixed;
	bottom: 10px;
	right: 10px;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 0px 0px 20px rgba(71, 40, 182, 0.226);
	/* hover effect default */
	transform: scale(0.9);
	transition: 0.3s ease-in-out transform;
	/* for centering the icon */
	/* display: flex; */
	display: none;
	align-items: center;
	justify-content: center;
}
.scroll-top svg {
	width: 50%;
	color: black;
	pointer-events: none;
}

.scroll-top:hover {
	transform: scale(1);
}

/* About section  */
#about {
	padding-bottom: 15rem 0;
	background-color: #f9f9fc;
	height: 64vh;
}
#about .wrapperr {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
#about .left {
	padding: 2rem;
	text-align: center;
}
#about .left .card {
	box-shadow: 0px 0px 20px #4705fc33;
	padding: 3rem;
	border-radius: 12px;
	min-height: 400px;
	font-size: 15px;
}
#about .left .card .img {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 2rem;
}
#about .left .card .img img {
	object-fit: cover;
}
#about .left .card .card-desc {
	color: gray;
	margin-bottom: 2rem;
}
#about .left .card .card-name {
	font-size: 2rem;
	margin-bottom: 0.2rem;
}
#about .left .card .card-sub-title {
	font-size: 1.4rem;
}
#about .subheading {
	color: #5e3bee;
	margin-bottom: 1.5rem;
	font-size: 15px;
}
#about .right .slogan {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}
#about .right .right-text {
	color: gray;
	font-size: 15px;
}
@media only screen and (max-width: 768px) {
	#about .wrapper {
		flex-direction: column-reverse;
		text-align: center;
	}
	#about .right .buttons {
		flex-direction: column;
	}
	#about .right .buttons a {
		width: 100%;
		text-align: center;
	}
}

.headd {
	width: 27%;
	text-align: center;
}

.headd h2 {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 42px;
	line-height: 0%;
	padding-top: 15%;
	padding-bottom: 10%;
	color: #5e3bee;
}

.title-span {
	color: #bec0ce;
}

/* Projects Section */
#projects {
	padding: 10rem 0;
}

#projects .section-heading {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 42px;
	line-height: 0%;
	padding-bottom: 10%;
	padding-left: 2.5%;
}
#projects .item {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 15rem;
	font-size: 15px;
	/* gap: 2rem; */
}
#projects .item:nth-of-type(even) {
	flex-direction: row-reverse;
}
#projects .item .left {
	flex: 1;
}
#projects .item .right {
	margin-left: -150px;
	flex: 1;
	padding: 5rem 3rem;
	border-radius: 12px;
	box-shadow: 0px 0px 20px #00000028;
	z-index: 2;
}
#projects .item:nth-of-type(even) .right {
	margin-left: 0;
}
#projects .item:nth-of-type(even) .left {
	margin-left: -150px;
}
#projects .item .left .img {
	height: 500px;
	overflow: hidden;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 0px 20px #4705fc33;
	position: relative;
}
#projects .item .left .img::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #5a24ed38;
}
#projects .item .left .img img {
	object-fit: cover;
	transition: 0.3s ease transform;
}
#projects .item:hover .left .img img {
	transform: scale(1.1);
	z-index: 1;
}
#projects .item .right .project-title {
	font-size: 2.5rem;
	font-family: "Montserrat";
	margin-bottom: 1rem;
}
#projects .item .right .project-sub-title {
	font-size: 1.6rem;
	margin-bottom: 2rem;
}
#projects .item .right .project-desc {
	color: gray;
	margin-bottom: 3rem;
}
#projects .item .right .external-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: calc(0.6em - 4px) calc(1.6em - 4px);
}
#projects .item .right .external-link svg {
	width: 25px;
}

@media only screen and (max-width: 768px) {
	#projects .item {
		flex-direction: column;
	}
	#projects .item .left {
		width: 100%;
	}
	#projects .item .right {
		margin-left: 0;
		width: 90%;
		margin-top: -150px;
	}
	#projects .item:nth-of-type(even) {
		flex-direction: column;
	}
	#projects .item:nth-of-type(even) .left {
		margin-left: 0;
	}
}
@media only screen and (max-width: 450px) {
	#projects .item .right .buttons {
		flex-direction: column;
	}
	#projects .item .right .buttons a {
		width: 100%;
		text-align: center;
	}
}

/* Footer Section */
#footer {
	background-color: #0f1221;
	color: white;
	padding: 10rem 0 5rem 0;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 12px;
}
#footer footer {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2rem;
}
#footer footer .col-1 {
	flex: 3;
}
#footer footer .col-2,
#footer footer .col-3,
#footer footer .col-4 {
	flex: 2;
}
#footer footer .col-4 {
	flex: 1;
}

#footer footer .col-1 .logo img {
	max-width: 100px;
	margin-bottom: 2rem;
}
#footer footer .col-1 p {
	color: white;
}

#footer footer .column-heading {
	font-family: "Montserrat";
	font-size: 2rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
	line-height: 1.5em;
}
#footer footer ul {
	list-style: none;
}
#footer footer ul li {
	border-radius: 4px;
}
#footer footer ul li:hover {
	background-color: white;
}
#footer footer ul li:hover a {
	color: #0f1221;
}
#footer footer ul li a {
	display: inline-block;
	width: 100%;
	color: white;
	font-size: 1.7rem;
	padding: 0.5rem;
	text-decoration: none;
}
#footer footer .col-4 ul {
	display: flex;
	flex-wrap: wrap;
}
#footer footer .col-4 ul li a {
	min-width: 50px;
}
@media only screen and (max-width: 768px) {
	#footer footer {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	#footer footer .col-1,
	#footer footer .col-2,
	#footer footer .col-3,
	#footer footer .col-4 {
		width: 100%;
		margin-bottom: 3rem;
	}
	#footer footer .col-4 ul {
		width: fit-content;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 700px) {
	.header-container {
		height: 100vh;
	}

	.nav-container {
		display: none;
	}

	.wrapper2 {
		margin-top: 0;
	}

	.wrapper {
		max-width: fit-content;
		justify-content: center;
	}

	.headd {
		width: fit-content;
	}

	.wrapperr .right .buttons {
		visibility: hidden;
		margin-top: 0rem;
	}

	.information,
	.languages {
		width: 100%;
	}

	.languages {
		display: flex;
		overflow: scroll;
		justify-content: center;
		align-items: center;
		gap: 15px;
		max-width: 100%;
		margin: 0 auto;

		flex-wrap: unset;
	}

	.Github-wrapper {
		margin-bottom: 0px;
	}

	.Github-wrapper img {
		width: 100%;
	}

	.submit100 {
		width: 100%;
	}
}
