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

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    /* Prevent horizontal scrolling on body */
    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;
}

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

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

.logo img {
    width: 100%;
    height: 70px;
}

.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.active {
    color: #ff0080;
    transform: translateY(-3px);
}

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

}

/* Active Menu Link Style */


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

}

.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;
    /* Reset padding for dropdown items */
    margin: 0;
    /* Reset margin for dropdown items */
    list-style: none;
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    /* Padding within dropdown */
    font-size: 0.95rem;
    text-align: left;
    white-space: nowrap;
    /* Prevent text wrapping */
    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;
    /* Hide underline for dropdown items */
}

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












/* Hero-slider-css-style_start */

















/* Hero-slider-css-style-End */
















/* 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;
    /* Adjust height from bottom */
    right: 40px;
    /* Adjust distance from right */
    background-color: #25d366;
    /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    /* Vertically center icon */
    z-index: 1000;
    /* Ensure it's above all other elements */
    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;
    }

    /* If you used the Box Navigation, adjust its bottom space */
    .slider-box-navigation {
        bottom: 50px;
        /* Push Box Navigation up to avoid collision */
    }
}







/* Premium Events Section (Upcoming Events) */
.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;
    /* Hide horizontal overflow */
}

.events-grid,
.past-events-grid,
.partners-grid,
.live-events-grid,
.next-events-list {
    /* Added .next-events-list */
    display: flex;
    /* Use flexbox for horizontal layout */
    overflow-x: scroll;
    /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory;
    /* Smooth snap to items */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    padding-bottom: 20px;
    /* Space for scrollbar */
    gap: 40px;
    /* Gap between items */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.events-grid::-webkit-scrollbar,
.past-events-grid::-webkit-scrollbar,
.partners-grid::-webkit-scrollbar,
.live-events-grid::-webkit-scrollbar,
.next-events-list::-webkit-scrollbar {
    /* Added .next-events-list */
    display: none;
    /* Hide scrollbar for Webkit browsers */
}

.event-card,
.past-event-card,
.partner-logo,
.live-event-card-wrapper,
.next-event-item-wrapper {
    /* Added .next-event-item-wrapper */
    flex-shrink: 0;
    /* Prevent items from shrinking */
    scroll-snap-align: start;
    /* Snap to the start of each item */
}

/* UPDATED: Event Card Design */
.event-card {
    width: 450px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.1));
    /* Soft gradient background */
    backdrop-filter: blur(30px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Slightly more prominent border */
    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);
    /* Deeper initial shadow */
    transform-style: preserve-3d;
    /* Enable 3D transforms for children */
    display: flex;
    flex-direction: column;
}

.event-card::before {
    /* Inner gradient effect on hover (more subtle) */
    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);
    /* Push slightly back for 3D effect */
}

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

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

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

.event-image::after {
    /* Image overlay for text contrast (softer gradient) */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    /* Slightly softer */
}

/* 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);
    /* Bring content slightly forward in 3D space */
    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 {
    /* Subtle shimmer on date */
    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;
    /* Larger */
    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: 76px;
    overflow: hidden;
} */

.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;
    /* Adjust as needed */

    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 3);
    /* Fallback max height for 3 lines */
}

/* 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;
    /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 4);
    /* Optional: for fallback max height */
}

/* 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: 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.8);
    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: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .stats-section{
    padding: 100px 50px 100px 100px 5%;
} */
.stats-section_our {
    padding: 100px 10px;
    background: rgba(0, 0, 0, 0.9);
    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: #fff;
}

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

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

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

