.photo-container {
    box-sizing: border-box;
    width: 100%;
    padding: 30px 30px 10px;
    background-color: white;
    border: 1.5px solid grey;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 20px 0 #dbdbe8;
}

.photo-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.enquire-now-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    min-width: 40%;
    width: max-content;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
}


.enquire-now-btn:hover {
    background-color: #128C7E;
}

.enquire-now-btn-center {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px auto 0;
    min-width: 200px;
    max-width: 90%;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.enquire-now-btn-center:hover {
    background-color: #128C7E;
    transform: scale(1.03);
}

.caption {
    margin-top: 10px;
    font-size: 16px;
    color: black;
    font-style: italic;
    word-wrap: break-word;
}


/* Styles for the gallery */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.popup .close-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 5px 10px;
    z-index: 10;
}



.video-item {
    width: 300px;
    background-color: #fff;
    border: 1px solid grey;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.video-item video {
    width: 100%;
    border-radius: 5px;
}

.video-title {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}
