* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            position: relative;
        }

        /* Header Styles */
        header {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
        }
   
 
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            object-fit: cover;
        }

        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: relative;
            z-index: 10;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            width: 60px;
            height: 60px;
            margin-right: 15px;
            animation: float 3s ease-in-out infinite;
        }

        .institute-name {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: rgbGlow 8s linear infinite;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 5px 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .cta-buttons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            display: flex;
            gap: 30px;
            text-align: center;
        }

        .cta-button {
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            color: white;
            background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
            background-size: 200% 200%;
            animation: rgbBackground 4s linear infinite;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.7);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 0, 255, 0.7), rgba(0, 255, 255, 0.7));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 100;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 90;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: right 0.5s ease;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu li {
            margin: 20px 0;
            opacity: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .blur-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            z-index: 80;
            display: none;
        }

        .blur-overlay.active {
            display: block;
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: white;
            padding: 50px 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-left {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-left h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #00ffff;
            position: relative;
            display: inline-block;
        }

        .footer-left h3::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
        }

        .contact-info {
            margin-bottom: 20px;
        }

        .contact-info p {
            margin: 10px 0;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .footer-right {
            flex: 1;
            min-width: 300px;
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes rgbGlow {
            0% {
                background-position: 0% 50%;
                text-shadow: 0 0 10px #ff00ff;
            }
            25% {
                text-shadow: 0 0 10px #00ffff;
            }
            50% {
                background-position: 100% 50%;
                text-shadow: 0 0 10px #ffff00;
            }
            75% {
                text-shadow: 0 0 10px #ff00ff;
            }
            100% {
                background-position: 0% 50%;
                text-shadow: 0 0 10px #00ffff;
            }
        }

        @keyframes rgbBackground {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .institute-name {
                font-size: 1.2rem;
            }

            .nav-links li {
                margin-left: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .institute-name {
                font-size: 1rem;
            }

            .logo {
                width: 50px;
                height: 50px;
            }
        }

        @media screen and (max-width: 576px) {
            .institute-name {
                display: none;
            }

            .footer-left, .footer-right {
                min-width: 100%;
            }

            .map-container {
                height: 250px;
            }
        }

        
    /* Certifications */
    .certs-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin: 40px 0;
        padding: 20px;
        background: linear-gradient(90deg, #ff00ff, #00ffff);
        border-radius: 8px;
    }
    
    .certs-box img {
        height: 60px;
        object-fit: contain;
        filter: grayscale(30%);
        transition: all 0.3s;
    }
    
    .certs-box img:hover {
        filter: grayscale(0%);
        transform: scale(1.5);
    }

    
        
        /* Enhanced Timings Box - Now More Responsive */
        .timings-box {
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            border: 1px solid rgba(76, 190, 23, 0.3);
            border-radius: 12px;
            padding: clamp(1rem, 3vw, 2rem);
            margin: 2rem auto;
            transition: all 0.4s ease;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            max-width: 800px;
            width: 100%;
        }
        
        .timings-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 212, 255, 0.3);
            border: 1px solid var(--ai-accent);
            background: linear-gradient(90deg, #7237c0, #00ff15);
            color: rgb(252, 28, 28);
        }
        
        .timings-box h2 {
            color: var(--ai-accent);
            margin: 0 0 1rem 0;
            text-align: center;
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            position: relative;
            padding-bottom: 10px;
        }
        
        .timings-box h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--ai-accent));
        }
        
        .timing-item {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(110, 72, 170, 0.3);
        }
        
        .timing-item:last-child {
            border-bottom: none;
        }
        
        .timing-item strong {
            color: var(--ai-accent);
            font-weight: 600;
            font-size: clamp(0.9rem, 3vw, 1rem);
            margin-bottom: 0.3rem;
            flex: 1 1 40%;
        }
        
        .timing-item span {
            flex: 1 1 60%;
            text-align: right;
            font-size: clamp(0.85rem, 3vw, 0.95rem);
        }
        
        /* Ultra-Responsive Gallery */
        .gallery-section {
            margin: 3rem 0;
        }
        
        .gallery-section h2 {
            text-align: center;
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 1.5rem;
            color: var(--ai-accent);
            position: relative;
        }
        
        .gallery-section h2::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--ai-accent));
            margin: 0.5rem auto;
        }
        
        .gallery-section p.subtitle {
            text-align: center;
            margin-bottom: 2rem;
            font-style: italic;
            opacity: 0.8;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
            gap: 1.2rem;
            padding: 0.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            background: rgba(30, 30, 60, 0.6);
            border: 1px solid rgba(110, 72, 170, 0.3);
            aspect-ratio: 4/3; /* Consistent image ratio */
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 4px 3px 8px 2px linear-gradient(90deg, #ff00ff, #00ffff);
             
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .download-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0, 212, 255, 0.9);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
            font-size: clamp(0.7rem, 2vw, 0.85rem);
        }
        
        .gallery-item:hover .download-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .download-btn:hover {
            background: linear-gradient(90deg, #ff00ff, #00ffff);
        }
        
        /* Responsive Video Section */
        .video-section {
            margin: 4rem 0;
            text-align: center;
        }
        
        .video-section h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 1.5rem;
            color: var(--ai-accent);
        }
        
        .video-container {
            width: 95%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
            border: 2px solid rgba(110, 72, 170, 0.5);
        }
        
        .video-container video {
            width: 100%;
            display: block;
            height: auto;
        }

        
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            
        }

        /* AI Theme Styles - Fully Responsive */
        :root {
            --primary: #6e48aa;
            --secondary: #9d50bb;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --ai-accent: #00d4ff;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            cursor: pointer;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }
        
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            border-radius: 4px;
        }
        
        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-size: 1.2rem;
        }
        
        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-btn:hover {
            color: #ccc;
        }
        
        .prev-btn, .next-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
            padding: 10px;
            user-select: none;
            transition: color 0.3s;
        }
        
        .prev-btn {
            left: 30px;
        }
        
        .next-btn {
            right: 30px;
        }
        
        .prev-btn:hover, .next-btn:hover {
            color: #ccc;
        }