
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poly:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/futura-std-4');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=UnifrakturMaguntia&display=swap');


* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        outline: none;
        border: none;
        text-decoration: none;
        transition: 0.2s ease;
        -webkit-transition: 0.2s ease;
        -moz-transition: 0.2s ease;
        -ms-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        font-family: 'poppins', sans-serif;
        
        
}
:root{
    --main-color:#00eeff;
    --font-color:#f2f2f2;
}
html{

    font-size: 62.5%;
    
    scroll-behavior: smooth;
}
body{
    margin: 0;
    width: 100%;
    height: 100%;
    
    
    /*background-color:#495057;*/
    
    
   /* background-image: linear-gradient(to right , rgb(236, 227, 245),white);*/
}
section{
    margin:0;
    padding: 0;
    position: relative;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
}


.arrow{
     display: flex;
     align-items: flex-end;
     justify-content: center;
     position: fixed;
     bottom:10px;
     background-color: rgba(0,0,0,0.5);
     color: #f2f2f2;
     border-radius: 50%;
     border: 0.2rem solid transparent;
     padding: 0.5rem;
     cursor: pointer;
     z-index: 97;
     font-size: 4rem;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     transition: 0.5s ;
     -webkit-transition: 0.5s ;
     -moz-transition: 0.5s ;
     -ms-transition: 0.5s ;
     -o-transition: 0.5s ;
     animation: shadowAnimation 6s infinite;
     -webkit-animation: shadowAnimation 6s infinite;
}
button{
    cursor: pointer;
}
@keyframes shadowAnimation {
    0%{
        box-shadow: none;
    }
    80% {
        box-shadow: none;
    }
    95% {
        box-shadow: 0 0 15px rgba(0, 238, 255, 0.8);
    }
    100%{
        box-shadow: 0 0 0 rgba(0, 238, 255, 0);
    }
}

 .arrow:hover{
    background-color: rgba(0,0,0,0.3);
    color: var(--main-color);
}

 
nav {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 15px 50px;

    background-color: transparent;
   /* background: linear-gradient(to top,rgba(0,0,0,0.1),rgba(0,0,0,0.3));*/
    /*box-shadow: 1rem 0.3rem 2rem  rgba(22, 22, 22, 0.5);*/
    position: sticky;
    z-index: 99;
    top:0;
    
    
}




 .links a{
    position: relative;
    font-family: 'poppins', sans-serif;
    text-transform: capitalize;
    color: var(--font-color);
    font-size: 2rem;
    font-weight: 500;
    margin:0 2.2rem;
    text-decoration: none;
    /*border-bottom: 0.2rem solid transparent;*/
    border-radius: 0.3rem;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    
}

 .links a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom:-6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: right;
}

nav .links .active,
nav .links a:hover::after{
    transform:scaleX(1);
    transform-origin: left;
    -webkit-transform:scaleX();
    border-color: var(--main-color);
    color: var(--main-color);
    
}

/*
nav .links .active,
nav .links a:hover{
    
    padding-bottom: 0.5rem;
}*/
nav .socials-nav{
    display: none;
}
 
nav .menu{
    background-color: transparent;
    display: none;
    flex-direction: column;
    padding: 5px;
    border: none;
    cursor: pointer;
    
    
}
.bar{
    display: block;
    position: relative;
    z-index: 99;
    width: 35px;
    height: 4px;
    margin:3px auto;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

  .logo img{
    
    height: 50px;
    display: flex;
    align-items: center;
    
}
.backdrop{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 98;
}
nav .backdrop.active{
    display: block;
}

  .explore{
    border:2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: #352f2f;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.explore:hover{
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
}

.social-box {
    border-radius: 0 30px 30px 0;
    height: 210px;
    width: 15px;
    cursor: pointer;
    position: absolute;
    display:none;
    align-items:center ;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.2);
    left: 0;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -ms-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
}
.social-box .bxs-left-arrow{
display: none;
}
.social-link{
    display: none;
}
.social-box.active{
    height: 210px;
    width: 75px;
 
}
.social-box.active .bxs-right-arrow{
    display: none;
}
.social-box.active .bxs-left-arrow{
    display: block;
}
.social-box.active .social-link{
    display: block;
    
}
.social-box.active .social-link a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f2f2f2;
    border:2px solid transparent;
    width: 54px;
    height: 54px;
    font-size: 36px;
    
}
.social-box.active .social-link a:hover{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}


