/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Poppins', sans-serif;
    background: #f4f2f8;
    color: #1a1a2e;
    overflow-x: hidden;
    line-height: 1.6;
}



/* ── SECTION ── */
.zh-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 560px;
    max-height: 680px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: #060010;
    /* Dark Background */
    cursor: default;
}


/* ── BLURRED AMBIENT BG ── */
.zh-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity 0.55s ease;
}

.zh-ambient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.85) saturate(1.2);
    transform: scale(1.04);
}

/* hero dark overlay */
.zh-ambient::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6, 0, 16, 0.92) 0%, rgba(6, 0, 16, 0.65) 55%, rgba(6, 0, 16, 0.15) 100%),
        linear-gradient(to bottom, rgba(6, 0, 16, 0.3) 0%, transparent 40%, rgba(6, 0, 16, 0.5) 100%);
}

.zh-ambient.zh-out {
    opacity: 0;
}

/* ── INNER LAYOUT — exactly like Zomato ── */
.zh-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    /* padding: 0 var(--pad-x); */
    padding: 0 clamp(40px, 6vw, 120px);
    gap: clamp(24px, 4vw, 72px);
}

/* ── LEFT INFO ── */
.zh-info {
    flex: 1;
    min-width: 0;
    max-width: 660px;
}

.zh-date {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 700;
    color: #fff;
    background: rgba(255, 0, 128, 0.22);
    border: 1px solid rgba(255, 0, 128, 0.4);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: opacity 0.3s ease 0.04s, transform 0.3s ease 0.04s;
}

.zh-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 44px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    transition: opacity 0.35s ease 0.09s, transform 0.35s ease 0.09s;
}

.zh-venue {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: opacity 0.35s ease 0.13s, transform 0.35s ease 0.13s;
}

.zh-price {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 30px;
    transition: opacity 0.35s ease 0.17s, transform 0.35s ease 0.17s;
}

.zh-btn {
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.35);
    transition: all .3s ease;
}

.zh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 0, 128, 0.5);
}

.zh-btn:active {
    transform: translateY(0);
}

/* slide-out on transition */
.zh-out-text .zh-date,
.zh-out-text .zh-title,
.zh-out-text .zh-venue,
.zh-out-text .zh-price,
.zh-out-text .zh-btn {
    opacity: 0 !important;
    transform: translateY(14px) !important;
}

/* ── RIGHT POSTER CARD — exactly like Zomato ── */
.zh-poster-wrap {
    flex-shrink: 0;
    position: relative;
}

.zh-poster {
    width: clamp(260px, 20vw, 340px);
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.50),
        0 4px 20px rgba(128, 0, 255, 0.25);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.zh-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zh-poster.zh-card-out {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
}

/* ── LEFT / RIGHT ARROWS — Zomato circular style ── */
.zh-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: clamp(36px, 3.2vw, 44px);
    height: clamp(36px, 3.2vw, 44px);
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    transition: box-shadow 0.2s, background 0.2s, transform 0.15s;
}

.zh-arrow:hover {
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.20);
    background: #f5f5f5;
}

.zh-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.zh-arrow-prev {
    left: 16px;
}

.zh-arrow-next {
    right: 16px;
}

/* ── DOTS — Zomato style bottom center ── */
.zh-dots {
    position: absolute;
    bottom: clamp(16px, 2.5vh, 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 7px;
    align-items: center;
}

.zh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.959);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zh-dot.zh-dot-on {
    background: #fd00d3;
    width: 22px;
    border-radius: 4px;
}

.zh-dot:hover {
    background: rgba(0, 0, 0, 0.38);
}

/* ── PROGRESS BAR ── */
/* .zh-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 5;
}

.zh-prog-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0080, #8000ff);
    transition: width 5000ms linear;
} */

/* ── HERO RESPONSIVE ── */
@media (max-width: 1200px) {
    .zh-inner {
        padding: 0 80px;
    }
}

@media (max-width: 1024px) {
    .zh-hero {
        max-height: 560px;
    }

    .zh-inner {
        padding: 0 50px;
        gap: 32px;
    }

    .zh-poster {
        width: clamp(200px, 22vw, 270px);
    }
}

@media (max-width: 768px) {
    .zh-hero {
        height: auto;
        min-height: 500px;
        max-height: none;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .zh-inner {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 20px 20px 50px;
        gap: 16px;
        text-align: center;
        height: auto;
    }

    .zh-info {
        max-width: 100%;
    }

    .zh-btn {
        margin: 0 auto;
        display: block;
    }

    .zh-poster {
        width: clamp(130px, 38vw, 180px);
        aspect-ratio: 3/4;
    }

    .zh-poster-wrap {
        flex-shrink: 0;
    }

    .zh-dots {
        bottom: 12px;
    }

    .zh-arrow-prev {
        left: 8px;
    }

    .zh-arrow-next {
        right: 8px;
    }

    .zh-arrow {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .zh-hero {
        height: auto;
        min-height: 480px;
        max-height: none;
        padding-top: 90px;
    }

    .zh-inner {
        padding: 16px 14px 52px;
        gap: 12px;
    }

    .zh-title {
        font-size: clamp(18px, 5.5vw, 26px);
    }

    .zh-poster {
        width: clamp(100px, 40vw, 150px);
    }

    .zh-btn {
        padding: 11px 26px;
        font-size: 0.92rem;
    }
}














.hidden {
    display: none;
}

.otp-inputs {
    gap: 10px;
}

.otp-box {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid #878787;
    padding: 0;
    border-radius: 5px;
}

.otp-box:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.otp-container {
    display: flex;
    justify-content: space-between;
}

.otp-box {
    width: 40px;
    font-size: 20px;
    text-align: center;
}

.text-danger {
    color: red;
}

.text-success {
    color: green;
}

/* Advanced Background with Moving Shapes */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(128, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 200, 128, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #f8f4ff 0%, #eff6ff 50%, #f0fff8 100%);
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }

    25% {
        filter: hue-rotate(90deg) brightness(1.2);
    }

    50% {
        filter: hue-rotate(180deg) brightness(0.9);
    }

    75% {
        filter: hue-rotate(270deg) brightness(1.1);
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.08), rgba(128, 0, 255, 0.08));
    border-radius: 50%;
    animation: floatShape 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 70%;
    animation-delay: -7s;
}

.shape:nth-child(5) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 60%;
    animation-delay: -3s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.2);
    }

    50% {
        transform: translate(-30px, -60px) rotate(180deg) scale(0.8);
    }

    75% {
        transform: translate(-50px, 30px) rotate(270deg) scale(1.1);
    }
}


/* Hero Section with Advanced Animations */
.hero {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* padding: 0 20px; */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/headerwebp.webp') center/cover;
    filter: brightness(0.3) contrast(1.2);
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.3), rgba(128, 0, 255, 0.2), rgba(0, 255, 128, 0.1));
    backdrop-filter: blur(2px);
}

/* .hero-content {
    z-index: 10;
    max-width: 1000px;
    animation: heroEntrance 2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 250px;
    margin-bottom: 150px;
} */

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #00ff80;
    margin-bottom: 20px;
    animation: subtitleFloat 3s ease-in-out infinite;
}

@keyframes subtitleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #ff0080, #8000ff, #00ff80);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 6s ease-in-out infinite, textFloat 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}


@keyframes textGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes textFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 2s ease-out 0.5s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsSlideIn 2s ease-out 1s both;
}

@keyframes buttonsSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-primary,
.cta-secondary {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ff80;
    color: #00ff80;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Adjust for mobile screens */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
        line-height: 50px;
    }

    .slider-box-navigation {
        bottom: 50px;
    }
}

/* Premium Events Section (Upcoming Events) */
.events-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #0d001a 0%, #1a0030 100%);
    position: relative;
}

