﻿body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9f7;
    margin: 0;
}

/* Hero Section */
.research-hero {
    background-image: url('../Content/Images/reaserchveg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

    .research-hero .overlay {
        background-color: rgba(0, 100, 0, 0.6);
        padding: 40px;
        border-radius: 20px;
    }

    .research-hero h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .research-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Research Content */
.research-content {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

    .research-content .container {
        max-width: 900px;
        margin: 0 auto;
    }

    .research-content h2 {
        font-size: 2rem;
        color: #2e7d32;
        margin-bottom: 20px;
    }

    .research-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #444;
    }

/* Gallery */
.gallery-section {
    padding: 60px 20px;
    background-color: #f0fff0;
    text-align: center;
}

    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #1b5e20;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

    .gallery-grid img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 100, 0, 0.1);
        transition: transform 0.4s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 24px rgba(0, 100, 0, 0.2);
        }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    text-align: left;
}

.gallery-item {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 100, 0, 0.1);
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 28px rgba(0, 100, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 4px solid #4caf50;
    }

    .gallery-item h4 {
        font-size: 1.2rem;
        color: #2e7d32;
        margin: 15px 15px 5px 15px;
    }

    .gallery-item p {
        font-size: 0.95rem;
        color: #555;
        padding: 0 15px;
        line-height: 1.5;
    }
