﻿
.gallery-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 1.5;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(130, 180, 64, 0.5);
/*    box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    transition: transform 0.5s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-title {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    font-size: 1.5rem;
}

.gallery-link {
    text-decoration: none;
    color: #000;
}

.project-details div {
    margin-bottom: 0.75rem;
    padding: 10px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(130, 180, 64, 0.5);
    /*    box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
}

.hero-section {
    position: relative;
    height: 350px; /* Or try 400px, 500px, adjust as needed */
    overflow: hidden;
}

    .hero-section .hero-img {
        width: 100%;
        height: 100%;
        object-fit: inherit;
    }


   