        
        /* Banner Section with Image */
        .banner-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('../event-images/Media Wall.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            overflow: hidden;
        }
        
        .banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(165,165,165,0.2) 100%);
            z-index: 1;
        }
        
        /* Wave Pattern on Banner */
   
        
        .banner-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 0;
            width: 100%;
            height: 160px;
            background: #ffffff;
            transform: skewY(-3deg);
            z-index: 3;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
        }
        
        /* Strips Pattern */
   
  
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            background: rgba(165, 165, 165, 0.15);
            border: 2px solid rgba(255,255,255,0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 250px;
            height: 250px;
            top: -100px;
            right: -100px;
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: -50px;
            left: -50px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            animation-delay: 4s;
        }
        
        /* Owl Carousel Section */
        .carousel-section {
            position: relative;
            padding: 100px 0;
            background: #ffffff;
            z-index: 3;
            overflow: hidden;
        }
        
        /* Background Wave Pattern */
        .carousel-section .bg-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(165,165,165,0.02) 0%, rgba(0,0,0,0.02) 100%);
            z-index: 0;
        }
        
        .carousel-section .bg-wave::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 50px,
                rgba(165,165,165,0.03) 50px,
                rgba(165,165,165,0.03) 100px
            );
            animation: waveMove 20s linear infinite;
        }
        
        /* Diagonal Strips */
        .diagonal-strips {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 25px,
                rgba(165,165,165,0.03) 25px,
                rgba(165,165,165,0.03) 50px
            );
            z-index: 0;
            pointer-events: none;
        }
        
        .carousel-section::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, #a5a5a5 0%, #000000 100%);
            transform: skewY(2deg);
            z-index: 2;
            opacity: 0.9;
        }
        
        .carousel-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, #000000 0%, #a5a5a5 100%);
            transform: skewY(-2deg);
            z-index: 2;
            opacity: 0.9;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 3;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            letter-spacing: 3px;
            text-transform: uppercase;font-family: "Michroma", sans-serif;
        }
        
        .section-title h2::before,
        .section-title h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #a5a5a5, #000000);
        }
        
        .section-title h2::before {
            left: -70px;
        }
        
        .section-title h2::after {
            right: -70px;
        }
        
        .section-title p {
            color: #666666;
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Owl Carousel Custom Styles */
        .owl-carousel {
            position: relative;
            z-index: 3;
        }
        
        .owl-dots {
            margin-top: 40px;
            text-align: center;
            position: relative;
            z-index: 3;
        }
        
        .owl-dot {
            display: inline-block;
            width: 10px !important;
            height: 10px !important;
            margin: 0 5px !important;
            border-radius: 50% !important;
            background: #a5a5a5 !important;
            opacity: 0.3;
            transition: all 0.3s ease;
        }
        
        .owl-dot.active {
            opacity: 1 !important;
            background: #000000 !important;
            transform: scale(1.3);
            box-shadow: 0 0 8px #a5a5a5;
        }
        
        .owl-dot:focus {
            outline: none;
        }
        
        /* New Card Design */
        .event-card {
            position: relative;
            background: #ffffff;
            margin: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 1px solid #eaeaea;
            overflow: hidden;
            height: 100%;
        }
        
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #a5a5a5;
        }
        
        /* Image Container */
        .event-image-container {
            position: relative;
            overflow: hidden;
            height: 400px;
        }
        
        .event-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: grayscale(20%);
        }
        
        .event-card:hover .event-image-container img {
            transform: scale(1.08);
            filter: grayscale(0%);
        }
        
        /* Image Overlay with Strips */
        .event-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(165,165,165,0.2), rgba(0,0,0,0.2));
            z-index: 1;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .event-card:hover .event-image-container::before {
            opacity: 1;
        }
        
        /* Diagonal Strips on Image */
        .event-image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 8px,
                rgba(255,255,255,0.1) 8px,
                rgba(255,255,255,0.1) 16px
            );
            z-index: 2;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .event-card:hover .event-image-container::after {
            opacity: 1;
        }
        
        /* Date/Time Overlay on Image - Transparent Background */
        .event-datetime-overlay {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 15px;
            border-radius: 6px;
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            border-left: 4px solid #a5a5a5;
            transition: all 0.3s ease;width: 142px;
        }
        
        .event-card:hover .event-datetime-overlay {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-3px);
        }
        
        .event-date-overlay {
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .event-date-overlay i {
            color: #a5a5a5;
            margin-right: 6px;
            font-size: 0.9rem;
        }
        
        .event-time-overlay {
            color: #ffffff;
            font-weight: 500;
            font-size: 0.9rem;
            background: rgba(165, 165, 165, 0.3);
            padding: 4px 10px;
            border-radius: 20px;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .event-time-overlay i {
            color: #a5a5a5;
            margin-right: 6px;
            font-size: 0.9rem;
        }
        
        /* Compact Info Section - Only Title and Button */
/* Compact Info Section */
.event-info-new {
    background: #ffffff;
    padding: 18px 16px;
    border-top: 2px solid #a5a5a5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: relative;
}

.event-info-new h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    font-family: "Michroma", sans-serif;line-height: 26px;
}

.event_button {
    flex-shrink: 0;
}

/* Modern Button - FIXED */
.event-btn {
    position: relative;        /* IMPORTANT for ::before */
    overflow: hidden;          /* IMPORTANT for hover bg */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: transparent;
    color: #000000;
    border: 2px solid #a5a5a5;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 30px;
    z-index: 1;
}

/* Hover Background */
.event-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #a5a5a5, #000000);
    transition: 0.4s ease;
    z-index: -1;
}

