/* ==========================================
   HERO SECTION - ENHANCED UI/UX
   ========================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--black-void);
}

/* Add this new element in your HTML before .hero-slider */
.hero-slider-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('/images/gorakhnath-temple-hero-image-gorakhpur-sanatan.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.9);
    z-index: 0;
    pointer-events: none;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Background Layers (Handles Images) --- */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-main {
    transition: background-image 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.bg-overlay {
    background: radial-gradient(ellipse at center,
            rgba(13, 12, 11, 0.4) 0%,
            rgba(6, 6, 4, 0.85) 70%,
            var(--black-void) 100%);
    z-index: 2;
}

.bg-gradient {
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.089) 50%,
            var(--black-void) 100%);
    z-index: 3;
}

/* --- Particles & Effects --- */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle.gold {
    background: var(--liquid-gold);
    box-shadow: 0 0 10px var(--liquid-gold), 0 0 20px rgba(255, 204, 0, 0.5);
}

.particle.orange {
    background: var(--molten-orange);
    box-shadow: 0 0 10px var(--molten-orange), 0 0 20px rgba(255, 106, 0, 0.5);
}

.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vmax;
    height: 150vmax;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 106, 0, 0.03) 10deg,
            transparent 20deg,
            rgba(94, 23, 235, 0.03) 30deg,
            transparent 40deg,
            rgba(255, 204, 0, 0.03) 50deg,
            transparent 60deg);
    animation: rotateRays 30s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes rotateRays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- Corner Decorations --- */
.corner-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--border-light);
    opacity: 0;
    z-index: 5;
    transition: opacity 1.5s ease;
}

.corner-decoration.top-left {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* --- Slide Items (Content Containers) --- */
#slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* CRITICAL: Hide all slides by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

/* Show only the active slide */
.item.active-slide {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

/* --- Content Wrapper --- */
.hero-content-wrapper {
    position: relative;
    z-index: 15;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--liquid-gold);
    font-family: var(--heading-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* margin-bottom: 30px; */
    opacity: 0;
    transform: translateY(-30px);
}

.hero-badge i {
    font-size: 1.2rem;
    animation: rotateIcon 8s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Title --- */
.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 800;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.8s ease;
}

.text-gradient.animated::after {
    width: 100%;
}

/* --- Subtitle --- */
.hero-subtitle {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 45px;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
}

/* --- Actions --- */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.scroll-text {
    font-family: var(--heading-font);
}

/* --- Slider Controls --- */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 20;
}

.slider-btn {
    background: rgba(255, 106, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 106, 0, 0.6);
    color: var(--soft-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.slider-btn:hover {
    background: var(--molten-orange);
    border-color: var(--molten-orange);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.7);
}

.slider-dots {
    display: flex;
    gap: 1.2rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--molten-orange);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--molten-orange);
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.8);
    border-color: var(--liquid-gold);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

.dot:hover {
    background: var(--liquid-gold);
    transform: scale(1.2);
}



/* ============================== */
/* ABOUT SECTION | aryan maurya */
/* ============================== */
.about-section {
    position: relative;
    min-height: 90vh;
    /* background: var(--black-void); */
    overflow: hidden;
    padding: 1rem 0;
}

/* Background Image with Parallax */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gorakhpur-sanatan-spiritual-culture-background-about-img-loard-vishnu.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.9;
    /* Adjust opacity as needed */
    z-index: 0;
}

/* Overlay for better readability */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 11, 13, 0.9) 0%,
            rgba(21, 21, 21, 0.8) 50%,
            rgba(31, 31, 33, 0.7) 100%);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Profile */
.profile-side {
    position: sticky;
    top: 2rem;
}

.profile-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--main-gradient);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--black-void);
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--liquid-gold);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

.profile-info {
    margin-bottom: 2rem;
}

.profile-name {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 0.5rem;
}

