@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior:smooth;
}

body{
    max-width: 100%;
    margin: auto;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #615978;
    overflow-x: hidden;
    
}


.container{
    max-width: 1280px;
    /* display: flex; */
    margin: auto;
    
}
aside{
    max-width: 18%;
    height: 100vh;
    padding: 20px 20px;
    background-color: #000;
    position: fixed;
}
.toggle-nav{
    display: none;
   
}
.toggle-nav-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: absolute;
    top: 0;
    left: 0;
}
.toggle-nav-container i{
    font-size: 40px;
    background: transparent;
}
.toggle-nav-container > .logo i{
    color: tomato;
    font-size: 60px;
}
.toggle-list{
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #000;
    position: absolute;
    top: 100px;
    right: 10px;
    z-index: 2;
    text-align: right;
    border-radius: 6px;
    transition: height 0.3s linear;
}
.toggle-height{
    height: 400px;
}
.toggle-list nav > a{
    color: #fff;
    font-size: 22px;
}

.logo{
   width: 150px;
   padding: 10px;
   font-size: 18px;
}
.logo h1{
    color:tomato;
}
.logo h1 > i{
    color:tomato;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

.logo img{
    width: 100%;
}
.logo .profile{
    border: 2px solid tomato;
    border-radius: 5px;
    margin: 15px 0;
}
nav{
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}
nav a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color:#fff;
    border-top: 1px dotted #bdb9cb;
    border-radius: 1px;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}
nav a:hover{
    color: tomato;
    transform: translateX(5px);
}

