

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .float-item {
            position: absolute;
            opacity: 0.04;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--blue-primary);
            animation: float 25s ease-in-out infinite;
        }

        .float-item:nth-child(1) {
            top: 12%;
            left: 3%;
            animation-delay: 0s;
        }

        .float-item:nth-child(2) {
            top: 22%;
            right: 5%;
            animation-delay: -4s;
            color: var(--green-primary);
        }

        .float-item:nth-child(3) {
            top: 38%;
            left: 8%;
            animation-delay: -8s;
        }

        .float-item:nth-child(4) {
            top: 55%;
            right: 4%;
            animation-delay: -12s;
            color: var(--green-primary);
        }

        .float-item:nth-child(5) {
            top: 72%;
            left: 6%;
            animation-delay: -16s;
        }

        .float-item:nth-child(6) {
            top: 88%;
            right: 10%;
            animation-delay: -20s;
            color: var(--green-primary);
        }

        .float-item:nth-child(7) {
            top: 45%;
            left: 2%;
            animation-delay: -3s;
        }

        .float-item:nth-child(8) {
            top: 65%;
            right: 2%;
            animation-delay: -7s;
            color: var(--green-primary);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-40px) rotate(8deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(40px) rotate(-8deg);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-hero);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--navy);
        }

        .logo-text span {
            color: var(--blue-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-hero);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--blue-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-hero);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700 !important;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Page Header */
        .page-header {
            padding: 160px 2rem 100px;
            background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 700px;
            height: 700px;
            background: var(--gradient-hero);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 10s ease-in-out infinite;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: var(--gradient-cta);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 8s ease-in-out infinite reverse;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--blue-primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-soft);
            animation: fadeInUp 0.8s ease forwards;
        }

        .page-title {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .page-title .highlight {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--gray-600);
            line-height: 1.7;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Banner */
        .hero-banner {
            padding: 0 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 15;
        }

        .hero-banner-inner {
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .hero-banner-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--blue-primary) 0%, var(--green-primary) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-illustration {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .camera-icon {
            width: 120px;
            height: 100px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .camera-icon::before {
            content: '';
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
        }

        .camera-icon::after {
            content: '';
            position: absolute;
            top: -15px;
            width: 40px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px 10px 0 0;
        }

        .photo-frames {
            display: flex;
            gap: 1rem;
        }

        .photo-frame {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            animation: photoFloat 3s ease-in-out infinite;
        }

        .photo-frame:nth-child(2) {
            animation-delay: -1s;
            transform: rotate(5deg);
        }

        .photo-frame:nth-child(3) {
            animation-delay: -2s;
            transform: rotate(-5deg);
        }

        @keyframes photoFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .hero-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
            color: var(--white);
            text-align: center;
        }

        .hero-banner-overlay h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .hero-banner-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Achievement Strip */
        .achievement-strip {
            padding: 4rem 2rem;
            background: var(--navy);
            position: relative;
        }

        .achievement-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .achievement-item {
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .achievement-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.1);
        }

        .achievement-item:last-child::after {
            display: none;
        }

        .achievement-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--green-primary);
        }

        .achievement-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .achievement-number span {
            color: var(--green-primary);
        }

        .achievement-label {
            font-size: 0.95rem;
            color: var(--gray-400);
        }

        /* Filter Tabs */
        .gallery-filters {
            padding: 4rem 2rem 2rem;
            background: var(--white);
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--blue-light);
            color: var(--blue-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--gray-200);
            border-radius: 50px;
            background: var(--white);
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover {
            border-color: var(--blue-primary);
            color: var(--blue-primary);
        }

        .filter-tab.active {
            background: var(--gradient-hero);
            color: var(--white);
            border-color: transparent;
        }

        /* Photo Gallery */
        .photo-gallery {
            padding: 2rem;
            background: var(--white);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-strong);
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            min-height: 250px;
            background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-item.tall .gallery-image {
            min-height: 530px;
        }

        .gallery-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem;
            text-align: center;
        }

        .placeholder-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-hero);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
        }

        .placeholder-text {
            font-weight: 600;
            color: var(--gray-600);
            font-size: 0.95rem;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-category {
            display: inline-block;
            background: var(--gradient-cta);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            width: fit-content;
        }

        .gallery-title {
            color: var(--white);
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .gallery-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-primary);
            font-size: 1.5rem;
            transition: transform 0.4s ease;
            box-shadow: var(--shadow-medium);
        }

        .gallery-item:hover .gallery-zoom {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Video Gallery Section */
        .video-gallery {
            padding: 6rem 2rem;
            background: var(--off-white);
        }

        .video-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .video-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .video-thumbnail {
            position: relative;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-thumbnail-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .video-icon-placeholder {
            width: 80px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-icon-placeholder i {
            font-size: 1.5rem;
            color: var(--white);
            opacity: 0.5;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .play-button::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: playPulse 2s ease-in-out infinite;
        }

        @keyframes playPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 0.25rem 0.5rem;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-category {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: var(--blue-light);
            color: var(--blue-primary);
            padding: 0.3rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .video-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .video-description {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Events Section */
        .events-section {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .events-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .event-card {
            background: var(--off-white);
            border-radius: 24px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 200px 1fr;
            transition: all 0.4s ease;
        }

        .event-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-medium);
        }

        .event-image {
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .event-date-box {
            background: var(--white);
            border-radius: 15px;
            padding: 1rem;
            text-align: center;
            box-shadow: var(--shadow-soft);
        }

        .event-day {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blue-primary);
            line-height: 1;
        }

        .event-month {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray-600);
            text-transform: uppercase;
        }

        .event-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: var(--green-light);
            color: var(--green-dark);
            padding: 0.3rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            width: fit-content;
        }

        .event-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .event-description {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-white {
            background: var(--white);
            color: var(--blue-primary);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--blue-primary);
            transform: translateY(-3px);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.97);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lightbox.active .lightbox-content {
            transform: scale(1) translateY(0);
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 24px;
            background: var(--white);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-width: 600px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        }

        /* Image wrapper for actual images */
        .lightbox-image-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #1a1a2e 0%, #0a1628 100%);
            padding: 2rem;
            min-height: 400px;
        }

        .lightbox-main-image {
            max-width: 100%;
            max-height: 60vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: imageReveal 0.5s ease forwards;
        }

        @keyframes imageReveal {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Placeholder wrapper for items without images */
        .lightbox-placeholder-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--blue-light) 0%, var(--green-light) 100%);
            position: relative;
            min-height: 350px;
            overflow: hidden;
        }

        .lightbox-placeholder-icon {
            width: 140px;
            height: 140px;
            background: var(--gradient-hero);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--white);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
            position: relative;
            z-index: 2;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 25px 80px rgba(0, 102, 255, 0.4);
            }
        }

        .lightbox-placeholder-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        /* Info panel at bottom */
        .lightbox-info-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
        }

        .lightbox-info-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .lightbox-category-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-hero);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            width: fit-content;
        }

        .lightbox-category-badge i {
            font-size: 0.9rem;
        }

        .lightbox-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin: 0;
        }

        .lightbox-info-right {
            display: flex;
            align-items: center;
        }

        .lightbox-counter {
            background: var(--navy);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .lightbox-close {
            position: absolute;
            top: -60px;
            right: 0;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--white);
            color: var(--navy);
            transform: rotate(90deg) scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: var(--white);
            color: var(--blue-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -80px;
        }

        .lightbox-next {
            right: -80px;
        }

     
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-item.wide {
                grid-column: span 1;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .achievement-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lightbox-image {
                min-width: 80vw;
            }

            .lightbox-prev {
                left: -60px;
            }

            .lightbox-next {
                right: -60px;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item.tall {
                grid-row: span 1;
            }

            .gallery-item.tall .gallery-image {
                min-height: 250px;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .event-card {
                grid-template-columns: 1fr;
            }

            .event-image {
                padding: 1.5rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .hero-banner-image {
                height: 300px;
            }

            .lightbox-image {
                min-width: 90vw;
                max-width: 95vw;
                border-radius: 16px;
            }

            .lightbox-image-wrapper,
            .lightbox-placeholder-wrapper {
                min-height: 280px;
                padding: 1.5rem;
            }

            .lightbox-main-image {
                max-height: 45vh;
            }

            .lightbox-placeholder-icon {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
            }

            .lightbox-info-panel {
                flex-direction: column;
                gap: 1rem;
                padding: 1.25rem;
                text-align: center;
            }

            .lightbox-info-left {
                align-items: center;
            }

            .lightbox-title {
                font-size: 1.2rem;
            }

            .lightbox-close {
                top: -55px;
                right: 50%;
                transform: translateX(50%);
            }

            .lightbox-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 140px 1.5rem 80px;
            }

            .page-title {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .achievement-container {
                grid-template-columns: 1fr;
            }

            .achievement-item::after {
                display: none;
            }

            .filter-tabs {
                gap: 0.5rem;
            }

            .filter-tab {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }
  

        .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card {
    cursor: pointer;
}