*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Jost', sans-serif;
list-style: none;
text-decoration: none;
scroll-behavior: smooth;
}

.logo img {
    /* max-width: 100%; Adjust the width 
    width: 130px;Maintain the aspect ratio 
    height: auto;*/

        display: block;            /* remove inline spacing */
        width: 100px;              /* your desired size */
        height: 100px;             /* same as width */
        border-radius: 50%;        /* turns square into circle */
        object-fit: cover;         /* ensures full coverage */
}

:root{
    --bg-color: #ffffff;
    --text-color: #000;
    --secound-color: #a09dab;
    --main-color: #f75023;
    --big-font: 5rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
}


body{
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden; 
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px 18%;
    -webkit-transform: translate3d(0, 0, 0);
    transform : translate3d(0, 0, 0);
    transition: .3s;
}
.navlist{
    display: flex;
}
.navlist li{
    position: relative;
}
.navlist a{
    font-size: var(--p-font);
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 27px;
}
.navlist a::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--main-color);
    bottom: -3px;
    left: 0;
    transition: ease .40s;
}
.navlist a:hover::after{
    width: 100%;
}
#menu-icon{
    font-size: 35px;
    color: var(--text-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.top-btn{
    display: inline-block;
    padding: 9px 30px;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--text-color);
    letter-spacing: 1px;
    font-size: var(--p-font);
    font-weight: 500;
    transition: ease .50s;
}
.top-btn:hover{
    transform: scale(1.1);
    background: var(--main-color);
    border: 2px solid var(--main-color);
    color: var(--bg-color);
}
section{
    padding: 100px 18%;
}
.home{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: url(img/pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-gap: 4rem;
}
.home-text h1{
    margin: 10px 0px 25px;
    font-size: var(--big-font);
    line-height: 1;
    font-weight: 500;
}
.home-text h5{
    margin-bottom: 23px;
    font-size: 19px;
    font-weight: 500;
}

.ml15 {
    font-weight: 800;
    font-size: 2.8em;
    overflow-x: hidden; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  
  .ml15 .word {
    display: inline-block;
    line-height: 1em;
  }


span{
    color: var(--main-color);
}
.home-text h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.home-text p{
    font-size: var(--p-font);
    color: var(--secound-color);
    line-height: 28px;
    margin-bottom: 20px;
}
.social a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 103, 240,1);
    font-size: 17px;
    color: var(--bg-color);
    margin-right: 22px;
    margin-bottom: 30px;
}
.social a:hover{
    transform: scale(1.1);
    background: var(--main-color);
    transition: .5s;
}
.btn{
    display: inline-block;
    color: var(--bg-color);
    background: var(--main-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 30px;
    transition: ease .40s;
}
.btn:hover{
        transform: scale(1.1);
}
.home-img img{
    max-width: 100%;
    width: 540%;
    height: auto;
}
header.sticky{
    background: var(--bg-color);
    padding: 13px 18%;
    box-shadow: 0px 0px 10px rgb(0 0 0/ 10%);
}
.items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 2rem;
    align-items: center;
    text-align: center;  

}
.sub-box{
    padding: 45px 45px 45px 45px;
    transition: ease .50s;
    cursor: pointer;
}
.sub-img img{
    max-width: 100%;
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}
.sub-box h3{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}
.sub-box p{
    font-size: var(--p-font);
    color: var(--secound-color);
    line-height: 29px;
}
.sub-box:hover{
    background: #ffffff;
    box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
    border-radius: 12px;
    will-change: transform;
    transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05, 1.05, 1.05);
}
.about{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 2rem;
}
.about-img img{
    max-width: 100%;
    width: 540px;
    height: auto;

}
.about-text h2{
    font-size: var(--h2-font);
    font-weight: 500;
    margin: 8px 0px 25px;
    line-height: 1.1;

}
.about-text h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.about-text p{
    max-width: 550px;
    font-size: var(--p-font);
    color: var(--secound-color);
    line-height: 28px;
    margin-bottom: 45px;

}
.heading{
    text-align: center;
}
.heading h2{
    font-size: var(--h2-font);
    font-weight: 500;
    margin: 7px 0px 20px;
    line-height: 1.1;
}
.heading h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}
.heading p{
    font-size: var(--p-font);
    color: var(--secound-color);
    line-height: 28px;
}
.portfolio-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 2rem;
    align-items: center;
    margin-top: 5rem;
    text-align: center;
    cursor: pointer;
}


