body {
    font-family: Arial, sans-serif;
    /* background-color: #e0e7ff; */
    /* color: #333; */
    margin: 0;
    padding: 0;
}
.navbar-nav .nav-link:hover {
    background-color: rgba(13, 13, 214, 0.903) !important;
    border-radius:5px ;
    }

.gallery-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #4a4e69;
    margin-bottom: 40px;
}

.image-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.image-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    text-align: center;
    flex-basis: 48%;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
}

.image-card img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-details h2 {
    font-size: 1.8em;
    color: #4a4e69;
    margin: 15px 0 10px;
}

.image-details p {
    font-size: 1.2em;
    color: #666;
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
    }

    .image-card {
        flex-basis: 100%;
    }
}

.quote-btn {
    text-decoration: none;
    color: white;
    padding: 4px 20px;
    border: 3px solid #0099ff !important;
    background-color:#051829E6; /* Ensure the background color doesn't override the border */
}

.quote-btn:hover{
    background-color: #0099ff;
    color: white;
}