/* ====== Hero Slider Container ====== */
.hero-slider {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.hero-slider[data-hslg-height] {
    height: calc(var(--hslg-height, 90vh));
}

/* ====== Swiper Slide ====== */
.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end; /* anchor content to bottom */
    justify-content: flex-start; /* anchor content to left */
    position: relative;
}

/* ====== Glass Circle ====== */
.glass-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);

    display: flex;
    flex-direction: column;
    justify-content: center;   /* center vertically in circle */
    align-items: flex-start;   /* left align text */
    
    padding: 4rem 6rem 4rem 10rem; /* extra left padding to move text inward */
    color: #fff;
    overflow: hidden;
}


.glass-circle::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 140%;
    height: 140%;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0) 30%
    );
    pointer-events: none;
}

/* ====== Text Styles ====== */
.hero-title {
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    max-width: 80%;
}

.hero-subheading {
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: left;
    max-width: 80%;
    margin-bottom: 15px; /* add space before button */
}

.hero-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    margin-bottom: 15px; /* add space before button */
}

/* ====== Responsive ====== */
@media (max-width: 1440px) {
    .glass-circle {
        width: 700px;
        height: 700px;
        padding: 2.5rem 3.5rem;
        bottom: -80px;
        left: -80px;
    }
}

/* ===== Tablet & Mobile - Full Width Glass ===== */
@media (max-width: 1024px) {
    .glass-circle {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 0; /* no circle */
        padding: 2rem;
        align-items: flex-start;
        justify-content: center;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 768px) {
    .glass-circle {
        min-height: 250px;
        padding: 1.5rem;
    }

}
