:root{
    --bg-black-900:#f2f2fc;
    --bg-black-100:#fdf9ff;
    --bg-black-50:#b4cfd5;
    --text-black-900:#302e4d;
    --text-black-700:#504e70;
    --skin-color: #007bff;
}
body.dark{
    --bg-black-900:#151515;
    --bg-black-100:#222222;
    --bg-black-50:#393939;
    --text-black-900:#ffffff;
    --text-black-700:#e9e9e9;

}
body{
    margin:0;
    padding:0;
    line-height:1.5;
    font-size: 18px;
}
*{
    margin: 0;
    padding: 0;
    outline:none;
    text-decoration:none;
    box-sizing:border-box;
    
}
::before,::after{
    box-sizing: border-box;
}
ul{
    list-style:none;
}
.section{
    background: var(--bg-black-900);
    height: 94vh;
    padding: 0 35px;
}
.hidden{
    display: none !important;
}
.main-content{
    padding-left: 290px;
}
.padd-15{
    padding-left: 15px;
    padding-right: 15px;
}
.container{
    max-width: 1100px;
    width:100%;
    margin: auto;
}
.section .container{
    padding-top:60px;
    padding-bottom: 70px;
}
.section-title{
    flex: 0 0 100%;
    max-width:100%;
    margin-bottom: 60px;
}
.section-title h2{
    font-size: 40px;
    color:var(--text-black-900);
    font-weight:700;
    position:relative;
}
.section-title h2::after{
    content: '';
    height:4px;
    width:120px;
    margin-left:20px;
    background-color: var(--skin-color);
    position:absolute;
    top:100%;
    left:0;
    margin-top:0px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position:relative;
}
.btn{
    font-size:18px;
    font-weight:500;
    padding:12px 35px;
    color:white;
    border-radius:40px;
    display:inline-block;
    white-space: nowrap;
    border:none;
    background:var(--skin-color);
    transition: all 0.3s ease;
}
.btn:hover{
    transform:scale(1.05);
}
.shadow-dark{
    box-shadow: 0 0  20px rgba(48, 46, 77, 0.15);
}
.aside{
    width: 290px;
    background:var(--bg-black-100);
    position:fixed;
    left:0;
    top:0;
    padding: 30px;
    height:100%;
    border-right: 1px solid var(--bg-black-50);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.aside .logo{

    position:absolute; 
    top: 50px;
    font-size: 32px;
    text-transform: capitalize;
}
.aside .logo a{
    color: var(--text-black-900);
    font-weight: 700;
    padding:15px 20px;
    font-size: 32px;
    letter-spacing: 5px;
    position:relative;
}
.aside .logo a span{
    font-family: 'Clicker Script',cursive;
    font-size: 42px;
}
.aside .logo a::before{
    content: '';
    position:absolute;
    width: 20px;
    height: 20px;
    border-bottom: 4px solid var(--skin-color);
    border-left: 4px solid var(--skin-color);
    bottom:0;
    left:0;
}
.aside .logo a::after{
    content: '';
    position:absolute;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    top:0;
    right:0;
}
.aside .nav-toggler{
    height: 40px;
    width:45;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position:fixed;
    left: 300px;
    top:20px;
    border-radius: 5px;
    background: var(--bg-black-100);
    display: none;
    align-items: center;
    justify-content: center;

}
.aside .nav-toggler span{
    height:2px;
    width: 18px;
    background: var(--skin-color);
    display: inline-block;
    position: relative;
}
.aside .nav-toggler span::before{
    content:'';
    height:2px;
    width:18px;
    background: var(--skin-color);
    position:absolute;
    top: -6px;
    left:0;
}
.aside .nav-toggler span::after{
    content:'';
    height:2px;
    width:18px;
    background: var(--skin-color);
    position:absolute;
    top: 6px;
    left:0;
}
.aside .navbar{
    margin-top: 20px;
}
.aside .navbar li{
    margin-bottom: 30px;
}
.aside .navbar li a{
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-black-50);
    color: var(--text-black-900);
    position: relative;
    transition: all 0.3s ease;
}

.aside .navbar li a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--skin-color);
    transition: width 0.3s ease;
}

.aside .navbar li a:hover::before {
    width: 100%;
    left: 0;
}

.navbar li.active a::before {
    width: 100%;
    left: 0;
}

.aside .social-links {
    margin-top: 30px;
}

.aside .social-links a {
    font-size: 24px;
    color: var(--text-black-900);
    padding: 15px;
    transition: all 0.3s ease;
}

.aside .social-links a:hover {
    color: var(--skin-color);
}

@media screen and (max-width: 768px) {
    .aside {
        width: 100%;
        padding: 20px;
        position: relative;
    }
    
    .main-content {
        padding-left: 0;
    }

    .navbar {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: var(--bg-black-100);
        width: 100%;
        padding: 20px;
        border-right: none;
    }

    .navbar li {
        margin-bottom: 20px;
    }

    .navbar li a {
        font-size: 20px;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid var(--bg-black-50);
        text-align: center;
    }

    .nav-toggler {
        display: flex;
    }

    .nav-toggler span {
        display: none;
    }
}
.home {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 92vh;
    padding-top: 200px;
}

.home-info, .home-img {
    flex: 0 0 auto;
    max-width: 100%;
    text-align: center;
}

.home .home-img::after,
.home .home-img::before {
    display: none;
}

.home-info p {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 16px;
}
.home-info h3 {
    margin-top: 30px;
    color:#fdf9ff;
    margin-bottom: 50px;
    font-size: 16px;
}

.home-contact a {
    margin: 0 5px;
    font-size: 24px;
}

