body{
    background-color: var(--body);
}

header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

header .inner-header{
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .brand{
    display: flex;
    align-items: center;
}

.brand .logo{
    width: 55px;
    flex-shrink: 0;
    margin-right: 20px; 
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}

.brand .appname h1{
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
}

.brand .appname p{
    font-size: 11px;
    margin-top: 2px;
    color: var(--text);
    font-family: 'Jost', sans-serif;
}

header .navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 90px;
    overflow: hidden;
    background-color: var(--background);
}

.navigation .nav a{
    text-align: center;
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation .nav{
    flex-shrink: 0;
    padding: 20px 35px;
    position: relative;
    overflow: hidden;
}

.navigation .active::before{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    border-radius: 50px;
    background: var(--primary);
}

.navigation .active a{
    color: var(--primary)!important;
}

header .header-btn button{
    width: 150px;
    flex-shrink: 0;
    height: 55px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    color: var(--primary);
    background: var(--background);
}







.hero-section{
    width: 100%;
    height: 100vh;
    background-image: url('../images/balls.avif');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}


.hero-section .inner-section{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--rgba);
    backdrop-filter: blur(50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px 0px 60px;
    overflow: hidden;
}

.inner-section #bulbOff{
    display: none;
}

.inner-section .left{
    width: 50%;
}

.left h1{
    font-size: 45px;
    color: var(--heading);
    font-weight: 800;
    text-transform: capitalize;
}

.left span{
    color: var(--primary);
}

.left p{
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    max-width: 500px;
    line-height: 26px;
    margin: 20px 0px 30px 0px;
}

.left .hero-links{
    flex-shrink: 0;
    align-items: center;
}



.left .hero-buttons{
    flex-shrink: 0;
    align-items: center;
}

.left button{
    width: 60px;
    height: 60px;
    color: var(--background);
    font-weight: 600;
    font-size: 16px;
    background-color: var(--primary);
    border-radius: 50px;
    flex-shrink: 0;
}

