@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;1000&display=swap" rel="stylesheet');

/* variables */
:root {
	--primary-color: #1f1f1f;
	--secondary-black: #303030;
	--secondary-gray: #48464b;
	--body-bg: #ffffff;
}

/* global styles */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	cursor: url(images/cursor24.png), pointer;
}
html {
	font-family: 'nunito';
	font-size: 10px;
	scroll-behavior: smooth;
}
body {
	background-color: var(--body-bg);
}
a, a:link, a:visited, a:hover {
    cursor: url(images/handcursor.png), pointer;
}
::-webkit-scrollbar {
    width: 20px;
}
    
::-webkit-scrollbar {
    background: none !important;
}
    
::-webkit-scrollbar-thumb {
    background-color:#1f1f1f;
    border: 6px solid transparent;
    border-radius: 10px;
    background-clip: content-box;
}


img {
	width: 100%;
	height: 100%;
}
a {
	color: #1f1f1f;
	text-decoration: none;
}

section {
	display: flex;
	align-items: center;
	justify-content: center;
}
.container {
	width: 90%;
	margin: 0 auto;
	max-width: 1000px;
}
p {
	font-size: 2rem;
	color: var(--secondary-black);
}
.section-heading {
	font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
	color: #fcfcfc;
	text-transform: uppercase;
	font-family: 'nunito';
	letter-spacing: 0.2rem;
	text-align: center;
	position: relative;
	margin-bottom: 5rem;
}
.section-heading-1 {
	font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
	color: #cd8de9;
	text-transform: uppercase;
	font-family: 'nunito';
	letter-spacing: 0.2rem;
	text-align: center;
	position: relative;
	margin-bottom: 5rem;
}
.section-heading-2 {
	font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
	color: #fc6aa9;
	text-transform: uppercase;
	font-family: 'nunito';
	letter-spacing: 0.2rem;
	text-align: center;
	position: relative;
	margin-bottom: 5rem;
}
.section-heading-3 {
	font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
	color: #82cffc;
	text-transform: uppercase;
	font-family: 'nunito';
	letter-spacing: 0.2rem;
	text-align: center;
	position: relative;
	margin-bottom: 5rem;
}
.section-heading::before {
	/* content: attr(data-outline); */
	position: absolute;
	left: 2%;
	top: -20%;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-family: 'nunito';
	letter-spacing: 0.2rem;
	color: transparent;

	/* -webkit-text-stroke: 1.5px rgba(54, 54, 54, 0.692);
	-webkit-text-stroke: 1.5px #1f1f1f34; */
	z-index: -1;
}
.buttons {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}
.primary-btn-1 {
	display: inline-block;
	background-color: #f2e3ff;
	color: #cd8de9;
    border: solid 2px;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 0.6em 1.6em;
	border-radius: 50px;
}

.primary-btn-1:hover {
    font-weight: 900;
    background-color: #af6eca;
	color: #f2e3ff;
	border: solid #af6eca 2px;
	transition: 0.5s;
}

.primary-btn-2 {
	display: inline-block;
	background-color: #fae0eb;
	color: #fc6aa9;
    border: solid 2px;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 0.6em 1.6em;
	border-radius: 50px;
}
.primary-btn-2:hover {
    font-weight: 900;
    background-color: #fc6aa9;
	color: #fae0eb;
    border: solid 2px #fc6aa9;
	transition: 0.5s;
}
.primary-btn-3 {
	display: inline-block;
	background-color: #d9f1ff;
	color: #82cffc;
    border: solid 2px;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 0.6em 1.6em;
	border-radius: 50px;
}
.primary-btn-3:hover {
    font-weight: 900;
    background-color: #82cffc;
	color: #d9f1ff;
    border: solid 2px #82cffc;
	transition: 0.5s;
}

.primary-btn-4 {
	display: inline-block;
	background-color: #1f1f1f;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 0.6em 1.6em;
	border-radius: 50px;
	border: solid 2px;
}