.social-icons img{
    width: 30px;
}
main{
    max-width: 100%;
    margin-left: 190px;
    scroll-behavior:smooth;
   
    
}
.hero{
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    background: url(./images/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 40px;
    height: 100vh;
}
.hero-left h4{
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero-left h1{
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero-left h1 span{
    color: tomato;
}
.hero-left p{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 20px 0; 
}
.hero-left p > span{
    font-size: 22px;
    color: tomato;
}
.social-icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
.social-icons i{
    font-size: 32px;
    background-color: transparent;
    margin-right: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.social-icons i:hover{
    color: tomato;
}
.social-icons div a button{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: tomato;
    color: #fff;
    padding: 15px 30px;
    border:none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.social-icons div a button:hover{
    background-color: #f32531;

}
.icons{
    margin-left: 50px;
}
.icons a img{
    margin: 0 7px;
    color: #fff;
}

.hero-right{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 50px;
}

.card{
    width: 200px;
    background-color: #fff;
    padding: 20px 20px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    position: absolute;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    left: -50px;
    top: 30px;
}
.card p{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    color: tomato;
}
.card h4{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.card-2{
    width: 230px;
    background-color: #fff;
    padding: 20px 20px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    position: absolute;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    right: -40px;
    bottom: 40px;
}
.card-2 p{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    color: tomato;
}
.card-2 h4{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}


.hero-right img{
    width: 350px;
    height: 450px;
}

/* welcome section style start here */
.welcome{
    width: 100%;
    padding: 40px 20px;
    
}
.welcome> h2{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    padding: 20px 0;

}
.welcome > h2 > i{
    font-size: 24px;
    color: tomato;
}
.welcome> p{
    font-size: 16px;
    letter-spacing: 1px;
    text-align:center;
    
    
   
}
.welcome-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
    margin-top: 80px;
}
.welcome-card-single{
    background-color: #fff;
    max-width: 320px;
    height: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 60px 40px;
    position: relative;
    
}
.welcome-card-single:hover .welcome-card-layer{
    background-color: tomato;
    transform: rotate(5deg);
}
.welcome-card-layer{
    width: 320px;
    height: 350px;
    border-radius: 7px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -100;
    transition: 0.3s;
}
.welcome-card-single > i{
    font-size: 40px;
    color: tomato;
}
.welcome-card-single> h2{
    font-size:28px;
    font-weight: 700;
    color: #000;
    padding: 20px 0;
}
.welcome-card-single> p{
    font-size: 18px;
    letter-spacing: 1px;
    text-align: left;
}


/* about section style start here */
.about-me{
    width: 100%;
    padding: 80px 20px;
    background-color: #f2f5fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
   
}
.about-left{
    width: 50%;
}
.about-left .img-1{
    width: 50%;
    height: 90%;
    padding: 80px 70px;
    position: absolute;
    top: 0;
}
.about-left .img-2{
    width: 25%;
    height: 45%;
    left: 10px;
    top:350px;
    border-radius: 5px;
    position: absolute;
}
.about-right{
    width: 50%;
}
.about-right > h3{
    font-size: 20px; 
    color: tomato;
    font-weight: 700;
    text-transform: uppercase;

}
.about-right > h1{
    font-size: 36px; 
    color: #000;
    font-weight: 700;
    margin-bottom: 30px;

}
.about-right > p{
    font-size: 16px;
    letter-spacing: 1.3px;
    margin-bottom: 30px;
}
.about-right a > button{
    background-color: tomato;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    outline: none;
    text-transform: uppercase;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}
.about-right a > button:hover{
    background-color: #f32531;
}
.personal-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.personal-info div> h4 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 10px;
}
.personal-info div> p {
    font-size: 16px;
}

/* skills sections style start here */
.skills-container{
    width: 100%;
    padding: 90px 10px;
    background: url(./images/skill-bg.jpg);
    background-size: cover;
    background-repeat: repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skills-left{
    width: 50%;
    padding: 0 50px 0 0;
}
.skills-left h2{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: tomato;

}
.skills-left h1{
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0.2px;

}
.skills-left > p{
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 40px;
    color: #bdb9cb;


}
.skills-right{
    width: 50%;
}

.progress > p{
    font-size: 20px;
    font-weight: 900;
    color: #fff;

}
.progress-bar{
    width:400px;
    height:10px;
    border-radius: 5px;
    background-color: #30373d;
    margin: 10px 0 20px 0;
}
.progress-bar div{
    width:0%;
    height:8px;
    border-radius:5px;
}
.progress-bar div span{
    width:30px;
    height:30px;
    border-radius: 50%;
    color:#fff;
    background-color: #30373d;
    margin-top:-10px;
    margin-right:-15px;
    display:flex;
    align-items: center;
    justify-content: center;
    float: right;
    font-size: 12px;

}
.html{
    background-color: #e34c26;
    animation: html 2s linear forwards;
    
}
.css{
    background-color: #2965f1;
    animation: css 2s linear forwards;
}
.js{
    background-color: #fdfc74;
    animation: js 2s linear forwards;
}
.react{
    background-color: #61DBFB;
    animation: react 2s linear forwards;
}
.html span{
    border: 1px solid #e34c26;
}
.css span{
    border: 1px solid #2965f1;
}
.js span{
    border: 1px solid #fdfc74;
}
.react span{
    border: 1px solid #61DBFB;
}

/* progress animation */
@keyframes html {
    100%{
        width: 92%;
    }
}
@keyframes css {
    100%{
        width: 86%;
    }
}
@keyframes js {
    100%{
        width: 78%;
    }
}
@keyframes react {
    100%{
        width: 77%;
    }
}

/* skills sections style end here */

/* portfolio css start here */
.portfolio{
    width: 100%;
    position: relative;
    padding: 60px 10px;
   
    
}
.portfolio > h2{
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    letter-spacing: -1px;
}
.portfolio > h2 > i{
    font-size: 24px;
    color: tomato;
}
.portfolio > p{
    font-size: 18px;
    font-weight: 400;
    color:#615978;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px 0;
}

.tabs_box{
    width: 400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    position: relative;
    
}

.tabs_box > button{
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    padding: 10px 30px;
    border: 1px solid #bdb9cb;
    border-radius: 5px;
    color:#615978;
    cursor: pointer;

}
.projects{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    
}
.project{
    position: relative;
}
.content_box .content{
    display: none;
}
.content_box .content.active{
    display: block;
}
.tab_btn.active{
    background-color:tomato;
    color: #fff;
}
.content > h2{
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
}
.project > img{
    width: 100%;
    border-radius: 20px;
    padding: 5px 10px;

}
.layer{
    width:100%;
    height:0;
    background: linear-gradient(rgba(0,0,0,0.1), #0ef);
    position:absolute;
    border-radius: 8px;
    left:0;
    bottom:0;
    overflow:hidden;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding:0px 40px;
    transition: height 0.5s;
}
.layer h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom:15px;
    color:#000;
}
.layer p{
    color:#333;
    font-size: 1rem;
    line-height: 1.8;
}
.layer > a{
    text-decoration: none;
}
.layer i{
    margin-top:20px;
    color:tomato !important;
    font-size: 20px;
    background-color: #fff;
    width:60px;
    height:60px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project:hover img{
    transform:scale(1.1);
    opacity: 0.3;
}
.project:hover .layer{
    height:100%;
    
}

/* portfolio css end here */



/* work with me css start here */
.work-with-me{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    
}
.work-left{
    width: 60%;
    
}
.work-left img{
    width: 100%;
    padding-right: 80px;
}
.work-right{
    width: 40%;
    padding-top: 100px; 
}
.work-right > h2{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: tomato;
}
.work-right > h1{
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #000;
}
.work-right > p{
    font-size: 18px;
    color: #615978;
    letter-spacing: 0.5px;
    margin: 20px 0;
}
.support{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.support i{
    font-size: 30px;
    color: #fff;
    background-color: tomato;
    border-radius: 50%;
    padding: 15px;
    margin-right: 20px;
}
.support div> h2{
    font-size: 22px;
    color: #000;
    font-weight: 900;
    margin-bottom: 5px;

}
.support div> p{
    font-size: 18px;
    color: #615978;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
/* work with me css end here */

    /* services css start here */

.services{
    width: 100%;
    position: relative;
    padding: 100px 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    
}
.services > h2{
    font-size: 24px;
    font-weight: 800;
    color: tomato;
    text-transform: uppercase;
    
}
.services > p{
    font-size: 18px;
    color:#bdb9cb;
    letter-spacing: 0.5px;
    padding: 30px 0 80px 0;
}
.service-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.service{
    width: 330px;
    height: 390px;
    background: transparent;
    padding: 40px 20px;
    border-radius: 8px;
    border: 1px solid #615978;
    margin-bottom:40px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service:hover{
    background: #fff;
}
.service:hover i{
    background: tomato;
    color: #fff;
}
.service:hover h1{
    color: #000;
}
.service:hover p{
    color: #333;
}


.service > i{
    font-size: 40px;
    background-color: #615978;
    border-radius: 50%;
    padding: 20px;
    color: tomato;
}
.service > h1{
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    padding: 20px 0;
}
.service > p{
    font-size: 18px;
    color:#bdb9cb;
    letter-spacing: 0.5px;
    text-align: left;
}
    /* services css end here */

    /* testmonial css start here */
    .testmonial{
        background-image: url(./images/testimonial-bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        text-align: center;
        color: #fff;
        position: relative;
        padding: 90px 0;
    }
    .testmonial > h2{
        font-size: 28px;
        font-weight: 700px;
        text-transform: uppercase;
        padding-bottom: 15px;
    }
    .testmonial > p{
        font-size: 18px;
        font-weight: 400px;
        letter-spacing: 1px;
        color:#bdb9cb;
    }
    .slide-container{
        max-width: 1000px;
        margin: auto;
        padding: 40px 10px;
    }
    swiper-slide{
        width: 300px !important;
        height: 340px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        text-align: center;
        background-color: #fff;
        color: #000;
        border-radius: 7px;
    }
    .swiper-pagination{
        position: absolute;
        bottom: -80px;
    }
    .review{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: left;
        margin-top: 30px;
    }
    .review img{
        border-radius: 50%;
        padding: 15px 15px;
    }
    .review div > h4{
        font-size: 20px;
        color: #000;
        font-weight: 900;

    }
    .review div > p{
        font-size: 16px;
        color:#9f9ab0;
        

    }
    /* testmonial css end here */

    /* blog css start here */
    .blogs{
        width: 100%;
        padding: 80px 10px;
        text-align: center;
    }
    .blogs > h2{
        font-size: 24px;
        font-weight:900px;
        color: #000;
        text-transform: uppercase;
    }
    .blogs > p{
        font-size: 20px;
        font-weight: 400;
        color:#bdb9cb;
        letter-spacing: 1px;
        padding: 20px 0;
    }
    .blogs-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .blog-left{
        width: 50%;
        position: relative;

    }
    .blog-left:hover img{
        filter: brightness(40%);
    }
    .blog-left img{
        width: 100%;
        border-radius: 8px;
        filter: brightness(70%);
        transition: all 0.5s ease-in-out;
        
    }
    .blog-feature{
        transition: all 0.5s ease-in-out;
        cursor: pointer;
    }
    .blog-feature > span{
        font-size: 16px;
        margin-right: 15px;
    }
    .blog-feature > h1:hover{
        color: tomato;
    }
    .feature-span-2:hover{
        color: tomato;
    }
    .blog-right{
        width: 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
        
    }
    .blog{
        width: 240px;
        height: 220px;
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 10px;
        text-align: left;
    }
    .blog span{
        font-size: 16px;
        color:#bdb9cb;
    }
    .blog > h3{
        font-size: 20px;
        font-weight: 600;
        color:#000;
        padding: 10px 0 50px 0;
    }
    .blog-feature{
        position: absolute;
        color: #fff;
        text-align: left;
        padding: 0 50px;
        bottom: 50px;
    }


    /* blog css end here */

    /* get in touch css start here */
    .get-in-touch{
        width: 100%;
        padding: 80px 10px;
        text-align: center;
    }
    .get-in-touch > h2{
        font-size: 24px;
        font-weight:900px;
        color: #000;
        text-transform: uppercase;
    }
    .get-in-touch > p{
        font-size: 20px;
        font-weight: 400;
        color:#bdb9cb;
        letter-spacing: 1px;
        padding: 20px 0;
    }
    .address-box{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        padding: 40px 0;
    }
    .address{
        display: flex;
        align-items: center;
        
    }
    .address > div > i{
        font-size: 28px;
        color: #fff;
        background-color: tomato;
        border-radius: 50%;
        padding: 15px;
        margin-right: 15px;
    }
    .address div > h2{
        color: #000;
    }
    .address div > p{
        color: #333;
        letter-spacing: 1px;
        font-size: 18px;
        margin-top: 7px;
    }
    .location{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .google-map{
        width: 50%;
    }
    .google-map > iframe{
        width: 100%;
        padding: 40px;
        border-radius: 15px;
    }
   .message{
        width: 50%;
        text-align: left;
    }
    .message > h1{
        font-size: 34px;
        font-weight: 800;
        color: #000;
        margin-bottom: 30px;

    }
    form > input{
        width: 48%; 
        height: 50px; 
        font-size: 18px;
        border: 1px solid #ddd;
        outline: none;
        border-radius: 7px;
        padding: 20px;
        margin: 0 5px 20px 0;
        color: #000;
    }
    input::placeholder{
        font-size: 16px;
        color: #000;
    } 
    form >.submit-btn{
        width: 40%;
        background-color: tomato;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        cursor: pointer;
    }
    form > textarea{
        width: 98%;
        padding: 20px;
        border: 1px solid #ddd;
        outline: none;
        border-radius: 7px;
        font-size: 16px;
        color: #000;
        margin-bottom: 15px;
    }
    form > textarea::placeholder{
        font-size: 16px;
        color: #000;

    }
    /* get in touch css end here*/


    /* footer css start here */
    .footer{
        width: 100%;
        padding: 60px 10px;
        background: url(./images/footer-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        position: relative;
    }
    .footer-container h1{
        color: tomato;
    }
    .footer-container h1 > i{
        font-size: 30px;
        background-color: #ddd;
        border-radius: 50%;
        padding: 10px;
        color: tomato;
    }
    .footer-container p{
        font-size: 18px;
        color:#bdb9cb;
        letter-spacing: 0.5px;
        padding: 40px 0;
    }
    .footer-icons a> i{
        font-size: 30px;
        background-color: transparent;
        margin-right: 12px;
        color: #fff;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
    }
    .footer-icons a> i:hover{
        color: tomato;
        transform: translateY(-10px);
    }
    .copyright{
        display: flex;
        align-items: center;
        justify-content: space-between;
        color:#bdb9cb;
       margin-top: 80px;
    }
    .terms a{
        color:#bdb9cb;
        font-size: 16px;
        text-decoration: none;
        margin-right: 15px;
    }
    .shift-btn{
        position: absolute;
        top: -25px;
        right: 10px;
        
    }
    .shift-btn a > i{
        font-size: 32px;
        background-color: tomato;
        color: #fff;
        border-radius: 50%;
        padding: 10px;
    }
    /* footer css end here */



    