.Up-coming-se {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.marquee-header {
    text-align: center;
    margin: 0 auto 16px;
    padding: 0 12px;
}

.marquee-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(45deg, #1a1a2e, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    padding: 0;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #cc0066;
    margin-bottom: 6px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 700;
    background: linear-gradient(45deg, #1a1a2e, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(0.88rem, 2vw, 1.1rem);
    color: rgba(26, 26, 46, 0.68);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}




/* <!-- Products-slider-section-Start --> */

.product-marquee-section {
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-top: 3px solid rgba(128, 0, 255, 0.12);
    border-bottom: 3px solid rgba(128, 0, 255, 0.12);
}

.marquee-container {
    width: 80%;
    /* width:1400px; */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    will-change: transform;
}

/* Links ki default styling hatane ke liye */
.marquee-track a.marquee-card {
    text-decoration: none;
    /* Underline hatane ke liye */
    color: inherit;
    /* Text color white hi rahega */
    display: flex;
    /* Layout barqarar rakhne ke liye */
}

.marquee-card:active {
    transform: scale(0.95);
    /* Click karne par chota sa dabne wala effect */
}

/* .marquee-track a{
    text-decoration: none;
} */
.marquee-card {
    min-width: 240px;
    /* Desktop calculation */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(128, 0, 255, 0.12);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(128, 0, 255, 0.06);
}

.marquee-card:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-5px);
    border-color: #8000ff;
    box-shadow: 0 8px 24px rgba(128, 0, 255, 0.15);
}

.marquee-card i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 128, 0.3));
}

.marquee-card span {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-align: center;
}

/* Icon Colors */
.icon-1 {
    color: #00ff80;
}

.icon-2 {
    color: #00d4ff;
}

.icon-3 {
    color: #ff00ea;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(128, 0, 255, 0.2);
    color: #8000ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(128, 0, 255, 0.12);
}

.qr-card img {
    height: 250px;
    width: 250px;
}

.nav-btn:hover {
    background: #00ff80;
    color: #000;
}

.prev-btn {
    left: -1px;
}

.next-btn {
    right: -1px;
}

@media (max-width: 768px) {
    .marquee-card {
        min-width: 180px;
    }

    .nav-btn {
        display: none;
    }

    /* Mobile par arrows ki zarurat nahi */
}

/* <!-- Products-slider-section-End --> */



/* Slider Container Styles */
.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.events-grid,
.past-events-grid,
.partners-grid,
.live-events-grid,
.next-events-list {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    gap: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.events-grid::-webkit-scrollbar,
.past-events-grid::-webkit-scrollbar,
.partners-grid::-webkit-scrollbar,
.live-events-grid::-webkit-scrollbar,
.next-events-list::-webkit-scrollbar {
    display: none;
}

.event-card,
.past-event-card,
.partner-logo,
.live-event-card-wrapper,
.next-event-item-wrapper {
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* UPDATED: Event Card Design */
.event-card {
    width: 450px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(30px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(-1px);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 0, 128, 0.3);
    border-color: rgba(0, 255, 128, 0.8);
}

.event-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

/* Image for event cards - updated to use placehold.co for more control */
.event-card:nth-child(1) .event-image {
    background-image: url('https://placehold.co/800x500/1a1a2e/ffffff?text=Music+Festival');
}

.event-card:nth-child(2) .event-image {
    background-image: url('https://placehold.co/800x500/2a2a3e/ffffff?text=Wedding+Showcase');
}

.event-card:nth-child(3) .event-image {
    background-image: url('https://placehold.co/800x500/3a3a4e/ffffff?text=Corporate+Summit');
}

.event-card:nth-child(4) .event-image {
    background-image: url('https://placehold.co/800x500/4a4a5e/ffffff?text=Charity+Gala');
}

.event-card:nth-child(5) .event-image {
    background-image: url('https://placehold.co/800x500/5a5a6e/ffffff?text=Fashion+Week');
}

.event-card:nth-child(6) .event-image {
    background-image: url('https://placehold.co/800x500/6a6a7e/ffffff?text=Tech+Conference');
}

.event-card:nth-child(7) .event-image {
    background-image: url('https://placehold.co/800x500/7a7a8e/ffffff?text=Food+Festival');
}

.event-card:nth-child(8) .event-image {
    background-image: url('https://placehold.co/800x500/8a8a9e/ffffff?text=Art+Exhibition');
}

.event-card:nth-child(9) .event-image {
    background-image: url('https://placehold.co/800x500/9a9aa0/ffffff?text=Sports+Event');
}

.event-card:nth-child(10) .event-image {
    background-image: url('https://placehold.co/800x500/a0a0a5/ffffff?text=Literary+Meet');
}


.event-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
    display: flex;
    flex-direction: column;
    height: 60%;
}

/* UPDATED: Event Date Badge (more prominent, animated) */
.event-date {
    display: inline-block;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.event-date:hover::before {
    left: 125%;
}

.event-date:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.6);
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.event-description {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.event-footer {
    margin-top: auto;
}


.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.event-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff80;
    text-shadow: 0 0 8px rgba(0, 255, 128, 0.3);
}

.event-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;

}

.service-card h3 {
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3em;
    max-height: 2.6em;
    color: #ffffff;
}

.product-card h3 {
    height: 66px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3em;
    color: #1a1a2e;
}

.product-card p {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 3);
    color: rgba(26, 26, 46, 0.72);
}

/* New Button Styling (reused) */
.card-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 15px;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.card-button:hover::before {
    left: 100%;
}

.event-card .card-button {
    background: linear-gradient(45deg, #00ff80, #8000ff);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 255, 128, 0.3);
}

.event-card .card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 128, 0.5);
}

.service-card .card-button {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
}

.service-card .card-button:hover {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    border-color: #ff0080;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.4);
}

/* Services Section - Light Theme */
.services-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.03;
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
/* 
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
} */

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.3);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    height:240px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a5a;
    text-align: left;
}

.services-section .service-card h3,
.services-section .service-card .service-title {
    color: #1a1a2e;
}

.services-section .service-card .service-description {
    color: #4a4a5a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0080;
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.no-events-message {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #555;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.30);
    border-color: rgba(255, 0, 128, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-description {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 25px;
    height:4.6em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 4);
   
}

/* Statistics Section */
.stats-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #0a0018 0%, #1a0030 100%);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* New CSS for Digital Cards Section */
.digital-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.digital-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.digital-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.digital-card a {
    text-decoration: none;
    color: inherit;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.digital-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.digital-card img:hover {
    transform: scale(1.1);
}

.digital-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
}

.view-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.2);
    text-decoration: none;
}

.view-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    background: linear-gradient(45deg, #ff3399, #9933ff);
}



.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(128, 0, 255, 0.1);
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);


    .form-group label {
        color: #1a1a2e !important;
    }
}

.stats-section_our {
    padding: 70px 10px;
    background: linear-gradient(135deg, #0a0018 0%, #1a0030 100%);
    text-align: center;
}

.contact-form-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.contact-form {
    display: grid;
    gap: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a2e;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(248, 244, 255, 0.8);
    border: 1px solid rgba(128, 0, 255, 0.2);
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff0080;
    background: rgba(255, 255, 255, 0.95);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.5);
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background: linear-gradient(135deg, #000, #1a1a2e);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}


.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ff0080;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff80;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


/* <!-- App-download-section-Start --> */

/* Premium App Section Styling (Light Theme) */
.premium-app-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f4f2f8 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.app-glass-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.app-tagline {
    color: #ff0080;
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    display: block;
    margin-bottom: 15px;
}

.app-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.app-main-title span {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.app-desc {
    color: #4a4a5a;
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.badge-link img {
    height: 45px;
    transition: transform 0.3s ease;
    /* border-radius: 8px; */
}

.badge-link:hover img {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
}

/* QR Card Styling */
.app-qr-box {
    position: relative;
}

.login-popup {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #1a1a2e;
}

#login-toggle {
    color: #000 !important;
}

.qr-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.qr-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #00ff80;
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
}

.qr-card img {
    border-radius: 15px;
    margin-bottom: 15px;
}

.qr-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #00ff80;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}




/* <!-- App-download-section-End --> */



@media (max-width:1400px) {
    .social-links a {
        width: 33px;
        height: 33px;
        font-size: -0.8rem;
    }

    .marquee-container {
        width: 100%;
    }
}

@media (max-width:1200px) {
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 50px;
        margin-bottom: 50px;
    }

}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .events-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}


/* ═══════════════════════════════════════════════════════
   ALL SECTIONS RESPONSIVE — Proper All Devices
   Breakpoints: 1024px | 768px | 480px | 360px
   ═══════════════════════════════════════════════════════ */

