/* start global rools */
@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');
*{
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;

}
body{
   background-color: #121534;
}
/* start global rools */
/* srart components*/
.main{
    Padding: 100px 50px;
}
.title{
    color:#6ae0ff;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 60px;
    font-size: 2.2em;
    font-weight: 800;
}
.content {
    display: flex;
    justify-content:center;
    flex-direction: row;
    flex-wrap: wrap;
}
/* end components*/
/* start header */
header{
    width: 100%;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}
header .logo{
   width: 20%;
   padding-top: 10px;
}
header .logo img{
   width: 100%;
}
.navigation a{
   color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 5px 10px;
    background-color:#a7a7f680;
    border-radius: 10px;
    
}
.navigation a:hover{
     color: #69249a;
    background-color: #ffffffd6;
}
/* end header */
/* start main */
.main{
    width: 100%;
    height: calc(100vh - 65px); 
    display: flex;
    align-items: flex-end;
    color: white;
    background: url(images/main-bg-new.png) no-repeat;
    background-size: cover;
    background-position: center;  
}
.main .info{
    max-width: 60%;
}
.main h2{
    font-size: 1.8em;
    font-weight: 500;
    color:  #e5e4e4;
}
.main h2 span{
    font-size: 2em;
    font-weight: 600;
    color: #6ae0ff;
    display: inline-block;
    margin: 10px 0;
}
.main h3{
    font-size: 1.5em;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.main .main-btn{
    display: inline-block;
    font-size: 1.1em;
    font-weight: 600;
    color: #451067;
    text-decoration: none;
    background-color: #ffa3e4;
    margin-bottom: 40px;
    padding: 10px 15px;
    border-radius: 15px;
    letter-spacing: 1px;
    transition: 0.4s ease;
    
}
.main .main-btn:hover{
    background-color:#6ae0ff;
    transform: scale(1.1)
}
 .social-icons a{
    color: white;
    font-size: 1.5em;
    margin-right: 15px;
}
/* end main */
/* start services & contacts */
 .card{
    width: 300px;
    text-align: center;
    color: white;
    padding: 25px;
    margin-right: 20px;
    box-shadow: 0 5px 15px pink;
    transition: 0.4s ease;
}
 .card:hover{
    transform: scale(1.1)
}
  .card .icon{
    font-size: 4.5em;
    color:#6ae0ff;
}
 .card h3{
    color: #6ae0ff;
    margin: 5px 0;
}
/* contacts */
.contacts .card{
    padding: 15px 25px;
}
.contacts .icon{
    font-size: 2.5em;
}
.contacts .card h3{
    margin: 5px 0;
}
.contacts a{
    color: white;
    text-decoration: none;
    
}
.contacts a:hover{
    color: #ffa3e4;

}
/* end services & contacts*/
/* start projects */
 .project-card{
    border: 1px solid pink;
    min-height: 14em;
    width: 22em;
    overflow: hidden;
    margin-right: 25px;
    border-radius: 10px;
    transition: 0.4s ease;
}
 .project-card:hover{
    transform: scale(1.1);
}
.project-img img{
    width: 100%;
    transition: filter 0.4s ease;
}
.project-img:hover{
    filter: brightness(1.15); /*عشان ازود سطوع الصوره */
}
.project-info{
    padding: 10px 15px;
    
}
.project-title{
    display: block;
    font-weight: 800;
    color: white;
    word-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}
.project-links{
    display: flex;
    justify-content: space-evenly;
}
.project-links a {
    text-decoration: none;
    color: #121534;
    border-radius: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.project-info .more-details{
    background-color: #ffa3e4;
    padding: 5px 10px;
    transition: 0.4s ease;
}
.project-info .live-demo{
    background-color: #6ae0ff;
    padding: 5px 15px;
}
.project-info .more-details:hover,
.project-info .live-demo:hover{
    text-decoration: underline;    
}
/* end projects */
/* start footer */
.footer{
    background-image: url(images/footer-bg.webp);
    background-size: cover;
    padding: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-top: 100px;
    color: white;
}
.footer-title{
    font-size: 1.1em;
    font-weight: 600;
}
.footer-title span{
    color:#6ae0ff
}
.footer a{
    font-size: 1.2em;
    margin-right: 10px;

}
/* end footer */
/* start media */
/* mobile screens */
@media (max-width:600px){
    body{
        font-size: 12px;
    }
    header{
    padding: 0 20px;
}
.navigation a{
    font-size: 0.7em;
    padding: 5px;
    background-color: transparent;
}
.main{
    justify-content: center;
    background: url(images/mobile-main.webp) no-repeat;
    background-size: cover;
    text-align:center;
}
.main .info{
    width: 100%;   
    position: absolute;
    bottom: 100px;
}
.main h2{
    font-size: 1.8em;
}
.main h2 span{
    font-size: 1.8em;
}
.main h3{
    font-size: 1.1em;
}
.main .main-btn{
    margin-bottom: 20px;    
}
.card{
    margin-bottom: 10px;
}
.project-card{
    margin-bottom: 10px;
}
.footer-title{
    font-weight: 0.8em;
}
.footer-title{
    font-size: 1em;
    font-weight: 500;
}
.footer a{
    font-size: 1em;
    margin-right: 5px;

}
}
/* tablet screens */
@media (min-width: 600px) and (max-width: 1025px){
 body{
    font-size: 14px;
    }
header{
    padding: 0 20px;
}
.main{

    justify-content: center;
    background: url(images/mobile-main.webp) no-repeat;
    background-size: cover;
    text-align:center;
    
}
.main .info{
    width: 100%;   
 
    position: absolute;
}
.main h2{
    font-size: 1.8em;
}
.main h2 span{
    font-size: 1.8em;
}
.main h3{
    font-size: 1.1em;
}
.main .main-btn{
    margin-bottom: 20px;    
}
.card{
    margin-bottom: 20px;
}
.project-card{
    margin-right:15px;
    margin-bottom: 15px;
}
.footer-title{
    font-weight: 0.8em;
}
.footer-title{
    font-size: 1em;
    font-weight: 500;
}
.footer a{
    font-size: 1em;
    margin-right: 5px;

}
}
/* end media */
