*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #080808;
    color: #fff;
}
#underConstruction{
    background: rgb(249, 70, 70);
    height: 3vh;
    text-align: center;
    font-size: 1.5vw;
    padding: auto;
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url("");
    /* background: orange; */
}
.container{
    padding: 10px 5%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1000;
}
.logo{
    width: 250px;
    height: 60px;
}
nav ul li{
    display: inline-block; 
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #fff;
    font-family: cursive;
    text-decoration: none;
    font-size: 30px;
    position: relative;
}
nav ul li a::after{
    content: "";
    width: 0;
    height: 3px;
    background: #fccb06;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.homeGrid-container{
    display: grid;
    grid-template-columns: auto auto;
    height: 80vh;
    margin: 10vh auto;
}
.homeGrid-container .profile{
    padding: 5% 15%;
}
.homeGrid-container .profile img{
    margin: auto;
    height: 70vh;
    width: 95%;
    border-radius: 15px;
}
.headerText{
    margin: 40% 0 0 5%;
    font-size: 30px;
}
.headerText h1{
    font-size: 60px;
    margin-top: 20px;
    font-family: cursive;
}
.headerText h1 span{
    color: #fccb06 ;
    font-family: cursive;
    font-weight: bolder;
}

/* -------------------About-------------------- */
#about{
    width: 100vw;
    padding: 100px 0px;
    color: #ababab;
    font-size: 16px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.col1{
    flex-basis: 30%;
}
.col1 img{
    width: 100%;
    height: 80vh;
    border-radius: 15px;
}
.col2{
    flex-basis: 65%;
}
.subtitle{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}
.greeting{
    font-size: 30px;
    font-weight: 500;
    color: #fccb06;
    font-family: cursive;
    padding-top: 10px;
    padding-bottom: 5px;
}
.details{
    line-height: 23px;
    color: #ababab;
}
.details b{
    color: rgb(218, 217, 216);
    /* font-family: cursive; */
}
.tabTitles{
    display: flex;
    margin: 20px 0 15px;
}
.tabLinks{
    margin-right: 40px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tabLinks::after{
    content: "";
    width: 0;
    height: 3px;
    background: #fccb06;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tabLinks:hover::after{
    width: 50%;
}
.tabLinks.activeLink::after{
    width: 50%;
}
.tabContents{
    line-height: 18px;
}
.tabContents .skills-grid-container{
    display: grid;
    grid-template-columns: auto auto auto auto;
    font-size: 14px;
}
.tabContents .skills-grid-item{
    margin: 0 15px;
}
.tabContents li{
    list-style: none;
    margin: 10px 0;
}
.tabContents span{
    /* color: #BAA657; */
    color: #fccb06;
    font-family: cursive;
    font-size: 16px;
    line-height: 30px;
}
#education table .lhs{
    width: 30%;
}
#education table .rhs span{
    color: rgb(218, 217, 216);
}
.tabContents{
    display: none;
}
.tabContents.activeTab{
    display: block;
}

/* -------------------Certificates-------------------- */
.certificateList{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px , 0.35fr));
    grid-gap: 2px;
    margin-top: 50px;
}
.certificateList div{
    text-align: center;
}
.certificateList div img{
    width: 400px;
    height: 300px;
}


