        /* Banner Section */
        .detail-banner {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('../event-images/mou-1.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            overflow: hidden;
        }
        
        .detail-banner::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;
        }
        
        .detail-banner::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);
        }
        
        .banner-strips {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(255,255,255,0.03) 20px,
                rgba(255,255,255,0.03) 40px
            );
            z-index: 2;
            pointer-events: none;
        }
        
        /* Gallery Section */
        .gallery-section {
            position: relative;
            padding: 60px 0 50px;
            background: #ffffff;
            overflow: hidden;
        }
        
        .gallery-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: 1;
            opacity: 0.9;
        }
        
        /* YAHAN PE DECORATIVE PATTERN ADD KARO - WAPIS LAGAYA */
        .gallery-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 25px,
                rgba(165,165,165,0.05) 25px,
                rgba(165,165,165,0.05) 50px
            );
            z-index: 2;
            pointer-events: none;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 20px;
            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;
            margin-top: 34px;
        }
        
        .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;
        }
        
        /* Gallery Slider */
        .gallery-slider {
            position: relative;
            z-index: 3;
            padding: 20px 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 280px;
            margin: 5px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border: 3px solid transparent;
            transition: all 0.3s ease;
            background: #f0f0f0;
        }
        
        .gallery-item:hover {
            border-color: #a5a5a5;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: grayscale(30%);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(165,165,165,0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 3rem;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay i {
            transform: scale(1);
        }
        
        /* Hide Owl Carousel default navigation */
        .owl-dots {
            display: none !important;
        }
        
        .owl-nav {
            display: none !important;
        }
        
        /* Hide LightGallery thumbnails and counter */
        .lg-outer .lg-thumb-outer {
            display: none !important;
        }
        
        .lg-outer .lg-counter {
            display: none !important;
        }
        
        /* Custom navigation */
        .custom-gallery-nav {
            text-align: center;
            margin-top: 20px;
            position: relative;
            z-index: 3;
        }
        
        .custom-gallery-nav button {
            background: transparent;
            border: 2px solid #a5a5a5;
            color: #a5a5a5;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .custom-gallery-nav button:hover {
            background: #a5a5a5;
            color: #ffffff;
        }
        
        /* LightGallery Z-Index Fix */
        .lg-backdrop {
            z-index: 99998 !important;
        }
        
        .lg-outer {
            z-index: 99999 !important;
        }
        
        .lg-close {
            z-index: 100000 !important;
        }
        
        header {
            z-index: 1000 !important;
        }
        
        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            background: rgba(165, 165, 165, 0.1);
            border: 2px solid rgba(0,0,0,0.05);
            animation: float 8s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 20%;
            right: 10%;
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-40px) rotate(8deg);
            }
        }
        
        @media (max-width: 992px) {
            .gallery-item {
                height: auto;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-item {
                height: auto;
            }
            
            .section-title h2 {
                font-size: 14px;
            }
            
            .section-title h2::before,
            .section-title h2::after {
                width: 30px;
            }
            
            .section-title h2::before {
                left: -40px;
            }
            
            .section-title h2::after {
                right: -40px;
            }
        }
        /* responsive */
        @media screen and (max-width:1400px) {
        .detail-banner{background-attachment: inherit !important;height: 500px !important;}

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
        .detail-banner{background-attachment: inherit !important;height: 500px !important;}

        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
     .detail-banner{background-attachment: inherit !important;height: 400px !important;}

        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
     .detail-banner{background-attachment: inherit !important;height: 400px !important;}

        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
     .detail-banner{background-attachment: inherit !important;height: 400px !important;}


        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
     .detail-banner{background-attachment: inherit !important;height: 300px !important;}
 .section-title {
    margin-bottom: 0px;
}
.gallery-section {
    padding: 50px 0 36px;
}
.custom-gallery-nav {
    margin-top: 0px;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
  .detail-banner{background-attachment: inherit !important;height: 300px !important;}
 .section-title {
    margin-bottom: 0px;
}
.gallery-section {
    padding: 50px 0 36px;
}
.custom-gallery-nav {
    margin-top: 0px;
}
        }