.social-box.active .social-link a:nth-child(1):hover{
    color: #0077b5;
    
  }
  .social-box.active .social-link a:nth-child(2):hover{

    color: black;
    
    
  }
  .social-box.active .social-link a:nth-child(3):hover{
    
    
    color:#ff00bf;
  }




/*
 .social-link a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    border:2px solid transparent;
    width: 54px;
    height: 54px;
    font-size: 36px;
    
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

*/



    /* HOME SECTION*/


#home{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -80px;
    min-height: 100vh;
    
    
    
}

.section-image{
    position: absolute;
    width:100%;
    height: 100%;
    /*background-image:linear-gradient(rgba(255,255,255,0.4),rgba(255,255,255,0.7)) ;*/
    /*background-image:linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3)) ;*/
    
}
.label-black{
    
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(to right, rgba(0,0,0,0.85),rgba(0,0,0,0.7));
}
.section-img{
    height: 100%;
    width: 100%;
    
    object-fit: cover;
    position: absolute;
    z-index: -1;
    
    /*
    filter: grayscale(1);
    mask-image: linear-gradient(to left,black,transparent);
    -webkit-filter: grayscale(1);
    */
}


#home .content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    
    color: var(--font-color);
    max-width: 60rem;
    position: relative;
}   
.content h1{
    font-family: 'poppins', sans-serif;
    font-size: 5rem;
    font-weight:700;
    letter-spacing: 0.3rem;
    color:var(--font-color);
    text-shadow: 1rem 1rem 1rem #222527;
    
}
.content h3{
    font-family: 'poppins', sans-serif;
    
    font-size: 7rem;
    font-weight: 700;
    color:var(--main-color);
    text-shadow: 1rem 1rem 1rem #222527;
}
.content p{
    font-family: 'poppins', sans-serif;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 3rem;
    color:var(--font-color);
    text-shadow: 1rem 1rem 1rem #222527;
    }
 .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 25rem;
    height: 5rem;
    background: transparent;
    color: var(--main-color);
    /*border: .2rem solid rgba(255,255,255,0.3);
    */border:0.2rem solid var(--main-color);
    cursor: pointer;
    font-family: 'Futura Std', sans-serif;
    letter-spacing: .2rem;
    border-radius: 1rem;
    box-shadow: 1rem 3rem 3rem #141414;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.content .btn:hover{
    opacity: 0.5;
}
#home .socials{
    border-radius:0 30px 30px 0;
    height: 210px;
    width: 70px;
    flex-direction: column;
    position: absolute;
    display:flex;
    align-items:center ;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    left: 0;
    -webkit-border-radius:0 30px 30px 0;
    -moz-border-radius:0 30px 30px 0;
    -ms-border-radius:0 30px 30px 0;
    -o-border-radius:0 30px 30px 0;
    opacity: 0.3;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
#home .socials:hover{
    opacity: 1;
}

#home .socials a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2f2f2;
    width: 54px;
    height: 54px;
    font-size: 36px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
#home .socials a:hover{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}


#home .socials a:nth-child(1):hover{
    color: #0077b5;
    
  }
  #home .socials a:nth-child(2):hover{

    color: black;
    
    
  }
  #home .socials a:nth-child(3):hover{
    
    
    color:#ff00bf;
  }


/* HOME SECTION END */


/* EDUCATION SECTION */