/* ── Laptop / Tablet Landscape: <= 1024px ── */
@media (max-width: 1024px) {
    .events-section,
    .services-section,
    .stats-section,
    .stats-section_our,
    .live-events-section,
    .past-events-section,
    .partners-section {
        padding: 60px 5%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    .section-subtitle {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }

    .products-grid {
        gap: 28px !important;
    }

    .stats-grid {
        gap: 24px;
    }
}

/* ── Tablet Portrait: <= 768px ── */
@media (max-width: 768px) {

    /* ── Common Section Spacing ── */
    .events-section,
    .services-section,
    .stats-section,
    .stats-section_our,
    footer,
    .live-events-section,
    .next-events-section,
    .past-events-section,
    .partners-section {
        padding: 48px 5%;
    }

    .section-header {
        margin-bottom: 32px;
        padding: 0 4px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        margin-bottom: 6px;
    }

    .section-description {
        font-size: clamp(0.88rem, 2.5vw, 1rem);
        line-height: 1.65;
    }

    /* ── Live Events ── */
    .live-event-card-wrapper {
        min-width: 82%;
        max-width: 460px;
    }

    .live-event-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }

    .live-event-image {
        width: 100%;
        height: 200px;
    }

    .live-event-info {
        width: 100%;
        padding: 18px;
    }

    .live-event-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* ── Slider cards ── */
    .events-grid,
    .past-events-grid,
    .partners-grid,
    .live-events-grid,
    .next-events-list {
        flex-wrap: nowrap;
        padding-bottom: 16px;
        justify-content: flex-start;
    }

    .event-card {
        min-width: 80%;
        max-width: 380px;
        margin-right: 16px;
    }

    .past-event-card {
        min-width: 72%;
        max-width: 300px;
        margin-right: 16px;
    }

    /* ── Premium Services ── */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        margin: 0 auto;
        max-width: 480px;
        width: 100%;
        padding: 28px 22px;
    }

    .service-icon {
        font-size: 2.6rem;
    }

    .service-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .service-description {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }

    .service-features li {
        font-size: clamp(0.8rem, 2.3vw, 0.9rem);
    }

    /* ── Our Products ── */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 24px !important;
        padding: 0 2% !important;
    }

    .product-card {
        padding: 24px 18px !important;
    }

    .product-card h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem) !important;
        margin-bottom: 10px !important;
    }

    .product-card p {
        font-size: clamp(0.82rem, 2.4vw, 0.92rem) !important;
    }

    /* ── App Section ── */
    .premium-app-section {
        padding: 48px 5% !important;
    }

    .app-glass-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 32px !important;
        padding: 36px 24px !important;
    }

    .app-content-box {
        max-width: 100% !important;
    }

    .app-main-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
        line-height: 1.25 !important;
    }

    .app-desc {
        font-size: clamp(0.88rem, 2.5vw, 0.98rem) !important;
        margin: 0 auto !important;
        max-width: 500px !important;
    }

    .app-badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .app-qr-box {
        display: flex !important;
        justify-content: center !important;
    }

    .qr-card img {
        height: 150px;
        width: 150px;
    }

    /* ── Our Valued Customers ── */
    .partner-logo {
        min-width: 110px !important;
        max-width: 130px !important;
        padding: 14px !important;
        margin-right: 14px;
    }

    .partner-logo img {
        height: 55px;
    }

    /* ── Our Achievements ── */
    .stats-section_our {
        padding: 48px 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .stat-label {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    }

    /* ── Contact Us ── */
    .contact-form-container {
        padding: 28px 20px;
    }

    .contact-form .form-group label {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }

    .contact-form .form-control {
        font-size: clamp(0.88rem, 2.5vw, 0.95rem);
        padding: 12px 14px;
    }

    .submit-btn {
        width: 100%;
        font-size: clamp(0.95rem, 3vw, 1.05rem);
        padding: 14px;
    }

    /* ── Next Events ── */
    .next-event-item-wrapper {
        min-width: 86%;
        margin-right: 16px;
    }

    .next-event-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .next-event-title {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    }

    .next-event-description {
        font-size: clamp(0.82rem, 2.4vw, 0.92rem);
    }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ── Mobile: <= 480px ── */
@media (max-width: 480px) {

    /* Sections */
    .events-section,
    .services-section,
    .stats-section,
    .stats-section_our,
    .live-events-section,
    .past-events-section,
    .partners-section {
        padding: 36px 4%;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    }

    .section-description {
        font-size: clamp(0.82rem, 3vw, 0.95rem);
    }

    /* ── Live & Event Cards ── */
    .event-card {
        min-width: 86%;
        max-width: 320px;
    }

    .past-event-card {
        min-width: 78%;
        max-width: 260px;
    }

    .live-event-image {
        height: 170px;
    }

    /* ── Premium Services ── */
    .service-card {
        padding: 22px 16px;
        max-width: 100%;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    }

    /* ── Our Products ── */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 16px !important;
    }

    .product-card {
        padding: 18px 12px !important;
        border-radius: 14px !important;
    }

    .product-card i {
        font-size: 2.4rem !important;
        margin-bottom: 12px !important;
    }

    .product-card h3 {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem) !important;
        margin-bottom: 8px !important;
    }

    .product-card p {
        font-size: clamp(0.78rem, 2.8vw, 0.88rem) !important;
    }

    .product-card .card-button {
        margin-top: 14px !important;
        font-size: 0.82rem !important;
        padding: 9px 16px !important;
    }

    /* ── App Section ── */
    .app-main-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
    }

    .app-tagline {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
    }

    .app-desc {
        font-size: clamp(0.82rem, 3vw, 0.92rem) !important;
    }

    .badge-link img {
        height: 38px;
    }

    .qr-card {
        padding: 16px;
    }

    .qr-card img {
        height: 120px;
        width: 120px;
    }

    /* ── Valued Customers ── */
    .partner-logo {
        min-width: 90px !important;
        max-width: 110px !important;
        padding: 10px !important;
    }

    .partner-logo img {
        height: 44px;
    }

    /* ── Achievements ── */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .stat-label {
        font-size: clamp(0.72rem, 2.5vw, 0.85rem);
    }

    /* ── Contact Us ── */
    .contact-form-container {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* ── Hero ── */
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .hero-description { font-size: 0.9rem; }

    .cta-primary,
    .cta-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* ── Live event countdown ── */
    .countdown-item { font-size: 1.2rem; }
    .countdown-label { font-size: 0.6rem; }
}

/* ── Small Mobile: <= 360px ── */
@media (max-width: 360px) {

    .section-title {
        font-size: clamp(1.25rem, 7vw, 1.7rem);
    }

    .section-subtitle {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }

    .section-description {
        font-size: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        padding: 14px 10px !important;
    }

    .product-card h3 {
        font-size: 0.88rem !important;
    }

    .product-card i {
        font-size: 2rem !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: clamp(1.3rem, 8vw, 1.7rem);
    }

    .partner-logo {
        min-width: 80px !important;
        padding: 8px !important;
    }

    .app-main-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem) !important;
    }
}


/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff0080;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Custom Scrollbar */
/* Note: For flex-containers with overflow-x: scroll, these styles apply */
::-webkit-scrollbar {
    width: 12px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0080, #00ff80);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00ff80, #ff0080);
}

/* Login Popup Styles */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.login-overlay.active {
    display: flex;
    opacity: 1;
}

.login-popup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.login-overlay.active .login-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.login-popup h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-popup .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.login-popup .close-btn:hover {
    color: #ff0080;
}

.login-popup input[type="tel"] {
    width: calc(100% - 40px);
    padding: 15px 20px;
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-popup input[type="tel"]:focus {
    border-color: #00ff80;
    box-shadow: 0 0 0 3px rgba(0, 255, 128, 0.3);
}

.login-popup input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-popup button {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.login-popup button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

/* Optional: Hide arrows until hover on the entire slider container */
.slider-container:not(:hover) .slider-arrow {
    opacity: 0;
    pointer-events: none;
}

.slider-container:hover .slider-arrow {
    opacity: 1;
    pointer-events: all;
}


/* Live Events Section */
.live-events-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #0d001a 0%, #1a0030 50%, #0a0018 100%);
    position: relative;
    text-align: center;
}

.live-events-grid-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    perspective: 1000px;
}

.live-event-card-wrapper {
    flex-shrink: 0;
    width: calc(33.33% - 27px);
    max-width: 450px;
    box-sizing: border-box;
    transform-style: preserve-3d;
}

@media (max-width: 1200px) {
    .live-event-card-wrapper {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .live-event-card-wrapper {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
}


.live-event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    transform-style: preserve-3d;
}

.live-event-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff); */
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-event-card:hover::after {
    opacity: 1;
}

