@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", serif;
}
body{
    background-color: rgb(2, 73, 73);
}
header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding: 0 0.5rem;
    max-width: 1200px;
}
.navigation ul{ 
    display: flex;
    list-style-type: none;
    gap: 2rem;
    
}
.navigation a {
    text-decoration: none;
    color: aliceblue;
}
.navigation a:hover {
    color: rgb(51, 137, 212);
}
hr{ 
    opacity: 10%;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
}
.arrow{
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);
}
.heroSub{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.name{
    font-size: 3rem;
    color: #f4f8f8;
}
.title {
    font-size: 4rem;
    color: #05d4f8;
}
.heroBtns {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}
.hireMe { 
    background-color: #05d4f8;
    color: #f4f8f8;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0,  05);
}
.cv {
    background-color: rgba(57, 62, 70,0.75);
    color: #eeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
}
.aboutMe { 
    display: flex;
    justify-content: space-between;
    align-items:center ;
    margin: 5rem auto;
    max-width: 1200px;
    gap: 10rem;
}
.textContainer {
    display: flex;
    flex-direction: column;
}
.texttitle { 
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
}
.aboutName {
    color: #05d4f8;
}
.aboutMepar {
    text-align: justify;
    color: rgb(238, 238, 238, 0.75);
}
.Workes{
 background-image: url(assets/svg/background.svg);
 padding: 10rem 10rem;  
 margin: 5rem 0rem; 
}
.WorkesContainer{
 display: flex;   
 flex-direction: column;
 justify-content: space-around;
 align-items: left;
 margin: 5rem auto;
 max-width: 1200px;
}
.projectTitle{
display: flex; 
align-items: center;
justify-content: left;
gap: 5px;
font-size: 2rem;
}
.Workes ul{
 display: flex; 
 flex-wrap: wrap; 
 gap: 15px;
 list-style-type:none ; 
 align-items: center;
 justify-content: space-between;
}
.Workes il{
border-radius: 16px; 
background-color: rgba(57, 62, 70, 0.5);
backdrop-filter: blur(4px);
padding: 1rem 4rem;

}
.Workes li img{
width: 200px;
height: 200px;
object-fit: contain;
transition: transform 0.2s;
}
.Workes li :hover{
 transform: scale(1.5);   
}
.ContactContainer{
 display: flex;   
 flex-direction: column;
 align-items: center;
 justify-content: space-around;
 gap: 2rem;
 margin: 2rem auto;
 max-width: 1200px;
}
.contactTitle {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
margin-bottom: 10px;
font-size: 2rem;
}
.Contact{
display: flex;  
align-items: center;
justify-content: center;
margin-right: 5rem;
gap: 20rem;
}
.Contact h3, Contact a{
    color: #ffffffee;
    text-decoration:none;
}
.emailAndPhone{
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 5px;
}
.cosialMedia{
 display: flex; 
 align-items: center;
 justify-content: center; 
 gap: 3rem; 
}
.cosialMedia a{
display: flex;
align-items: center;
justify-content: center;
border-radius: 50px;
background-color: rgba(57, 62, 70, 0.5);
backdrop-filter: blur(4px);
padding: 1rem;
}
.cosialMedia img{
    width: 24px;
    height: 24px;
}
footer {
  color: #f4f8f8;
  padding: 2rem;  
  text-align: center;
}
@media (max-width:1023px){
    header{
    margin-left: 1rem;
    margin-right: 1rem;
    }
    .hero {
    flex-direction: column;  
    align-items: center;  
    gap: 2rem;
    }
    .heroImg{
    width: 400px;    
    }
    .name ,.title{
     font-size: 2rem;   
    }
    .arrow {
    display: none;    
    }
    .aboutMe {
    flex-direction: column-reverse;
    align-items: center; 
    gap: 2rem;  
    }
    .textContainer {
     align-items: center; 
     margin: 0rem 5rem; 
     gap: 1rem;
    }
    .aboutName , .aboutTitle{
    font-size: 2rem;
    }
    .light {
    width: 60px;
    }
    .aboutMeImg{
    width: 60px;
    }
    .Workes {
    padding: 0;
    }
    .WorkesContainer {
     padding: 5rem 0rem;
     gap: 1rem;  
    }
    .projectTitle {
    margin-left: 1rem;
    }
    .Workes ul {
    flex-direction: column;
    gap: 1rem;
    }
    .ContactContainer{
    margin: 10rem 5rem;
    gap: 2rem;
    }
    .Contact {
    flex-direction: column;
    gap: 1rem;
    margin-right: 0;
    }

}