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

.hero-section {
    background: url("hero-section-bg.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center;

}
.nav-icons ul li{
    position: relative;
}
.nav-icons ul li::after{
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    bottom: -3px;
    background-color: white;
    left: 50%;
    transition: width .6s ease-in-out,left .6s ease-in-out;
}

.nav-icons ul li:hover::after{
    width: 100%;
    left: 0%;

}

.nav-icons ul li a:hover{
    color: white;

}
.fade-in-left {
    opacity: 0;
    transform: translateY(-100px); /* Move from the left */
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.scroll-icon{
    background: #F8F3D9;
}
.scroll-icons ul li{
    position: relative;
    
}
.scroll-icons ul li a{
    color: rgb(116, 116, 116) !important;
}
.scroll-icons ul li::after{
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    bottom: -3px;
    background-color: black;
    left: 50%;
    transition: width .6s ease-in-out,left .6s ease-in-out;
}

.scroll-icons ul li:hover::after{
    width: 100%;
    left: 0%;

}
.scroll-icons ul li a:hover{
    color: black !important;

}

.progress-card .progress-bar-html{
    position: relative;
    height: 6px;
    top: 6px;
    width: 100%;
    background: #f1f1f1;
    border-radius: 6px;
    border: 1px solid rgb(201, 201, 201);
}
.progress-card .progress-bar-html::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 75%;
    left: 0;
    background: rgb(136, 255, 136);
    border-radius: 6px;
}
.progress-card .progress-bar-html .progress-icon{
    position: absolute;
    left: 72%;
    top: 16px;
    background: rgb(136, 255, 136);
    padding: 1px 4px;
    font-size: 12px;
    border-radius: 4px;
}
.progress-card .progress-bar-html .progress-icon::before{
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background: rgb(136, 255, 136);
    border-radius: 4px;
    top: -14px;
}
.progress-card .progress-bar-css{
    position: relative;
    height: 6px;
    top: 6px;
    width: 100%;
    background: #f1f1f1;
    border-radius: 6px;
    border: 1px solid rgb(201, 201, 201);
}
.progress-card .progress-bar-css::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 80%;
    left: 0;
    background: rgb(136, 255, 136);
    border-radius: 6px;
}
.progress-card .progress-bar-css .progress-icon{
    position: absolute;
    left: 77%;
    top: 16px;
    background: rgb(136, 255, 136);
    padding: 1px 4px;
    font-size: 12px;
    border-radius: 4px;
}
.progress-card .progress-bar-css .progress-icon::before{
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background: rgb(136, 255, 136);
    border-radius: 4px;
    top: -14px;
}
.progress-card .progress-bar-js{
    position: relative;
    height: 6px;
    top: 6px;
    width: 100%;
    background: #f1f1f1;
    border-radius: 6px;
    border: 1px solid rgb(201, 201, 201);
}
.progress-card .progress-bar-js::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 13%;
    left: 0;
    background: rgb(136, 255, 136);
    border-radius: 6px;
}
.progress-card .progress-bar-js .progress-icon{
    position: absolute;
    left: 10%;
    top: 16px;
    background: rgb(136, 255, 136);
    padding: 1px 4px;
    font-size: 12px;
    border-radius: 4px;
}
.progress-card .progress-bar-js .progress-icon::before{
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background: rgb(136, 255, 136);
    border-radius: 4px;
    top: -14px;
}
.fixedPosition{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    color: black !important;
    background-color: white;
    box-shadow: 0 3px 7px rgb(68, 68, 68);
    animation: slideDown .4s ease-out forwards !important;
}
@keyframes slideDown{
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.gallery {
    column-count: 2;
    column-gap: 10px;
}
@media (min-width: 600px){
    .gallery {
        column-count: 3;
        column-gap: 20px;
    }
    
}

.gallery img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
.client-sec-msg::before{
    position: absolute;
    content: "";
    background: #EBE5C2;
    clip-path: polygon(100% 14%, 0 0, 100% 94%);
    height: 20px;
    width: 20px;
    top: 18px;
    left: -18px;
    border:none;
}
.contact-section input{
    border-bottom: 2px solid rgb(128, 128, 128);
}
.contact-section input:focus{

    outline: none;
}
.contact-section textarea{
    border-bottom: 2px solid rgb(143, 255, 143);
}
.contact-section textarea:focus{
    outline: none;
}