@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;
        /* Hide underline for mobile menu items */
    }

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

    .nav-links li.has-dropdown.active>.dropdown-menu {
        /* Show on click */
        max-height: 400px;
        /* Adjust as needed */
    }

    .dropdown-menu a {
        padding: 8px 35px;
        /* Indent sub-menu items */
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
        /* Show hamburger on screens <= 992px */
    }

    .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%;
        /* Adjusted header padding for smaller screens */
    }

    nav {
        justify-content: space-between;
        /* Separate logo and toggle button */
    }

    .hero {
        height: 45vh;
        /* min-height: 100vh; */
        padding: 120px 2px 20px;
        /* Adjusted padding for smaller screens */
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .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%;
        /* Make buttons full width */
        /* max-width: 300px; */
        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%;
        /* Adjusted section padding */
    }

    .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 {
        /* Added .next-events-list */
        flex-wrap: nowrap;
        /* Prevent wrapping to allow horizontal scroll */
        padding-bottom: 20px;
        /* space for scrollbar */
        justify-content: flex-start;
        /* Align items to the start */
    }

    .event-card {
        min-width: 80%;
        /* Adjust card width for better scrolling on smaller screens */
        max-width: 370px;
        /* Cap max width */
        margin-right: 20px;
        /* Add margin between cards */
    }

    .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 {
        /* Wrapper around each card for min-width */
        min-width: 80%;
        /* Adjusted for horizontal scrolling on mobile */
        max-width: 450px;
        margin: 0 auto;
        /* Center single card */
    }

    .live-event-card {
        /* Actual content inside the wrapper */
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        /* Ensure it fits the wrapper */
        margin: 0;
        /* Remove margin as wrapper handles it */
    }

    .live-event-image {
        width: 100%;
        height: 200px;
        /* Adjust height for smaller screens */
    }

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

    .live-event-buttons {
        flex-direction: column;
        /* Stack buttons on small screens */
        gap: 15px;
    }


    .services-grid {
        grid-template-columns: 1fr;
        /* Single column for services */
        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;
        /* Single column for footer sections */
        gap: 30px;
        text-align: center;
    }

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

    /* Next Events Adjustments */
    .next-event-item-wrapper {
        min-width: 85%;
        /* Adjust width for horizontal scroll */
        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;
    }

    /* Adjustments for Live Event Card on very small screens */
    .countdown-item {
        font-size: 1.2rem;
    }

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

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

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


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

::-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;
    /* Hidden by default */
    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%;
    /* Responsive width for smaller screens */
    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;
    /* For close button positioning */
}

.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);
    /* Adjust for padding */
    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 {
    /* Inner dark overlay for better text contrast on image */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
    /* Darker overlay */
}

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

.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;
    /* each line = 45px */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    height: 90px;
    /* 2 lines of 45px = 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);
    /* Lighter background */
    border-radius: 18px;
    /* More rounded */
    padding: 18px;
    /* More padding */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* More visible border */
    box-shadow: inset 0 0 15px rgba(0, 255, 128, 0.1), 0 0 20px rgba(0, 255, 128, 0.3);
    /* Inner and outer shadow */
    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;
    /* Larger */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.4);
    /* Glow effect */
}

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

.live-event-buttons {
    /* Container for new buttons */
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between buttons */
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    margin-top: 20px;
}

.live-event-buttons .cta-primary,
.live-event-buttons .cta-secondary-live {
    /* New secondary button style */
    padding: 14px 35px;
    /* Larger padding */
    font-size: 1.05rem;
    /* Slightly larger font */
    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;
    /* Green accent */
    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: 150px 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 30, 0.95));
    /* Darker, richer background */
    position: relative;
}

.next-events-list-wrapper {
    /* Wrapper for next events grid and arrows */
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.next-event-item-wrapper {
    flex-shrink: 0;
    width: calc(33.33% - 27px);
    /* Three items per row on large screens */
    max-width: 450px;
    box-sizing: border-box;
    perspective: 800px;
    /* For 3D transforms */
}

@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;
    /* Increased gap */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
    /* New gradient background */
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* More defined border */
    border-radius: 25px;
    /* More rounded corners */
    padding: 30px;
    /* More padding */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    /* Deeper shadow */
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

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

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

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

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

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

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

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

.next-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    /* Larger */
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    /* More space */
    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);
    /* Lighter */
    font-size: 1rem;
    /* Consistent */
    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);
    /* Lighter */
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.next-event-price {
    font-size: 1.3rem;
    /* Larger */
    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));
    /* New background */
    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));
    /* Softer background */
    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);
    /* Stronger shadow */
    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);
    /* Subtle 3D tilt */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(128, 0, 255, 0.4);
    /* Glowing shadow */
    border-color: #8000ff;
    /* Accent border */
}

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


/* Partners Section - Redesign */
.partners-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #000, #1a1a2e);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For particles/effects */
}

.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;
    /* Larger area for logos */
    height: 100px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.1));
    /* Gradient background */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    /* Less rounded for a sharper tech look */
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.2);
    /* Stronger initial shadow */
    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: #fff;
}

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

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

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

/* ------------for toggle-------------- */

/* Mobile dropdown styles */
@media (max-width: 992px) {
    .has-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
    }

    .has-dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}