.elementor-295 .elementor-element.elementor-element-ad44800{margin-top:50px;margin-bottom:0px;}.elementor-295 .elementor-element.elementor-element-562c7ff{margin-top:86px;margin-bottom:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-58eb71a *//* Container for image + title */
.glow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: inline-block;
}

/* Image styling */
.glow-image {
    display: block;
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Title overlay with vibrant shimmer */
.glow-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;             
    font-weight: bold;
    text-align: center;
    z-index: 2;
    pointer-events: none;

    color: rgba(255,255,255,0.9);

    /* Multi-color glow */
    text-shadow:
        0 0 5px rgba(255,255,200,0.7),
        0 0 10px rgba(255,150,255,0.6),
        0 0 15px rgba(200,150,255,0.5),
        0 0 25px rgba(255,255,200,0.4);

    mix-blend-mode: screen;

    white-space: nowrap;

    animation: shimmer 2.5s infinite alternate;
}

/* Shimmer keyframes */
@keyframes shimmer {
    0% {
        text-shadow:
            0 0 5px rgba(255,255,200,0.4),
            0 0 10px rgba(255,150,255,0.3),
            0 0 15px rgba(200,150,255,0.2),
            0 0 20px rgba(255,255,200,0.2);
    }
    50% {
        text-shadow:
            0 0 15px rgba(255,255,200,0.8),
            0 0 30px rgba(255,150,255,0.7),
            0 0 45px rgba(200,150,255,0.6),
            0 0 60px rgba(255,255,200,0.5);
    }
    100% {
        text-shadow:
            0 0 10px rgba(255,255,200,0.6),
            0 0 20px rgba(255,150,255,0.5),
            0 0 30px rgba(200,150,255,0.4),
            0 0 40px rgba(255,255,200,0.3);
    }
}

/* Responsive font sizes and stacking */
@media (max-width: 1366px) {
    .glow-title { font-size: 8vw; }
}
@media (max-width: 767px) {
    .glow-title { 
        font-size: 10vw;
        white-space: normal;  
        line-height: 1.1;
        max-width: 90%;
    }
}
@media (max-width: 480px) {
    .glow-title { 
        font-size: 14vw;  /* slightly bigger on mobile */
        white-space: normal;  
        line-height: 1.1;
        max-width: 90%;
    }
}





/* Safari iPad / iOS fixes for glow-title */
.glow-title {
    -webkit-mix-blend-mode: screen;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 0;
    -webkit-animation: shimmer 2.5s infinite alternate;
}

/* Prefixed keyframes for shimmer animation */
@-webkit-keyframes shimmer {
    0% {
        text-shadow:
            0 0 5px rgba(255,255,200,0.4),
            0 0 10px rgba(255,150,255,0.3),
            0 0 15px rgba(200,150,255,0.2),
            0 0 20px rgba(255,255,200,0.2);
    }
    50% {
        text-shadow:
            0 0 15px rgba(255,255,200,0.8),
            0 0 30px rgba(255,150,255,0.7),
            0 0 45px rgba(200,150,255,0.6),
            0 0 60px rgba(255,255,200,0.5);
    }
    100% {
        text-shadow:
            0 0 10px rgba(255,255,200,0.6),
            0 0 20px rgba(255,150,255,0.5),
            0 0 30px rgba(200,150,255,0.4),
            0 0 40px rgba(255,255,200,0.3);
    }
}







/* Safari/iPad only: shrink container and move title above gallery, slightly right */
@supports (-webkit-touch-callout: none) and (display: flex) {
    .glow-container {
        width: 0 !important;
        height: 0 !important;
        overflow: visible !important;
    }

    .glow-title {
        display: block !important;
        position: relative !important; /* flow with page */
        top: auto !important;
        left: auto !important;
        transform: translateX(80px) !important; /* shift 20px to the right */
        margin: 0 auto 20px auto; /* centers horizontally then shifts slightly with translateX */
        text-align: center;
        z-index: auto;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-562c7ff *//* Elementor Custom CSS for glowing column images */

/* Container for images */
.elementor-295 .elementor-element.elementor-element-562c7ff {
    position: relative;   /* needed for pseudo-element */
    overflow: visible;    /* allow glow to show outside */
}

/* Image styling */
.elementor-295 .elementor-element.elementor-element-562c7ff img {
    display: block;
    width: 100%;           /* full width by default */
    max-width: 100%;       /* prevent shrinking */
    border-radius: 12px;
    position: relative;    /* above pseudo-element */
    z-index: 1;
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden; /* smoother hover on Safari */
    -webkit-transform: translateZ(0);    /* prevents flicker/glitch */
}

/* Glow pseudo-element behind images */
.elementor-295 .elementor-element.elementor-element-562c7ff::before {
    content: "";
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -15px;
    right: -15px;
    border-radius: 15px;
    background: linear-gradient(45deg, #8000ff, #FFD700);
    filter: blur(25px);
    opacity: 0.6;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect: scale image + intensify glow */
.elementor-295 .elementor-element.elementor-element-562c7ff:hover img {
    transform: scale(1.05);
}

.elementor-295 .elementor-element.elementor-element-562c7ff:hover::before {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Large tablets / iPads (portrait + landscape, including iPad Pro) */
@media (min-width: 768px) and (max-width: 1366px) {
    .elementor-295 .elementor-element.elementor-element-562c7ff img {
        width: 100%;       /* full width for iPads */
        max-width: 100%;   /* ensure no shrink */
    }
}

/* Smaller tablets / large phones */
@media (max-width: 767px) {
    .elementor-295 .elementor-element.elementor-element-562c7ff img {
        width: 100%;       /* full width for smaller screens */
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .elementor-295 .elementor-element.elementor-element-562c7ff img {
        width: 100%;       /* full width for very small screens */
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-1c73e7f *//* Elementor Custom CSS for glowing column images */

/* Container for images */
.elementor-295 .elementor-element.elementor-element-1c73e7f {
    position: relative;   /* needed for pseudo-element */
    overflow: visible;    /* allow glow to show outside */
}

/* Image styling */
.elementor-295 .elementor-element.elementor-element-1c73e7f img {
    display: block;
    width: 100%;           /* full width by default */
    max-width: 100%;       /* prevent shrinking */
    border-radius: 12px;
    position: relative;    /* above pseudo-element */
    z-index: 1;
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden; /* smoother hover on Safari */
    -webkit-transform: translateZ(0);    /* prevents flicker/glitch */
}

/* Glow pseudo-element behind images */
.elementor-295 .elementor-element.elementor-element-1c73e7f::before {
    content: "";
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -15px;
    right: -15px;
    border-radius: 15px;
    background: linear-gradient(45deg, #8000ff, #FFD700);
    filter: blur(25px);
    opacity: 0.6;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect: scale image + intensify glow */
.elementor-295 .elementor-element.elementor-element-1c73e7f:hover img {
    transform: scale(1.05);
}

.elementor-295 .elementor-element.elementor-element-1c73e7f:hover::before {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Large tablets / iPads (portrait + landscape, including iPad Pro) */
@media (min-width: 768px) and (max-width: 1366px) {
    .elementor-295 .elementor-element.elementor-element-1c73e7f img {
        width: 100%;       /* full width for iPads */
        max-width: 100%;   /* ensure no shrink */
    }
}

/* Smaller tablets / large phones */
@media (max-width: 767px) {
    .elementor-295 .elementor-element.elementor-element-1c73e7f img {
        width: 100%;       /* full width for smaller screens */
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .elementor-295 .elementor-element.elementor-element-1c73e7f img {
        width: 100%;       /* full width for very small screens */
    }
}/* End custom CSS */