.primary-btn-4:hover {
    font-weight: 900;
    background-color: #ffffff;
	color: #141414;
	border: solid #0f0f0f 2px;
	transition: 0.5s;
}
.buttons .primary-btn.outline {
    font-weight: 700;
	background-color: transparent;
	/* border: 2px solid var(--primary-color); */
}
.buttons svg {
	width: 50px;
	color: var(--primary-color);
}
.fa-solid, .fas {
    font-weight: 900;
    font-size: 2rem;
}

/* scroll Top/Up Button */
.scroll-top {
	z-index: 100;
	height: 40px;
	width: 40px;
	background-color: white;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border-radius: 10px;
	/* box-shadow: 0px 0px 10px rgba(22, 22, 22, 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;
	cursor: pointer;
}

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

/* Navigation Section */
#navigation {
	position: fixed;
	right: 50px;
	height: auto;
	top: 20px;
	z-index: 100;
}
#navigation .nav-icon {
	width: 50px;
	height: 50px;
    border-radius: 10px;
	margin: 0 auto;
	margin-right: 0;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
#navigation .nav-icon svg {
	width: 80%;
	color: white;
}
#nav-content {
	position: fixed;
	right: 0;
	width: 80%;
	max-width: 800px;
	height: 100%;
	z-index: 100;
	background-color: var(--secondary-black);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transform: translateX(100%);
	transition: 0.3s ease transform;
}
#nav-content.show {
	background-color: var(--secondary-black);
	transform: translateX(0);
	box-shadow: -6px 0px 29px 7px #3030308e;
}
#nav-content .section-heading {
	text-align: left;
}
#nav-content .section-heading::before {
	content: 'Menu';
	text-align: left;
	/* -webkit-text-stroke: 1.5px #d8d8d8; */
}
#nav-content .wrapper {
	width: 70%;
	position: relative;
}
#nav-content ul {
	list-style: none;
	text-align: left;
}
#nav-content ul li {
	margin-bottom: 2rem;
}
#nav-content ul li:hover {
	list-style: none;
	text-align: left;
	font-weight: 900;
}
#nav-content ul li a {
	display: inline-block;
	width: 100%;
	color: white;
	font-size: 5rem;
	font-family: 'nunito';
}

#nav-content .close-btn {
	position: absolute;
	left: 10px;
	top: 10px;
	color: white;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s ease background-color;
}
#nav-content .close-btn:hover {
	background-color: rgb(216, 29, 23);
}
#nav-content .close-btn svg {
	width: 80%;
}
@media only screen and (max-width: 768px) {
	#navigation {
		right: 10px;
		top: 10px;
	}
	#nav-content nav ul li a::after {
		display: none;
	}
	#nav-content .section-heading {
		text-align: right;
		margin-bottom: 5rem;
	}
	#nav-content .section-heading::before {
		text-align: right;
	}
	#nav-content nav ul {
		text-align: right;
	}
	#nav-content nav ul li a {
		font-size: 2.5rem;
	}
	#nav-content .wrapper {
		width: 90%;
	}
}


/* Hero section */
#hero {
	height: 100vh;
	width: 100%;
	padding-top: 10rem;
}

#hero .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
#hero .container .left {
    display: flex;
    flex-direction: column;
    align-items: center;
	flex: auto;
}
#hero .container .right {
	flex: 8;
}

#hero .left .subheading {
	font-size: 4rem;
	font-weight: 900;
	text-transform: uppercase;
	color: #d2f599;
	animation: fade 0.3s ease-in forwards;
	animation-delay: 1.1s;
	opacity: 0;
}
#hero .left .heading {
	font-size: 6rem;
	font-family: 'nunito';
	font-weight: 800;
	overflow: hidden;
}
#hero .left .heading .wrapper {
	display: inline-block;
	overflow: hidden;
}
#hero .left .heading .wrapper span {
	position: relative;
	bottom: -70px;
	animation: reveal 1s ease-in-out forwards;
}
@keyframes reveal {
	0% {
		bottom: -70px;
	}
	100% {
		bottom: 0px;
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#hero .left .desc {
	margin-top: -1.5rem;
	max-width: 450px;
	animation: fade 0.3s ease-in forwards;
	animation-delay: 1.1s;
	opacity: 0;
}

#hero .desc {
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}