.event-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-btn:hover::before {
    left: 0;
}

.event-btn i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.event-btn:hover i {
    transform: translateX(5px);
}


        
        /* Video Section */
        .video-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #000000 0%, #a5a5a5 100%);
            overflow: hidden;
        }
        
        /* Wave Pattern in Video Section */
     
        
        .video-section .wave-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
            transform: rotate(180deg);
            z-index: 1;
        }
        .event_container{max-width: 1140px !important;}
        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(165,165,165,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(165,165,165,0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.02),
                rgba(255,255,255,0.02) 20px,
                rgba(0,0,0,0.02) 20px,
                rgba(0,0,0,0.02) 40px
            );
            z-index: 1;
        }
        
        .video-section .section-title h2 {
            color: #ffffff;
            position: relative;
            z-index: 3;
        }
        
        .video-section .section-title p {
            color: rgba(255,255,255,0.8);
            position: relative;
            z-index: 3;
        }
        
        .video-section .section-title h2::before,
        .video-section .section-title h2::after {
            background: linear-gradient(90deg, #ffffff, #a5a5a5);
        }
        
        .video-card {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            margin: 15px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 3;
            background: #ffffff;
        }
        
        /* Video Card Patterns */
        .video-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 12px,
                rgba(165,165,165,0.1) 12px,
                rgba(165,165,165,0.1) 24px
            );
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
            pointer-events: none;
        }
        
        .video-card:hover::after {
            opacity: 1;
        }
        
        .video-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            border-color: #a5a5a5;
        }
        
        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(165,165,165,0.3), transparent);
            transition: all 0.6s ease;
            z-index: 3;
        }
        
        .video-card:hover::before {
            left: 100%;
        }
        
        .video-thumbnail {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #000000, #a5a5a5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 4;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            border: 2px solid #ffffff;
            border-radius: 50%;
        }
        
        .play-button::before,
        .play-button::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(165,165,165,0.4);
            animation: ripple 2s infinite;
            z-index: -1;
            border-radius: 50%;
        }
        
        .play-button::after {
            animation-delay: 1s;
        }
        
        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: linear-gradient(135deg, #a5a5a5, #000000);
            border-color: #a5a5a5;
        }
        
        .video-info {
            background: #ffffff;
            padding: 15px;
            border-top: 2px solid #a5a5a5;
        }
        
        .video-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
            color: #000000;
        }
        
        .video-info p {
            font-size: 0.85rem;
            font-weight: 300;
            color: #666666;
            margin-bottom: 0;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-40px) rotate(8deg);
            }
        }
        
        @keyframes waveMove {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(165,165,165,0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(165,165,165,0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(165,165,165,0);
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }
          
       
        .video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}
/* responsive */
        @media screen and (max-width:1400px) {
       .banner-section{background-attachment: inherit;height: 700px;}

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
       .banner-section{background-attachment: inherit;height: 600px;}

        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
    .banner-section{background-attachment: inherit;height: 400px;}


.event-image-container {
    height: auto;
}
.event-btn i {
    margin-left: 3px;
}
.event-btn {
    padding: 6px 7px;
    font-size: 12px;

}

.event-info-new h3 {
    font-size: 11px;
    line-height: 20px;
}
.video-section {
    padding: 48px 0;
}
        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
    .banner-section{background-attachment: inherit;height: 400px;}
 .carousel-section{margin-top: -40px;}

.section-title h2::before, .section-title h2::after {
    width: 36px;
}
.section-title {
    margin-bottom: 0px;
}
.event-image-container {
    height: auto;
}
.event-btn i {
    margin-left: 3px;
}
.event-btn {
    padding: 6px 7px;
    font-size: 10px;

}
.event-info-new {
    padding: 18px 6px;
}
.event-info-new h3 {
    font-size: 11px;
    line-height: 20px;
}
.video-section {
    padding: 48px 0;
}
        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
 .banner-section{background-attachment: inherit;height: 400px;}


        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .banner-section{background-attachment: inherit;height: 300px;}
 .carousel-section{margin-top: -40px;}
 .section-title h2{  font-size: 14px;}
 .section-title h2::before {
    left: -46px;
}
.section-title h2::after {
    right: -46px;
}
.section-title h2::before, .section-title h2::after {
    width: 36px;
}
.section-title {
    margin-bottom: 0px;
}
.event-image-container {
    height: auto;
}
.event-btn i {
    margin-left: 3px;
}
.event-btn {
    padding: 6px 7px;
    font-size: 10px;

}
.event-info-new {
    padding: 18px 6px;
}
.event-info-new h3 {
    font-size: 11px;
    line-height: 20px;
}
.video-section {
    padding: 48px 0;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .banner-section{background-attachment: inherit;height: 300px;}
 .carousel-section{margin-top: -40px;}
 .section-title h2{  font-size: 14px;}
 .section-title h2::before {
    left: -46px;
}
.section-title h2::after {
    right: -46px;
}
.section-title h2::before, .section-title h2::after {
    width: 36px;
}
.section-title {
    margin-bottom: 0px;
}
.event-image-container {
    height: auto;
}
.event-btn i {
    margin-left: 3px;
}
.event-btn {
    padding: 6px 7px;
    font-size: 10px;

}
.event-info-new {
    padding: 18px 6px;
}
.event-info-new h3 {
    font-size: 11px;
    line-height: 20px;
}
.video-section {
    padding: 48px 0;
}
         }