.left .learn-more{
    background-color: var(--background);
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.left .join-now{
    margin-left: 15px;
    margin-bottom: 10px;
}


.inner-section .right{
    width: 800px;
    flex-shrink: 0;
    margin-right: 80px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .scroll-down{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid #5f6368;
    color: #5f6368;
    font-size: 20px;
    overflow: hidden;
}

.hero-section .scroll-down ion-icon{
    animation: scroll 2.5s infinite;
}

@keyframes scroll{
    from{
        margin-top: -30px;
    }
    to{
        margin-top: 30px;
    }
}


.cards-section{
    background-color: var(--body);
    padding: 50px 0px 0px 0px;
}

.topic{
    text-align: center;
    width: 100%;
}

.topic h1{
    font-size: 50px;
    font-weight: 800;
    color: var(--heading);
    /*
    background-image: linear-gradient(to right, rgba(139, 5, 172, 0.8), rgba(6, 54, 212, 0.8), rgba(216, 0, 83, 0.8));
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: cover;
    width: fit-content;
    margin: auto;*/
    text-transform: uppercase;
}

.topic h2{
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
}

.topic p{
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: var(--text);
}

.cards{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 20px;
}

.cards .card{
    width: 30%;
    min-width: 450px;
    background-color: var(--background);
    padding: 25px;
    flex-shrink: 0;
    border-radius: 10px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 2px solid transparent;
}

.card .icon{
    width: 60px;
}

.card h1{
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin: 15px 0px 30px 0px;
    display: block;
    width: fit-content;
    position: relative;
}

.card p{
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    line-height: 25px;
    font-family: 'Jost', sans-serif;
}


.card h1::before{
    content: "";
    position: absolute;
    border-radius: 50px;
    width: 60%;
    height: 5px;
    bottom: -18px;
    left: 0px;
}

.card1 h1::before{
    background-color: var(--primary);
}
.card2 h1::before{
    background-color: orange;
}
.card3 h1::before{
    background-color: dodgerblue;
}
.card4 h1::before{
    background-color: rgb(119, 54, 184);
}
.card5 h1::before{
    background-color: rgb(255, 5, 59);
}

.card1:hover{
    border-color: var(--primary);
}
.card2:hover{
    border-color: orange;
}
.card3:hover{
    border-color: dodgerblue;
}
.card4:hover{
    border-color: rgb(119, 54, 184);
}
.card5:hover{
    border-color: rgb(255, 5, 59);
}

.icons{
    width: 40px;
    height: 40px;
    margin-top: 5px;
}



.section{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    background-color: var(--background);
    padding: 50px;
    border-bottom: 10px solid var(--body);
}

.section:last-child{
    border-bottom: none!important;
}

.section .left-side{
    width: 40%;
}

.section h1{
    font-size: 50px;
    font-weight: 800;
    color: var(--heading);
    text-transform: uppercase;
}


.section .left-side h1{
    font-size: 50px;
    font-weight: 800;
    color: var(--heading);
    text-transform: uppercase;
    /*
    background-image: linear-gradient(to right, rgba(139, 5, 172, 0.8), rgba(6, 54, 212, 0.8), rgba(216, 0, 83, 0.8));
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: cover;
    width: fit-content;*/
}

.section .left-side p{
    font-size: 15px;
    color: var(--text);
    margin: 15px 0px 25px 0px;
    font-family: 'Jost', sans-serif;
    line-height: 25px;
}

.section .left-side .skills{
    width: 90px;
    height: 35px;
    background-color: var(--primary);
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    margin: auto;
    margin-right: 10px;
    margin-bottom: 10px;
}

.section .mock-up{
    width: 380px;
}

.section .profile{
    border-radius: 30px;
}

.section .left-side .ReadMoreBio{
    width: 180px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 5px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 15px;
}











.reach-us{
    display: flex;
    align-items: center;
    width: 100%;
    height: 500px;
    margin: 0px auto;
}

.mapouter{
    position: relative;
    text-align: right;
    height: 500px;
    width: 500px;
    flex-shrink: 0;
}

.gmap_canvas {
    overflow: hidden;
    background: none!important;
    height: 500px;
    width: 500px;
}

.contact-form{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url("../images/contact.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    padding-left: 50px;
    z-index: 2;
}

.form{
    width: 450px;
}

.contact-form::before, .inner-full-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-form::before{
    background: linear-gradient(to right, rgba(139, 5, 172, 0.8), rgba(6, 54, 212, 0.8), rgba(216, 0, 83, 0.8));
}

.heading{
    margin-bottom: 20px;
}

.heading h1{
    color: white;
    font-size: 25px;
    font-weight: 700;
}

.double-input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.input-container{
    width: 100%;
    margin-bottom: 20px;
}

.input-container .label{
    font-size: 13px;
    color: whitesmoke;
    font-weight: 500;
    margin-bottom: 5px;
}

.input-container .label span{
    color: red;
    font-size: 16px;
}

.input-container :is(input, textarea){
    border: 2px solid transparent;
    width: 100%;
    height: 52px;
    border-radius: 4px;
    background-color: #f3f3f3;
    padding-left: 15px;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.input-container ::placeholder{
    color: #5f6368;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
}

.input-container textarea{
    height: 100px;
    padding: 20px;
}

.send-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.send-button button{
    background-color: var(--primary);
    width: 110px;
    height: 45px;
    color: white;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
}

.send-button p{
    display: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    background-color: #00c400;
}





footer{
    width: 100%;
    background-color: #202020;
}

.inner-footer{
    width: 75%;
    padding: 40px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.left-footer{
    max-width: 20%;
    display: flex;
    align-items: flex-end;
}

.footer-logo{
    width: 60px;
    flex-shrink: 0;
    margin-right: 10px;
}

.left-footer h1{
    font-size: 35px;
    color: white;
}


footer ul li{
    list-style-type: none;
    padding: 6px 0px;
}

footer .getintouch a{
    text-decoration: none;
    color: #e4e4e4;
    font-size: 13px;
    font-weight: 400;
}

footer ul :is(a, p){
    text-decoration: none;
    color: #e4e4e4;
    font-size: 13px;
    font-weight: 400;
}

.f-topic{
    margin-bottom: 30px;
}

.f-topic h5{
    font-size: 20px;
    color: white;
    font-weight: 600;
    position: relative;
}

.f-topic h5::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    border-radius: 20px;
    width: 70px;
    height: 5px;
    background-color: var(--primary);
}


.copyright{
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: white;
    padding: 10px;
}

.copyright p{
    font-size: 11px;
    font-weight: 500;
}





@media screen and (max-width: 900px){

header .inner-header{
    padding: 20px 10px;
}

header .navigation{
    display: none;
}

header .header-btn button{
    display: none;
}

.brand .appname h1{
    font-size: 15px;
}

.brand .appname p{
    font-size: 10px;
}

header .header-btn button{
    width: 100px;
    font-size: 11px;
}

.hero-section{
    height: auto;
}

.hero-section .inner-section{
    flex-direction: column;
    position: unset;
    overflow: unset;
    padding: 150px 10px 0px 10px;
}

.inner-section .left{
    width: 100%;
    text-align: center;
}

.left h1{
    font-size: 35px;
}

.left p{
    font-size: 12px;
    margin: 20px auto 30px auto;
}

.left .hero-buttons{
    justify-content: center;
    width: 100%;
}

.left button{
    width: 130px;
    height: 60px;
    font-size: 13px;
}

.left .learn-more{
    font-size: 13px;
}


.inner-section .right{
    width: 300px;
    margin-left: auto;
    margin: 50px auto 10px auto;
}


.topic h1{
    font-size: 30px;
}


.topic p{
    font-size: 9px;
}

.cards{
    flex-direction: column;
    padding: 50px 10px;
}

.cards .card{
    width: 100%;
    min-width: unset;
}


.section{
    flex-direction: column-reverse;
    padding: 20px 10px;
}



.section .left-side{
    width: 100%;
    text-align: center;
}

.section .left-side h1{
    font-size: 40px;
}

.section .left-side p{
    font-size: 12px;
}

.section .mock-up{
    width: 100%;
    border-radius: 10px;
}




.reach-us{
    flex-direction: column-reverse;
}

.mapouter{
    width: 100%;
    height: fit-content;
    display: none;
}

.contact-form{
    width: 100%;
    padding-left: 0px;
    padding: 50px 10px;
}

.form{
    width: 100%;
}


.inner-footer{
    width: 100%;
    padding: 30px 10px;
    flex-direction: column;
}

.left-footer{
    width: 100%;
    margin-right: unset;
}

.left-footer h1{
    font-size: 25px;
}



}


