@import url( 'https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    color: #ededed;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
 .navbar a.active {
    color:  #48aaf0;
}

.home {
    height: 100vh;
       background-color:#081B29;

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    min-width: 600px;
   
}

.home-content h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #aa9771;
}

.home-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:  #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:  #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.3s;
}
.home-content h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color:  #43a5ef;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0px 40px;
    color: #aa9771;
 
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;

}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background:  #aa9771;
    border: 2px solid  #aa9771;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover {
    color: #aa9771;
}

.btn-box a:nth-child(2){
    background: transparent;
    color:  #aa9771;
}

.btn-box a:nth-child(2):hover {
    color: #081b29;
}

.btn-box a:nth-child(2)::before {
    background:  #dfd8c5;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #dfd8c5;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
    width: 100%;
}


.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}



.home-imgHover {
    position: absolute;
    top: 0;
    right: 30px;
    width: 500px;
    height: 100%;
    background: transparent;
    transition: 3s;
}

.home-imgHover:hover {
    background: #081b29;
    opacity: .8;
}
.about{
    /* background-color:white; */
    background-color: #062439;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.about h2{
    margin-bottom:20px ;
    
    color:#478bbe;
}
.about .text{
    width: 50%;
    display: flex;
    text-align: start;
    color:#478bbe;

}
.about .img{

}
/* services */
.services{
    background-color: #081B29;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    
}
.services .card{
    background-color: #062439;
    margin-right: 10px;
    width: 30%;
    text-align: center;
}
.services .card img{
    width: 100%;
}
.services .card:hover{
    background-color: #aa9771;
    transition: all 1s;

}
.services .card a:hover{
    color: black;
    transition: all 1s;

}
.services .card a{
    color:#43a5ef;
    text-decoration: none;
    font-size: larger;
    font-weight: 700;
    padding: 5px;
}
/* education */
.education{
    background-color: #062439;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.education h2{
    margin-bottom:20px ;
    
    color:#478bbe;
}
.education .text{
    width: 50%;
    display: flex;
    text-align: start;
    color:#478bbe;
    margin-bottom: 5px;

}
.education .card{
    background-color: white;
   margin: auto;
    width: 50%;
transition: all 1s ease
;}
.education .card .card-body{
    color: #062439;
}
.education .card:hover {
  transform: scale(1.05);
}
/* contact */
.contact{
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color:#081B29;
  }
  .contact .social{
display: flex;
flex-direction: column;
color: #43a5ef;
  }
    .contact .social span{
        margin-bottom: 5px;
    }
.contact .contact-sci{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid  #48aaf0;
    border-radius: 50px;
    font-size: 20px;
    color:  #48aaf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.contact-sci a:hover{
    color: #081b29;
}

.contact-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background:  #aa9771;
    z-index: -1;
    transition: .5s;
}

.contact-sci a:hover::before {
    width: 100%;
}
footer{
    padding: 10px;
    background-color:#062439;
    text-align: center;
} 
footer span{
    color: #478bbe;
}
/* KEYFRAMES ANIMATION */
@keyframes showRight {
    100%{
        width: 0;
    }
}