@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	scroll-behavior: smooth;
	text-decoration: none;
}
	:root{
		--text-color : #f5f5f5;
		--hover-color: #12f7ff;
		--bg-color: #250821;
		--secon-big-color: #292e33;
		--big-font: 2rem;
		--norma-font: 2rem;
		--neon-box-shadow: 0 0 .5rem #12f7ff;
		--h2-font: 3rem;
		--font-neon-text-shadow: 0 0 10px rgba(18,247,255,0.3),
		0 0 20px rgba(18,247,255,0.3),
		0 0 30px rgba(18,247,255,0.3),
		0 0 40px rgba(18,247,255,0.3),
		0 0 70px rgba(18,247,255,0.3),
		0 0 80px rgba(18,247,255,0.3),
		0 0 100px rgba(18,247,255,0.3),
		0 0 150px rgba(18,247,255,0.3);
	}

	body{
		font-family: "Poppins",sans-serif;
		background-color: var(--bg-color);
		color: var(--text-color);
	}

	header{
		
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 20px 10%;
	}
	.logo{
		font-size: 25px;
		font-weight: 700;
		letter-spacing: 1px;
		color: white;
	}
	span{
		color: var(--hover-color);
	}

	.navlist{
		display: flex;
	}
	.navlist a{
		color: var(--text-color);
		font-weight: 500;
		padding: 10px 20px;
	}
	.navlist a:hover{
		color: var(--hover-color);
		text-shadow: 0 0 10px rgba(18,247,255,0.6),
		0 0 20px rgba(18,247,255,0.6),
		0 0 30px rgba(18,247,255,0.6),
		0 0 40px rgba(18,247,255,0.6),
		0 0 70px rgba(18,247,255,0.6),
		0 0 80px rgba(18,247,255,0.6),
		0 0 100px rgba(18,247,255,0.6),
		0 0 150px rgba(18,247,255,0.6);
	}

	#manu_icon{
		font-size: 1.8rem;
		z-index: 10001;
		cursor: pointer;
		margin-left: 25px;
		background: var(--hover-color);
		border-radius: 3px;
		color: var(--secon-big-color);
		display: none;
	}
	section{
		padding: 100px 10%;
	}

	.home{
		min-height: 100vh;
		height: 100%;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		grid-gap: 4em;
	}

	.home-content{
		max-width: 600px;
	}
	.home-content h1{
		font-size: var(--bg-color);
		font-weight: 800;
		font-size: 40px;
	}
	.change-text{
		font-size: 1.5rem;
		font-weight: 600;

	}

	.change-text h3{
		display: inline-flex;
		margin: 0;
		vertical-align: top;
	}

	.change-text h3 .word{
		position: absolute;
		display: flex;
		opacity: 0;
	}


	.img-box img{
		width: 600px;
		margin-top: -100px;
	}
	.change-text h3 .word .letter{
		transform-origin: center center 25px;
	}

	.change-text h3 .word .letter.out{
		transform: rotateX(90deg);
		transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
	}
	.change-text h3 .word .letter.in{
		transition: 0.38s ease;
	}
	.change-text h3 .word .letter.behind{
		transform: rotateX(-90deg);
	}
	.home-content p{
		color: #bdbdbd;
		line-height: 1.6;
	}
	.info-box{
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		width: 300px;
		margin: 1rem 0 2rem;
	}

	.info-box h5{
		font-weight: 600;
		color: var(--text-color);
		font-size: 1rem;
	}
	.info-box span{
		font-size: .9rem;
		color: #bdbdbd;
	}
	.btn-box{
		display: flex;
		justify-content: space-between;
		width: 320px;
		height: 45px;
	}
	.btn-box a.btn{
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 150px;
		height: 100%;
		background: var(--hover-color);
		color: var(--bg-color);
		font-size: 1rem;
		letter-spacing: 1px;
		font-weight: 600;
		transition: .6s;
		box-shadow: var(--neon-box-shadow);
		border-radius: 5px;
		position: relative;overflow: hidden;
		z-index: 1;
		border: 2px solid var(--hover-color);
	}
	a.btn:hover{
		color: var(--hover-color);
	}
	a.btn::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		background: var(--bg-color);
		width: 0;
		height: 100%;
		z-index: -1;
		transition: .4s;
	}
	a.btn:hover::before{
		width: 100%;

	}

	a.btn:nth-child(2){
		background: var(--bg-color);
		color: var(--hover-color);
	}
	a.btn:nth-child(2):hover{
		color: var(--bg-color);
	}

	a.btn:nth-child(2)::before{
		background: var(--hover-color);
	}
	.social-icons{
		margin-top: 8rem;
		display: flex;
		justify-content: space-between;
		width: 220px;
		height: 40px;
		margin-top: 20px;
	}
	.social-icons a{
		display: inline-flex;
		width: 50px;
		height: 100%;
		justify-content: center;
		align-items: center;
		background: var(--bg-color);
		color: var(--hover-color);
		border: 2px solid var(--hover-color);
		transition: .6s;
		box-shadow: 0 0 0.3rem #12f7ff;
		border-radius: 5px;
		position: relative;
		z-index: 1;
		overflow: hidden;

	}
	.social-icons a i{
		font-size: 1.5rem;
	}
	.social-icons a:hover{
		color: var(--bg-color);
	}
	.social-icons a::before{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 0;
		height: 100%;
		background: var(--hover-color);
		transition: .6s;
		z-index: -1;
	}

	.social-icons a:hover::before{
		width: 100%;
	}
	.home-image{
		position: relative;
	}
	.img-box{
		text-align: center;
	}
	.img-box img{
		width: 100%;
		height: auto;
	}

	.liquid-shape{
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
		top: 10%;
	}

