* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            position: relative;
            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;
        }

        .course-header {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            color: white;
            text-align: center;
            width: 80%;
            max-width: 800px;
        }

        .course-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;
            text-transform: uppercase;
        }

        .course-header p {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Course Description Section */
        .description-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .description-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .description-section h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
        }

        .description-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Courses Grid */
        .courses-container {
            padding: 0 5% 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .course-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
        }

        .course-card:hover .course-image img {
            transform: scale(1.1);
        }

        .course-image {
            height: 200px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .course-content {
            padding: 20px;
        }

        .course-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .course-content p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .course-details {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
        }

        .duration, .fees {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .duration i, .fees i {
            margin-right: 5px;
            color: #00ffff;
        }

        .fees {
            color: #ff00ff;
            font-weight: bold;
        }

        .ribbon {
            position: absolute;
            top: 10px;
            right: -30px;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* Navigation and Footer Styles */
        .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);
        }

        .cta-buttons {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            justify-content: 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);
        }

        .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;
            }

            .course-header h1 {
                font-size: 2.8rem;
            }

            .course-header p {
                font-size: 1.1rem;
            }

            .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;
            }

            .course-header h1 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }

            .course-header p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .courses-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media screen and (max-width: 576px) {
            .institute-name {
                display: none;
            }

            .course-header {
                width: 90%;
            }

            .course-header h1 {
                font-size: 1.8rem;
            }

            .footer-left, .footer-right {
                min-width: 100%;
            }

            .map-container {
                height: 250px;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }
        }