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

.lg-close {
display: block !important;
z-index: 9999;
}

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

.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;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 80%, #ff0080 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #8000ff 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #00ff80 0%, transparent 50%),
        linear-gradient(135deg, #000428 0%, #004e92 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.3), rgba(128, 0, 255, 0.3));
    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);
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(50px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0080, #8000ff, #00ff80, #ff0080);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}


.clients-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.clients-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0080, #00ff80);
    border-radius: 2px;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8));
}

@keyframes logoGradient {

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

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

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff0080, #00ff80);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #ff0080;
    transform: translateY(-3px);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translateY(10px) translateX(-50%) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.nav-links li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%) scale(1);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    font-size: 0.95rem;
    text-align: left;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 0, 128, 0.2), transparent);
    color: #ff0080;
    transform: translateX(5px);
}

.dropdown-menu a::before {
    display: none;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.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('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') 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: 190px;
    margin-bottom: 81px;
}

@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;
}

.events-section {
    padding: 150px 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #00ff80;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* 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 {
    min-width: 400px;
    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;
}

.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: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.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);
}

/* 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-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;
}

.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;
}

.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);
}

/* 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.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.1);
}

.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 */
.services-section {
    padding: 150px 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 40, 0.9));
    position: relative;
}

.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.1;
    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: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.1), 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-features {
    list-style: none;
    margin-bottom: 25px;
    height: 330px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    /* color: #666; */
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d79c2f;
    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.1);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
}

.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: #fff;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    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: 100px 5%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 1000px;
    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.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 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);
}

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

@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));
    }
}

/* Toggle menu and nav-links specific styles for screens <= 992px */
@media (max-width: 992px) {
    .nav-menu {
        display: block;
        /* Ensure the container is block for positioning */
        position: absolute;
        top: 80px;
        /* Below the header */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        max-height: 0;
        /* Hidden by default */
        transition: max-height 0.5s ease-in-out;
    }

    .nav-menu.active {
        max-height: 600px;
        /* Adjusted for more links */
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .nav-links a {
        padding: 10px 20px;
        display: block;
        font-size: 1.2rem;
    }

    .nav-links a::before {
        display: none;
    }

    /* Dropdown menu on mobile - stacked */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        min-width: unset;
        padding: 0;
        max-height: 0;
        transition: max-height 0.3s ease-in-out;
    }

    .nav-links li.has-dropdown.active>.dropdown-menu {
        max-height: 400px;
    }

    .dropdown-menu a {
        padding: 8px 35px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .has-dropdown.active > .dropdown-menu {
        max-height: 500px;
        overflow: visible;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        position: relative;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
    }
    
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px 10px 40px !important;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    nav {
        justify-content: space-between;
    }

    .hero {
        height: auto;
        min-height: 10vh;
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 15px 30px;
        width: 100%;
        font-size: 1rem;
    }

    .hero-content {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .events-section,
    .services-section,
    .stats-section,
    footer,
    .live-events-section,
    .next-events-section,
    .past-events-section,
    .partners-section {
        padding: 80px 5%;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

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

    /* For smaller screens, cards will stack and overflow scroll is not as critical, but flex-shrink ensures they don't deform */
    .events-grid,
    .past-events-grid,
    .partners-grid,
    .live-events-grid,
    .next-events-list {
        flex-wrap: nowrap;
        padding-bottom: 20px;
        justify-content: flex-start;
    }

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

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

    .partner-logo {
        min-width: 120px;
        margin-right: 20px;
    }

    /* Live Event Card specific responsive adjustments */
    .live-event-card-wrapper {
        min-width: 80%;
        max-width: 450px;
        margin: 0 auto;
    }

    .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: 20px;
    }

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


    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    /* Next Events Adjustments */
    .next-event-item-wrapper {
        min-width: 85%;
        margin-right: 20px;
    }

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

    .next-event-details {
        text-align: left;
    }

    .next-event-title {
        font-size: 1.4rem;
    }

    .next-event-description {
        font-size: 0.9rem;
    }

    /* Partners Grid Adjustment */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .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;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

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

    .event-content {
        padding: 20px;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 0.9rem;
    }

    .event-price {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

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

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .countdown-item {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

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

.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;
    /* For horizontal scrollbar */
}

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

::-webkit-scrollbar-thumb {
 background:rgba(0,0,0,0.9); 
 text-align:center;
    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);
    /* Darker background */
    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;
    /* Added opacity to transition */
    opacity: 1;
    /* Always visible, but can fade out on non-hover if desired */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    /* Stronger shadow */
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    /* Even darker on hover */
    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: 100px 5%;
    background: radial-gradient(circle at 50% 10%, rgba(255, 0, 128, 0.1), transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 20, 0.95));
    /* More complex background */
    position: relative;
    text-align: center;
}

.live-events-grid-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    perspective: 1000px;
    /* For 3D effect on cards */
}

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

@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));
    /* Lighter, more airy background */
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* More visible border */
    display: flex;
    align-items: center;
    /* height: 100%; */
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    /* Deeper shadow */
    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 {
    /* Gradient border effect on hover (more vibrant) */
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff);
    /* More colors */
    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);
    /* More pronounced 3D tilt */
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 128, 0.5);
    /* Stronger glow */
    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;
    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);
}

.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 {
    padding: 150px 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 30, 0.95));
    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: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.next-event-item:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(128, 0, 255, 0.4);
    border-color: #8000ff;

}

.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: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.next-event-description {
    color: rgba(255, 255, 255, 0.9);
    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(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.next-event-location i {
    color: #00ff80;
}

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

/* Past Events Section - Redesign */
.past-events-section {
    padding: 150px 5%;
    background: radial-gradient(circle at 80% 90%, rgba(128, 0, 255, 0.1), transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 40, 0.9));
    backdrop-filter: blur(10px);
}

.past-event-card {
    width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.15));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    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(0, 0, 0, 0.7), 0 0 40px rgba(128, 0, 255, 0.4);
    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);
    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;
    /* Larger */
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    height: 76px;
    overflow: hidden;
}

.past-event-date {
    font-size: 0.9rem;
    /* Larger */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.past-event-card .card-button {
    padding: 10px 25px;
    /* Consistent padding */
    font-size: 0.95rem;
    /* Consistent font size */
    background: rgba(255, 255, 255, 0.15);
    /* Lighter, more subtle button */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    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);
}

.jewellery-section {
            padding: 80px 5%;
            background: #000;
            text-align: center;
        }

        .jewellery-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .jewellery-item {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgb(191 191 191 / 50%);
            transition: transform 0.3s ease;
            position: relative;
        }

        .jewellery-item:hover {
            transform: translateY(-10px);
        }

        .jewellery-item img,
        .jewellery-item video {
            width: 100%;
            height:600px;
            object-fit:fill;
            display: block;
        }

        .jewellery-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            color: #fff;
            margin: 15px;
            text-align: center;
            height:20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pagination Styles */
        .pagination-container {
            margin-top: 40px;
            text-align: center;
        }
        .back-container{
            margin-top: 40px;
            text-align: center;
            display: flex;
        }

        .pagination-button {
            background: linear-gradient(45deg, #ff0080, #8000ff);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .pagination-button:disabled {
            background: #333;
            cursor: not-allowed;
            opacity: 0.5;
            box-shadow: none;
        }
      
        .back-button{
            background: linear-gradient(45deg, #ff0080, #8000ff);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .back-button:disabled {
            background: #333;
            cursor: not-allowed;
            opacity: 0.5;
            box-shadow: none;
        }