@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    margin: 0;
    padding: o;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;

}
section .animate{
    transition: 1s ;
    filter: blur(7px);
    opacity: 0;
}
section.show-animation .animate{
    filter: blur(0);
    opacity: 1;
}

section{
	height: auto;
}

body{
   margin: 0;
   padding: 0;
    background: #0f0f0f;
	color:white;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	user-select: none;
}
html{
    scroll-behavior: smooth;

}
::selection{
	background-color: white;
	color: black;
}


.container{
	min-height: 100vh;
    padding: 20px;
	overflow: hidden;
	position: relative;
}
.container .go-up{
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-decoration: none;
	color: #fff;
	z-index: 2;
	padding:5px 10px;
	border: 4px solid #ff004f;
	background: transparent;
	border-radius: 5px;
	transition: all .4s ease-in;
}
.container .go-up:hover{
	background: #ff004f;
	box-shadow: 0 0px 100px 16px rgb(255, 0, 79, 0.7);
}

.container .line{
	width: 80vw;
	margin: 0  auto;
	height: 10px;
	border-radius:  20px 20px 0 0;
	background: #ff004f;
	transition: all .5s ease-in;
}
/* --------side navigation---------- */
 .side-nav{
	width: max-content;
	height: fit-content;
	padding: 0px;
	z-index: 2;
	position: fixed;
	top: 20%;
	left: 10px;
	background-color: #303030;
	border-radius: 20px;
	transition: .4s ease-in;
	
}
nav ul li a{
	text-decoration: none;
	margin: 0;
	width: 0px;
	color: #fff;
	overflow: hidden;
	cursor: pointer;
	transition: .4s ease-in;
}
.side-nav:hover nav ul li a{
	width: 85px;
}
nav ul {
	list-style-type: none;
	display: inline;
	
}
nav ul li{
	display: flex;
	padding: 0px;
	margin: 5px 10px;
	justify-content: flex-start;
	align-items: center;
	background: #2a2a2a;
	border-radius: 10px;
	transition: .4s ease-in;
}
nav ul li:hover{
	background: #ff004f;
}
nav ul li i{
	padding: 8px;
	text-align: center;
	font-size: 16px;
	margin: 5px;
	cursor: pointer;
	
}





@media (max-width:360px) {
	
		.side-nav{
			position: fixed;
			width: 100%;
			padding: 4px 0;
			z-index: 2;
			top: 0;
			left: 0;
			display: flex;
			justify-content: center;align-items: center;
			background-color: #303030;
			border-radius: 0 0 20px 20px;
			transition: .4s ease-in;
			
		}
		
		nav ul li a{
			text-decoration: none;
			margin: 0;
			width: 0px;
			color: #fff;
			overflow: hidden;
			cursor: pointer;
			transition: .4s ease-in;
		}
		.side-nav:hover nav ul li a{
			width: 0;
		
			
		}
		nav ul {
			 list-style-type: none;
			 display: flex;
			 align-items: center;
			 /* background: red; */
			 width: 100%;
			 	
		}
		nav ul li{
			display: flex;
			padding: 0px;
			margin: 5px;
			background: #2a2a2a;
			border-radius: 10px;
			transition: .4s ease-in;
			
		}
		nav ul li:hover{
			background: #ff004f;
		}
		nav ul li i{
			padding: 5px;
			text-align: center;
			font-size: 16px;
			margin: 5px;
			cursor: pointer;
			
		} 
}
@media (max-width:250px) {
	nav ul li {
		margin: 2px;
	}
	nav ul li i {
		padding: 2px;
		font-size: 14px;
	}
	
}




/* -------top-layout------- */