/* About Section */
.about {
  background-color: var(--bg-color);
  padding: 100px 10%;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-img img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: var(--h2-font);
  color: var(--hover-color);
  margin-bottom: 10px;
}

.about-text h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.about-text p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 0.95rem;
}


		/* skill section  */


	.skills {
		
  background-color: var(--bg-color);
  padding: 60px 10%;
  color: white;
  transition: all 0.3s ease;
}

.skills-text h2 {
  font-size: 2.5rem;
  color: aqua;
  text-align: center;
  margin-bottom: 2rem;
}

.skills-text span {
  color: #00ffff;
}

.skill {
  margin-bottom: 2.5rem;
}

.skill h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.skill-bar {
  width: 100%;
  background: #1e293b;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 5px;
}

.skill-fill {
  height: 100%;
  background: aqua;
  width: 0%;
  transition: width 2s ease-in-out;
}

.percent {
  color: aqua;
  font-weight: 600;
  font-size: 0.9rem;
}


	/* Contact Section */
.contact {
  background-color: var(--bg-color);
  padding: 80px 10%;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--hover-color);
}

.contact-title span {
  color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.contact-container.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  background: #1e293b;
  border: 2px solid var(--hover-color);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  box-shadow: 0 0 10px var(--hover-color);
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  background: var(--hover-color);
  color: var(--bg-color);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: var(--neon-box-shadow);
}

.contact-form .btn:hover {
  background: var(--bg-color);
  color: var(--hover-color);
  border: 2px solid var(--hover-color);
}

.contact-img {
  flex: 1;
  max-width: 300px;
}

.contact-img img {
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}



/* Footer Section */
.footer {
  background: #0f172a;
  color: white;
  padding: 50px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-container {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.footer-container.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-title {
  font-size: 2rem;
  color: var(--hover-color);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 1rem;
  margin-bottom: 25px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  color: var(--hover-color);
  transform: scale(1.2);
}

.scroll-top {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: var(--hover-color);
  color: #0f172a;
  padding: 15px;
  border-radius: 70%;
  box-shadow: var(--neon-box-shadow);
  cursor: pointer;
  transition: 0.3s ease;
}

.scroll-top:hover {
  background: white;
  color: var(--hover-color);
  transform: translateY(-5px);
}

footer i {
  pointer-events: none;
}

