*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
  }
body{
    font-family: 'Source Sans Pro', sans-serif;
  } 
.navigation{
    background-color: white;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 90px;
    align-items: center;
    position: fixed;
    z-index: 99;
}
.nav-logo{
    display: flex;
    align-items: center;
    margin: auto 10%;   
}
.nav-logo img{
    height: 60px;
    border-radius: 50%;
    padding: 7px;
}
.nav-list ul{
    display: flex;
    /* float: right; */
    /* margin: auto 10%; */
    gap: 35px;
}
.nav-list ul li{
    list-style-type: none;
    font-size: 18px;
}
.nav-list ul li a{
    text-decoration: none;
    color: black;
    transition: background-color 0.3s ease;
}
.nav-list ul li a:hover{
    color: rgb(59 130 246);
    text-decoration: underline;
}

/* the first section */

.section-home{
    background-color: rgb(59 130 246);
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 17%;
    padding-bottom: 2rem;
}
.logoes{
    margin-top: 4%;
}
.home-log{
    height: fit-content;
    padding: 5px;
    border: 2px solid white;
}
.home-log img{
    height: 35px;
    width: 37px;
}
.home-content{
    margin-left: 10%;
    width: 70%;
}
.content-h{
    text-align: center;
    font-size: 27px;
    color: white;
}
.content-p{
    text-align: center;
    font-size: 22px;
    color: white;
    margin-top: 70px;
}
.home-btn{
    text-align: center;
    margin-top: 2rem;
}
.home-btn button{
    color: black;
    font-size: 20px;
    font-weight: 700;
    height: 60px;
    width: 200px;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;
    border: none;
    cursor: pointer;
}
.arrow{
    background-color: white;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    animation-name: arrows;
    animation-duration: 3s;
    animation: arrows 3s infinite ease-in-out;
}
.cont-arrow{
    display: flex;
    justify-content: center;
    padding: 10px;
    z-index: 0;
}
@keyframes arrows{
    0%{
      transform: translateY(0);
    }
    50% {
      transform: translateY(25px);
    }

    100%{
      transform: translateY(0);
    }
    
  }

  /* section of about */
.about{
    background-color: whitesmoke;
    width: 100%;
    height: fit-content;
    padding-top: 80px;
    padding-bottom: 80px;
    justify-content: center;
}
.about-hd{
    height: fit-content;
    font-size: 35px;
    font-weight: 900;
    text-align: center;
    margin-top: 30px;
}
.about-p{
    margin-top: 70px;
    font-size: 20px;
    text-align: center;
    opacity: 60%;
}
.about-main{
    margin-top: 80px;
    justify-items: center;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.about-get{
    flex-direction: column;
    /* background-color: red; */
    width: 90%;
    text-align: center;
    margin-bottom: 70px;
}

.about-get h1{
    font-size: 35px;
    margin-top: 25px;
    /* opacity: 60%; */
    
}
.get-pra{
    margin-top: 30px;
    /* opacity: 60%; */
}
.get-pra p{
    margin-top: 10px;
    font-size: 17px;
    opacity: 60%;
}
.get-pralast{
    margin-top: 20px;
    font-size: 17px;
    opacity: 70%;
}
.get-pralast button{
    background-color: rgb(59 130 246);
    margin-top: 20px;
    font-size: 23px;
    height: 50px;
    width: 150px;
    color: white;
    cursor: pointer;    
    border: none;
    border-radius: 10px 10px 10px 10px;
}



.about-skills{
    color: black;
    margin-top: 30px; 
    /* background-color: red; */
    width: 90%;
    text-align: center;
}
.about-skills h1{
    font-size: 30px;
}
.skills-div1{
    display: grid;
    grid-template-columns: repeat(2,47%);
    margin-top: 37px;
    gap: 10px;
    text-align: center;
    /* opacity: 80%; */
}
.skl-dv1{
 /* font-size: 20px; */
 height: 60px;
 align-content: center;
 background-color: gainsboro;
 border-radius: 10px 10px 10px 10px;
}
.skl-dv1 p{
    font-size: fit-content;
    text-align: center;
    font-weight: 900;
    opacity: 60%;
}

.skills-div2{
    display: grid;
    grid-template-columns: repeat(4,22.5%);
    margin-top: 10px;
    gap: 10px;
}
.skl-dv2{
    height: 50px;
    align-content: center;
    background-color: gainsboro;
    border-radius: 10px 10px 10px 10px;
   }
   .skl-dv2 p{
       font-size: fit-content;
       text-align: center;
       font-weight: 900;
       opacity: 60%;
   }

.skills-div3{
    display: grid;
    grid-template-columns: repeat(4,145px);
    margin-top: 30px;
    gap: 10px;
}
.skl-dv3{
    font-size: 20px;
    height: 50px;
    padding-top:10px ;
    background-color: gray;
    border-radius: 10px 10px 10px 10px;
}
.skl-dv3 p{
       font-size: 20px;
       text-align: center;
}   

.Project{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}
.project-title{
    text-align: center;
    font-size: 30px;
    margin-top: 100px;
}
.project-pra{
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
    opacity: 60%;
}
.project-name{
    /* text-align: center; */
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2,50%);
    margin: 8%;
}
.first-pro{
    height: 500px;
}
.first-pro img{
    width: 100%;
    height: 90%;
}
.first-prodisc{
    color: black;
    padding-top: 70px;
    padding-left: 30px;
}
.first-prodisc h1{
    padding-bottom: 30px;
    font-size: 30px;
    color: black;
}
.first-prodisc p{
    padding-bottom: 10px;
    font-size: 19px;
}
.first-prodisc button{
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    margin: 30px;
    border-radius: 10px 10px 10px 10px;
    background-color: rgb(59 130 246);

}


