@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-family: 'Plus Jakarta Sans', sans-serif;
	scroll-behavior: smooth;
}
body {
    background-color: rgb(255, 255, 255);
}

a, a:link, a:visited, a:hover {
    color: #000;
}

::-webkit-scrollbar {
    width: 20px;
}
    
::-webkit-scrollbar {
    background: none !important;
}
    
::-webkit-scrollbar-thumb {
    background-color:#1f1f1f;
    border: 6px solid transparent;
    background-clip: content-box;
}


img {
	width: 120%;
    /* height: 120%; */
}

a {
	color: #1f1f1f;
	text-decoration: none;
}


/* 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:#000000 ;
	transform: scale(1);
}


/*Section Headers*/
.section-heading {
	font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
	color: rgb(255, 255, 255);
	letter-spacing: 0.2rem;
	position: relative;
	margin-bottom: 5rem;
	font-family: inherit;
}
.section-heading-1 {
	font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
	color: #A41DE8;
    position: relative;
	margin-bottom: 3rem;

}
.section-heading-2 {
	font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
	color: #FF41CA;
    position: relative;
	margin-bottom: 3rem;
}


.section-heading-3 {
	font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
	color: #1ABCFE;
	position: relative;
	margin-bottom: 3rem;
}

/* Responsive */

/* Mobile devices */
@media only screen and (max-width: 480px) {
    .section-heading {
        font-size: clamp(1.2rem, 5vw, 2.5rem); /* Adjust font size for mobile screens */
    }
    .section-heading-1 {
        font-size: clamp(1.2rem, 5vw, 2.5rem); /* Adjust font size for mobile screens */
        margin-bottom: 2rem; /* Adjust margin for mobile screens */
    }
    .section-heading-2 {
        font-size: clamp(1.2rem, 5vw, 2.5rem); /* Adjust font size for mobile screens */
        margin-bottom: 2rem; /* Adjust margin for mobile screens */
    }
    .section-heading-3 {
        font-size: clamp(1.2rem, 5vw, 2.5rem); /* Adjust font size for mobile screens */
        margin-bottom: 2rem; /* Adjust margin for mobile screens */
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 767px) {
   
}

/* Laptops */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    
}

/* Larger screens */
@media only screen and (min-width: 1024px) {
    
}

/* Navigation */

#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: #131313;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
#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: #1f1f1f;
	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: #1f1f1f;
	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;

}
#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: 'plus jakarta sans';
}

#nav-content .close-btn {
	position: absolute;
	left: 10px;
	top: 10px;
	color: rgb(216, 29, 23);
	width: 40px;
	height: 40px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s ease background-color;
}
#nav-content .close-btn:hover {
	color:white;
	background-color: rgb(216, 29, 23);
	cursor: pointer;
}
#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;
}

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

#hero .container {
	display: flex;
    align-items: center;
    justify-content: center;

}
#hero .container .left {
    display: flex;
    flex-direction: column;
	flex: auto;
}
#hero .container .right {
	flex: 8;
}

#hero .left .subheading {
	font-size: 1.5rem;
	font-weight: 500;
	color: #000000;
	animation: fade 0.3s ease-in forwards;
	animation-delay: 1.1s;
	opacity: 0;
}
#hero .left .heading {
	font-size: 4rem;
	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 {
    font-weight: 500;
    font-size: 25px;
	max-width: 45rem;
	animation: fade 0.3s ease-in forwards;
	animation-delay: 1.1s;
	opacity: 0;
    line-height: 40px;
}



#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: 380px;
	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 {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	#hero .left .heading {
		font-size: 2rem;
		margin: 0 auto;
	}
	#hero .container .left .desc {
		margin: 0 auto;
		/* margin-top: 2rem; */
		font-size: 1rem;
	}
	#hero .right img {
		width: 100%;
		height: 400px;
	}
}
@media only screen and (max-width: 950px) {
	#hero .container .right {
		flex: 6;
	}
}




.link-btn-1,
.link-btn-2,
.link-btn-3,
.link-btn-4,
.link-btn-5,
.link-btn-6,
.link-btn-7,
.primary-btn-1,
.primary-btn-2,
.primary-btn-3 {
	display: inline-block;
	color: #9d00e6;
	font-weight: 800;
}

.link-btn-1:hover,
.link-btn-2:hover,
.link-btn-3:hover,
.link-btn-4:hover,
.link-btn-5:hover,
.link-btn-6:hover,
.link-btn-7:hover,
.primary-btn-1:hover,
.primary-btn-2:hover,
.primary-btn-3:hover {
	font-weight: 800;
	transition: 0.5s;
}

.link-btn-2,
.link-btn-4,
.link-btn-5,
.link-btn-6,
.link-btn-7 {
	background: linear-gradient(65deg, #1ABCFE 15%, #FF41CA 35%, #9D76E1 60%, #6cd2fa 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 500% auto;
	animation: textShine 5s ease-in-out infinite alternate;
	-webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, .2) 50%, #000 75%);
	mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, .2) 50%, #000 75%);
	-webkit-mask-size: 800%;
	mask-size: 800%;
	-webkit-mask-position: 0;
	mask-position: 0;
}