.main{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.home{
	height: 100vh;
	margin-top: 68px;
}

/* ------------------text-contents----------- */
.text-content{
    width: auto;
    height: fit-content;
	background: transparent;
	
}
.text-content h1{
    font-weight: 900;
    height: 105px;
    font-size: 5rem;
    margin: 0;
}
.text-content h4{
    font-weight: 900;
	font-size: 3rem;
	margin: 0;
}
.text-content h5{
    font-weight: 900;
	font-size: 1.4rem;
	margin: 0;
}
.text-content h3{
    font-weight: 900;
	font-size: 3rem;
	margin: 0;
	color: #ff004f;
}

/* ---------social links and buttons ---------- */
.social-links{
	width: 100%;
	display: flex;
	flex-direction: column;
	
  }
  .buttons{
	width: 100%;
	height: 60px;
	display: flex;
	justify-content:left;
	align-items: left;
	margin: 20px 0;
	padding: 0;
  
  }
  .buttons .icon{
	height: 40px;
	width: 40px;
	background: transparent;
	border: 4px solid #ff004f;
	border-radius: 50px;
	margin: 5px 14px;
	color:#ff004f ;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px;
	padding: 0;
	transform: scale(1);
	transition: .4s ease-out;
	cursor: pointer;

 }
 .icon:hover{
	color: white;
	background: var(--text-span-color);
	transform: scale(1.3);
	
 }
 .social-links a {
    width: fit-content;
	text-decoration:none ;
	font-size: 20px;
	margin: 0 7px;
	font-weight: 500;
	text-align: center;
	color: #ff004f;
	cursor: pointer;
	padding: 5px 20px;
	border: 2px solid #ff004f;
	border-radius: 50px;
	background: transparent;
	transition: all .4s ease-in;
	box-shadow: 0 0px 5px 5px rgba(46, 46, 46, 0);
	

 }
 .key-btn{
	width: max-content;
	padding: 0;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
 }

 .key-btn a:nth-child(2){
	background: #ff004f;
	box-shadow: 0 0px 5px 5px rgba(46, 46, 46, 0);
	color: #fff;
 }
 .key-btn a:hover{
	background: #ff004f;
	color: #fff;
	box-shadow: 0 0px 100px 16px rgb(255, 0, 79, 0.7);
 }
 


 /* -------------image-contents-------- */
 .image-content{
    background: transparent;
    
 }
 .box{
    background: url(../../Resources/MainImage.png);
    /* --webkit-background-size:cover ; */
    background-size: cover;
    background-position: center center;
    height: 500px;
    width: 500px;
    box-shadow: 0 20px 5px 5px rgba(83, 83, 83, 0.2);   
    
}

















/* -------------- experience layout styling --------  */
.experience{
	min-height: 100vh;
	padding: 50px 100px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.exp-box{
	min-height: 450px;
	background: #202020;
	border-radius: 20px;
	padding: 10px 20px;
	position: relative;
	width: 100%;
	
}
.exp .animate{
	transform: translateX(20%);
}
.exp.show-animation .animate{
	transform: translateX(0);
}
.exp-box:nth-child(1)::before{
	content: "";
	display: table;
	height: 50%;
	width: 70%;
	background: #2a2a2a;
	border-radius: 30px;
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: -2;
	box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.exp-box:nth-child(2)::before{
	content: "";
	display: table;
	height: 50%;
	width: 70%;
	background: #2a2a2a;
	border-radius: 30px;
	position: absolute;
	right: -30px;
	bottom: -30px;
	z-index: -2;
	box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.exp-box h4{
	font-size: 1.7rem;
	text-transform: uppercase;
	margin: 10px 20px;
}
.experience-item{
    display: flex;
    overflow: hidden;
    margin: 0;


}
.exp-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0;
  
    
    
}
 .circle{
    position: relative;
    padding: 20px 0 ;
    display: flex;
    background-color: transparent;
    z-index: 1;
}
 
 .circle .icon{
    min-width: 50px;
    height: 50px;
    background: white;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: black;
    transition: .5s all ease;

}
 .exp-content .line{
    height: 120px;
    width: 5px;
    background-color: rgb(143, 141, 141);
    position: absolute;
    transform: translate(23px, 65px);
	border-radius: 10px;
    

    
 }
 .exp-content .circle:hover .icon
{
    background-color: #ff004f;
    color: #fff;
    transform: translateY(-5px);
}
.exp-content .circle:hover  ~ .line {
    background-color: #ff004f;  
    
}
 .exp-content .circle  .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: white;
    flex-direction: column;
    font-weight: 300;


}
 .exp-content .circle .text h3{
    font-weight: 500;
    color: #ff004f;
    transition: .5s all ease;

}
.exp-content .circle .text p{
    padding: 0;
    font-size: 16px;
    text-align: left;
   
    
}
.exp-box:nth-child(2){
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.exp-box .award-bar{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.award-bar img{
	height: 100px;
	width: 100px;
	border-radius: 50px;
}
.award-title{
	width: 100%;
	background: #2a2a2a;
	border-radius: 20px;
	padding: 5px 20px;
	margin: 0 10px;
}
.award-bar .award-title h5{
	font-size: 20px;
	font-weight: 600;
}
.award-bar .award-title h6{
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
}

.award-bar .award-title p{
	font-size: 14px;
	color: #757575;
}





/* ---------------- portfolio / work styling ---------------  */
.work{
	min-height: 100vh;
	padding: 50px 100px;
	display: flex;	
	gap: 1rem;
	justify-content: center;
	align-items: center;

}

.portfolio .animate{
    transform: translateX(-20%);
}
.portfolio.show-animation .animate{
    transform: translateX(0);
}
.work-box{
	height: 470px;
	width: 100%;
	background: #202020;
	border-radius: 20px;
	padding: 10px 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	
	
}
.work-box:nth-child(1)::before{
	content: "";
	display: table;
	height: 70%;
	width: 50%;
	background: #2a2a2a;
	border-radius: 30px;
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: -2;
	box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.work-box:nth-child(3)::after{
	content: "";
	display: table;
	height: 30%;
	width: 60%;
	background: #2a2a2a;
	border-radius: 30px;
	position: absolute;
	right: -20px;
	bottom: -40px;
	z-index: -2;
	box-shadow: 0 0px 50px 3px rgba(243, 242, 243, 0.137);
}
.work-box .wbar{
	width: 100%;
	min-height: 40%;
	border-radius: 20px;
	
	
}

.ad1{
	background-image: url(../../Resources/booking.jpg);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all .4s ease;
	position: relative;
}
.layer{
	width: 100%;
	height: 0%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: absolute;
	bottom: 0;
	align-items: center;
	background: rgb(255,0,79);
    background: linear-gradient(180deg, rgba(255,0,79,0.24413515406162467) 4%, rgba(255,0,79,1) 100%);
	border-radius: 20px;
	transition: all .4s ease;
	overflow: hidden;
	
}
.layer p{
	width: 80%;
	font-size: 18px;
	line-height: 18px;
	text-align: center;

}
.layer i{
	color: #ff004f;
	padding: 18px;
	font-size: 20px;
	font-weight: 600;
	border-radius: 50px;
	background: #fff;
}
.ad1:hover .layer{
  height: 100%;
}

.ad2{
	background-image: url(../../Resources/unnamed.webp);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.ad2:hover .layer{
	height: 100%;
  }
  
.wad1{
	background-image: url(../../Resources/web2.png);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.wad1:hover .layer{
	height: 100%;
  }
.wad2{
	background-image: url(../../Resources/web-2.png);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.wad2:hover .layer{
	height: 100%;
  }
.ip1{
	background-image: url(../../Resources/skills.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.ip1:hover .layer{
	height: 100%;
  }
.ip2{
	background-image: url(../../Resources/MainImage.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.ip2:hover .layer{
	height: 100%;
  }
.work-box .work-heading{
width: 100%;
text-align: left;
font-size: 20px;
font-weight: 500;
margin-top: 10px;
	
}
#more{
	width: 50%;
	height: 40px;
	margin-top: 5px;
	background: #ff004f;
	border: 2px solid #ff004f;
	border-radius: 10px;
	box-shadow: 0 0px 5px 5px rgba(46, 46, 46, 0);
	transition: all .4s ease;
	color: #fff;
	
}
#more:hover{
	box-shadow: 0 0px 100px 16px rgb(255, 0, 79, 0.7);
	color: #fff;
}
#more h3{
	margin: 5px 0;
	font-size: 18px;
	width: 100%;
	font-weight: 500;
	text-align: center;
}




/* ----------------small screen responsive --------  */
@media (max-width:960px) {

	 /* --------------experience section-------------  */
	 .experience{
		 flex-direction: column;
		 padding: 100px 20px;
		}
		
		/* --------------work / portfolio section-------------  */
		.work{
			flex-direction: column;
			padding: 20px;
		}
		.work-box{
			height: 700px;
		}

		.exp-content .line{
			height: 130px;
			
			
		 }
}
@media (max-width:600px) {
	.exp-content .line{
		height: 120px;
		

	}
	.exp-box .experience-item{
		flex-direction: column;
	}
	.exp-content{
		width: 100%;
	}
}
@media (max-width:450px) {
	.container{
		padding: 0px;
		width: 100%;
		padding-left: 10px;
		
	}
	
	
	.award-bar img{
		height: 50px;
		width: 50px;

	}
	.award-bar .award-title h5{
		font-size: 18px ;
		font-weight: 500;
		line-height: 20px;

	}
	
	.award-title h6{
		font-size: 15px;
		font-weight: 300;
		color: rgb(160, 157, 157);
	}
}
@media (max-width:360px) {
	/* -------education styling in small screen-------- */
	.exp-box:nth-child(1)::before{
		left: -10px;
		top: -10px;
		border-radius: 20px;
	}
	.exp-box:nth-child(2)::before{
		right: -10px;
		bottom: -10px;
		border-radius: 20px;
		
	}
	.experience{
		padding: 50px 10px;
	}
	.exp-box{
		padding: 10px 10px;
	}
	.exp-box .award-bar img{
		height: 50px;
		width: 50px;
	}
	.award-bar .award-title h5{
		font-size: 16px;
		font-weight: 400;
	}
	.award-bar .award-title  h6{
		font-size: 14px;
	}
      .award-bar .award-title p{
		font-size: 12px;

	  }
	/* -------work/ portfolio styling in small screen-------- */
	.work{
		
		padding: 50px 10px;
	}
	.work-box{
		padding: 10px;
	}
	.work-box:nth-child(1)::before{
   		left: -10px;
		top: -10px;
		border-radius: 20px;
	}
	.work-box:nth-child(3)::after{
		right: -10px;
		bottom: -10px;
		border-radius: 20px;
	}   
}
