.hero-banner {
    background: url('https://www.vklalco.com/images/all_project/VKLAL_All_Project.jpg') no-repeat center bottom;
    background-size: cover;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero-content {
    /*margin: 0 6%;*/
    background-color: #46353073;
}

.hero-title {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-banner { padding: 60px 15px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.95rem; }
}

.image-gallery-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.image-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.image-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .image-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .image-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.card-header {
    background: #006605;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    margin: 2% 2%;
    border-radius: 10px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}

.image-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 5px;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.card-text {
    padding: 15px;
    font-size: 16px;
    font-family: Garamond, 'Times New Roman', serif;
    color: #777777;
    border-top: 1px solid #eee;
    text-align: left;
}

.image-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.image-item a:hover {
    text-decoration: none;
    color: inherit;
}