.profile-subtitle {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--molten-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-bio {
    font-family: var(--body-font);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.detail-item {
    font-family: var(--body-font);
    color: var(--soft-white);
    font-size: 0.95rem;
    padding: 0.3rem;
}

.detail-item span a {
    text-decoration: none;
    color: var(--soft-white);
    font-size: 0.95rem;
}

.detail-item span:hover a {
    color: var(--liquid-gold);
}

/* .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
} */

.detail-item i {
    font-size: 1.1rem;
    width: 20px;
    /* keeps icons aligned */
}

.profile-subtitle i {
    color: #f4c542;
    margin-left: 4px;
}


/* Dashboard Card */
.dashboard-card {
    margin-top: -4rem;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* container with lines behind text */
.text-and-lines {
    position: relative;
    height: 300px;
    margin-top: -10rem;
}



/* slim lines background */
.lines-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    gap: 6px;
    align-items: end;
    opacity: 0.4;
}


.line {
    width: 100%;
    height: 0%;
    background: #2e93fa;
    border-radius: 8px;
}

/* text above */
.text-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    width: auto;
    white-space: nowrap;
    /* keep everything on one line */
}

.dashboard-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.insight-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2e93fa;
}

.insight-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.85;
}



/* Right Side - About Content */
.about-content-side {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.content-scroll {
    width: 100%;
}

.about-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--liquid-gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-reveal {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--soft-white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.text-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-quote {
    text-align: center;
    /* margin-top: -1rem; */
}

.highlight-quote {
    background: var(--charcoal);
    border-radius: 12px;
    border-left: 3px solid var(--molten-orange);
    padding: 1rem;
    margin: 1rem 0;
}

.admin-profile {
    position: relative;
    height: 3rem;
}

.admin-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.admin-slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide 1: Image Right Side */
.slide-1 {
    flex-direction: row-reverse;
    /* Image right side */
    justify-content: space-between;
}

.admin-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--main-gradient);
    padding: 2px;
    flex-shrink: 0;
}

.admin-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--charcoal);
}

.admin-basic-info {
    text-align: left;
}

.admin-basic-info h3 {
    font-family: var(--heading-font);
    color: var(--liquid-gold);
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}