.col{
    position: relative;
}
.col img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer:hover h3{
    bottom: 52%;
    opacity: 1;
}

.layer h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer:hover h5{
    bottom: 48%;
    opacity: 1;
}

.col1{
    position: relative;
}
.col1 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer1{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer1:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer1 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer1:hover h3{
    bottom: 52%;
    opacity: 1;
}

.layer1 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer1:hover h5{
    bottom: 48%;
    opacity: 1;
}


.col2{
    position: relative;
}
.col2 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer2{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer2:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer2 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer2:hover h3{
    bottom: 52%;
    opacity: 1;
}

.layer2 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer2:hover h5{
    bottom: 48%;
    opacity: 1;
}

.col3{
    position: relative;
}
.col3 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer3{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer3:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer3 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer3:hover h3{
    bottom: 52%;
    opacity: 1;
}
.layer3 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer3:hover h5{
    bottom: 48%;
    opacity: 1;
}


.col4{
    position: relative;
}
.col4 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer4{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer4:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer4 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer4:hover h3{
    bottom: 52%;
    opacity: 1;
}
.layer4 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer4:hover h5{
    bottom: 48%;
    opacity: 1;
}




.col5{
    position: relative;
}
.col5 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer5{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer5:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer5 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer5:hover h3{
    bottom: 52%;
    opacity: 1;
}
.layer5 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer5:hover h5{
    bottom: 48%;
    opacity: 1;
}




.col6{
    position: relative;
}
.col6 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer6{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer6:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer6 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer6:hover h3{
    bottom: 52%;
    opacity: 1;
}
.layer6 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer6:hover h5{
    bottom: 48%;
    opacity: 1;
}


.col7{
    position: relative;
}
.col7 img{
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.layer7{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: all .40s;
}
.layer7:hover{
    background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);   
}
.layer7 h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer7:hover h3{
    bottom: 52%;
    opacity: 1;
}
.layer7 h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-color);
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;

}
.layer7:hover h5{
    bottom: 48%;
    opacity: 1;
}




#myBtn {
        margin-top: auto; /* This will push the button to the bottom */
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        border: none;
        cursor: pointer;

}

#myBtn:hover {
    background-color: #0056b3;
}


#btn {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn:hover {
background-color: #0056b3;
}

#btn2 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn2:hover {
background-color: #0056b3;
}

#btn3 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn3:hover {
background-color: #0056b3;
}

#btn4 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn4:hover {
background-color: #0056b3;
}

#btn5 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn5:hover {
background-color: #0056b3;
}

#btn6 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn6:hover {
background-color: #0056b3;
}

#btn7 {
    margin-top: auto; /* This will push the button to the bottom */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;

}

#btn7:hover {
background-color: #0056b3;
}








.service-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, auto));
    gap: 2rem;
    align-items: center;
    margin-top: 5rem;
}
.row{
    background: #ffffff;
    box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
    border-radius: 12px;
    padding: 45px 45px 45px 45px;
    transition: ease .45s;
    cursor: pointer;
}
.s img{
    height: 65px;
    width: 65px;
    background: #f75124;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.s.s-one img{
    background: #f75124;
}
.s.s-two img{
    background: #d9d1fa;
}

.s.s-three img{
    background: #faedce;
}