#education{
    display: flex;
    
    justify-content: center;
    flex-direction: column;
    height: 100svh;
    position: relative;
    
    
    
}
#education h1{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    font-size: 2rem;
    color: var(--main-color);
    position: relative;
    z-index: 2;
    
    

}
#education .wrapper{
    
    text-align: center;
    color:#f2f2f2 ;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:20px;
    margin:0 7% 2rem; 
    position: relative;


}
#education .accordionbox{
    width: 35rem;
    height: 20rem;
    text-transform: capitalize;
    border:2px solid rgba(255,255,255, .2);
    padding: 2.5rem 2rem;
    backdrop-filter:blur(10px);
    border-radius: 15px;
    
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
    
} 
#education .accordionbox:hover{
    
    transform: scale(1.03);
    box-shadow: 0 0 20px black;
    
}
#education .accordionbox h2{
    font-weight: 500;
    font-size: 2rem;
    padding: 3px;
    
}
#education .accordionbox .text p{
 font-size: 1.5rem;
}






/* EDUCATION SECTION END */



/* SERVICES SECTION  */


#services{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
    
    
}

#services .wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(35rem,1fr));
    gap: 15px;
    position: relative;
    color:#f2f2f2 ;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    margin:2rem 3%;

    
    
}
#services .box{
    
    text-transform: capitalize;
    border:2px solid var(--main-color);
    padding: 2rem ;
    backdrop-filter:blur(10px);
    border-radius: 15px;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
    
} 
#services .box h2{
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
    
    border-bottom: 2px solid var(--main-color);
}
#services .box p{
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: none;
    
}

#services .services-box{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
    margin: 3rem;
}
#services .box .services-btn{
    border:2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: #352f2f;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;
    margin-left: calc(50% - 65px);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

 #services .box .services-btn:hover{
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
}

#services .services-icon{
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    border: 1px solid transparent;
    column-gap: 1.5rem;

       
}
#services .services-icon i {
    padding: 1rem;
    border:2px solid rgba(255,255,255,0.1);
    box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2), inset -6px -6px 15px 0 rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color:var(--main-color);
    
    
}
#services .services-icon i:hover{
    border:none;
    box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.5), inset -6px -6px 10px 0 rgba(255, 255, 255, 0.8);
    font-size: 3.5rem;
    color:#222527;
    background-color: var(--main-color);
    margin:1.5rem;

}












/* SERVICES SECTION END */

/* ABOUT SECTION START */
#about{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    
}
#about .about-text{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(60rem,1fr));
    
    position: relative;
    color:#f2f2f2 ;
    justify-content: center;
    
    margin:80px 3% 20px  3%;
    


}
#about .about-text .box{
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 0 15px #141414;
}

#about .about-text .box h1{
    
    color: var(--main-color);
    
    font-weight: 500;
    padding-bottom: .5rem;
    font-size: 1.8rem;

}
#about .about-text .box p{
    font-size: 1.5rem;
    color:#fff
}

/* ABOUT SECTION END */

/* CONTACT SECTION START */


#contact{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    
}
 #contact .content {
    
    display: flex;
    margin-top: 100px;
    position: relative;
 }
 #contact .content p{
    text-align: center;
    margin: 0 10px 30px 10px;
    
 }
#contact .content p a {
    color: var(--main-color);
}

footer{
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255,255,255, 0.3);
    border-bottom: 2px solid rgba(255,255,255, 0.3);
    position: relative;
    
    
    z-index: 55;
}
.footer .share{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}
.footer .share a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    color:#f2f2f2;
    margin:0 8px 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.footer .share a:hover{
    background-color: var(--main-color);
}

.footer .links-footer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    
}
.footer .links-footer a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 110px;
    height: 45px;
    color:#141414;
    background-color: var(--main-color);
    border: 2px solid transparent;
    font-size: 17px;
    font-weight: 500;
    
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.footer .links-footer a:hover{
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
}

.footer .credit{
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    padding-top: 20px;
}
.footer .credit span{
    color: var(--main-color);
}

/* CONTACT SECTION END */
    