.link-btn-2:hover,
.link-btn-4:hover,
.link-btn-5:hover,
.link-btn-6:hover,
.link-btn-7:hover {
	background: linear-gradient(to left, #1ABCFE 20%, #FF41CA 40%, #FF41CA 60%, #1ABCFE 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 500% auto;
	animation: textShine 5s ease-in-out infinite alternate;
	transition: mask-position 1.5s ease, -webkit-mask-position 1.5s ease;
	-webkit-mask-position: 120%;
	mask-position: 120%;
	opacity: 1;
}

.link-btn-1,
.link-btn-3 {
	display: inline-block;
	color: #9d00e6;
	font-weight: 800;
}

.link-btn-1:hover,
.link-btn-3:hover {
	font-weight: 800;
	transition: 0.5s;
	background-color: #8100eb;
	background-image: linear-gradient(60deg, #0004dd, #1ABCFE);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
}

@keyframes textShine {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}


/* Mobile devices */
@media only screen and (max-width: 767px) {
	.link-btn,
	.primary-btn {
		font-size: 14px; 
	}

	.link-btn-2,
	.link-btn-4,
	.link-btn-5,
	.link-btn-6,
	.link-btn-7 {
		-webkit-mask-size: 600%;
		mask-size: 600%;
	}

	.link-btn-2:hover,
	.link-btn-4:hover,
	.link-btn-5:hover,
	.link-btn-6:hover,
	.link-btn-7:hover {
		-webkit-mask-position: 80%; 
		mask-position: 80%;
	}
}

/* Responsive */

@media only screen and (max-width: 768px) {
	.buttons {
		flex-direction: column;
		gap: 1rem;
		font-size: 2rem;
	}
}

@media only screen and (max-width: 480px) {
	.buttons {
		font-size: 1.5rem;
	}
}

/*Social buttons*/

.buttons {
	margin-top: 3rem;
	display: flex;
	gap: 2rem;
    font-size: 3rem;
}

.primary-btn-1 {
	display: inline-block;
	color: #000000;
}

.primary-btn-1:hover {

	color: #FF9402;
    transition: 0.5s;
}

.primary-btn-2 {
	display: inline-block;
	color: #000000;
}
.primary-btn-2:hover {
	color: #9d00e6;
	transition: 0.5s;
}
.primary-btn-3 {
	display: inline-block;
	color: #000000;
}
.primary-btn-3:hover {
	color:#1ABCFE;
	transition: 0.5s;
}

/* Responsive */

@media only screen and (max-width: 768px) {
	.buttons {
		flex-wrap: wrap;
		gap: 1rem;
		font-size: 2rem;
	}
}

@media only screen and (max-width: 480px) {
	.buttons {
		font-size: 1.5rem;
	}
}

 /* Projects */

 #projects {
	padding: 2rem;
}

.main {
	max-width: 1000px;
	margin: auto;
	/* background-color: #F0D6F3; */
	padding: 20px;
	border-radius: 30px;
	font-family: inherit;
}
  
h1 {
	font-size: 20px;
	font-weight: 900;
	word-break: break-all;
}
  
.row {
	margin: 10px -16px;
}
  
.row,
.row > .column {
    padding: 6px;
}
  
.column {
	float: left;
	width: 33.33%;
	display: none; 
}
  
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Media Queries for responsiveness */

/* Responsive */

/* Mobile devices */
@media only screen and (max-width: 480px) {
    .column {
        width: 100%; 
		margin-top: 80px;/* Display each column in full width on mobile screens */
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .column {
        width: 50%; /* Display each column in half width on tablet screens */
    }
}

/* Laptops */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Modify styles for laptops here */
}

/* Larger screens */
@media only screen and (min-width: 1024px) {
    /* Modify styles for larger screens here */
}
  
  /* Content */
.content {
	background-color: white;
	border-radius: 25px;
	padding: 10px;
}

.content h4:hover {
	color:#9d00e6;
	transition: 0.3s ease;
	font-weight: 900;
}

  
.show {
	display: block;
}
  
.btn {
	font-weight: 600;
	font-size: 20px;
	border: none;
	padding: 12px 30px;
	background-color: transparent;
	cursor: pointer;
	font-family: inherit;
}
  
.btn:hover {
    color: #A41DE8;
	transition: 0.5s;
}
  
.btn.active {
	color: #A41DE8;
}




/* About Section */
#about {
	padding: 5rem;
}

.card-desc {
    font-weight: 500;
	font-size: 1.5rem;
	color: rgb(0, 0, 0);
    line-height: 2.1rem;
    line-break: auto;
}

/*Text Animation*/