.about-content .skills,
.about-content .education,
.about-content .experience {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
}

.about-content .skills .skill-item ul,
.about-content .education .skill-item ul {
    padding-left: 10px;
}

.about-content .skills .skill-item ul li,
.about-content .education .skill-item ul li {
    line-height: 30px;
    font-size: 16px;
}

.service-item,
.portfolio-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.service-item .service-item-inner,
.portfolio-item .portfolio-item-inner {
    padding: 20px;
}

.service-item h4,
.portfolio-item h2 {
    font-size: 16px;
}

.portfolio-item h2 {
    margin-bottom: 10px;
}

.portfolio-item .portfolio-desc {
    font-size: 16px;
    margin-bottom: 20px;
}

.home .home-info{
    flex: 0 0 65%;
    max-width: 65%;
}
h3.hello{
    font-size: 34px;
    margin:15px 0;
}
h3.hello span{
    font-family: 'Clicker Script', cursive;
    font-size:30px;
    font-weight: 700;
    color:var(--skin-color);  
}
h3.my-profession{
    font-size: 30px;
    margin: 15px 0;
}
.home .home-img{
    flex: 0 0 43px;
    max-width:15%;
    text-align: center;
    position:relative;
}
.home-img::after{
    content: '';
    position:absolute;
    height:40px;
    width: 40px;
    border-bottom:8px solid var(--skin-color);
    border-right:8px solid var(--skin-color);
    right: -190px;
    bottom: -10px;
}
.home-img::before{
    content: '';
    position:absolute;
    height:40px;
    width: 40px;
    border-top:8px solid var(--skin-color);
    border-left:8px solid var(--skin-color);
    left: -10px;
    top: -40px;
}
.typing{
    color:var(--skin-color);
}
.home-info p{
    margin-top:40px;
    margin-bottom:70px;
    font-size: 19px;
    color:var(--text-black-700);
}
.home .home-img img{
    margin: auto; 
    border-radius: 80px;
    height: 300px;
}
.home-contact a {
    margin: 0 10px; 
    color: var(--skin-color);
    text-decoration: none;
    font-size: 28px;
}

.home-contact a:hover {
    color: var(--hover-color);
}

/* about page */

.about .about-content{
    flex:0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text{
    flex:0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text p{
    font-size:19px;
    line-height:25px;
    color: var(--text-black-700);
}
.about .about-content h2.title{
    font-size: 28px;
    margin-bottom:20px;
    font-weight:600;
    color:var(--text-black-900);
}
.about .about-content .skills{
    flex:0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}
.about .about-content .skills .skill-item ul {
    padding-left: 10px;
}

.about .about-content .skills .skill-item ul li {
    line-height:40px;
    font-weight:500;
    font-size:19px;
    color: var(--text-black-900);
    text-transform: capitalize;
}
.icon-style {
    color: var(--skin-color);
    margin-right: 10px;
    font-size:28px;
    line-height:60px;
}


.about .about-content .skills .skill-item{
    margin-bottom: 30px;
}

.about .about-content .education,.about .about-content .experience{
    flex:0 0 50%;
    max-width:50%;
    margin-top:30px;
}
.about .about-content h3.title{
    font-size: 24px;
    margin-bottom:30px;
    font-weight:700;
    color:var(--text-black-900);
}


/* Services */
.service .container{
    padding-bottom: 40px;
}
.service .service-item{
    margin-bottom: 30px;
    flex:0 0 33.33%;
    max-width: 33.33%;
}
.service .service-item .service-item-inner{
    background-color: var(--bg-black-100);
    border:1px solid var(--bg-black-50);
    border-radius:10px;
    padding:30px 15px;
    text-align:center;
    transition:all 0.3s ease;
}
.service .service-item .service-item-inner:hover{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
.service .service-item .service-item-inner .icon{
    height: 60px;
    width:60px;
    border-radius: 50%;
    display:block;
    margin:0 auto 30px; 
    text-align: center;
    transition:all 0.3s ease;
}
.service .service-item .service-item-inner .icon .fa{
    font-size:40px;
    line-height:60px;
    color: var(--skin-color);
    transition:all 0.3s ease;
}
.service .service-item .service-item-inner:hover .icon{
     background-color: var(--skin-color);
}
.service .service-item .service-item-inner:hover .icon .fa{
    font-size:25px;
    color:#ffffff;
}
.service .service-item .service-item-inner h4{
    font-size: 18px;
    margin-bottom:15px;
    color:var(--text-black-900);
    font-weight: 700;
    text-transform: capitalize;
}
.service .service-item .service-item-inner p{
    font-size:19px;
    color:var(--text-black-700);
    line-height:25px;
}

/* portfolio */
.portfolio .container{
    padding-bottom: 40px;
}
.portfolio .portfolio-heading{
    flex:0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}
.portfolio .portfolio-heading h2{
    color: var(--text-black-900);
    font-weight: 500;
}
.portfolio .portfolio-item{
    flex:0 0 33.33%;
    max-width:  33.33%;
    margin-bottom: 30px;
}
.portfolio .portfolio-item-inner{
    border: 6px solid var(--bg-black-100);
    border-radius:10px;
    overflow:hidden;
    cursor: pointer;
}
.portfolio .portfolio-item-inner .portfolio-img img{
    width: 100%;
    display: block;
}
.portfolio-item h2{
    line-height:25px;
    margin-bottom: 10px;
    color: var(--text-black-700);
    font-weight: 600;

}
.portfolio-desc{
    font-size:19px;
    margin-bottom: 20px;
    line-height:25px;
    color: var(--text-black-700);
}