.live-event-card:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 128, 0.5);
    border-color: transparent;
}

.live-event-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Specific live event images */
.live-event-card-wrapper:nth-child(1) .live-event-image {
    background-image: url('https://placehold.co/1000x800/1a1a2e/ffffff?text=Tech+Summit');
}

.live-event-card-wrapper:nth-child(2) .live-event-image {
    background-image: url('https://placehold.co/1000x800/2a2a3e/ffffff?text=Design+Workshop');
}

.live-event-card-wrapper:nth-child(3) .live-event-image {
    background-image: url('https://placehold.co/1000x800/3a3a4e/ffffff?text=Healthcare+Talk');
}

.live-event-card-wrapper:nth-child(4) .live-event-image {
    background-image: url('https://placehold.co/1000x800/4a4a5e/ffffff?text=Marketing+Trends');
}

.live-event-card-wrapper:nth-child(5) .live-event-image {
    background-image: url('https://placehold.co/1000x800/5a5a6e/ffffff?text=AI+Revolution');
}


.live-event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
}

.live-event-info {
    width: 100%;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.live-event-tag {
    display: inline-block;
    background: linear-gradient(45deg, #00ff80, #36b37e);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.live-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    height: 90px;
    text-align: start;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* .live-event-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.5em * 4);
} */
.live-Addres{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: opacity 0.35s ease 0.13s, transform 0.35s ease 0.13s;
    text-align: start;  
}
.live-date{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: opacity 0.35s ease 0.13s, transform 0.35s ease 0.13s;
    text-align: start;  
}
.countdown-timer {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 15px rgba(0, 255, 128, 0.1), 0 0 20px rgba(0, 255, 128, 0.3);
    animation: countdownGlow 2s ease-in-out infinite alternate;
}

@keyframes countdownGlow {
    from {
        box-shadow: inset 0 0 10px rgba(0, 255, 128, 0.05), 0 0 15px rgba(0, 255, 128, 0.2);
    }

    to {
        box-shadow: inset 0 0 20px rgba(0, 255, 128, 0.2), 0 0 30px rgba(0, 255, 128, 0.5);
    }
}

.countdown-item {
    text-align: center;
    font-family: 'Orbitron', monospace;
    color: #00ff80;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.4);
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-event-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.live-event-buttons .cta-primary,
.live-event-buttons .cta-secondary-live {
    padding: 14px 35px;
    font-size: 1.05rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.live-event-buttons .cta-primary {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.live-event-buttons .cta-secondary-live {
    background: transparent;
    color: #00ff80;
    border: 2px solid #00ff80;
    box-shadow: 0 10px 30px rgba(0, 255, 128, 0.2);
}

.live-event-buttons .cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.6);
}

.live-event-buttons .cta-secondary-live:hover {
    background: rgba(0, 255, 128, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 128, 0.4);
}


/* Next Events Section - Redesign */
.next-events-section {
    padding: 70px 5%;
    background: #f8f6ff;
    position: relative;
}

.next-events-list-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.next-event-item-wrapper {
    flex-shrink: 0;
    width: calc(33.33% - 27px);
    max-width: 450px;
    box-sizing: border-box;
    perspective: 800px;
}

@media (max-width: 1200px) {
    .next-event-item-wrapper {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .next-event-item-wrapper {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
}


.next-event-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border: 1px solid rgba(128, 0, 255, 0.10);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(128, 0, 255, 0.08);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.next-event-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(128, 0, 255, 0.16);
    border-color: rgba(128, 0, 255, 0.35);
}

.next-event-date-box {
    min-width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #8000ff, #ff0080);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(128, 0, 255, 0.5);
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    transform: translateZ(20px);
}

.next-event-item:hover .next-event-date-box {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 8px 25px rgba(128, 0, 255, 0.7);
}

.next-event-date-box .day {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.next-event-date-box .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.next-event-date-box .year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.next-event-details {
    flex-grow: 1;
    transform: translateZ(10px);
}

.next-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: none;
}

.next-event-description {
    color: rgba(26, 26, 46, 0.70);
    font-size: 1rem;
    margin-bottom: 15px;
}

.next-event-location-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.next-event-location {
    color: rgba(26, 26, 46, 0.65);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.next-event-location i {
    color: #8000ff;
}

.next-event-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8000ff;
    text-shadow: none;
}

/* Past Events Section - Redesign */
.past-events-section {
    padding: 70px 5%;
    background: #f8f6ff;
    position: relative;
}

.past-event-card {
    width: 320px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(128, 0, 255, 0.10);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(128, 0, 255, 0.10);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.past-event-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateZ(-2deg);
    box-shadow: 0 20px 50px rgba(128, 0, 255, 0.2), 0 0 40px rgba(128, 0, 255, 0.15);
    border-color: #8000ff;
}

.past-event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    filter: grayscale(80%) brightness(0.8);
    /* Slightly faded, more artistic */
    transition: filter 0.4s ease;
}

/* Past event images */
.past-event-card:nth-child(1) .past-event-image {
    background-image: url('https://placehold.co/800x400/333333/aaaaaa?text=Charity+Ball');
}

.past-event-card:nth-child(2) .past-event-image {
    background-image: url('https://placehold.co/800x400/444444/bbbbbb?text=Fashion+Summit');
}

.past-event-card:nth-child(3) .past-event-image {
    background-image: url('https://placehold.co/800x400/555555/cccccc?text=Startup+Fest');
}

.past-event-card:nth-child(4) .past-event-image {
    background-image: url('https://placehold.co/800x400/666666/dddddd?text=Food+Festival');
}

.past-event-card:nth-child(5) .past-event-image {
    background-image: url('https://placehold.co/800x400/777777/eeeeee?text=Film+Gala');
}

.past-event-card:nth-child(6) .past-event-image {
    background-image: url('https://placehold.co/800x400/888888/ffffff?text=Yoga+Retreat');
}

.past-event-card:nth-child(7) .past-event-image {
    background-image: url('https://placehold.co/800x400/999999/eeeeee?text=Tech+Awards');
}

.past-event-card:nth-child(8) .past-event-image {
    background-image: url('https://placehold.co/800x400/aaaaaa/cccccc?text=Design+Conclave');
}


.past-event-card:hover .past-event-image {
    filter: grayscale(0%) brightness(1);
    /* Full color on hover */
}

.past-event-content {
    padding: 25px;
    /* Slightly less padding */
    transform: translateZ(10px);
}

.past-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    height: 76px;
    overflow: hidden;
}

.past-event-date {
    font-size: 0.9rem;
    color: rgba(26, 26, 46, 0.6);
    margin-bottom: 15px;
}

.past-event-card .card-button {
    padding: 10px 25px;
    font-size: 0.95rem;
    background: rgba(128, 0, 255, 0.08);
    border: 1px solid rgba(128, 0, 255, 0.25);
    color: #8000ff;
    box-shadow: none;
}

.past-event-card .card-button:hover {
    background: linear-gradient(45deg, #8000ff, #ff0080);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(128, 0, 255, 0.3);
}


/* Partners Section - Redesign */
.partners-section {
    padding: 70px 5%;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(128, 0, 255, 0.10);
}

.partners-grid {
    display: flex;
    /* Kept as flex for horizontal scroll */
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    gap: 60px;
    /* Increased gap */
    justify-content: center;
    /* Center logos if there's space */
}

.partner-logo {
    flex-shrink: 0;
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(128, 0, 255, 0.12);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.partner-logo::before {
    /* Animated light sweep */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.partner-logo:hover::before {
    left: 150%;
}


.partner-logo:hover {
    transform: translateY(-8px) rotateY(5deg) scale(1.1);
    /* 3D tilt and slightly larger */
    box-shadow: 0 0 45px rgba(255, 0, 128, 0.5), 0 0 20px rgba(0, 255, 128, 0.3);
    /* Stronger glow and color accent */
    border-color: #00ff80;
}

.partner-logo img {
    max-height: 80%;
    /* Adjust image size relative to container */
    max-width: 90%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    /* Slightly muted, high contrast */
    transition: filter 0.4s ease;
}

.partner-logo:hover img {
    filter: brightness(1) contrast(1.5);
    /* Brighter on hover */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: white;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd93d;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.3);
}

.form-group select option {
    background: #764ba2;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

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

/* Modal box with glass effect */
.modal-box.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 700px;
    color: #fff;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modal-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Close icon */
.close-icon {
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-icon:hover {
    color: #ff0080;
    transform: scale(1.2);
}

/* Title */
.modal-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a2e;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(248, 244, 255, 0.8);
    border: 1px solid rgba(128, 0, 255, 0.2);
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff0080;
    background: rgba(255, 255, 255, 0.95);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
    background: linear-gradient(45deg, #8000ff, #ff0080);
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .modal-box.contact-form {
        width: 95%;
        padding: 25px;
    }

    .modal-title {
        font-size: 20px;
    }
}

.required {
    color: red;
    font-weight: bold;
}


/* ─── SECTION-SPECIFIC TEXT OVERRIDES ─────────────────────── */

/* DARK sections: white headings */
/* .live-events-section .section-subtitle,
.events-section .section-subtitle,
.services-section .section-subtitle,
.stats-section .section-subtitle,
.stats-section_our .section-subtitle,
.next-events-section .section-subtitle {
    color: rgba(255, 0, 128, 0.90);
} */

/* .live-events-section .section-title,
.events-section .section-title,
.services-section .section-title,
.stats-section .section-title,
.stats-section_our .section-title,
.next-events-section .section-title {
    background: linear-gradient(45deg, #ffffff, #ff80c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* .live-events-section .section-description,
.events-section .section-description,
.services-section .section-description,
.stats-section .section-description,
.stats-section_our .section-description,
.next-events-section .section-description {
    color: rgba(255, 255, 255, 0.65);
} */

/* LIGHT sections: dark headings */
/* .past-events-section .section-subtitle,
.partners-section .section-subtitle,
.product-marquee-section .section-subtitle {
    color: #cc0066;
}

.past-events-section .section-title,
.partners-section .section-title,
.product-marquee-section .section-title {
    background: linear-gradient(45deg, #1a1a2e, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.past-events-section .section-description,
.partners-section .section-description,
.product-marquee-section .section-description {
    color: rgba(26, 26, 46, 0.70);
} */

/* Stats section: fix section header */
/* .stats-section .marquee-header h2,
.stats-section_our .marquee-header h2 {
    background: linear-gradient(45deg, #ffffff, #ff80c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* PRODUCTS marquee section: dark heading, light bg */
/* .product-marquee-section .marquee-header h2 {
    background: linear-gradient(45deg, #1a1a2e, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* Next events (LIGHT): fix card text dark */
.next-event-title {
    color: #1a1a2e !important;
}

.next-event-date {
    color: rgba(26, 26, 46, 0.65) !important;
}

.next-event-venue {
    color: rgba(26, 26, 46, 0.65) !important;
}

.next-event-price {
    color: #8000ff !important;
}

.next-event-description {
    color: rgba(26, 26, 46, 0.70) !important;
}

/* Marquee card on white bg */
.product-marquee-section .marquee-card {
    background: #f8f5ff;
    border: 1px solid rgba(128, 0, 255, 0.12);
    box-shadow: 0 2px 12px rgba(128, 0, 255, 0.07);
}

.product-marquee-section .marquee-card:hover {
    background: #fff;
    border-color: rgba(255, 0, 128, 0.35);
    box-shadow: 0 8px 28px rgba(255, 0, 128, 0.12);
}

.marquee-card span {
    color: #1a1a2e;
    font-weight: 600;
}

/* Service card on DARK bg — ensure white text */
.services-section .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.services-section .service-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 0, 128, 0.40);
    box-shadow: 0 20px 50px rgba(255, 0, 128, 0.20);
}

.services-section .service-card h3,
.services-section .service-card .service-title {
    color: #fff;
}

.services-section .service-card .service-description {
    color: rgba(255, 255, 255, 0.75);
}

.services-section .service-card .service-features li {
    color: rgba(255, 255, 255, 0.72);
}

.services-section .service-card .card-button {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Light Theme Text Overrides */
#products-section .section-title,
#events .section-title,
.product-marquee-section .section-title,
.services-section .section-title,
.stats-section .section-title,
.contact-section .section-title {
    background: linear-gradient(to right, #1a1a2e, #4a4a5a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* #products-section .section-subtitle,
#products-section .section-description,
#events .section-subtitle,
#events .section-description,
.services-section .section-subtitle,
.services-section .section-description,
.product-marquee-section .section-subtitle,
.product-marquee-section .section-description {
    color: #4a4a5a;
} */

/* Specific Light Theme Card & Background Styles */
#events.events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#events .event-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#events .event-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 20px rgba(128, 0, 255, 0.15);
    border-color: rgba(128, 0, 255, 0.4);
}

#events .event-title {
    color: #1a1a2e;
    text-shadow: none;
}

#events .event-description {
    color: #4a4a5a;
}

#events .event-price {
    color: #8000ff;
    text-shadow: none;
}

#events .event-location {
    color: #6a6a7a;
}

/* Contact form section — LIGHT bg (default body) */
.contact-form-container {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 255, 0.12);
    box-shadow: 0 8px 40px rgba(128, 0, 255, 0.08);
}