.slidingVertical{
	display: inline;
	text-indent: 8px;
}
.slidingVertical span{
	animation: topToBottom 12.5s linear infinite 0s;
	-ms-animation: topToBottom 12.5s linear infinite 0s;
	-webkit-animation: topToBottom 12.5s linear infinite 0s;
	background-color: #8100eb;
    background-image: linear-gradient(40deg,#FF41CA,#9d00e6 );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}
.slidingVertical span:nth-child(2){
	animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	-webkit-animation-delay: 2.5s;
}
.slidingVertical span:nth-child(3){
	animation-delay: 5s;
	-ms-animation-delay: 5s;
	-webkit-animation-delay: 5s;
}
.slidingVertical span:nth-child(4){
	animation-delay: 7.5s;
	-ms-animation-delay: 7.5s;
	-webkit-animation-delay: 7.5s;
}
.slidingVertical span:nth-child(5){
	animation-delay: 10s;
	-ms-animation-delay: 10s;
	-webkit-animation-delay: 10s;
}

/*topToBottom Animation*/
@-moz-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateY(-50px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(-50px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateY(-50px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(50px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/* Media Queries for responsiveness */

/* Mobile devices */
@media only screen and (max-width: 767px) {
	#about {
		padding: 1rem; /* Adjust padding for smaller screens */
	}

	.card-desc {
		font-size: 1.2rem; /* Decrease font size for better readability on mobile */
	}

	.slidingVertical {
		text-align: center; /* Center the text on mobile */
	}

	.slidingVertical span {
		position: static; /* Remove absolute positioning on mobile */
		animation: topToBottom 12.5s linear infinite 0s;
		-ms-animation: topToBottom 12.5s linear infinite 0s;
		-webkit-animation: topToBottom 12.5s linear infinite 0s;
		background-color: #8100eb;
		background-image: linear-gradient(40deg, #FF41CA, #9d00e6);
		background-size: 100%;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		-webkit-text-fill-color: transparent;
		-moz-text-fill-color: transparent;
		opacity: 0;
		overflow: hidden;
	}
}


/* Contact Section */
#contact {
	padding: 5rem;
}
#contact .wrapper {
	display: flex;
	gap: 5rem;
}
#contact .wrapper .left {
	flex: 1;
}
#contact .wrapper .right {
	flex: 1;
}
#contact .left .contact-heading {
	display: flex;
	font-size: 2rem;
	margin-bottom: 1rem;
    font-weight: 800;
}
#contact .left .contact-desc {
    color: black;
	font-weight: 500;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 2.1rem;
    line-break: auto;
	margin-bottom: 1rem;
}

#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: red
}
#contact .left .contact-info ul li a .text {
	color: blueviolet
}

#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: black;
}
#contact .left .social-info ul li a:hover {
	color: #d9f1ff;
	transition: 0.5s;
}


#contact .right .form-wrapper {
	background-color: #ffffff;
	/* border: 2px solid #1ABCFE; */
	width: 600px;
	margin: 0 auto;
	/* padding: 5rem; */
	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: 1rem;
	font-weight: 700;
	color: #1ABCFE;
}
#contact .right .form-group .input-wrapper {
	background-color: white;
	color: black;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 40px;
	overflow: hidden;
}

#contact .right .form-group .input-wrapper input {
	padding: 1rem;
	height: 100%;
	width: 100%;
	outline: none;
	border: 2px solid #1ABCFE;
	font-size: 1rem;
	font-family: inherit;
}
#contact .right .form-group textarea {
	width: 100%;
	height: 20rem;
	font-size: 1rem;
	padding: 1rem;
	border: 2px solid #1ABCFE;
	font-family: inherit;
}
#contact .right .form-wrapper button {
	display: inline-block;
	width: 150px;
	font-size: 1rem;
    font-weight: 700;
	height: auto;
	padding: 1rem 0;
    background-color: rgb(255, 255, 255);
	outline: none;
	border: 2px solid #1ABCFE;
	color: #1ABCFE;
	font-family: inherit;
}

#contact .right .form-wrapper button:hover {
    background-color: #1ABCFE;
    color: white;
	transition: 0.2s;
	cursor: pointer;
}

/* Media Queries for responsiveness */

/* Mobile devices */
@media only screen and (max-width: 767px) {
	#contact .wrapper {
		flex-direction: column;
	}

	#contact .left,
	#contact .right {
		flex: none;
		width: 100%;
	}

	#contact .left .contact-heading {
		font-size: 1.5rem;
	}

	#contact .left .contact-desc {
		font-size: 1.2rem;
	}

	#contact .left .contact-info ul li a {
		font-size: 1.2rem;
	}

	#contact .left .social-info ul {
		font-size: 3rem;
	}

	#contact .right .form-wrapper {
		width: 100%;
	}
}

/* Tablet devices */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	#contact .left .contact-info ul li a {
		font-size: 1.3rem;
	}

	#contact .left .social-info ul {
		font-size: 4rem;
	}

	#contact .right .form-wrapper {
		width: 80%;
	}
}


/* Footer Section */

.pulse {
	-webkit-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite;
    display: inline-block;
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.footer {
	width: 100%;
  position: relative;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 15px;
}
        
     
.footer a:hover {
	/* color: #ECC3FF; */
    /* -webkit-transition: all 1s ease; */
	background: linear-gradient(to left, #1ABCFE 20%, #FF41CA 40%, #FF41CA 60%, #1ABCFE 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;

    transition: mask-position 1.5s ease,-webkit-mask-position 1.5s ease;
    -webkit-mask-position: 120%;
    mask-position: 120%;
    opacity: 1;
}