.s.s-four img{
    background: #baebcd;
}
.row h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 2px;
}
.row h5{
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 19px;
}
.row p{
    font-size: var(--p-font);
    color: var(--secound-color);
    line-height: 28px;
}
.row:hover{
    will-change: transform;
    transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05, 1.05, 1.05);
    
}
.section_text_p1{
    text-align: center;
    color: var(--main-color);
}
.title{
    font-size: 3rem;
    text-align: center;
}
.details_containers{
    padding: 1.5rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    border: rgb(53, 53,53)0.1rem solid;
    border-color: rgb(163, 163, 163);
    text-align: center;
}
.about_containers{
    display: flex;
}
.about_containers{
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.icon{
    cursor: pointer;
    height: 2rem;
}
#experience{
    position: relative;
}
.experience_subtitle{
    color: rgb(85,85,85);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
.experience_details_container{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.article_container{
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;
}
article{
    display: flex;
    width: 7rem;
    justify-content: space-around;
    gap: 0.5rem;
}
article.icon{
    cursor: default;
}




.contact{
    background: #8067f0eb;
    width: 64%;
    margin: 100px auto;
    padding: 70px 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    background-image: url(img/contact1.jpg);
    background-size: cover;
}
.center h3{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--bg-color);
}
.center p{
    font-size: var(--p-font);
    color: var(--bg-color);
    line-height: 26px;
    margin-bottom: 25px;
}
.contact .action form input[type="email"]{
    max-width: 100%;
    width: 470px;
    padding: 12px 15px;
    background: var(--bg-color);
    color: var(--text-color);
    border: none;
    outline: none;
    margin: 0 10px 20px 0;
    border-radius: 30px;
}
.contact .action form input[type="submit"]{
    padding: 12px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    border: none;
    outline: none;
    margin: 0 10px 20px 0;
    border-radius: 30px;
    cursor: pointer;
}
.ends{
    text-align: center;
    padding: 40px;
}
.ends p{
    font-size: var(--p-font);
    letter-spacing: 1px;
}
@media (max-width: 768px){
    header{
        padding: 16px 3%;
        transition: .3s;
    }
    header.sticky{
        padding: 10px 3%;
        transition: .3s;
    }
    section{
        padding: 70px 3%;
        transition: .3s;
    }
    .contact{
        width: 60%;
        transition: .3s;
    }
    :root{
        --big-font: 4rem;
        --h2-font: 2.3rem;
        --p-font: 1rem;
        transition: .3s;
    }

}
@media (max-width: 970px) {
    #menu-icon{
        display: block;
    }
    .home{
        min-height: 80vh;

    }
    .navlist{
        position: absolute;
        top: -600px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--main-color);
        text-align: right;
        transition: all .40s;
    }
    .navlist a{
        display: block;
        padding: 1.2rem;
        margin: 1.5rem;
        border-right: 2px solid var(--bg-color);
        color: var(--bg-color);
    }
    .navlist a:hover{
        background: var(--bg-color);
        color: var(--main-color);

    }
    .navlist a::after{
        display: none;

    }
    .navlist.active{
        top: 100%;

    }
}
@media (max-width: 800px){
    .home{
        grid-template-columns: 1fr;
        min-height: 130vh;
        grid-gap: 1rem;
    }
    .home-text{
        padding-top: 50px;
    }
    .home-img{
        text-align: center;
    }
    .home-img img{
        width: 440px;
        height: auto;
    }
    .about{
        grid-template-columns: 1fr;

    }
    .about-img{
        text-align: center;
        margin-bottom: 30px;
        
    }
    :root{
        --big-font: 3.4rem;
        --h2-font: 2rem;

    }
    section{
        padding: 65px 3%;
        transition: .3s;
    }
    
}

@media screen and (max-width: 768px){
    .about_containers{
        flex-wrap: wrap;
        height: fit-content;
    }
    #experience, 
    .experience_details_container{
        margin-top: 2rem;
    }

}







@media (max-width: 768px){
    .contact .action form input[type="email"]{
        width: 250px;
    }
}
@media (max-width: 768px){
    .ml15 {
        width: 310px;
    }
}
