
    /* Style for the img modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1030;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: auto;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.image-gallery img {
    cursor: pointer;
    border-radius: 15px;
}

.image-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}
.image-gallery img {
    transition: transform 0.3s ease-in-out; /* Adjust timing as needed */
}
.blur-shadow-image{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}
 .navbar-logo {
        max-width: 4rem;
 }
.slider-section .thumbnail{
    cursor: pointer;
}
.carousel-section .thumbnail{
    cursor: pointer;
}
.template-container{
    max-width: 1320px;
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
    margin-right: auto;
    margin-left: auto;
}
    @media (max-width: 1024px) {
        .template-container{
            width: 100%;
            padding-right: 0;
            padding-left: 0;
            margin-right: auto;
            margin-left: auto;
        }
    }


/* Modal Styles */
     .iframe-modal {
         display: none;
         padding-top: 60px;
         position: fixed;
         z-index: 1000;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         background-color: rgba(0, 0, 0, 0.9);
         justify-content: center;
         align-items: center;
         opacity: 0;
         transition: opacity 0.3s ease;
     }

    .iframe-modal.show {
        display: flex;
        opacity: 1;
    }

    .iframe-modal-content {
        background: white;
        border-radius: 10px;
        width: 90%;
        height: 90%;
        padding: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        animation: zoom 0.3s ease;
    }

    @keyframes zoom {
        from { transform: scale(0.9); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    .modal-iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
        flex-grow: 1;
    }

    .iframe-modal-close {
        position: absolute;
        top: 15px;
        right: 25px;
        color: white;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    @keyframes zoom {
        from { transform: scale(0.9); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }


    .iframe-modal-title {
        color: #333;
        margin-bottom: 15px;
        font-size: 1.5rem;
        text-align: center;
    }
     .image-card {
         border-radius: 10px;
         overflow: hidden;
         position: relative;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
         transition: transform 0.4s ease, box-shadow 0.4s ease;
     }

    .image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .image-card:hover .image {
        transform: scale(1.05);
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
        padding: 20px;
    }

    .image-card:hover .overlay {
        opacity: 1;
    }

    .preview-btn {
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        background: var(--bs-primary);
        color: black;
        box-shadow: 0 4px 15px black;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .image-card:hover .preview-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .preview-btn:hover {
        background: var(--bs-secondary);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px darkgoldenrod;
    }

    @media (max-width: 768px) {
        .gallery {
            gap: 20px;
        }

        .image-card {
            /*width: 280px;*/
            /*height: 280px;*/
        }
    }