.awards{
    background-color: whitesmoke;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.award-head h1{
    font-size: 30px;
}

.award-head p{
    font-size: 20px;
    margin-top: 30px;
    opacity: 60%;
}
.award-cert img{
    height: 25%;
    width: 30%;
    margin-top: 60px;
    padding-right: 20px;

}



.contact{
    background-color: rgb(59 130 246);
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    justify-items: center;
}
.contact-head{
    text-align: center;
    color: white;
}
.contact-head h1{
    font-size: 40px;
    font-weight: 900;
}
.contact-head p{
    font-size: 20px;
    margin-top: 50px;
    opacity: 70%;
}
.form{
    height: 70%;
    width: 50%;
    background-color: #f1f5f9;;
    text-align: center;
    margin-top: 60px;
    padding: 50px;
}
.input1 input{
    height: 40px;
    padding: 10px;
    width: 40%;
    border: none;
}
.input2 input{
    margin-top: 20px;
    height: 40px;
    padding: 10px;
    width: 81%;
    border: none;
}
.input3 textarea{
    margin-top: 20px;
    height: 100px;
    padding: 10px;
    width: 81%;
    border: none;
}
.input4 button{
    margin-top: 20px;
    height: 50px;
    padding: 10px;
    width: 81%;
    border: none;
    background-color: rgb(59 130 246);
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.input4 button:hover{
    background-color: rgba(63, 41, 41, 0.514);
}

.footer{
    background-color: black;
    color: white;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-items: center;
}
.main-footer{
    border-bottom: 2px solid #f1f5f9;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 200px;
}
.footer-left h1{
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 900;
}
.footer-left p{
    font-size: 18px;
}
.footer-right{
    justify-items: end;
}
.footer-right h1{
    font-size: 28px;
    font-weight: 900;
}
.logo2{
    display: flex;
    margin-top: 30px;
    gap: 5px;
}
.lastdv{
    display: flex;
    margin-top: 30px;
    gap: 5px;
}
.lastdv a{
   color: white;
}
.nav-right{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu-toggle{
    display: none;

    font-size: 30px;
    color: black;
    cursor: pointer;
    
}


@media(max-width:768px){
    .nav-list {
        display: none;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 1.2rem;
    }

    .nav-list.active {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 5rem;
        right: 1rem;
        background-color: rgb(25, 88, 112);
        padding: 0 1rem 0 1rem;
    }

    .nav-list.active ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 2rem auto;
    }
    .logoes{
        padding-top: 80px;
    }
    .content-h{
        font-size: 20px;
    }
    .home-content{
        margin-top: 3rem;
    }
    .content-p{
        font-size: 16px;
    }

}

@media(max-width: 765px){
    .about-main{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .skills-div2{
        grid-template-columns: repeat(3,30%);
    }
    .project-name{
        grid-template-columns: 1fr;
    }
    .award-cert img{
        height: 50%;
        width: 80%;
        flex-direction: column;
    }
    .form{
        height: 30%;
        width: 90%;
    }
    .main-footer{
        grid-template-columns: 1fr;
    }
    .footer-right{
        justify-items: start;
        padding-bottom: 30px;
    
    }
    .section-home{
       padding-top: 130px;
    }
    .logoes{
        display: none;
    }
    .home-content{
        margin-left: 15%;
    }
    .project-name{
        grid-template-columns: 1fr;
        margin-top: 70px;   
    }
    .first-prodisc {
        padding: 1px;
    }
}