
.project-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

/* Project Images Grid */
.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 20px;
    padding: 0;
}

/* Individual Project Image */
.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.project-image:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .project-images-grid {
        grid-template-columns: 1fr; /* One column layout for smaller screens */
    }
}