.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.03);
}

#contactForm .form-control {
font-size: 1.5rem;
}

input::placeholder,
    textarea::placeholder {
        font-size: 1.7rem; /* adjust as needed */
    }

    /* Optional: Also increase the input and textarea text size */
    input,
    textarea {
        font-size: 1.1rem;
    }