#hero .left .buttons {
	animation: fade 0.3s ease-in forwards;
	animation-delay: 1.1s;
	opacity: 0;
}

#hero .right {
	text-align: right;
}

#hero .right img {
	width: 100%;
	max-width: 450px;
	height: 450px;
	object-fit: cover;
	object-position: 50% 30%;
	border-radius: 50px;
	animation: fade 0.6s ease-in forwards;
}

@media only screen and (max-width: 768px) {
	html {
 	}
	#hero .container {
		flex-direction: column-reverse;
	}
	#hero .container .right {
		text-align: center;
		flex: 1;
		margin-bottom: 2rem;
	}
	#hero .container .left {
		text-align: center;
		padding-right: 0;
		flex: 1;
		height: fit-content;
	}
	#hero .left .buttons {
		justify-content: center;
	}
	#hero .left .heading {
		font-size: 4rem;
		margin: 0 auto;
	}
	#hero .container .left .desc {
		margin: 0 auto;
		margin-top: 2rem;
	}
	#hero .right img {
		width: 100%;
		height: 400px;
	}
}
@media only screen and (max-width: 950px) {
	#hero .container .right {
		flex: 6;
	}
}


/* Projects Section */
#projects {
	padding: 10rem 0;
}
#projects .item {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 15rem;
}
#projects .item:nth-of-type(even) {
	flex-direction: row-reverse;
}
#projects .item .left {
	flex: 1;
}
#projects .item .right {
	margin-left: -150px;
	flex: 1;
	background-color: var(--body-bg);
	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 #2e2e2e33;
	position: relative;
}
#projects .item .left .img::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#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: 'nunito';
    font-weight:800;
	margin-bottom: 1rem;
}
#projects .item .right .project-sub-title {
	font-size: 1.6rem;
	margin-bottom: 2rem;
}
#projects .item .right .project-desc {
	color: var(--secondary-gray);
	margin-bottom: 3rem;
}
#projects .item .right .external-link {
    /* border: 2px solid; */
	border-radius: 20px;
    display: flex;
	align-items: center;
	justify-content: center;
    font-size: 1.8rem;
	gap: 1rem;
	padding: calc(0.6em - 4px) calc(1.6em - 4px);
    
}
#projects .item .right .external-link:hover {
	font-weight: 900;
	font-size: 1.8rem;
	transition: 0.5s;
}
#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;
	}
}



/* My Work */

/* .work-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: left;
}

.work-container p {
    max-width: 496px;
    margin-top: 0px;
    margin-bottom: 48px;
}

.work-container .projects-grid {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 128px;
    gap: 16px;
}

.work-container .project {
	flex: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 5px;
}



.project-image:hover {
    opacity: .75;
    transition: opacity 50ms linear 50ms;
}

@media screen and (max-width: 600px) {
    .work-container .projects-grid {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .work-container .project-image {
        width: 100%;
    }
} */

 /* TOOLKIT */

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

.tool-container p {
    max-width: 496px;
    margin-top: 0px;
    margin-bottom: 48px;
}

.tool-container ul {
    text-align: center;
    list-style-type: none;
    margin-bottom: 128px;
	padding: 15px;
	border-radius: 15px;
	background-color: #fae0eb;

}

.tool-container li {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
	padding: 15px;
}

.tool-container img {
	width: 55px;
}

#tool-list {
	font-size: clamp(2rem, 10vw, 8rem);
	font-family: 'nunito';
	letter-spacing: 0.5px;
}