.admin-name {
    font-family: var(--heading-font);
    color: var(--soft-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.admin-bio {
    color: var(--molten-orange);
    font-size: 0.9rem;
    margin: 0;
}

/* Slide 2: Detailed Info */
.slide-2 {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.admin-desc {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 0 0.8rem 0;
}

.admin-stats {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.admin-stats span {
    font-family: var(--body-font);
    color: var(--electric-blue);
    font-size: 0.7rem;
    background: rgba(0, 191, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    border: 1px solid var(--electric-blue);
}

/* Responsive */
@media (max-width: 968px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-side {
        position: relative;
        top: 0;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-stats {
        justify-content: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .text-reveal {
        font-size: 1rem;
    }

    .admin-profile {
        height: 110px;
    }

    .admin-avatar {
        width: 60px;
        height: 60px;
    }

    .admin-basic-info h3 {
        font-size: 0.9rem;
    }

    .admin-name {
        font-size: 0.85rem;
    }

    .admin-bio {
        font-size: 0.7rem;
    }

    .admin-desc {
        font-size: 0.75rem;
    }

    .admin-stats span {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
}



/* ============================== */
/*   FEED SECTION | aryan maurya */
/* ============================== */
.feed-section {
    position: relative;
    text-align: center;
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/back-img.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 0;
    pointer-events: none;
}

.feed-section .content {
    position: relative;
    z-index: 1;
}

.ig-title {
    font-family: var(--heading-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.ig-carousel {
    position: relative;
    width: 100%;
    height: clamp(24rem, 50vw, 32rem);
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* POST CARD */
.ig-post {
    position: absolute;
    top: 50%;
    width: clamp(180px, 26vw, 280px);
    border-radius: 16px;
    max-height: 62vh;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.8s ease, opacity 0.8s ease;
    z-index: 1;
}

/* CENTER CARD (unchanged visual) */
.ig-post.center {
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.05) rotateY(0deg);
    opacity: 1;
    z-index: 3;
}

/* LEFT CARD */
.ig-post.left {
    left: 30%;
    transform: translateX(-50%) translateY(-50%) scale(0.78) rotateY(-18deg);
    opacity: 0.45;
    z-index: 2;
    filter: blur(1px);
}

/* RIGHT CARD */
.ig-post.right {
    left: 70%;
    transform: translateX(-50%) translateY(-50%) scale(0.78) rotateY(18deg);
    opacity: 0.45;
    z-index: 2;
    filter: blur(1px);
}

/* IG EMBED FRAME */
.ig-reel {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    background: var(--charcoal);
}

.ig-reel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* TABLETS */
@media (max-width: 992px) {
    .ig-carousel {
        height: 26rem;
        /* slightly smaller */
    }

    .ig-post {
        width: 240px;
        /* wider */
        max-height: 55vh;
        /* shorter */
    }

    .ig-post.left {
        left: 27%;
    }

    .ig-post.right {
        left: 73%;
    }

    .background-overlay {
        background-image: url('../images/back-img-phone.png');
        background-size: cover;
        background-position: center;
    }
}

/* MOBILES */
@media (max-width: 576px) {
    .feed-section {
        height: 70vh;
    }

    .feed-section .content .ig-title {
        margin-bottom: 4rem;
    }

    .ig-carousel {
        height: 22rem;
    }

    .ig-post {
        width: 220px;
        /* wider */
        max-height: 48vh;
        /* shorter */
    }

    .ig-post.left {
        left: 25%;
    }

    .ig-post.right {
        left: 75%;
    }
}

/* SMALL PHONES */
@media (max-width: 400px) {
    .ig-carousel {
        height: 20rem;
    }

    .ig-post {
        width: 200px;
        /* perfect width */
        max-height: 44vh;
        /* balanced height */
    }
}

/* EXTRA SMALL */
@media (max-width: 340px) {
    .ig-carousel {
        height: 18rem;
    }

    .ig-post {
        width: 180px;
        /* increased width vs old version */
        max-height: 42vh;
        /* reduced height */
    }
}



/* ============================== */
/* MEMBERS SECTION | aryan maurya */
/* ============================== */
:root {
    --tagcloud-transition-user-duration: 1250ms;
    --tagcloud-transition-user-ease: ease-in-out;
    --tagcloud-transition-duration: 250ms;
    --tagcloud-transition-ease: ease-out;
    --tagcloud-bg-color-rgb: 0, 0, 0;
    --tagcloud-animation-duration: 25s;
    --tagcloud-animation-direction: normal;
    --tagcloud-animation-play-state: running;
    --tagcloud-diameter: 32rem;
    --tagcloud-start-rotation: 54;
    --tagcloud-controls-diameter: 256rem;
    --tagcloud-control-bg-color: transparent;
    --tagcloud-control-bg-hover-color: transparent;
    --tagcloud-control-bg-checked-color: transparent;
    --tag-diameter: 5.5rem;
    --tag-font-color-rgb: 255, 255, 255;
    --tag-font-family: 'Open Sans', sans-serif;
    --tag-font-size: 1rem;
}

.members-section {
    height: 100vh;
    background-color: rgb(var(--tagcloud-bg-color-rgb));
    display: flex;
    align-items: center;
}

/* MAIN LAYOUT */
.members-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* LEFT COLUMN (CLOUD) */
.members-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.members-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* CRITICAL: Must match your site background for seamless blend */
    background-color: var(--black-void);
}

/* 3. CONTENT (Top Layer) */
.members-container {
    position: relative;
    z-index: 3;
    /* Highest priority - sits above overlay */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.members-content-side {
    position: relative;
    max-width: 600px;
    margin-right: auto;
    padding: 4rem 0;
    z-index: 2;
}

.members-content-side::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    background-image: url('../images/members-section-side-img-gorakhpur-sanatan.jpg');
    background-size: cover;
    right: -100%;
    opacity: 0.35;

    -webkit-mask-image: linear-gradient(to left,
            #000 0%,
            rgba(0, 0, 0, .8) 20%,
            rgba(0, 0, 0, .6) 40%,
            rgba(0, 0, 0, .4) 60%,
            rgba(0, 0, 0, .2) 80%,
            transparent 100%);

    mask-image: linear-gradient(to left,
            #000 0%,
            rgba(0, 0, 0, .8) 20%,
            rgba(0, 0, 0, .6) 40%,
            rgba(0, 0, 0, .4) 60%,
            rgba(0, 0, 0, .2) 80%,
            transparent 100%);
}

/* --- PRESERVED STYLES --- */
.sacred-header {
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--liquid-gold);
    padding-left: 1.5rem;
}

.hindi-calligraphy {
    font-size: 2.2rem;
    color: var(--liquid-gold);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hindi-translation {
    font-family: var(--body-font);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    font-style: italic;
    opacity: 0.8;
}

.members-content-side .ig-title {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.sacred-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.verse-line {
    font-family: var(--body-font);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--soft-white);
    /* Changed to soft-white for better contrast */
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.verse-line::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--liquid-gold);
    font-size: 1rem;
    top: 4px;
    opacity: 0.8;
}

.verse-line:hover {
    color: var(--liquid-gold);
    transform: translateX(5px);
}

.verse-highlight {
    color: var(--liquid-gold);
    /* Gold highlights pop against dark overlay */
    font-weight: 600;
    font-family: var(--heading-font);
    display: block;
    margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
    .members-section {
        min-height: auto;
        /* Height auto kar di taaki content fit ho */
        padding: 4rem 0;
        overflow: hidden;
    }

    .members-container {
        flex-direction: column;
        /* Upar-Neeche layout */
        gap: 3rem;
    }

    /* Tagcloud Side Adjustments */
    .members-left {
        width: 100%;
        max-height: 45vh;
        /* Screen ka aadha hissa le lega */
        overflow: hidden;
        /* Neeche extra space cut karne ke liye */
    }

    /* Tagcloud Size Reduce for Tablet */
    .tagcloud-wrapper {
        --tagcloud-diameter: 22rem;
        /* Desktop se chota */
        --tagcloud-controls-diameter: 180rem;
    }

    /* Content Side - TOP PADDING FIX */
    .members-content-side {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        /* CRITICAL: Extra top padding remove */
        text-align: center;
    }

    /* Background image mask adjust for mobile view */
    .members-content-side::before {
        inset: 0;
        right: 0;
        opacity: 0.09;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 100%);
    }

    .sacred-header {
        margin-bottom: 1rem;
        border-left: none;
        /* Center align ke liye border hata diya */
        padding-left: 0;
    }

    .hindi-calligraphy {
        font-size: 1.8rem;
    }

    .members-content-side .ig-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tagcloud-wrapper {
        display: none !important;
    }

    .members-section {
        padding: 2rem 0;
    }

    .members-container {
        width: 92%;
        gap: 2rem;
    }

    /* Tagcloud Size Reduce for Mobile */
    .members-left {
        max-height: 35vh;
        /* Aur chota height */
    }

    .tagcloud-wrapper {
        --tagcloud-diameter: 16rem;
        /* Mobile ke liye perfect size */
        --tag-diameter: 3.5rem;
        /* Tags bhi chote */
    }

    /* Content Typography */
    .members-content-side {
        padding: 0 !important;
        /* Double check padding removal */
    }

    .hindi-calligraphy {
        font-size: 1.5rem;
    }

    .members-content-side .ig-title {
        font-size: 1.6rem;
    }

    .verse-line {
        font-size: 0.95rem;
        padding-left: 0;
        /* Mobile pe indentation kam karo */
        text-align: center;
    }

    .verse-highlight {
        margin-bottom: 0.2rem;
    }

    /* Button adjustment */
    .members-right-content .btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}

.members-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: rgb(var(--tagcloud-bg-color-rgb));
    overflow: hidden;
}

/*
tagcloud
*/
.tagcloud-wrapper {
    --_control-diamater: var(--tagcloud-controls-diameter);
    --_control-radius: calc(var(--_control-diamater) / 2);
    --_diameter: var(--tagcloud-diameter);
    --_radius: calc(calc(var(--_diameter) / 2) - calc(var(--tag-diameter) / 2));
    width: var(--control-diameter);
    aspect-ratio: 1 / 1;
    font-family: var(--tag-font-family);
    font-size: var(--tag-font-size);
}


.tagcloud-wrapper:has(.tagcloud-rotation:hover) {
    --tagcloud-animation-play-state: paused;
}

.tagcloud-wrapper .tagcloud-tags {
    position: absolute;
    width: var(--_diameter);
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    list-style-type: none;
    position: relative;
    transform-style: inherit;
    animation: tagcloud-rotation var(--tagcloud-animation-duration) var(--tagcloud-animation-direction) linear infinite var(--tagcloud-animation-play-state);
}

@keyframes tagcloud-rotation {
    from {
        transform: translate(-50%, -50%) rotateX(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(360deg);
    }
}

.tagcloud-wrapper .tagcloud-tags:has(.tagcloud-tag div a:hover) .tagcloud-tag:not(:has(div a:hover)) {
    opacity: 0.25;
}

.tagcloud-wrapper .tagcloud-tag {
    --_phi: acos(calc(-1 + (2 * var(--index)) / var(--num-elements)));
    --_theta: calc(sqrt(calc(var(--num-elements) * 3.141592653589793)) * var(--_phi));
    --_x: calc(cos(var(--_theta)) * sin(var(--_phi)));
    --_y: calc(sin(var(--_theta)) * sin(var(--_phi)));
    --_z: calc(cos(var(--_phi)));
    --_vector-length: sqrt(var(--_x) * var(--_x) + var(--_y) * var(--_y) + var(--_z) * var(--_z));
    --_normalized-x: calc(var(--_x) / var(--_vector-length));
    --_normalized-y: calc(var(--_y) / var(--_vector-length));
    --_normalized-z: calc(var(--_z) / var(--_vector-length));
    --_scaled-x: calc(var(--_normalized-x) * var(--_radius));
    --_scaled-y: calc(var(--_normalized-y) * var(--_radius));
    --_scaled-z: calc(var(--_normalized-z) * var(--_radius));
    --_final-x: calc(var(--_scaled-x) + var(--_radius));
    --_final-y: calc(var(--_scaled-y) + var(--_radius));
    --_final-z: var(--_scaled-z);
    pointer-events: none;
    width: var(--tag-diameter);
    height: var(--tag-diameter);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: opacity var(--tagcloud-transition-duration) var(--tagcloud-transition-ease);
    transform: translate3d(var(--_final-x), var(--_final-y), var(--_final-z));
    animation: tagcloud-tag-rotation var(--tagcloud-animation-duration) var(--tagcloud-animation-direction) linear infinite var(--tagcloud-animation-play-state);
}

@keyframes tagcloud-tag-rotation {
    from {
        transform: translate3d(var(--_final-x), var(--_final-y), var(--_final-z)) rotateX(360deg);
    }

    to {
        transform: translate3d(var(--_final-x), var(--_final-y), var(--_final-z)) rotateX(0deg);
    }
}

.tagcloud-wrapper .tagcloud-tag div {
    transform: rotateZ(calc(var(--_current-rotation) * -1deg));
    transition: transform var(--tagcloud-transition-user-duration) var(--tagcloud-transition-user-ease);
}

.tagcloud-wrapper .tagcloud-tag div a {
    pointer-events: initial;
    color: rgb(var(--tag-font-color-rgb));
    text-decoration: none;
    text-shadow: 1px 1px 1px rgb(var(--tagcloud-bg-color-rgb)),
        1px -1px 1px rgb(var(--tagcloud-bg-color-rgb)),
        -1px 1px 1px rgb(var(--tagcloud-bg-color-rgb)),
        -1px -1px 1px rgb(var(--tagcloud-bg-color-rgb)),
        0 0 1rem rgb(var(--tagcloud-bg-color-rgb));
}

.tagcloud-wrapper .tagcloud-controls {
    width: var(--_control-diamater);
    aspect-ratio: 1 / 1;
    position: relative;
    --_current-rotation: var(--tagcloud-start-rotation);
    transform-style: inherit;
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button {
    --_width: var(--_control-radius);
    --_height: calc(var(--_control-diamater) * 3.141592653589793 / var(--num-elements) + 1px);
    --_theta-start: 0;
    --_theta-length: calc(2 * 3.141592653589793);
    --_segment: calc(var(--_theta-start) + var(--index) / var(--num-elements) * var(--_theta-length));
    --_x: calc(var(--_control-radius) * cos(var(--_segment)));
    --_y: calc(var(--_control-radius) * sin(var(--_segment)) + var(--_control-radius) - var(--_height) / 2);
    --_rotation: calc(var(--index) / var(--num-elements) * 360deg);
    position: absolute;
    left: var(--_x);
    top: var(--_y);
    width: var(--_width);
    height: var(--_height);
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    transform-origin: right center;
    transform: rotate(var(--_rotation));
    transition: background-color var(--tagcloud-transition-duration) var(--tagcloud-transition-ease);
    background-color: var(--tagcloud-control-bg-color);
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button:has(input:checked) {
    background-color: var(--tagcloud-control-bg-checked-color);
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button:has(input:hover) {
    background-color: var(--tagcloud-control-bg-hover-color);
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(1) input:checked) {
    --_current-rotation: 108;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(2) input:checked) {
    --_current-rotation: 126;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(3) input:checked) {
    --_current-rotation: 144;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(4) input:checked) {
    --_current-rotation: 162;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(5) input:checked) {
    --_current-rotation: 180;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(6) input:checked) {
    --_current-rotation: 198;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(7) input:checked) {
    --_current-rotation: 216;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(8) input:checked) {
    --_current-rotation: 234;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(9) input:checked) {
    --_current-rotation: 252;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(10) input:checked) {
    --_current-rotation: 270;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(11) input:checked) {
    --_current-rotation: 288;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(12) input:checked) {
    --_current-rotation: 306;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(13) input:checked) {
    --_current-rotation: 324;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(14) input:checked) {
    --_current-rotation: 342;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(15) input:checked) {
    --_current-rotation: 0;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(16) input:checked) {
    --_current-rotation: 18;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(17) input:checked) {
    --_current-rotation: 36;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(18) input:checked) {
    --_current-rotation: 54;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(19) input:checked) {
    --_current-rotation: 72;
}

.tagcloud-wrapper .tagcloud-controls:has(.tagcloud-control-button:nth-child(20) input:checked) {
    --_current-rotation: 90;
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button:has(input:checked)~.tagcloud-rotation {
    transform: translate(-50%, -50%) rotate(calc(var(--_current-rotation) * 1deg));
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-control-button:has(input:checked)~.tagcloud-rotation .tagcloud-tags .tagcloud-tag div {
    transform: rotateZ(calc(var(--_current-rotation) * -1deg));
}

.tagcloud-wrapper .tagcloud-controls .tagcloud-rotation {
    position: absolute;
    width: var(--_diameter);
    aspect-ratio: 1 / 1;
    perspective: calc(var(--_diameter) * 2);
    transform-style: preserve-3d;
    left: 50%;
    top: 50%;
    background: radial-gradient(rgba(var(--tagcloud-bg-color-rgb), 0.75) 15%, rgba(var(--tagcloud-bg-color-rgb), 0) calc(75% - var(--tag-diameter)));
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--_current-rotation) * 1deg));
    transition: transform var(--tagcloud-transition-user-duration) var(--tagcloud-transition-user-ease);
}

@media (max-width: 900px) {

    .members-container {
        flex-direction: column;
        text-align: center;
    }

    .members-left,
    .members-right {
        width: 100%;
    }

    .members-section {
        height: auto;
        overflow: hidden;
        /* important */
        padding: 3rem 0;
    }

    .members-left {
        max-height: 40vh;
    }

    .members-section::before,
    .members-section::after {
        width: 100%;
        height: 40vh;
        top: 0;
        right: 0;
    }

    .members-section::before {
        background: linear-gradient(to bottom, rgba(11, 11, 13, 0.9) 0%, rgba(11, 11, 13, 0.3) 100%);
    }

    .members-section::after {
        -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    }

    .members-content-side {
        max-width: 100%;
        padding-top: 45vh;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media only screen and (max-width: 48rem) {
    .tagcloud-wrapper {
        --_control-diamater: calc(var(--tagcloud-controls-diameter) * 0.5);
        --_diameter: calc(var(--tagcloud-diameter) * 0.88);
    }
}

@media only screen and (max-width: 32rem) {
    .tagcloud-wrapper {
        --_diameter: calc(var(--tagcloud-diameter) * 0.75);
    }
}


/* ============================ */
/*  CTA Section | aryan maurya  */
/* ============================ */

.cta-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;


    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 3;
    padding: 40px 20px;
}

.hearts-container {
    position: absolute;
    bottom: 35%;
    left: 2%;
    transform: translateX(-40%);
    pointer-events: none;
    z-index: 9;
}

.heart {
    position: absolute;
    font-size: 26px;
    animation: flyUp linear forwards;
}

@keyframes flyUp {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    to {
        transform: translate(var(--x), var(--y)) scale(1.5);
        opacity: 0;
    }
}

.contribute-card {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 30vw;
    width: 100%;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: var(--soft-white);
    font-family: var(--body-font);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top-right-radius: 150px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contribute-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contribute-card .btn {
    align-self: flex-start;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
    animation: scaleFade 0.35s ease;
}

@keyframes scaleFade {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content img {
    max-width: 280px;
    border-radius: 15px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#qrBox {
    display: none;
    color: white;
}

#qrBox img {
    margin-top: 10px;
    width: 400px;
}

.top-glass-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    animation: float-card 4s ease-in-out infinite;
    z-index: 10;
}

.glass-card {
    position: absolute;
    bottom: 20px;
    right: 20px;

    width: 650px;
    max-height: 350px;
    padding: 18px 22px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top-left-radius: 150px;
    border-bottom-right-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    animation: float-card 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* CONTENT GRID = 2 ROWS */
.glass-card-content {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    grid-template-rows: auto auto;
    gap: 10px 15px;
}

/* HEADER */
.glass-card-title {
    font-size: 1.5rem;
    color: var(--soft-white);
    text-align: right;
    padding: 5px;
}

.glass-card-title .text-fill {
    display: block;
    font-size: 1.3rem;
}

/* FEATURES */
.features-list {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;

    transition: 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.icon {
    font-size: 1rem;
    color: var(--liquid-gold);
}

/* SEVA STRIP */
.seva-message {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .cta-section {
        height: 70vh;
    }

    .top-glass-card {
        top: 100px;
    }

    .contribute-card {
        bottom: 350px;
        max-width: 50vw;
        border-bottom-right-radius: 150px;
    }

    .hearts-container {
        left: 82%;
    }

    .glass-card {
        right: 0;
        bottom: 0;
    }

}

@media (max-width: 768px) {
    .glass-card {
        width: 95%;
        right: 2.5%;
    }

    .glass-card-content {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {

    /* SECTION */
    .cta-section {
        height: auto;
        min-height: 80vh;
    }

    /* HEARTS */
    .hearts-container {
        bottom: 40%;
        left: 50%;
        transform: translateX(-50%);
    }

    .heart {
        font-size: 20px;
    }

    /* CONTRIBUTE CARD */
    .contribute-card {
        position: relative;
        bottom: -40vh;
        max-width: 100%;
        padding: 18px 16px;
        border-radius: 22px;
        will-change: opacity, transform;
    }

    .contribute-card .btn {
        width: 100%;
        text-align: center;
    }

    /* TOP GLASS CARD */
    .top-glass-card {
        top: 112px;
        right: 12px;
        transform: scale(0.85);
    }

    /* MAIN GLASS CARD */
    .glass-card {
        position: relative;
        width: 100%;
        max-height: none;
        padding: 14px 16px;
        margin-top: 20px;
        left: 0;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 10px;
        will-change: opacity, transform;
    }

    /* GRID STACK */
    .glass-card-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* TITLE */
    .glass-card-title {
        font-size: 1.2rem;
        text-align: left;
    }

    .glass-card-title .text-fill {
        font-size: 1rem;
    }

    /* CARD VISIBILITY CONTROL (IMPORTANT) */
    .card-hidden {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }

    .card-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .contribute-card,
    .glass-card {
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    /* FEATURES */
    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature-item {
        padding: 8px;
        font-size: 0.9rem;
    }

    .icon {
        font-size: 0.9rem;
    }

    /* SEVA STRIP */
    .seva-message {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    /* POPUP / QR */
    #qrBox img {
        width: 220px;
    }

    .popup-content {
        width: 90%;
        padding: 16px;
    }

    .close-btn {
        font-size: 26px;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-slider-section {
        height: 70vh;
    }

    .corner-decoration {
        width: 80px;
        height: 80px;
    }

    .corner-decoration.top-left,
    .corner-decoration.top-right {
        top: 20px;
    }

    .corner-decoration.bottom-left,
    .corner-decoration.bottom-right {
        bottom: 20px;
    }

    .corner-decoration.top-left,
    .corner-decoration.bottom-left {
        left: 20px;
    }

    .corner-decoration.top-right,
    .corner-decoration.bottom-right {
        right: 20px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .slider-controls {
        bottom: 2rem;
        gap: 1.2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-dots {
        gap: 0.8rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot::after {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 60vh;
    }

    .slider-controls {
        bottom: 1.2rem;
        gap: 0.8rem;
        width: 100%;
        justify-content: center;
        padding: 0 10px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .slider-dots {
        gap: 0.6rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot::after {
        width: 16px;
        height: 16px;
    }
}