  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            background-color: #f5f5f5;
        }

        /* Header Styles */
        header {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .page-header {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            color: white;
            text-align: center;
            width: 80%;
            max-width: 800px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            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;
        }

        /* Navigation Bar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            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);
        }

        .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;
        }

        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 5%;
        }

        /* About Institute Section */
        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .about-content {
            flex: 1;
            min-width: 300px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }

        .institute-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .institute-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 0 5px transparent;
            animation: rgbBorder 4s linear infinite;
        }

        /* Info Sections */
        .info-section {
            margin-bottom: 60px;
        }

        .info-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .info-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        /* Certifications */
        .certifications {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }

        .certification-item {
            flex: 1;
            min-width: 200px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            
        }
       .certification-item:hover{
           background: linear-gradient(90deg, #ff00ff, #00ffff);

                 }


        .certification-item img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .certification-info h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #333;
        }

        .certification-info p {
            font-size: 0.9rem;
            color: #777;
        }

        /* Timings */
        .timing-section {
            background: linear-gradient(135deg, rgba(255,0,255,0.05), rgba(0,255,255,0.05));
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 60px;
        }

        .timing-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .timing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .timing-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
    .timing-card:hover{
        background: linear-gradient(90deg, #ff00ff, #00ffff);
        
    }
        .timing-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }
         .timing-card h3:hover{
            color:white ;
         }
        .timing-card p {
            font-size: 1.1rem;
            color: #555;
        }
            
        /* Team Section */
        .team-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #333;
        }

        .member-info p {
            font-size: 1rem;
            color: #777;
            margin-bottom: 15px;
        }

        .member-info .position {
            font-weight: bold;
            color: #ff00ff;
        }

        /* 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 rgbBorder {
            0% {
                box-shadow: 0 0 0 5px #ff00ff;
            }
            25% {
                box-shadow: 0 0 0 5px #00ffff;
            }
            50% {
                box-shadow: 0 0 0 5px #ffff00;
            }
            75% {
                box-shadow: 0 0 0 5px #ff00ff;
            }
            100% {
                box-shadow: 0 0 0 5px #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;
            }

            .page-header h1 {
                font-size: 2.8rem;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .institute-name {
                font-size: 1rem;
            }

            .logo {
                width: 50px;
                height: 50px;
            }

            .page-header h1 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }

            .about-section {
                flex-direction: column;
            }
        }

        @media screen and (max-width: 576px) {
            .institute-name {
                display: none;
            }

            .page-header {
                width: 90%;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .footer-left, .footer-right {
                min-width: 100%;
            }

            .map-container {
                height: 250px;
            }

            .certification-item {
                min-width: 100%;
            }
        }