@media only screen and (max-width: 768px) {
	#about .wrapper {
		flex-direction: column-reverse;
		text-align: center;
	}
	#about .right .buttons {
		flex-direction: row;
	}
	#about .right .buttons a {
		width: 100%;
		text-align: center;
	}

	#about .right .icon .skills {
		flex-direction: column;
		}
}




/* Contact Section */
#contact {
	padding-top: 10rem;
}
#contact .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}
#contact .wrapper .left {
	flex: 1;
}
#contact .wrapper .right {
	flex: 1;
}
#contact .left .contact-heading {
	display: flex;
	justify-content: center;
	font-family: 'nunito';
	font-size: 3rem;
	margin-bottom: 1rem;
    font-weight: 800;
}
#contact .left .contact-desc {
    color: var(--secondary-gray);
	margin-bottom: 1rem;
	text-align: center;
}
#contact .left .contact-info {
	margin-bottom: 5rem;
}
#contact .left .contact-info ul {
	list-style: none;
}
#contact .left .contact-info ul li {
	border-radius: 12px;
	overflow: hidden;
}
#contact .left .contact-info ul li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	font-size: 2rem;
	padding: 1.5rem;
}

#contact .left .contact-info ul li a .icon {
	width: 25px;
	color: var(--primary-color);
}
#contact .left .contact-info ul li a .text {
	color: var(--secondary-gray);
}
#contact .left .social-info ul {
	display: flex;
	justify-content: center;
	list-style: none;
	font-size: 5rem;
	gap: 6rem;
}
#contact .left .social-info ul li a  {
	color: var(--primary-color);
}
#contact .left .social-info ul li a:hover {
	color: #d9f1ff;
	transition: 0.5s;
	
}
#fa-brands:hover {
	cursor: url(images/cursor24.png), pointer;
}

#contact .right .form-wrapper {
	background-color: #d9f1ff;
	width: 600px;
	margin: 0 auto;
	padding: 5rem;
	border-radius: 12px;
	color: rgb(32, 32, 32);
}
#contact .right .form-group {
	margin-bottom: 1rem;
}
#contact .right .form-group label {
	margin-bottom: 0.5rem;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
}
#contact .right .form-group .input-wrapper {
	background-color: white;
	color: black;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 40px;
	border-radius: 20px;
	overflow: hidden;
}

#contact .right .form-group .input-wrapper input {
	padding: 1rem;
	height: 100%;
	width: 100%;
	outline: none;
	border: none;
    font-family: 'nunito';
	font-size: 2rem;
}
#contact .right .form-group textarea {
	width: 100%;
	height: 150px;
	resize: vertical;
	font-size: 2rem;
	padding: 1rem;
	font-family: 'nunito';
	outline: none;
	border: none;
	border-radius: 15px;
}
#contact .right .form-wrapper button {
	display: inline-block;
	width: 150px;
	font-size: 1.5rem;
    font-weight: 700;
	text-transform: uppercase;
	height: auto;
	padding: 1rem 0;
	font-family: 'nunito';
    background-color: rgb(255, 255, 255);
	letter-spacing: 0.3rem;
	border-radius: 30px;
	outline: none;
	border: 2px solid  rgb(255, 255, 255);
}

#contact .right .form-wrapper button:hover {
    background-color: rgb(153, 198, 221);
    border: 2px solid #abd1e2;
    color: white;
    font-weight: 800;
	cursor: url(images/handcursor.png), pointer;
}

@media only screen and (max-width: 768px) {
	#contact .wrapper {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#contact .right {
		width: 100%;
	}
	#contact .right .form-wrapper {
		padding: 3rem;
		width: 100%;
		max-width: 100%;
	}
}

/* Footer Section */

.footer {
    display: flex;
    margin: 20px 20px;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    justify-content: center;
}

.footer p {
	font-size: 1.5rem;
}

.footer a:hover {
    color: #ECC3FF;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}


