@charset "UTF-8";

*  {
margin: 0; 
padding: 0;
}

html {
	scroll-behavior: smooth;
}


body{
	overflow-x: hidden;
	background-color: white;
	width: 100%;
	height: 100vh;
	color: black;
	font-family: "Poppins", sans-serif;

	}

p {
	color: black;
	font-family: "Lato", sans-serif;
}
	
header {
	margin-top: 20px;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	padding: 1rem 9%;
	background-color: transparent; 
	filter: drop-shadow(10px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	
}


/* TRANSITION */

a, .btn {
 transition: all 300ms ease;

}

/* NAV CONTAINER */ 

#nav-container, .nav-links {
	
	display: flex;
}

#nav-container {
	justify-content: space-around;
	align-items: center;
	height: 17vh;
}

.nav-links {
	gap: 2rem;
	list-style: none;
	font-size: 1.5rem;

}


a { 
	color: blue;
	text-decoration: none;
	text-decoration-color: whitesmoke;
}

a:hover{
	color: black;
	text-decoration: underline;
	text-decoration-color: black;
}
.logo {
	color: blue;
	font-size: 2rem;
	font-weight: bold;
}

.logo span{ 
	
	color: blue;
	text-shadow: 0 0 10px rgb(46, 46, 247);
}

.logo:hover {
	cursor: default;
}


/* HAMBURGER MENU */ 

#hamburger-nav{

	display: none;
	justify-content: space-between;
	padding: 0 2rem;

}
 
.hamburger-menu {
	position: relative;
	display: inline-block;
}


.hamburger-icon{
	display: flex; 
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width:30px;
	cursor: pointer;
}

.hamburger-icon span{
width: 100%;
height: 2px;
background-color: black;
transition: all 0.3 ease-in-out;
}


.menu-links {
	position: absolute; 
	top: 100%;
	right: 0%;
	background-color: white;
	width: fit-content;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3 ease-in-out;
}

.menu-links a {
	display:  block;
	padding: 10px;
	text-align: center;
	font-size: 1.5rem;
	color: blue;
	text-decoration:  none;
	transition: all 0.3 ease-in-out ;
}

.menu-links li {
	list-style: none;
}

.menu-links.open {
	max-height: 300px;

}

.hamburger-icon.open span:first-child {
	transform: rotate(45deg) translate(10px, 5px);

}


.hamburger-icon.open span:nth-child(2) {
	opacity: 0;

}

.hamburger-icon.open span:last-child {
	transform: rotate(-45deg) translate(10px, -5px);

}

.hamburger-icon span:first-child {
	transform: none;
}


.hamburger-icon span:first-child {
	opacity: 1
}


.hamburger-icon span:first-child {
	transform: none;
}
.section{
	padding-top: 4vh;
	height: 96vh;
	margin: 0 10rem;
	box-sizing: border;
	min-height: fit-content;
}



/* PROFILE */ 


#profile {
	display: flex;
	justify-content: center;
	gap: 5rem;
	height: 80vh;

}

.main-container.img {
	display: flex;
	height: 500;
	width: 500;
	margin: 0;
	margin: auto 0;
}

.profile.content {
	align-self: center;
	text-align: center;

}

.content { 

  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center all content inside */
  gap: 20px;               /* spacing between elements */
  color: black;
  padding-left: 40px;
}


.main-container.img:hover{
	animation: animate 1.5s ease-in-out infinite;
}


@keyframes animate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.content h1{
	font-size: clamp(1rem, 1rem + 5vw, 1.8rem)
	
	
}
.content h1 span{
	color: blue;
	text-shadow: 0 0 10px rgb(141, 163, 243);
}

.content.typewriter{
	
font-size:clamp(1rem, 1rem +5vw, 2.5rem);
font-weight: 600;
	}

.typewriter-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typewriter {
  font-size: 34px;
  font-weight: 600;
  color: black;
}

.typewriter-text.typing{
	color: blue;
}
.typewriter-text::after {
  content: "|";
  animation: blink 0.7s infinite;
  color: rgb(117, 213, 255)
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}