/* -------------------Services-------------------- */
#services{
    padding: 30px 0;
}
.servicesList{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.servicesList div{
    background: #262626;
    padding: 40px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.servicesList div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.servicesList div h2{
    color: #fccb06;
    font-family: cursive;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
}
.servicesList div ul li{
    list-style: none;
}
.servicesList div ul li span{
    color: #fccb06;
}
.servicesList div #analysis_hidden, #ml_hidden,.dl_hidden_01, .dl_hidden_02{
    display: none;
}
.servicesList div a{
    text-decoration: underline;
    color: #BAA657;
    margin-top: 20px;
    font-size: 12px;
    display: inline-block;
    transition: transform 0.5s;
}
.servicesList div a:hover{
    cursor: pointer;
}
.servicesList div:hover{
    background: #181818;
    transform: translateY(-15px);
    box-shadow: 2px 2px rgb(92, 92, 92);
}
.servicesList div a:hover{
    transform: scale(1.2);
}

/* -------------------Projects-------------------- */
#projects{
    padding: 50px 0;
}
.workList{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    grid-template-rows: auto 0 0;
    grid-gap: 40px;
    margin-top: 50px;
    overflow-y: hidden;
}
.work{
    border-radius: 10px;
    border: 1px solid white;
    position: relative;
    overflow: hidden;
    height: 300px;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
    height: 100%;
}
.description{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(24, 24, 24, 0.9) , #262626);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    font-size: 14px;
    transition: height 0.8s;
}
.description h3{
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 20px;
    font-family: cursive;
    color: #fccb06;
}
.description h4{
    margin-bottom: 5px;
    font-size: 15px;
}
.description li span{
    color: #fccb06;
}
.description a{
    margin-top: 20px;
    font-size: 25px;
    color: #f0efef;
    background: #eabb00;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    text-align: center;
}
.work:hover{
    height: 100%;
}
.work img:hover{
    transform: scale(1.1);
}
.work:hover .description{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #fccb06;
    border-radius: 10px;
    padding: 15px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.5s;
    background: none;
}
.btn:hover{
    background: rgb(252, 203, 6 , 0.8);
    cursor: pointer;
}
/* -------------------Contact-------------------- */
.contactInfo{
    flex-basis: 35%;
}
.contactForm{
    flex-basis: 60%;
}
.contactInfo p{
    margin-top: 30px;
}
.contactInfo p i{
    color: #ffcc00;
    margin-right: 15px;
    font-size: 20px;
    font-weight: 500;
}
.socialIcons{
    margin-top: 30px;
}
.socialIcons a{
    font-size: 40px;
    color: #ababab;
    text-decoration: none;
    margin-right: 30px;
    display: inline-block;
    transition: transform 0.8s;
}
.socialIcons a:hover{
    color: #eabb00;
    transform: scale(1.5);
}
.btn.resumeBtn{
    /* background: rgb(252, 203, 6 , 0.8); */
    display: inline-block;
    font-weight: 500;
}
.contactForm form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    margin: 15px 0;
    padding: 15px;
    border-radius: 6px;
    background: rgb(92, 92, 92);
    border: 0;
    outline: none;
    font-size: 17px;
    color: #fff;
}
.btn.sendBtn{
    /* background: rgb(252, 203, 6 , 0.8); */
    display: inline-block;
    font-size: 25px;
    margin-top: 15px;
    cursor: pointer;
}

/* -------------------Contact-------------------- */
footer{
    /* position: fixed; */
    background-color: green;
}




/* -------------------CSS for small screen-------------------- */
nav .fa-solid{
    display: none;
}
@media only screen and (max-width: 850px) {
    #header{
        background-image: url("");
    }
    .headerText{
        margin-top: 100%;
        font-size: 16px;
    }
    .headerText h1{
        font-size: 30px;
    }
    nav .fa-solid{
        display: block;
    }
    nav ul{
        background: linear-gradient(rgb(252, 203, 6) , #262626);
        /* background: rgba(252, 203, 6, 0.97); */
        position: fixed;
        width: 150px;
        top: 0;
        right: -150px;
        height: 100vh;
        padding-top: 60px ;
        transition: right 0.6s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
        font-size: 30px;
    }

    /* -------------------About-------------------- */
    .subtitle{
        font-size: 40px;
        margin-bottom: 5px;
    }
    .col1 , .col2{
        flex-basis: 100%;
    }
    .col1{
        margin-bottom: 20px;
    }
    .col2{
        font-size: 16px;
    }
    .tabLinks{
        font-size: 16px;
        margin-right: 20px;
        font-weight: 600;
    }

    /* -------------------Certificates-------------------- */
    .certificateList div{
        margin-bottom: 20px;
    }

    /* -------------------Projects-------------------- */
    .workList{
        grid-template-rows: auto;
    }

    /* -------------------Contact-------------------- */
    .contactInfo, .contactForm{
        flex-basis: 100%;
    }
    
}