.contact-section-wrapper .section-subtitle {
    color: #cc0066;
}

.contact-section-wrapper .section-title {
    background: linear-gradient(45deg, #1a1a2e, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partners section — LIGHT */
.partners-section .partner-logo {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 255, 0.10);
    box-shadow: 0 2px 12px rgba(128, 0, 255, 0.06);
}

.partners-section .partner-logo:hover {
    border-color: rgba(255, 0, 128, 0.40);
    box-shadow: 0 8px 28px rgba(255, 0, 128, 0.12);
    transform: translateY(-6px) scale(1.04);
}

/* Stat numbers stay gradient on dark bg */
.stats-section .stat-number,
.stats-section_our .stat-number {
    background: linear-gradient(45deg, #ff0080, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-section .stat-label,
.stats-section_our .stat-label {
    color: rgba(255, 255, 255, 0.68);
}

/* Past event info on LIGHT */
.past-event-info {
    padding: 22px 24px;
    background: transparent;
}

.past-event-title {
    color: #1a1a2e;
}

.past-event-date {
    color: rgba(26, 26, 46, 0.60);
}

.past-event-card .card-button {
    background: rgba(128, 0, 255, 0.07);
    color: #8000ff;
    border: 1px solid rgba(128, 0, 255, 0.22);
}

.past-event-card .card-button:hover {
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    border-color: transparent;
}

/* Smooth section dividers */
/* .live-events-section::before,
.events-section::before,
.services-section::before,
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0080, #8000ff, #00e5ff, #8000ff, #ff0080);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
    z-index: 1;
} */

/* @keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
} */

/* ================================================================
   ALLEVENTS AI — COMPLETE UI COLOR & SECTION POLISH
   All section titles, subtitles, descriptions correctly colored
   based on their background (dark/light)
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
    --pink:       #ff0080;
    --purple:     #8000ff;
    --cyan:       #00e5ff;
    --green:      #00ff80;
    --dark-bg:    #060010;
    --dark-mid:   #0d001a;
    --dark-deep:  #1a0030;
    --light-bg:   #f8f5ff;
    --white:      #ffffff;
    --text-dark:  #1a1a2e;
    --text-mid:   #4a4a6a;
    --text-muted: rgba(26,26,46,0.60);

    /* Animated gradient flows */
    --grad-pink-purple: linear-gradient(45deg, var(--pink), var(--purple));
    --grad-white-pink:  linear-gradient(45deg, #fff, #ffd0ea, #ff80c0);
    --grad-dark-title:  linear-gradient(45deg, var(--text-dark), var(--pink));
}

/* ================================================================
   2. HERO SECTION (zh-hero) — DARK background
      Titles & text must be WHITE
   ================================================================ */
.zh-hero { background: #060010 !important; }
.zh-title { color: #ffffff !important; font-weight: 900 !important; }
.zh-venue { color: rgba(255,255,255,0.85) !important; }
.zh-price { color: rgba(255,255,255,0.90) !important; }
.zh-date  { color: #fff !important; background: rgba(255,0,128,0.22) !important; border-color: rgba(255,0,128,0.4) !important; }
.zh-btn   { background: linear-gradient(45deg, var(--pink), var(--purple)) !important; color: #fff !important; }


/* ================================================================
   E-CATALOGUE CTA SECTION
   ================================================================ */
.ecatalogue-section {
    padding: 60px 5% 28px !important;
    background: linear-gradient(160deg, #faf7ff 0%, #f2ecff 45%, #f9f4ff 100%) !important;
}

.ecatalogue-content {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(140deg, #150027 0%, #2b0050 60%, #1a0034 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 56px rgba(85, 0, 150, 0.28);
    padding: 36px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    position: relative;
    overflow: hidden;
}

.ecatalogue-content::after {
    content: '';
    position: absolute;
    right: -70px;
    top: -60px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.22) 0%, rgba(255, 0, 128, 0) 72%);
    pointer-events: none;
}

.ecatalogue-text {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.ecatalogue-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8dfcce;
    font-size: 0.78rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ecatalogue-tag::before {
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #8dfcce;
}

.ecatalogue-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 10px;
}

.ecatalogue-text p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
}

.ecatalogue-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ecatalogue-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ecatalogue-btn.primary-btn {
    color: #fff;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    box-shadow: 0 8px 22px rgba(255, 0, 128, 0.28);
}

.ecatalogue-btn.secondary-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.ecatalogue-btn:hover {
    transform: translateY(-2px);
}

.ecatalogue-btn.primary-btn:hover {
    box-shadow: 0 12px 28px rgba(255, 0, 128, 0.36);
}

.ecatalogue-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
    .ecatalogue-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 28px 24px;
        gap: 18px;
    }

    .ecatalogue-text {
        width: 100%;
        max-width: 100%;
    }

    .ecatalogue-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .ecatalogue-section {
        padding: 42px 5% 18px !important;
    }

    .ecatalogue-content {
        border-radius: 18px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 22px 16px;
        gap: 14px;
    }

    .ecatalogue-text {
        width: 100%;
        max-width: 100%;
    }

    .ecatalogue-tag {
        font-size: 0.62rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .ecatalogue-text h2 {
        font-size: clamp(1.2rem, 5.8vw, 1.45rem);
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .ecatalogue-text p {
        font-size: 0.74rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ecatalogue-actions {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }

    .ecatalogue-btn {
        width: auto;
        flex: 1 1 220px;
        min-height: 40px;
        font-size: 0.72rem;
        padding: 10px 14px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .ecatalogue-content {
        padding: 20px 14px;
        gap: 12px;
    }

    .ecatalogue-text h2 {
        font-size: clamp(1.08rem, 5.4vw, 1.3rem);
    }

    .ecatalogue-text p {
        font-size: 0.68rem;
        -webkit-line-clamp: 2;
    }

    .ecatalogue-actions {
        width: 100%;
        gap: 8px;
    }

    .ecatalogue-btn {
        width: 100%;
        min-height: 38px;
        font-size: 0.62rem;
        padding: 10px 12px;
    }
}


/* ================================================================
   3. PRODUCTS / SOFTWARE SLIDER — WHITE background
      Title must be DARK
   ================================================================ */
.product-marquee-section {
    background: #ffffff !important;
    padding: 48px 0 !important;
    position: relative !important;
    border-top: none !important;
    border-bottom: none !important;
    overflow: hidden !important;
}
/* .product-marquee-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--purple), var(--pink)) !important;
    background-size: 200% 100% !important;
    animation: borderFlow 4s linear infinite !important;
} */
/* .product-marquee-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink), var(--purple), var(--cyan)) !important;
    background-size: 200% 100% !important;
    animation: borderFlow 4s linear infinite reverse !important;
} */
/* ▶ DARK title on WHITE background */
.marquee-header h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem) !important;
    font-weight: 700 !important;
    background: linear-gradient(45deg, #1a1a2e 30%, var(--pink)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.marquee-card {
    background: #fafafa !important;
    border: 1.5px solid rgba(128,0,255,0.09) !important;
    border-radius: 18px !important;
    padding: 26px 18px !important;
    min-width: 195px !important;
    box-shadow: 0 2px 12px rgba(128,0,255,0.05) !important;
    transition: all 0.35s ease !important;
    gap: 12px !important;
}
.marquee-card:hover {
    background: #fff !important;
    border-color: rgba(255,0,128,0.28) !important;
    box-shadow: 0 10px 28px rgba(128,0,255,0.13) !important;
    transform: translateY(-6px) !important;
}
.marquee-card i   { font-size: 2.4rem !important; transition: transform 0.3s ease !important; }
.marquee-card:hover i { transform: scale(1.15) !important; filter: drop-shadow(0 0 8px currentColor) !important; }
/* ▶ DARK label on WHITE card */
.marquee-card span {
    color: #1a1a2e !important;
    font-weight: 600 !important;
    font-size: 0.97rem !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.3px !important;
}
.nav-btn {
    background: #fff !important;
    border: 1.5px solid rgba(128,0,255,0.16) !important;
    color: var(--purple) !important;
    width: 42px !important; height: 42px !important;
    box-shadow: 0 3px 10px rgba(128,0,255,0.09) !important;
}
.nav-btn:hover {
    background: var(--grad-pink-purple) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(128,0,255,0.28) !important;
}


/* ================================================================
   4. HAPPENING NOW / LIVE EVENTS — DARK background
      Section header: WHITE titles
   ================================================================ */
.live-events-section {
    padding: 80px 5% !important;
    background: linear-gradient(155deg, #08001a 0%, #120028 45%, #080014 100%) !important;
    position: relative !important;
}
/* ▶ WHITE titles on DARK background */
.live-events-section .section-subtitle {
    color: rgba(255,180,220,0.92) !important;
    font-family: 'Dancing Script', cursive !important;
}
.live-events-section .section-title {
    background: linear-gradient(45deg, #ffffff 20%, #ffa0cf 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.live-events-section .section-description {
    color: rgba(255,255,255,0.60) !important;
}
.live-event-title       { color: #fff !important; }
.live-event-description { color: rgba(255,255,255,0.85) !important; }
.live-event-tag {
    background: linear-gradient(45deg, var(--green), #00c96f) !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}
/* Alternating card accents: odd=pink, even=green */
.live-event-card-wrapper:nth-child(odd)  .live-event-card { border-color: rgba(255,0,128,0.18) !important; }
.live-event-card-wrapper:nth-child(even) .live-event-card { border-color: rgba(0,255,128,0.14) !important; }
.live-event-card-wrapper:nth-child(odd)  .live-event-tag  { background: var(--grad-pink-purple) !important; }
.live-event-card-wrapper:nth-child(even) .live-event-tag  { background: linear-gradient(45deg, #00c96f, #0099ee) !important; }
.countdown-item   { color: var(--green) !important; }
.countdown-label  { color: rgba(255,255,255,0.75) !important; }


/* ================================================================
   5. OUR PAST EVENTS — LIGHT background
      Section header: DARK titles
   ================================================================ */
.past-events-section {
    padding: 80px 5% !important;
    background: linear-gradient(135deg, #f0ecff 0%, #faf8ff 50%, #eff6ff 100%) !important;
    position: relative !important;
}
/* .past-events-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple)) !important;
} */
/* ▶ DARK titles on LIGHT background */
.past-events-section .section-subtitle {
    color: #bb0060 !important;
    font-family: 'Dancing Script', cursive !important;
}
.past-events-section .section-title {
    background: linear-gradient(45deg, #1a1a2e 30%, var(--pink) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.past-events-section .section-description { color: rgba(26,26,46,0.62) !important; }
/* Card styles */
.past-event-card {
    background: #fff !important;
    border: 1.5px solid rgba(128,0,255,0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(128,0,255,0.07) !important;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
    overflow: hidden !important;
}
.past-event-card:hover {
    transform: translateY(-9px) scale(1.02) !important;
    box-shadow: 0 20px 48px rgba(128,0,255,0.16) !important;
    border-color: rgba(128,0,255,0.22) !important;
}
.past-event-image {
    height: 180px !important;
    filter: grayscale(40%) brightness(0.9) !important;
    transition: filter 0.4s ease, transform 0.4s ease !important;
    background-size: cover !important;
    background-position: center !important;
}
.past-event-card:hover .past-event-image { filter: grayscale(0%) brightness(1.05) !important; transform: scale(1.04) !important; }
/* ▶ DARK text on WHITE card */
.past-event-title { color: #1a1a2e !important; font-weight: 700 !important; font-size: 1.3rem !important; }
.past-event-date  { color: var(--purple) !important; font-weight: 600 !important; font-size: 0.83rem !important; }
.past-event-card .card-button {
    background: transparent !important;
    color: var(--purple) !important;
    border: 1.5px solid rgba(128,0,255,0.28) !important;
    border-radius: 24px !important;
    padding: 9px 22px !important;
    font-size: 0.87rem !important;
    font-weight: 600 !important;
}
.past-event-card .card-button:hover {
    background: var(--grad-pink-purple) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(128,0,255,0.28) !important;
    transform: translateY(-2px) !important;
}


/* ================================================================
   6. PREMIUM SERVICES — DARK background
      Section header: WHITE titles
   ================================================================ */
.services-section {
    padding: 80px 5% !important;
    background: linear-gradient(155deg, #080014 0%, #12002a 50%, #080014 100%) !important;
    position: relative !important;
}
/* ▶ WHITE titles on DARK background */
.services-section .section-subtitle {
    color: rgba(255,160,210,0.92) !important;
    font-family: 'Dancing Script', cursive !important;
}
.services-section .section-title {
    background: linear-gradient(45deg, #ffffff 20%, #ffa0cf 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.services-section .section-description { color: rgba(255,255,255,0.58) !important; }
/* Cards */
.service-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    border-radius: 22px !important;
    padding: 40px 26px !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}
.service-card:hover {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,0,128,0.35) !important;
    box-shadow: 0 24px 48px rgba(128,0,255,0.2) !important;
    transform: translateY(-8px) !important;
}
/* Icon box styling */
.service-icon {
    font-size: 2.6rem !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 68px !important;
    height: 68px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    animation: none !important;
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    transition: transform 0.3s ease !important;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg) !important; box-shadow: 0 8px 22px rgba(255,0,128,0.22) !important; }
/* ▶ WHITE text on DARK card */
.service-card h3, .service-title {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-background-clip: initial !important;
    background: none !important;
    background-clip: initial !important;
    max-height: none !important;
}
.service-description { color: rgba(255,255,255,0.68) !important; font-size: 0.91rem !important; }
.service-features li { color: rgba(255,255,255,0.70) !important; font-size: 0.87rem !important; }
.service-features li::before { content: '✦' !important; color: var(--pink) !important; font-size: 0.72rem !important; }
.service-card .card-button {
    background: rgba(255,255,255,0.07) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-radius: 24px !important;
}
.service-card .card-button:hover {
    background: var(--grad-pink-purple) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(255,0,128,0.38) !important;
    transform: translateY(-3px) !important;
    color: #fff !important;
}


/* ================================================================
   7. OUR PRODUCTS — DARK background
      Section header: WHITE titles
   ================================================================ */
#products-section {
    padding: 80px 5% !important;
    background:
        radial-gradient(circle at 15% 85%, rgba(0,255,128,0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(128,0,255,0.07) 0%, transparent 50%),
        linear-gradient(180deg, #0a0018 0%, #060010 100%) !important;
    position: relative !important;
}
/* ▶ WHITE titles on DARK background */
#products-section .section-subtitle {
    color: rgba(255,160,210,0.92) !important;
    font-family: 'Dancing Script', cursive !important;
}
#products-section .section-title {
    background: linear-gradient(45deg, #ffffff 20%, #ffa0cf 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
#products-section .section-description { color: rgba(255,255,255,0.58) !important; }
/* Product Cards */
.product-card {
    background: rgba(255,255,255,0.05) !important;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    border-radius: 22px !important;
    padding: 32px 22px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.product-card:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,0,128,0.28) !important;
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 28px rgba(255,0,128,0.1) !important;
}
.product-card i {
    width: 64px !important; height: 64px !important;
    display: flex !important;
    align-items: center !important; justify-content: center !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 2.2rem !important;
    margin-bottom: 18px !important;
    transition: transform 0.3s ease !important;
}
.product-card:hover i { transform: scale(1.12) rotate(-5deg) !important; }
/* ▶ WHITE text on DARK card */
.product-card h3 {
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    height: auto !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}
.product-card p {
    color: rgba(255,255,255,0.66) !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    max-height: none !important;
}
.product-card .card-button {
    border-radius: 24px !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.87rem !important;
    margin-top: auto !important;
    transition: all 0.3s ease !important;
}
.product-card .card-button:hover {
    transform: translateY(-3px) scale(1.04) !important;
    filter: brightness(1.18) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.3) !important;
}


/* ================================================================
   8. GET THE APP — LIGHT outer, DARK inner card
   ================================================================ */
.premium-app-section {
    padding: 64px 5% !important;
    background: linear-gradient(135deg, #170033 0%, #f0ebff 50%, #0c0124 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}
.app-glass-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, #180035 0%, #0a0020 60%, #120030 100%) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 32px !important;
    padding: 54px 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 44px !important;
    box-shadow: 0 30px 80px rgba(128,0,255,0.20), 0 8px 24px rgba(0,0,0,0.28) !important;
    position: relative !important;
    overflow: hidden !important;
}
/* .app-glass-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--purple), var(--pink)) !important;
    background-size: 200% 100% !important;
    animation: borderFlow 4s linear infinite !important;
} */
/* ▶ WHITE text on DARK card */
.app-tagline {
    color: #00e5a0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
}
.app-tagline::before {
    content: '' !important;
    display: inline-block !important;
    width: 22px !important; height: 2px !important;
    background: #00e5a0 !important;
    border-radius: 2px !important;
}
.app-main-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2rem, 3.2vw, 2.9rem) !important;
    color: #fff !important;
    line-height: 1.18 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em !important;
}
.app-main-title span {
    background: linear-gradient(45deg, #00e5a0, var(--purple)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
}
.app-desc {
    color: rgba(255,255,255,0.62) !important;
    font-size: 1rem !important;
    line-height: 1.72 !important;
    max-width: 450px !important;
}
.app-badges { display: flex !important; gap: 14px !important; margin-top: 26px !important; flex-wrap: wrap !important; }
/* .badge-link img { height: 46px !important; border-radius: 10px !important; transition: transform 0.3s ease !important; } */
.badge-link:hover img { transform: translateY(-4px) scale(1.05) !important; filter: brightness(1.1) !important; }
/* QR Card */
.qr-card {
    background: #0d0d0d !important;
    padding: 22px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(0,229,160,0.24) !important;
    text-align: center !important;
    box-shadow: 0 0 36px rgba(0,229,160,0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.qr-card:hover { transform: scale(1.03) !important; box-shadow: 0 0 55px rgba(0,229,160,0.2) !important; }
.qr-text {
    color: #00e5a0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}
@media (max-width: 992px) {
    .app-glass-container { flex-direction: column !important; padding: 38px 28px !important; text-align: center !important; gap: 32px !important; }
    .app-tagline { justify-content: center !important; }
    .app-badges { justify-content: center !important; }
    .app-desc { margin: 0 auto !important; }
}
@media (max-width: 480px) {
    .app-glass-container { padding: 28px 18px !important; }
    .app-main-title { font-size: 1.75rem !important; }
    
}


/* ================================================================
   9. OUR VALUED CUSTOMERS — LIGHT background
      Section header: DARK titles
   ================================================================ */
.partners-section {
    padding: 80px 5% !important;
    background: linear-gradient(135deg, #faf8ff 0%, #f8f5ff 50%, #eff6ff 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
}
/* .partners-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple)) !important;
} */
/* ▶ DARK titles on LIGHT background */
.partners-section .section-subtitle {
    color: #bb0060 !important;
    font-family: 'Dancing Script', cursive !important;
}
.partners-section .section-title {
    background: linear-gradient(45deg, #1a1a2e 30%, var(--purple) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.partners-section .section-description { color: rgba(26,26,46,0.60) !important; }
/* Logo grid - wrap layout */
.partners-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 22px !important;
    overflow: visible !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
}
.partner-logo {
    flex-shrink: 0 !important;
    min-width: 155px !important;
    height: 88px !important;
    background: #fff !important;
    border: 1.5px solid rgba(128,0,255,0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(128,0,255,0.06) !important;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}
.partner-logo::before { display: none !important; }
.partner-logo:hover {
    transform: translateY(-6px) scale(1.06) !important;
    box-shadow: 0 14px 36px rgba(128,0,255,0.14) !important;
    border-color: rgba(255,0,128,0.28) !important;
}
.partner-logo img {
    max-height: 70% !important;
    max-width: 82% !important;
    object-fit: contain !important;
    filter: grayscale(15%) brightness(0.9) !important;
    transition: filter 0.35s ease !important;
}
.partner-logo:hover img { filter: grayscale(0%) brightness(1.05) !important; }
@media (max-width: 768px) {
    .partners-grid { gap: 14px !important; }
    .partner-logo  { min-width: 118px !important; height: 72px !important; }
}
@media (max-width: 480px) {
    .partner-logo { min-width: 96px !important; height: 60px !important; }
}


/* ================================================================
   10. OUR ACHIEVEMENTS (stats) — DARK background
       WHITE titles
   ================================================================ */
.stats-section_our {
    padding: 72px 5% !important;
    background: linear-gradient(135deg, #080014 0%, #140028 100%) !important;
    text-align: center !important;
    position: relative !important;
}
.stats-section_our .section-title {
    background: linear-gradient(45deg, #ffffff 20%, #ffa0cf 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.stats-section_our .stat-number {
    background: linear-gradient(45deg, var(--pink), var(--cyan)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-family: 'Orbitron', monospace !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    display: block !important;
    margin-bottom: 8px !important;
}
.stats-section_our .stat-label { color: rgba(255,255,255,0.65) !important; }


/* ================================================================
   11. CONTACT US — LIGHT background
       DARK titles
   ================================================================ */
.stats-section.contact-section {
    padding: 80px 5% !important;
    background: linear-gradient(155deg, #f8f5ff 0%, #eff6ff 50%, #f5f2ff 100%) !important;
    position: relative !important;
}
/* .stats-section.contact-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--pink)) !important;
} */
/* ▶ DARK title on LIGHT background */
.stats-section.contact-section .section-title {
    background: linear-gradient(45deg, #1a1a2e 30%, var(--purple) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 36px !important;
}
/* Form container */
.contact-form-container {
    max-width: 660px !important;
    margin: 0 auto !important;
    padding: 46px 46px !important;
    background: #fff !important;
    border-radius: 26px !important;
    border: 1.5px solid rgba(128,0,255,0.09) !important;
    box-shadow: 0 12px 48px rgba(128,0,255,0.10), 0 2px 8px rgba(0,0,0,0.04) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.contact-form-container:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 60px rgba(128,0,255,0.14) !important;
}
.contact-form { display: grid !important; gap: 20px !important; }
.form-group label {
    font-size: 0.89rem !important;
    font-weight: 600 !important;
    /* color: #1a1a2e !important; */
    color:#ffffff !important;
    margin-bottom: 7px !important;
    display: block !important;
}
.form-control {
    width: 100% !important;
    padding: 14px 17px !important;
    background: #f8f5ff !important;
    border: 1.5px solid rgba(128,0,255,0.10) !important;
    border-radius: 12px !important;
    color: #1a1a2e !important;
    font-size: 0.95rem !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}
.form-control:focus {
    border-color: var(--pink) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255,0,128,0.07) !important;
}
.form-control::placeholder { color: rgba(26,26,46,0.36) !important; }
textarea.form-control { min-height: 128px !important; resize: vertical !important; }
/* Submit button */
.contact-section .submit-btn,
.contact-form .submit-btn {
    display: block !important;
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(45deg, var(--pink), var(--purple)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 13px !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 18px rgba(255,0,128,0.24) !important;
    transition: all 0.35s ease !important;
    text-transform: none !important;
}
.contact-section .submit-btn:hover,
.contact-form .submit-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(255,0,128,0.38) !important;
    background: linear-gradient(45deg, var(--purple), var(--pink)) !important;
}
@media (max-width: 768px) { .contact-form-container { padding: 30px 22px !important; } }
@media (max-width: 480px) { .contact-form-container { padding: 22px 14px !important; } 
.stats-section_our .stat-number {
    font-size: 2rem !important;
}}


/* ================================================================
   12. GLOBAL SECTION-HEADER RESET — ensure consistent spacing
   ================================================================ */
.section-header {
    text-align: center !important;
    margin-bottom: 48px !important;
    position: relative !important;
    z-index: 1 !important;
}
.section-subtitle {
    font-family: 'Dancing Script', cursive !important;
    font-size: 1.75rem !important;
    display: block !important;
    margin-bottom: 6px !important;
}
.section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(1.9rem, 4vw, 3.1rem) !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    line-height: 1.15 !important;
}
.section-description {
    font-size: 1.05rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.72 !important;
}


/* ================================================================
   13. ANIMATED BORDER KEYFRAME (shared)
   ================================================================ */
@keyframes borderFlow {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}


/* ================================================================
   14. SLIDER ARROWS — universal polish
   ================================================================ */
.slider-arrow {
    background: rgba(0,0,0,0.65) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
    width: 46px !important; height: 46px !important;
    border-radius: 50% !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}
.slider-arrow:hover {
    background: rgba(255,0,128,0.85) !important;
    transform: translateY(-50%) scale(1.12) !important;
    border-color: transparent !important;
}


/* ================================================================
   OUR PRODUCTS SECTION — LIGHT BACKGROUND OVERRIDE
   Background: light lavender/white
   Titles, card text: DARK
   ================================================================ */

#products-section {
    padding: 80px 5% !important;
    background: linear-gradient(135deg, #f0ecff 0%, #faf8ff 50%, #f5f0ff 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle ambient blobs */
#products-section::before {
    content: '' !important;
    position: absolute !important;
    top: -80px; left: -80px !important;
    width: 340px; height: 340px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(128,0,255,0.06) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}
#products-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: -60px; right: -60px !important;
    width: 280px; height: 280px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255,0,128,0.05) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* ▶ DARK subtitle on LIGHT background */
#products-section .section-subtitle {
    color: #bb0060 !important;
    font-family: 'Dancing Script', cursive !important;
}

/* ▶ DARK title on LIGHT background */
#products-section .section-title {
    background: linear-gradient(45deg, #1a1a2e 30%, #8000ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

#products-section .section-description {
    color: rgba(26, 26, 46, 0.60) !important;
}

/* Product Cards — white on light bg */
#products-section .product-card {
    background: linear-gradient(155deg, #080014 0%, #12002a 50%, #080014 100%) !important;
    border: 1.5px solid rgba(128,0,255,0.08) !important;
    border-radius: 22px !important;
    padding: 34px 24px !important;
    box-shadow: 0 4px 20px rgba(128,0,255,0.07) !important;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* #products-section .product-card:hover {
    background: #fff !important;
    border-color: rgba(128,0,255,0.22) !important;
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 22px 48px rgba(128,0,255,0.14), 0 4px 16px rgba(0,0,0,0.06) !important;
} */

/* Icon container — purple tint on light card */
#products-section .product-card i {
    width: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px !important;
    background: linear-gradient(29deg, rgb(241 241 241), rgb(255 255 255)) !important;
    border: 1.5px solid rgba(128,0,255,0.10) !important;
    font-size: 2.2rem !important;
    margin-bottom: 18px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#products-section .product-card:hover i {
    transform: scale(1.12) rotate(-5deg) !important;
    box-shadow: 0 8px 20px rgba(128,0,255,0.18) !important;
    background: linear-gradient(135deg, rgba(128,0,255,0.14), rgba(255,0,128,0.10)) !important;
}

/* ▶ DARK heading on WHITE card */
#products-section .product-card h3 {
    color:#fff  !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    height: auto !important;
    -webkit-text-fill-color:#fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    margin-bottom: 10px !important;
}

/* ▶ DARK paragraph on WHITE card */
#products-section .product-card p {
    color: #fff !important;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
}

/* Button — purple outline on white card */
#products-section .product-card .card-button {
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.35);
    transition: all .3s ease;
}

#products-section .product-card .card-button:hover {
    background: linear-gradient(45deg, #ff0080, #8000ff) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 22px rgba(128,0,255,0.26) !important;
    transform: translateY(-3px) !important;
}

/* Digital cards inside products (if any) */
#products-section .digital-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(128,0,255,0.08) !important;
    border-radius: 22px !important;
    box-shadow: 0 4px 20px rgba(128,0,255,0.07) !important;
}
#products-section .digital-card:hover {
    border-color: rgba(128,0,255,0.22) !important;
    box-shadow: 0 18px 42px rgba(128,0,255,0.13) !important;
}
#products-section .digital-card h3 {
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
}
