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

        html,
        body {
            width: 100%;
            height: 100%;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #333;
            padding-top: 70px;
        }

        .video-wrapper {
            position: relative;
        }

        .sound-btn {
            position: absolute;
            bottom: 12px;
            right: 12px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sound-btn:hover {
            background: rgba(0, 0, 0, 0.85);
        }

        .hero-section2 {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        /* Portrait video container */
        .hero-video-wrapper2 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vh;
            /* trick to maintain portrait */
            height: 100vw;
            transform: translate(-50%, -50%) rotate(90deg);
        }

        /* Video itself */
        .hero-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sound button */
        .hero-btn2 {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
        }

        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 191, 0, 0.9) 100%);
            color: #fff;
        }

        .info-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
            transition: all 0.3s ease;
        }

        .text-black {
            color: #000;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .info-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .info-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .info-card p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .info-card a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .info-card a:hover {
            color: white;
            text-decoration: underline;
        }

        .about-info-box {
            display: grid;
            gap: 1.5rem;
        }

        body.modal-open {
            overflow: hidden;
        }

        .navbar {
            background: linear-gradient(90deg, #0B0B0B 0%, #252D44 50%, #696658 100%);
            box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
            padding: 0.7rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1030;
        }

        .navbar .container-fluid {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 2rem;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand i {
            font-size: 2rem;
        }

        .navbar-toggler {
            border: none;
            box-shadow: none;
            width: 40px;
            height: 40px;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 30px;
            height: 30px;
        }

        .nav-link-desktop {
            color: white !important;
            padding: 0.5rem 1.2rem;
            margin-left: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }

        .nav-link-desktop:hover {
            color: #00FFF0 !important;
            transform: translateY(-2px);
            text-shadow: 0 0 10px #00FFF0;
        }

        .nav-link-desktop::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FF006E, #00FFF0);
            transition: width 0.3s ease;
        }

        .nav-link-desktop:hover::after {
            width: 100%;
        }

        .nav-link-desktop.active {
            color: #00FFF0 !important;
        }

        .nav-link-desktop.active::after {
            width: 100%;
        }

        #navbarDesktop {
            display: none;
            margin-left: auto;
            gap: 0;
            align-items: center;
            flex-direction: row;
        }

        #navbarDesktop.show {
            display: flex !important;
        }

        @media (min-width: 992px) {
            .navbar-toggler {
                display: none !important;
            }

            #navbarDesktop {
                display: flex !important;
                margin-left: auto;
            }
        }

        @media (max-width: 991px) {
            #navbarDesktop {
                display: none !important;
            }

            .navbar-toggler {
                margin-left: auto;
                /* pushes it to the right */
                width: 32px;
                height: 24px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
            }
        }

        .offcanvas {
            width: 280px !important;
            background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
            animation: slideInLeft 0.3s ease-out;
        }

        @media (min-width: 992px) {
            .offcanvas {
                display: none !important;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }

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

        .offcanvas-header {
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 1rem;
        }

        .offcanvas-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .btn-close {
            filter: brightness(0) invert(1);
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.8rem 1rem;
        }

        .nav-link:hover {
            color: #00FFF0 !important;
            padding-left: 1.5rem;
        }

        .hero-section {
            background: #000;
            color: white;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-video-wrapper {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-video-wrapper video {
            width: 100%;

        }

        /* Mobile fine-tuning */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 300px;
            }

            .hero-video-wrapper video {
                object-position: center center;
            }
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 12, 41, 0.6) 60%, rgba(15, 12, 41, 0.95) 100%);
            z-index: 1;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(51, 56, 236, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #FFD700, #FF006E, #00FFF0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
            z-index: 3;
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 3;
        }

        .hero-btn {
            background: linear-gradient(90deg, #FF006E, #8338EC);
            color: white;
            padding: 12px 40px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(255, 0, 110, 0.4);
            position: relative;
            z-index: 3;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 0, 110, 0.6);
            color: white;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #090909, #1A1159);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .even-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #f5d008, #FFDA14);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .even-subtitle {
            font-size: 1.1rem;
            color: #FFDA14;
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #000;
            text-align: center;
            margin-bottom: 3rem;
        }

        .events-section,
        .gallery-section {
            padding: 60px 0;
            background: linear-gradient(90deg, rgb(17, 16, 16) 0%, #1c044e 50%, rgb(12, 11, 11) 100%);
        }


        .gallery-section {
            padding: 60px 0;
            background: linear-gradient(90deg, #f00 0%, #ff677c 50%, #f00 100%);
        }

        /* Gallery section only has Summer Festival */

        /* Gallery Category Block */
        .gallery-category {
            margin-bottom: 3rem;
            display: none;
        }

        .gallery-category.active {
            display: block;
        }

        .gallery-category-header {
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid #FFD700;
        }

        .gallery-category-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            margin: 0 0 0.25rem 0;
        }

        .gallery-category-header .gallery-cat-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .gallery-cat-meta span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .gallery-cat-meta span i {
            margin-right: 0.4rem;
            color: #FFD700;
        }

        .gallery-cat-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
        }

        .event-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 255, 0.95) 100%);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(255, 0, 110, 0.1);
            margin-bottom: 2rem;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
            border-color: #FF006E;
        }

        .event-card-header {
            height: 120px;
            background: linear-gradient(135deg, #ffd900 0%, #fdcd3c 50%, #fff83a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .event-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .event-card-header i {
            font-size: 3rem;
            color: white;
            z-index: 2;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .event-card-body {
            padding: 2rem;
        }

        .event-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FF006E;
            margin-bottom: 0.5rem;
        }

        .event-card-date {
            color: #8338EC;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .event-card-desc {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .event-card-footer {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .details-btn {
            background: linear-gradient(90deg, #FF006E, #8338EC);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
        }

        .details-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.5);
            color: white;
            text-decoration: none;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 1;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover {
            border-color: #FFD700;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        /* Gallery item images handled by .gallery-item img */

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-info {
            text-align: center;
            color: white;
        }

        .gallery-item-title {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0;
        }

        .gallery-item-date {
            font-size: 0.75rem;
            color: #FFD700;
        }

        /* ===== FULLSCREEN GALLERY OVERLAY ===== */
        .gallery-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.97);
            z-index: 999999;
            display: none;
            flex-direction: column;
            backdrop-filter: blur(20px);
            animation: overlayFadeIn 0.3s ease;
        }

        .gallery-overlay.show {
            display: flex;
        }

        @keyframes overlayFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Close button */
        .overlay-close {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1.6rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .overlay-close:hover {
            background: #FF006E;
            border-color: #FF006E;
            transform: rotate(90deg);
        }

        /* Share button */
        .overlay-share {
            position: absolute;
            bottom: 30px;
            left: 25px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 1.1rem;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .overlay-share:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Header info */
        .overlay-header {
            padding: 25px 30px 15px;
            flex-shrink: 0;
        }

        .overlay-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin: 0 0 10px 0;
            letter-spacing: -0.02em;
        }

        .overlay-meta {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .overlay-meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .overlay-meta-tag.date-tag {
            background: #FF006E;
            color: white;
            padding: 4px 14px;
            border-radius: 20px;
            font-weight: 600;
        }

        .overlay-meta-tag i {
            font-size: 0.8rem;
        }

        .overlay-description {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.9rem;
            margin-top: 8px;
        }

        /* Main image area */
        .overlay-body {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 10px 80px;
            min-height: 0;
        }

        .overlay-main-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 12px;
            border: 2px dashed rgba(255, 255, 255, 0.15);
            padding: 4px;
            background: rgba(255, 255, 255, 0.03);
            animation: imgSlideIn 0.25s ease;
        }

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

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

        /* Placeholder when no image */
        .overlay-placeholder {
            width: 60%;
            max-width: 700px;
            aspect-ratio: 16/10;
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.3);
            gap: 12px;
        }

        .overlay-placeholder i {
            font-size: 3rem;
        }

        /* Nav arrows */
        .overlay-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 1.3rem;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .overlay-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.05);
        }

        .overlay-nav-prev {
            left: 15px;
        }

        .overlay-nav-next {
            right: 15px;
        }

        /* Bottom bar — title + counter pill */
        .overlay-footer {
            padding: 15px 30px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .overlay-footer-title {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .overlay-counter-pill {
            background: linear-gradient(135deg, #FF006E, #8338EC);
            color: white;
            padding: 6px 28px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Thumbnail strip (decorative background) */
        .overlay-thumbs {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            padding: 0 20px;
            z-index: 0;
            pointer-events: none;
            opacity: 0.12;
        }

        .overlay-thumb {
            width: 140px;
            height: 140px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .overlay-body {
                padding: 10px 60px;
            }

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

            .overlay-nav {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }

            .overlay-nav-prev {
                left: 8px;
            }

            .overlay-nav-next {
                right: 8px;
            }

            .overlay-thumbs {
                display: none;
            }

            .overlay-header {
                padding: 20px 20px 10px;
            }
        }

        /* MODAL STYLES - CRITICAL FIX */
        #eventModal {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.95) !important;
            z-index: 999999 !important;
            display: none !important;
            align-items: center !important;
            justify-content: center !important;
            backdrop-filter: blur(5px) !important;
        }

        #eventModal.show {
            display: flex !important;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

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

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

        #eventModal.show {
            animation: fadeIn 0.3s ease;
        }

        .modal-box {
            background: white !important;
            border-radius: 20px !important;
            width: 90% !important;
            max-width: 600px !important;
            max-height: 90vh !important;
            overflow-y: auto !important;
            box-shadow: 0 20px 60px rgba(255, 0, 110, 0.5) !important;
            border: 2px solid #FF006E !important;
            z-index: 1000000 !important;
            animation: slideUp 0.3s ease !important;
        }

        .modal-header-img {
            height: 180px;
            background: linear-gradient(135deg, #FF006E 0%, #8338EC 50%, #3A86FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .modal-header-img i {
            font-size: 5rem;
            color: white;
            z-index: 2;
        }

        .close-modal-btn {
            position: absolute !important;
            top: 15px !important;
            right: 15px !important;
            background: rgba(255, 255, 255, 0.95) !important;
            border: none !important;
            width: 40px !important;
            height: 40px !important;
            border-radius: 50% !important;
            font-size: 1.5rem !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.3s ease !important;
            z-index: 1000001 !important;
            color: #FF006E !important;
        }

        .close-modal-btn:hover {
            background: #FF006E !important;
            color: white !important;
            transform: rotate(90deg) !important;
        }

        .modal-content-box {
            padding: 2rem;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 800;
            color: #FF006E;
            margin-bottom: 1rem;
        }

        .modal-date {
            color: #8338EC;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .modal-desc {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1rem;
        }

        .modal-details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 500px) {
            .modal-details-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .modal-detail-card {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(51, 56, 236, 0.1) 100%);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid #FF006E;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .modal-detail-card strong {
            color: #FF006E;
            font-size: 0.95rem;
        }

        .modal-detail-card span {
            color: #333;
            font-size: 0.9rem;
        }

        .modal-detail-card i {
            color: #8338EC;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .modal-close-btn {
            background: linear-gradient(90deg, #FF006E, #8338EC);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            flex: 1;
            max-width: 300px;
        }

        .modal-close-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
        }

        .contact-section {
            padding: 60px 0;
            background: #000;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .contact-info-group {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #FF006E;
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.1);
            margin-bottom: 1rem;
        }

        .contact-info-group h4 {
            color: #FF006E;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-info-group i {
            color: #8338EC;
            margin-right: 0.5rem;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.15);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .contact-form:hover {
            border-color: #FF006E;
        }

        .contact-form h3 {
            color: #FF006E;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

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

        .form-group label {
            color: #FF006E;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF006E;
            box-shadow: 0 0 10px rgba(255, 0, 110, 0.2);
        }

        .btn-submit {
            background: linear-gradient(90deg, #FF006E, #8338EC);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.5);
            color: white;
        }

        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-section h5 {
            color: #FF006E;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-section a {
            color: #00FFF0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF006E;
            text-shadow: 0 0 10px #FF006E;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FF006E, #8338EC);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 0, 110, 0.2);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 0, 110, 0.2);
            color: #aaa;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 0, 110, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #FF006E, #8338EC);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #8338EC, #3A86FF);
        }

        .topmar {
            margin-top: -100px;
        }

        .img-fluid {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            /* keeps full image visible */
        }
    