@charset "utf-8";
/* CSS Document */

	
	*{
		padding: 0;
		margin: 0;
		font-family: 'Poppins', sans-serif;
		box-sizing: border-box;
        text-decoration: none;
        border: none;
        outline: none;
        scroll-behavior: smooth;
	}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #121212;
    color: white;
}


/* Custom Scroll Bar CSS*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: deepskyblue;
    border-radius: 12px;
    transition: all 0.3s ease; 
}
::-webkit-scrollbar-thumb:hover{
    background: deepskyblue;
}




/* navbar styling */
nav{
	height: 10vh;
	width: 100%;
}

.nav-container{
    top: 0;
    left: 0;
	height: 100%;
	width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    background-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid black(255, 255, 255, 0.1);
}

.logo{
	color: white;
	font-size: 2rem;
	font-weight: bold;
    text-decoration: none
}

.logo:hover{
    transform: scale(1.1);
}

.logo span{
	color: deepskyblue;
	text-shadow: 0 0 10px deepskyblue;	
}

.nav-container .navbar{
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-container .navbar a{
	position: relative;
	font-size: 1.2rem;
	color: white;
	margin: 0 20px;
	text-decoration: none;
	font-weight: 550;
	transition: 0.3 linear;
}

.nav-container .navbar a::before{
	position: absolute;
	content: "";
	bottom: -3px;
	left: 0;
	height: 3px;
	width: 0%;
	background-color: deepskyblue;
	transition: 0.2 linear;
}

.nav-container .navbar a:hover::before{
	width: 100%;
}

.nav-container .navbar a:hover{
	color: deepskyblue;
}



.home{
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    padding-left: center;
} 

.home .image{
	height: 70vh;
	width: 400px;
	border-radius: 100%;
	overflow: hidden;
	box-shadow: 0 0 50px deepskyblue;
}

.home .image img{
	width: 100%;
}

.home .image:hover{
	animation: animate 1.5s ease-in-out infinite;
}


@keyframes animate{
	0%{
		scale: 1;
	}
	
	50%{
		scale: 1.05;
	}
	
	100%{
		scale: 1;
	}

}

.home .content{
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
	color: white;
	width: 40%;
	min-height: 100px;
}

.content h1{
	font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
}

.content h1 span{
	color: deepskyblue;
	text-shadow: 0 0 10px deepskyblue;	
}


.content .typewriter{
	font-size: clamp(1rem, 1rem + 5vw, 2.5rem);
	font-weight: 600;
}

.content .typewriter-text{
	color: deepskyblue;
	text-shadow: 0 0 10px deepskyblue;
}

.content p{
	font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
	margin: 10px 0;
    text-align: justify;
}

.social-links i{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	background-color: transparent;
	border: 0.2rem solid deepskyblue;
	border-radius: 50%;
	color: deepskyblue;
	margin: 0 15px;
	font-size: 1.5rem;
	transition: 0.2s linear;
}

.social-links i:hover{
	scale:1.3; 
	color: #121212;
	background-color: deepskyblue;
	filter: drop-shadow(0 0 10px deepskyblue);
}


.content button{
	width: 50%;
	height: 6vh;
	margin: 30px;
	background-color: deepskyblue;
	color: white;
	border: none;
	outline: none;
	font-size: 120%;
	font-weight: 700;
	border-radius: 5px;
	transition: 0.2s linear;
}

.content button:hover{
	scale: 1.1;
	color: deepskyblue;
	border: 2px solid deepskyblue;
	background-color: transparent;
	font-weight: 700;
	box-shadow: 0 0 40px deepskyblue;
}



section .content{
	width: 80%;
	margin: 0px auto;
	font-family: 'Poppins', sans-serif
}



.about .about-details{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section .title{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

section .title span{
	color: white;
	font-size: 30px;
	font-weight: 600;
	position: relative;
	padding-bottom: 8px;
}

section .title span::before,
section .title span::after{
	content: '';
	position: absolute;
	height: 3px;
	width: 100%;
	background: deepskyblue;
	left: 0;
	bottom: 0;
}

section .title span::after{
	bottom: -7px;
	width: 70%p;
	left: 50%;
	transform: translateX(-50%);
}

.about .about-details .left{
	width: 45%;
}

.about .left img{
	height: 400px;
	width: 400px;
	object-fit: cover;
	border-radius: 12px;
}

.about-details .right{
	width: 55%;
}

section .topic{
	color: white;
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 10px;
}

.about-details .right p{
	text-align: justify;
	color: white;
}




.experience .content{
	padding: 40px 0;
}

.experience .experience-details{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.experience-details .text{
	width: 50%;
}

.experience-details p{
	color: white;
	text-align: justify;
}

.experience .experience-details .educations{
	display: flex;
	align-items: center;
	margin: 0 10px;
}

.experience-details .educations .edu{
	color: white;
	font-size: 60px;
}

.experience-details .educations .deg{
	color: white;
	margin-left: 20px;
	font-size: 18px;
	font-weight: 500;
	margin: 0 6px;
}

.experience-details .boxes{
	width: 45%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.experience-details .box{
	width: calc(100% / 2 - 20px);
	margin: 20px 0;
}

.experience-details .boxes .topic{
	font-size: 20px;
	color: deepskyblue;
}

.experience-details .box .container{
    width: 100%;
    background: white;
    border-radius: 50px;
    box-shadow: inset 5px 5px 5px #bfc3cb, inset -5px -5px -5px white;
}

.bar{
    padding: 15px;
    text-align: right;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.Illustrator{
    width: 80%;
    border-radius: 50px;
    background-color: deepskyblue;
}

.Photoshop{
   width: 90%;
    border-radius: 50px;
    background-color: deepskyblue; 
}

.InDesign{
   width: 70%;
    border-radius: 50px;
    background-color: deepskyblue; 
}

.Premiere_Pro{
   width: 75%;
    border-radius: 50px;
    background-color: deepskyblue; 
}

.After_Effects{
   width: 75%;
    border-radius: 50px;
    background-color: deepskyblue; 
}

.XD{
   width: 60%;
    border-radius: 50px;
    background-color: deepskyblue; 
}



.services .boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.services .boxes .box{
	margin: 20px 0;
	width: calc(100% / 3 - 20px);
	text-align: center;
	border-radius: 12px;
	padding: 30px 10px;
	box-shadow: 0 5px 10px black rgba(0, 0, 0, 0.12);
	cursor: default;
	color: white;
	transition: all 0.4 ease;
}

.services .boxes .box:hover{
	background-color: deepskyblue;
	color: white;
}

.services .boxes .box .icon{
	height: 50px;
	width: 50px;
	background: deepskyblue;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: white;
	margin: 0 auto 10px auto;
	transition: all 0.4s ease;
}

.boxes .box:hover .icon{
	background-color: white;
	color: deepskyblue;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p{
	color: white;
	transition: all 0.4s ease;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p{
	color: white;
}

.gallery{
	align-content: center;
    background: #121212;
}

.gallery img{
	width: 230px;
	padding: 5px;
	filter: grayscale(80%);
	transition: 1s;
}

.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.2);
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: #121212;
  padding: 5px;
}
.grid-item{
 background-color: deepskyblue;
 border: 6px solid #121212;
 padding: 20px;
 font-size: 30px;
 text-align: center;
 } 



.contact .contact{
   margin: 0 auto; 
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact .text{
    width: 80%;
    text-align: center;
    margin: auto;
}
.contact .text p{
    text-align: center;
    margin: auto;
    color: white;
}
.contact-form-container{
    width: 100%;
    max-width: 500px;
    padding: 20px;
}
.contact-form{
    background-color: transparent;
    padding: 30px;
    box-shadow: 0 2px 10px black(0, 0, 0, 0.1);
    border-radius: 8px;
}
.contact-form h2{
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
    color: deepskyblue;
}
.contact-form label{
    display: block;
    color: deepskyblue;
    margin-bottom: 8px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #3498DB;
    outline: none;
}
.contact button{
    width: 100%;
    padding: 12px;
    background-color: deepskyblue;
    border: none;
    color: white;
    font-size: 18px; 
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s linear;
}
.contact button:hover{
    scale: 1.1;
	color: deepskyblue;
	border: 2px solid deepskyblue;
	background-color: transparent;
	font-weight: 700;
	box-shadow: 0 0 40px deepskyblue;
}

@media (max-width: 768px){
    .contact-form-container{
        padding: 10px;
    }  
}

@media (max-width: 480px){
    .contact-form h2{
        font-size: 20px;
    }
    
    .contact-form{
        padding: 0px;
    }
    
    .contact button{
        font-size: 16px;
    } 
}




footer{
	background: deepskyblue;
	padding: 15px 0;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}
	
footer .text span{
	font-size: 17px;
	font-weight: 400;
	color: white;
}	
	
footer .text span a{
	font-weight: 500;
	color: white;
}	
	
footer .text span a:hover{
    text-decoration: underline;
}	
	


@media (max-width: 1000px){
	.about .about-details{
		justify-content: center;
		flex-direction: column;
	}
	.about .about-details .left{
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.about-details .right{
		width: 90%;
		margin: 40px 0;
	}
	.services .boxes .box{
		margin: 20px 0;	
		width: calc(100% /2-20px);
	}
}	


@media (max-width: 900px){
	.about .left img{
		height: 350px;
		width: 350px;
	}	
}

@media (max-width: 968px){
	
	nav .logo{
		position: absolute;
		top: 16px;
		left: 15px;
		font-size: 1.5rem;
	}
	
	
	section .main-container{
		padding-left: 0px;
		display: flex;
		flex-direction: column;
	}
	
	
	.nav-container .links{
		display: none;
	}
	
	.main-container .content{
		margin-top: 20px;
		width: 80%;
	}
	
	.social-links i{
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.5rem;
	}
	
	.main-container .image{
		z-index: -1;
		width: 50%;
		height: 60%;
	}
	
	.experience .experience-details{
		align-content: center;
		justify-content: center;
		flex-direction: column;
	}
	
	.experience-details .text{
		width: 100%;
		margin-bottom: 50px;
	}
	
	.experience-details .boxes{
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	
	.services .boxes .box{
		margin: 20px 0;
		width: 100px;
	}
	
	.contact .text{
		width: 100%;
	}
}


@media (max-width: 500px){
	.main-container .image{
		width: 50%;
		height: 60%;
		margin-bottom: 0px;
	}
	
	.main-container .content{
		width: 80%;
	}
	
	.main-container .button{
		margin-top: 15px;
	}
	
	.skills-details .boxes .per{
		font-size: 50px;
		color: deepskyblue;
	}
	
	.about-img img{
		text-align: center;
		width: 100%;
		height: 300px;
		max-width: 300px;
		border-radius: 50%;
		object-fit: cover;
		margin: 0 auto;
	}
}

@media(max-width: 1285px){
    html{
        font-size: 55;
    }
    .services-container{
        padding-bottom: 7rem;
        grid-template-columns: repeat(2,1px);
        margin: 0 5rem;
    }
}

   

























