/* Gallery Styles */
.gallery-item,
.gallery-video {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img,
.gallery-video img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover,
.gallery-video:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.play-icon:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.page-header {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.page-header__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.page-header__shape-1,
.page-header__shape-2 {
    position: absolute;
    z-index: 1;
}

.page-header__shape-1 {
    top: 10%;
    left: 5%;
}

.page-header__shape-2 {
    bottom: 10%;
    right: 5%;
}

.page-header__inner {
    position: relative;
    z-index: 2;
}

.thm-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.thm-breadcrumb li {
    margin: 0 10px;
    color: #fff;
}

.thm-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thm-breadcrumb li a:hover {
    color: #ffd700;
}

@keyframes float-bob-x {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

@keyframes float-bob-y {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.float-bob-x {
    animation: float-bob-x 4s ease-in-out infinite;
}

.float-bob-y {
    animation: float-bob-y 4s ease-in-out infinite;
}

/* Magnific Popup Custom Styling */
.mfp-with-zoom .mfp-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfp-with-zoom .mfp-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-in-out;
}

.mfp-with-zoom.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-with-zoom.mfp-removing .mfp-content {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.mfp-iframe-holder .mfp-content {
    max-width: 90vw;
    max-height: 90vh;
    width: 1170px;
    height: 658px;
}

.mfp-close {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mfp-close:hover {
    opacity: 1;
}

.mfp-bg {
    background-color: rgba(0, 0, 0, 0.8);
} 