.portfolio-sec1{
    background-image: url('../assests/portfolioImages/bg1.png') !important;
    height: 776px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category1-sec1{
    background-image: url('../assests/portfolioImages/bg2.png') !important;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category1-sec1 .down-img{
    bottom: 0 !important;
}

.portfolio-sec2{
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-around;
    gap: 40px 12px;
    padding: 80px 40px;
}

.portfolio-sub-services img{
    display: block;
    /* Removes any extra space below the image */
    border: 4px solid #ADB0BC;
    border-radius: 16px;
    padding: 2px;
}
.portfolio-sub-services p{
    color: white;
    font-size: 24px;
    /* Optional: Adjust font size as needed */
    text-align: center;
    /* Center the text inside the paragraph */
    font-weight: 700;
    margin-top: 20px;
}
.portfolio-sub-services img:hover {
    opacity: 0.8 !important;
    transition: ease-in 0.3s;
    filter: hue-rotate(100deg) !important; /* Adjust the hue to green */
}

@media screen and (max-width: 1024px){
    .portfolio-sec1{
        height: 400px;
        background-size: cover;
    }
    .portfolio-sec1 h1{
        font-size: 300% !important;
    }
    .portfolio-sec2{
        grid-template-columns: auto;
        justify-content: center;
    }
}