@media (max-width:1280px){

    #education h1{
        margin-top: 80px;
    }
    #education .accordionbox
    {
        width: 50rem;
    }
    
    #education .wrapper{
     
     gap: 5px 10px;
    }
    #services .wrapper{
        margin-top: 80px;
    }
}
@media (max-width:880px)
{
    nav .links a {
        margin:0 1.5rem;
    }
}


@media (max-width:840px){

    html {
        font-size: 50%;
    }
    
    nav{
        position: fixed;
        top: 0;
        z-index: 99;
    }
    
    nav .links{
        position:absolute;
        z-index: 99;
        background-color: #141414;
        top: 100%;
        height: auto;
        width: 30rem;
        box-shadow: 0 20px 14px 0 rgba(0, 0, 0, 0.75);
        right: -100%;
        
    }
    nav .links.active{
        right: calc(50% - 15rem);
    }
    nav .links a{
        color:#fff;
        display:block;
        margin:1.5rem;
        padding: 0.5rem;
        font-size: 2rem;
        text-align: center;

    }
    
    #home{
        margin-top: 0;
     }
     nav .menu{
        display: flex;
    }
    nav .menu.active .bar:nth-child(2){
        opacity: 0;
    }
    nav .menu.active .bar:nth-child(1){
        transform:translateY(10px) rotate(45deg);
        -webkit-transform:translateY(10px) rotate(45deg);
        -moz-transform:translateY(10px) rotate(45deg);
        -ms-transform:translateY(10px) rotate(45deg);
        -o-transform:translateY(10px) rotate(45deg);
}
nav .menu.active .bar:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
    -webkit-transform:translateY(-10px) rotate(-45deg);
    -moz-transform:translateY(-10px) rotate(-45deg);
    -ms-transform:translateY(-10px) rotate(-45deg);
    -o-transform:translateY(-10px) rotate(-45deg);
}

.links .socials-nav{
    height: 60px;
    display:flex;
    align-items:center ;
    justify-content: space-around;
    position: relative;
    z-index: 100;
    
    
    
}
 .links .socials-nav i{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color:#fff;
    border:2px solid transparent;
    width: 45px;
    height: 45px;
    font-size: 35px;
    cursor: pointer;
    position: relative;
    z-index: 100;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
   
}
.links .socials-nav i:nth-child(1):hover{
    color: rgba(255, 255, 255, 0.5);
    
  }
  .links .socials-nav i:nth-child(2):hover{

    color: #0077b5;
    
    
  }
  .links .socials-nav i:nth-child(3):hover{
    
    color:#ff00bf;
  }
  #services .wrapper{
    margin-top: 80px;
}

  

    
}

@media (max-width: 550px){
    #home .socials{
        display: none;
    }
    .social-box{
        position: fixed;
        z-index: 150;
        display: flex;
    }
    #about .about-text{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(45rem,1fr));
    }
    #contact .content p{
        
        margin-bottom: 2px;

    }
    #education h1{
        margin-top: 0;
    }
    #education .accordionbox{
        
        cursor: pointer;
        overflow: hidden;
    padding: 1.2rem 3rem;
    height: 8rem;
    
    }
    
    #education .accordionbox .text:nth-child(2){
        padding-top: 1rem;
    }
    
    .accordionbox.open{
        height: 20rem;
    }
    
     #services .services-box{
        margin:0 3rem;
     }
 }

@media (max-width: 500px)
{

    html 
    {
        font-size: 50%;
        
        
    }
    
    nav
    {
        padding: 15px 25px;
        
    }
    
      .logo img
      {
        
        height: 45px;
        
        
    }
    
     #home{
        margin-top: 0;
     }

    #education .accordionbox
    {
        
        width: 50rem;
    }
    
    #education .wrapper{
     
     gap: 3px 6px;
    }
    
    
}
@media (max-width:460px)
{
 footer{
    height: 400px;
    padding: 10px;
 }
 
 #services .services-icon{
    margin:0 5px;
 }

 #about .about-text{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(40rem,1fr));
}


}


   

   

    

   
    
    
    
    