.social-links i{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	background-color: transparent;
	border: 0.2rem solid blue;
	border-radius: 50%;
	color: blue;
	margin: 5px 15px;
	font-size: 1.5rem;
	transition: 0.2s linear;
	
	
}
.social-links i:hover{
	scale: 1.3;
	color: black;
	background-color: white;
	filter: drop-shadow (0 0 10px blue);
	cursor: pointer;
}
	


 .btn button {
	padding: 10px 20px;
	min-width: 150px;
	margin: 30px;
	background-color: blue;
	color: white; 
	font-weight: 700;
	border: none;
	font-size: 120%;
	border-radius: 5px;
	transition: 0.2s linear;
	outline: none;
	
}
.btn button:hover{
	scale: 1.1;
	color: blue;
	border: 2px solid blue;
	background-color: transparent;
	font-weight: 700;
	box-shadow: 0 0 40px blue;
}



.about .content {
	width: 80%;
	margin:0px auto;
	
}

 .about  .about-details{ 
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	}
	
	section .title{ 
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	} 
	
	.content .title span{
	color: black;
	font-size: 30px;
	font-weight: 600;
	position: relative; 
	padding-bottom: 8px;
	}
	
	.button button{ 
	background-color: blue;
	color: white;
	font-weight: 700;
	font-size: 120%;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	transition: 0.2s linear;
	outline: none;
	cursor: pointer;
	 }

.content .title span::before,
.content .title span::after {
	
	content: "";
	position: absolute;
	height: 3px;
	width: 100%;
	background: blue;
	left: 0;
	bottom: 0;
}
.content .title span::after{
	bottom: -7px; 
	width: 70%;
	left: 50%;
	transform: translateX(-50%);
}

.about .right {
	flex: 1;
	max-width: 45%
	
	
	
}

.about .right .img {
 	width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about .text-content {
  flex: 1;
  max-width: 50%;
  padding: 10px;
}

.about .topic {
  font-size: 25px;
  font-weight: 500;
  color: blue;
  margin-bottom: 16px;
  display:block;
  font-weight: bold;
}

.about .text-content p {
  text-align: justify;
  color: black;
  font-family: "Roboto Flex", sans-serif;
}

.about .button {
  margin-top: 16px;
}

.about .button button {
  background-color: blue;
  color: white;
  font-weight: 700;
  font-size: 120%;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: 0.2s linear;
  cursor: pointer;
}

.about .button button:hover {
  border: 2px solid blue;
  background-color: white;
  color: blue;
 border: 2px solid blue;
box-shadow: 0 0 40px blue;
}

.skills .content {
  padding: 40px 0;
}

 .skills .skills-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills .skills-details .text {
  width: 45%;
}

.skills .skills-details .text .topic {
  font-size: 40px;
  
  margin-bottom: 10px;
}

.skills .text p {
  color: black;
  text-align: justify;
  margin-left: 15px;
  
}

/* Experience block inside text */
.skills  .skills-details .experience {
  display: flex;
  align-items: center;
  margin: 15px;
}

.skills .skills-details .text {
	margin-left: 15px;
	

}
.text .topic {
font-size: 25px;
  font-weight: bold;
  color: blue;
  margin-bottom: 16px;
  display:block;
  

  padding: 10px;
}
.skills .experience .num {
  color: blue;
  font-size: 80px;
}

.skills .experience .exp {
  color: black;
  margin-left: 20px;
  font-size: 18px;
  font-weight: bold;
}

.skills .skills-details .boxes {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  

}

.skills-details .box{
	width: calc(50% - 10px);
	margin: 10px 0;
}

.skills-details .boxes .per{

font-size: 60px;
font-weight: bold;
}

.boxes .topic {
	font-size: 25px;
	font-weight: bold;
	color:blue;
	
}
.services .boxes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;

}

.services .boxes .box{ 
	margin: 15px 0;
	width: calc(100% / 3-20px);
	text-align: center;
	border-radius:12px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	cursor: default;
	color: black;
	transition: all 0.4s ease;
	min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;


}
.services .topic {
	color:blue;
	font-weight: bold;
	font-family: "Roboto Flex", sans-serif;

}

.services .boxes .box:hover{
background: rgb(141, 163, 243);
color: white;
}

.services .boxes .box .icon {
	height: 50px;
	width: 50px;
	background: blue;
	border-radius: 50%;
	text-align: center; 
	line-height: 50px;
	font-size: 18px;
	color: white;
	
}

/* CONTACT INFO */ 

.contact{
	background: white;

}

.contact .content {
	margin: 0 auto;
	padding: 30px 0;

	

}

.contact .content .topic{
	display: flex;
	justify-content: center; /* optional, to center text horizontally */
	align-items: center; 
	width: 80%;
	text-align: center;
	margin:auto;
	margin-bottom: 10px;
}

.contact .text .button {
	display:flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2px;
	cursor: pointer;
}



