
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            background: linear-gradient(45deg, #4C1D95, #5B21B6, #6D28D9, #7C3AED, #8B5CF6, #A855F7, #C084FC, #DDD6FE);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            min-height: 100vh;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(45deg, #4C1D95, #5B21B6, #6D28D9, #7C3AED, #8B5CF6, #A855F7, #C084FC, #DDD6FE);
            background-size: 400% 400%;
            background-attachment: fixed;
            animation: gradientShift 15s ease infinite;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Animated Background Gradient */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
            100% { background-position: 0% 50%; }
        }

        /* Enhanced 3D Background Elements */
        .bg-3d {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        /* Floating Particles */
        .bg-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(139,92,246,0.4) 50%, transparent 100%);
            border-radius: 50%;
            animation: particleFloat 20s linear infinite;
        }

        .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: -2s; }
        .particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: -4s; }
        .particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: -6s; }
        .particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: -8s; }
        .particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: -10s; }
        .particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: -12s; }
        .particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: -14s; }
        .particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: -16s; }
        .particle:nth-child(10) { width: 6px; height: 6px; left: 15%; animation-delay: -18s; }

        @keyframes particleFloat {
            0% { 
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { 
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Enhanced Spheres with Glow */
        .bg-sphere {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.3));
            box-shadow: 
                0 0 60px rgba(139, 92, 246, 0.4),
                0 0 120px rgba(236, 72, 153, 0.3),
                inset 0 0 60px rgba(255, 255, 255, 0.1);
            animation: float3d 12s ease-in-out infinite;
            filter: blur(1px);
        }

        .sphere-1 {
            width: 300px;
            height: 300px;
            top: 5%;
            left: -5%;
            animation-delay: 0s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(139, 92, 246, 0.5), rgba(168, 85, 247, 0.3));
        }

        .sphere-2 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: -5%;
            animation-delay: -3s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(236, 72, 153, 0.5), rgba(244, 114, 182, 0.3));
        }

        .sphere-3 {
            width: 150px;
            height: 150px;
            bottom: 10%;
            left: 10%;
            animation-delay: -6s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(168, 85, 247, 0.4), rgba(139, 92, 246, 0.3));
        }

        .sphere-4 {
            width: 180px;
            height: 180px;
            top: 25%;
            right: 25%;
            animation-delay: -9s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(244, 114, 182, 0.4), rgba(248, 187, 217, 0.3));
        }

        .sphere-5 {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 60%;
            animation-delay: -12s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.3));
        }

        .sphere-6 {
            width: 250px;
            height: 250px;
            bottom: 30%;
            right: 5%;
            animation-delay: -15s;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(168, 85, 247, 0.4), rgba(244, 114, 182, 0.3));
        }

        /* Geometric Shapes */
        .bg-geometry {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .geo-shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(139, 92, 246, 0.2));
            animation: geometryFloat 25s linear infinite;
            backdrop-filter: blur(2px);
        }

        .triangle {
            width: 0;
            height: 0;
            background: transparent;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-bottom: 50px solid rgba(236, 72, 153, 0.3);
            top: 20%;
            left: 80%;
            animation-delay: -5s;
        }

        .diamond {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, rgba(168, 85, 247, 0.3), rgba(244, 114, 182, 0.3));
            transform: rotate(45deg);
            top: 60%;
            left: 20%;
            animation-delay: -10s;
        }

        .hexagon {
            width: 60px;
            height: 34.64px;
            background: rgba(139, 92, 246, 0.3);
            position: relative;
            top: 40%;
            right: 10%;
            animation-delay: -15s;
        }

        .hexagon:before,
        .hexagon:after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
        }

        .hexagon:before {
            bottom: 100%;
            border-bottom: 17.32px solid rgba(139, 92, 246, 0.3);
        }

        .hexagon:after {
            top: 100%;
            border-top: 17.32px solid rgba(139, 92, 246, 0.3);
        }

        @keyframes geometryFloat {
            0% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-50px) rotate(180deg);
                opacity: 1;
            }
            100% { 
                transform: translateY(0px) rotate(360deg);
                opacity: 0.7;
            }
        }

        /* Mesh Gradient Overlay */
        .bg-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 60% 60%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
            }
            50% { 
                background: 
                    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 60% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
            }
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #4C1D95, #5B21B6, #6D28D9, #7C3AED, #8B5CF6, #A855F7, #C084FC, #DDD6FE);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-text {
            font-size: 4rem;
            font-weight: bold;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            margin-bottom: 2rem;
            perspective: 1000px;
        }

        .loading-word {
            display: inline-block;
            margin: 0 0.2rem;
            opacity: 0;
            transform: translateY(50px) rotateX(90deg);
            animation: wordReveal 0.8s ease forwards;
        }

        .loading-word:nth-child(1) { animation-delay: 0.2s; }
        .loading-word:nth-child(2) { animation-delay: 0.4s; }
        .loading-word:nth-child(3) { animation-delay: 0.6s; }

        @keyframes wordReveal {
            0% {
                opacity: 0;
                transform: translateY(50px) rotateX(90deg) scale(0.8);
            }
            50% {
                opacity: 0.7;
                transform: translateY(-10px) rotateX(45deg) scale(1.1);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg) scale(1);
            }
        }

        .loading-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease 1.2s forwards;
        }

        .loading-spinner {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #EC4899;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 2rem;
            opacity: 0;
            animation: spinFadeIn 1s ease 1.5s forwards, spin 1s linear 1.5s infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes spinFadeIn {
            0% {
                opacity: 0;
                transform: scale(0.5) rotate(0deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading-progress {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s ease 1.8s forwards;
        }

        .loading-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #EC4899, #F472B6, #8B5CF6, #A855F7);
            border-radius: 2px;
            width: 0%;
            animation: progressFill 2s ease 2s forwards;
        }

        @keyframes progressFill {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* Page Container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* 3D Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            transform-style: preserve-3d;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(500px) rotateX(10deg);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            font-size: 1.6rem;
            animation: webIconPulse 3s ease-in-out infinite;
            position: relative;
            display: inline-block;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #EC4899, #8B5CF6, #F472B6, #A855F7);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            animation: webIconGlow 3s ease-in-out infinite;
        }

        @keyframes webIconPulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg);
                filter: hue-rotate(0deg);
            }
            25% { 
                transform: scale(1.1) rotate(90deg);
                filter: hue-rotate(90deg);
            }
            50% { 
                transform: scale(1.2) rotate(180deg);
                filter: hue-rotate(180deg);
            }
            75% { 
                transform: scale(1.1) rotate(270deg);
                filter: hue-rotate(270deg);
            }
        }

        @keyframes webIconGlow {
            0%, 100% { 
                opacity: 0;
                transform: scale(1);
            }
            50% { 
                opacity: 0.8;
                transform: scale(1.3);
            }
        }

        .logo:hover {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        @keyframes logoShake {
            0% { transform: perspective(500px) rotateX(10deg) translateX(0px) translateY(0px); }
            10% { transform: perspective(500px) rotateX(10deg) translateX(-2px) translateY(-1px); }
            20% { transform: perspective(500px) rotateX(10deg) translateX(2px) translateY(1px); }
            30% { transform: perspective(500px) rotateX(10deg) translateX(-1px) translateY(-2px); }
            40% { transform: perspective(500px) rotateX(10deg) translateX(1px) translateY(2px); }
            50% { transform: perspective(500px) rotateX(10deg) translateX(-2px) translateY(1px); }
            60% { transform: perspective(500px) rotateX(10deg) translateX(2px) translateY(-1px); }
            70% { transform: perspective(500px) rotateX(10deg) translateX(-1px) translateY(2px); }
            80% { transform: perspective(500px) rotateX(10deg) translateX(1px) translateY(-2px); }
            90% { transform: perspective(500px) rotateX(10deg) translateX(-2px) translateY(-1px); }
            100% { transform: perspective(500px) rotateX(10deg) translateX(0px) translateY(0px); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            transform: perspective(500px) rotateY(0deg);
            cursor: pointer;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: perspective(500px) rotateY(10deg) translateZ(10px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(76, 29, 149, 0.95), rgba(139, 92, 246, 0.95));
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: right 0.3s ease;
            padding-top: 80px;
            box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #EC4899;
            transform: translateX(10px);
        }

        /* Mobile Menu Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section with 3D Elements */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            perspective: 1000px;
        }

        .hero-content {
            color: white;
            max-width: 800px;
            padding: 2rem;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            transform: perspective(800px) rotateX(15deg);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            transform: perspective(600px) rotateX(-5deg);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-3d {
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            position: relative;
        }

        .btn-primary {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #8B5CF6, #A855F7);
            color: white;
            box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4);
        }

        .btn-3d:hover {
            transform: perspective(500px) rotateX(-10deg) translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }

        .btn-3d:active {
            transform: perspective(500px) rotateX(5deg) translateY(2px);
        }

        /* 3D Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-cube {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transform-style: preserve-3d;
            animation: rotate3d 10s linear infinite;
        }

        .cube-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .cube-2 { top: 60%; right: 15%; animation-delay: -3s; }
        .cube-3 { bottom: 30%; left: 20%; animation-delay: -6s; }

        /* Courses Section */
        .courses {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
        }

        .courses-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .courses h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            position: relative;
            overflow: hidden;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        @keyframes borderColorChange {
            0% { border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1; }
            25% { border-image: linear-gradient(45deg, #EC4899, #F472B6, #A855F7, #8B5CF6) 1; }
            50% { border-image: linear-gradient(45deg, #F472B6, #A855F7, #8B5CF6, #EC4899) 1; }
            75% { border-image: linear-gradient(45deg, #A855F7, #8B5CF6, #EC4899, #F472B6) 1; }
            100% { border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1; }
        }

        .course-card:hover {
            transform: scale(1.02);
        }

        .course-card:hover .course-icon {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        .course-card:hover h3 {
            font-size: 1.7rem;
            transition: font-size 0.3s ease;
        }

        .course-card:hover p {
            font-size: 1.05rem;
            transition: font-size 0.3s ease;
        }

        .tech-course {
            border-left: 4px solid #8B5CF6;
        }

        .non-tech-course {
            border-left: 4px solid #EC4899;
        }

        .course-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .course-icon {
            font-size: 2.5rem;
            transform: perspective(300px) rotateX(15deg);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .course-icon:hover {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        .course-badge {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(236, 72, 153, 0.4);
        }

        .course-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .course-card p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .course-details {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .course-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, #8B5CF6, #A855F7);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            box-shadow: 0 6px 12px rgba(139, 92, 246, 0.4);
        }

        .course-btn:hover {
            transform: perspective(400px) rotateX(-10deg) translateY(-3px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.5);
            background: linear-gradient(45deg, #9333EA, #C084FC);
        }

        .course-btn:active {
            transform: perspective(400px) rotateX(5deg) translateY(1px);
        }

        /* Course Detail Page Styles */
        .course-detail {
            padding-top: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            color: white;
        }

        .course-detail-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .course-detail-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .course-detail-header .course-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .back-btn {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            margin-bottom: 2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: blink;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
        }

        .course-detail-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .course-main-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .course-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .course-info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 20px;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            transition: all 0.3s ease;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .course-info-card:hover {
            transform: scale(1.02);
        }

        .course-info-card:hover h3 {
            font-size: 1.5rem;
            transition: font-size 0.3s ease;
        }

        .course-info-card h3 {
            color: #F8BBD9;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .curriculum-section {
            margin-bottom: 2rem;
        }

        .curriculum-section h3 {
            color: #F8BBD9;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .module {
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .module-header {
            padding: 1rem 1.5rem;
            background: rgba(139, 92, 246, 0.2);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .module-header:hover {
            background: rgba(139, 92, 246, 0.3);
        }

        .module-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .module-content.active {
            padding: 1rem 1.5rem;
            max-height: 500px;
        }

        .module-content ul {
            list-style: none;
            padding-left: 0;
        }

        .module-content li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 1.5rem;
        }

        .module-content li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #EC4899;
            font-weight: bold;
        }

        .enroll-section {
            text-align: center;
            margin-top: 2rem;
        }

        .enroll-btn {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
        }

        .enroll-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(236, 72, 153, 0.5);
        }

        /* Trainers Section */
        .trainers {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
        }

        .trainers-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trainers h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .trainers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .trainer-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .trainer-card:hover {
            transform: scale(1.02);
        }

        .trainer-card:hover h3 {
            font-size: 2rem;
            transition: font-size 0.3s ease;
        }

        .trainer-card:hover .trainer-title {
            font-size: 1.2rem;
            transition: font-size 0.3s ease;
        }

        .trainer-card:hover .trainer-experience {
            font-size: 1.05rem;
            transition: font-size 0.3s ease;
        }

        .trainer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .trainer-avatar:hover {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        .trainer-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #F8BBD9;
        }

        .trainer-title {
            font-size: 1.1rem;
            color: #EC4899;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .trainer-company {
            background: linear-gradient(45deg, #8B5CF6, #A855F7);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .trainer-experience {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .trainer-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .skill-tag {
            background: rgba(236, 72, 153, 0.3);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(236, 72, 153, 0.5);
        }

        .trainer-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #F8BBD9;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .feature-card:hover {
            transform: scale(1.02);
        }

        .feature-card:hover h3 {
            font-size: 1.7rem;
            transition: font-size 0.3s ease;
        }

        .feature-card:hover p {
            font-size: 1.05rem;
            transition: font-size 0.3s ease;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
            transform: perspective(400px) rotateX(20deg);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feature-icon:hover {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 2rem;
            text-align: center;
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            color: white;
            transform-style: preserve-3d;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: perspective(400px) rotateX(-15deg) scale(1.05);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }

        /* About Us Section */
        .about {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .about-content p {
            color: white;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .about-image {
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        .about-image:hover .about-icon {
            font-size: 8.5rem;
            transition: font-size 0.3s ease;
        }

        .about-icon {
            font-size: 8rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .about-icon:hover {
            animation: logoShake 0.5s ease-in-out infinite;
        }

        /* Location Section */
        .location {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
        }

        .location-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .location h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: start;
        }

        .location-info {
            display: flex;
            flex-direction: column;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 4px solid;
            border-image: linear-gradient(45deg, #EC4899, #F472B6, #8B5CF6, #A855F7) 1;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .location-card:hover {
            transform: scale(1.02);
        }

        .location-card:hover h3 {
            font-size: 2rem;
            transition: font-size 0.3s ease;
        }

        .location-card:hover p {
            font-size: 1.2rem;
            transition: font-size 0.3s ease;
        }

        .location-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #F8BBD9;
        }

        .location-card p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .location-features {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
            opacity: 0.9;
        }

        .feature-item span:first-child {
            font-size: 1.2rem;
            margin-right: 1rem;
            color: #EC4899;
        }

        .map-container {
            position: relative;
        }

        .map-wrapper {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 20px;
            transform-style: preserve-3d;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .map-wrapper:hover {
            transform: perspective(500px) rotateY(-8deg) translateZ(20px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .map-overlay {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-weight: bold;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .location-pin {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .location-pin span:first-child {
            font-size: 1.2rem;
        }

        /* Blog Section */
        .blog {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
        }

        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            position: relative;
            overflow: hidden;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .blog-card:hover {
            transform: scale(1.02);
        }

        .blog-card:hover h3 {
            font-size: 1.7rem;
            transition: font-size 0.3s ease;
        }

        .blog-card:hover .blog-excerpt {
            font-size: 1.05rem;
            transition: font-size 0.3s ease;
        }

        .blog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .blog-category {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(236, 72, 153, 0.4);
        }

        .blog-date {
            font-size: 0.9rem;
            opacity: 0.8;
            color: #F8BBD9;
        }

        .blog-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            line-height: 1.3;
        }

        .blog-excerpt {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-read-time {
            color: #EC4899;
            font-weight: bold;
        }

        .blog-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, #8B5CF6, #A855F7);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            box-shadow: 0 6px 12px rgba(139, 92, 246, 0.4);
        }

        .blog-btn:hover {
            transform: perspective(400px) rotateX(-10deg) translateY(-3px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.5);
            background: linear-gradient(45deg, #9333EA, #C084FC);
        }

        .blog-btn:active {
            transform: perspective(400px) rotateX(5deg) translateY(1px);
        }

        .blog-featured {
            border-left: 4px solid #F472B6;
            background: rgba(248, 187, 217, 0.1);
        }

        .blog-tech {
            border-left: 4px solid #8B5CF6;
        }

        .blog-career {
            border-left: 4px solid #EC4899;
        }

        .blog-offers {
            border-left: 4px solid #10B981;
            background: rgba(16, 185, 129, 0.1);
        }

        /* Blog Detail Page */
        .blog-detail {
            padding: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            color: white;
        }

        .blog-detail-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .blog-detail-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .blog-detail-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .blog-detail-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .blog-detail-content h2 {
            color: #F8BBD9;
            margin: 2rem 0 1rem 0;
            font-size: 1.8rem;
        }

        .blog-detail-content h3 {
            color: #EC4899;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }

        .blog-detail-content p {
            margin-bottom: 1.5rem;
        }

        .blog-detail-content ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .blog-detail-content li {
            margin-bottom: 0.5rem;
        }

        .blog-cta {
            background: linear-gradient(45deg, #EC4899, #F472B6);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
        }

        .blog-cta h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .blog-cta p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        /* Careers Section */
        .careers {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
        }

        .careers-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .careers h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .careers-intro {
            text-align: center;
            margin-bottom: 4rem;
            color: white;
        }

        .careers-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .careers-highlight {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .highlight-icon {
            font-size: 1.2rem;
        }

        .positions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .position-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            position: relative;
            overflow: hidden;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .position-card:hover {
            transform: scale(1.02);
        }

        .position-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .position-icon {
            font-size: 3rem;
            transform: perspective(300px) rotateX(15deg);
        }

        .position-badge {
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .position-badge.offline {
            background: linear-gradient(45deg, #10B981, #34D399);
            color: white;
            box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
        }

        .position-badge.unpaid {
            background: linear-gradient(45deg, #F59E0B, #FBBF24);
            color: white;
            box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
            margin-left: 0.5rem;
        }

        .position-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #F8BBD9;
        }

        .position-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
            flex-wrap: wrap;
        }

        .position-meta span {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.4rem 0.8rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .position-description {
            margin-bottom: 2rem;
        }

        .position-description p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .position-description h4 {
            color: #EC4899;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.2rem;
        }

        .position-description ul {
            list-style: none;
            padding-left: 0;
        }

        .position-description li {
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.5rem;
            opacity: 0.9;
        }

        .position-description li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10B981;
            font-weight: bold;
        }

        .position-benefits {
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            padding: 0.6rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .benefit-item span:first-child {
            font-size: 1.2rem;
        }

        .apply-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
            margin-bottom: 1rem;
        }

        .apply-btn:hover {
            transform: perspective(400px) rotateX(-10deg) translateY(-3px);
            box-shadow: 0 12px 24px rgba(236, 72, 153, 0.5);
            background: linear-gradient(45deg, #F472B6, #FBBF24);
        }

        .online-option {
            text-align: center;
            padding: 1rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .online-option p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .online-option a {
            color: #8B5CF6;
            text-decoration: none;
            font-weight: bold;
        }

        .online-option a:hover {
            color: #A855F7;
            text-decoration: underline;
        }

        /* Why Join Section */
        .why-join-section {
            margin-bottom: 4rem;
            text-align: center;
        }

        .why-join-section h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .why-join-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .why-join-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .why-join-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .why-join-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .why-join-item h4 {
            color: #F8BBD9;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .why-join-item p {
            color: white;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Application Process */
        .application-process {
            margin-bottom: 4rem;
        }

        .application-process h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #EC4899, #F472B6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: #F8BBD9;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .step-content p {
            color: white;
            opacity: 0.9;
            line-height: 1.5;
            margin: 0;
        }

        /* Careers CTA */
        .careers-cta {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .careers-cta h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .careers-cta p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(15px);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact h2 {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: perspective(600px) rotateX(10deg);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .contact-info:hover {
            transform: scale(1.02);
        }

        .contact-info:hover h3 {
            font-size: 2.2rem;
            transition: font-size 0.3s ease;
        }

        .contact-info:hover .contact-item {
            font-size: 1.2rem;
            transition: font-size 0.3s ease;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #F8BBD9;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #EC4899;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .contact-form:hover {
            transform: scale(1.02);
        }

        .contact-form:hover label {
            font-size: 1.05rem;
            transition: font-size 0.3s ease;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .form-group select option {
            background: #4C1D95;
            color: white;
            padding: 0.5rem;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: #EC4899;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-loading {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-loading::after {
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #EC4899, #F472B6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            box-shadow: 0 8px 16px rgba(236, 72, 153, 0.4);
        }

        .submit-btn:hover {
            transform: perspective(400px) rotateX(-10deg) translateY(-3px);
            box-shadow: 0 12px 24px rgba(236, 72, 153, 0.5);
            background: linear-gradient(45deg, #F472B6, #FBBF24);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.3);
            color: white;
            text-align: center;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotateX(0deg); }
            50% { transform: translateY(-20px) rotateX(5deg); }
        }

        @keyframes rotate3d {
            0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
        }

        @keyframes float3d {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotateZ(0deg);
                opacity: 0.6;
            }
            33% { 
                transform: translateY(-30px) translateX(20px) rotateZ(120deg);
                opacity: 0.8;
            }
            66% { 
                transform: translateY(20px) translateX(-15px) rotateZ(240deg);
                opacity: 0.4;
            }
        }

        /* Thank You Page Styles */
        .thank-you-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(15px);
        }

        .thank-you-container {
            max-width: 1000px;
            width: 100%;
            text-align: center;
        }

        /* Success Animation */
        .success-animation {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .checkmark-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #10B981, #34D399);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: checkmarkAppear 1s ease-out;
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
        }

        .checkmark {
            width: 40px;
            height: 20px;
            border: 4px solid white;
            border-top: none;
            border-right: none;
            transform: rotate(-45deg);
            animation: checkmarkDraw 0.8s ease-out 0.5s both;
        }

        @keyframes checkmarkAppear {
            0% {
                transform: scale(0) rotate(180deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.2) rotate(90deg);
                opacity: 0.8;
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        @keyframes checkmarkDraw {
            0% {
                width: 0;
                height: 0;
            }
            50% {
                width: 20px;
                height: 0;
            }
            100% {
                width: 40px;
                height: 20px;
            }
        }

        /* Celebration Particles */
        .celebration-particles {
            position: absolute;
            width: 200px;
            height: 200px;
            pointer-events: none;
        }

        .celebration-particles .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, #EC4899, #F472B6, #8B5CF6, #A855F7);
            border-radius: 50%;
            animation: particleBurst 2s ease-out infinite;
        }

        .celebration-particles .particle:nth-child(1) { animation-delay: 0s; top: 50%; left: 50%; }
        .celebration-particles .particle:nth-child(2) { animation-delay: 0.2s; top: 30%; left: 70%; }
        .celebration-particles .particle:nth-child(3) { animation-delay: 0.4s; top: 70%; left: 30%; }
        .celebration-particles .particle:nth-child(4) { animation-delay: 0.6s; top: 20%; left: 50%; }
        .celebration-particles .particle:nth-child(5) { animation-delay: 0.8s; top: 80%; left: 50%; }
        .celebration-particles .particle:nth-child(6) { animation-delay: 1s; top: 50%; left: 20%; }
        .celebration-particles .particle:nth-child(7) { animation-delay: 1.2s; top: 50%; left: 80%; }
        .celebration-particles .particle:nth-child(8) { animation-delay: 1.4s; top: 40%; left: 40%; }

        @keyframes particleBurst {
            0% {
                transform: scale(0) translate(0, 0);
                opacity: 1;
            }
            50% {
                transform: scale(1) translate(var(--random-x, 50px), var(--random-y, -50px));
                opacity: 0.8;
            }
            100% {
                transform: scale(0) translate(var(--random-x, 100px), var(--random-y, -100px));
                opacity: 0;
            }
        }

        /* Thank You Content */
        .thank-you-content {
            color: white;
            animation: contentSlideUp 1s ease-out 0.5s both;
        }

        @keyframes contentSlideUp {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .thank-you-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            background: linear-gradient(45deg, #EC4899, #F472B6, #8B5CF6, #A855F7);
            -webkit-background-clip: text;
            /* //-webkit-text-fill-color: transparent; */
            background-clip: text;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5)); }
            100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
        }

        .thank-you-subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        /* Motivational Quotes */
        .motivational-quotes {
            margin-bottom: 3rem;
            position: relative;
            height: 120px;
        }

        .quote {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .quote.active {
            opacity: 1;
            transform: translateY(0);
        }

        .quote h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #F8BBD9;
        }

        .quote p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Next Steps */
        .next-steps {
            margin-bottom: 3rem;
        }

        .next-steps h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #F8BBD9;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .step {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: stepAppear 0.8s ease-out both;
        }

        .step:nth-child(1) { animation-delay: 1s; }
        .step:nth-child(2) { animation-delay: 1.2s; }
        .step:nth-child(3) { animation-delay: 1.4s; }

        @keyframes stepAppear {
            0% {
                transform: translateY(30px) scale(0.9);
                opacity: 0;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .step:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #EC4899;
        }

        .step p {
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Academy Info */
        .academy-info {
            margin-bottom: 3rem;
        }

        .academy-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #F8BBD9;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 3px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #EC4899, #F472B6, #A855F7) 1;
            transition: all 0.3s ease;
            animation: borderColorChange 3s ease-in-out infinite;
        }

        .info-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .info-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .info-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #F8BBD9;
        }

        .info-card p {
            margin-bottom: 0.8rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .phone-link {
            color: #EC4899;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .phone-link:hover {
            color: #F472B6;
            text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: buttonsAppear 1s ease-out 2s both;
        }

        @keyframes buttonsAppear {
            0% {
                transform: translateY(30px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .btn-accent {
            background: linear-gradient(45deg, #10B981, #34D399);
            color: white;
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.4);
        }

        .btn-accent:hover {
            background: linear-gradient(45deg, #059669, #10B981);
            box-shadow: 0 12px 24px rgba(16, 185, 129, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%) !important;
                background-size: 300% 300% !important;
                background-attachment: fixed !important;
                animation: mobileGradientShift 8s ease infinite !important;
                min-height: 100vh !important;
                position: relative !important;
            }
            
            html {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%) !important;
                background-size: 300% 300% !important;
                animation: mobileGradientShift 8s ease infinite !important;
                min-height: 100vh !important;
            }
            
            /* Mobile gradient animation */
            @keyframes mobileGradientShift {
                0% { background-position: 0% 50%; }
                25% { background-position: 100% 50%; }
                50% { background-position: 100% 100%; }
                75% { background-position: 0% 100%; }
                100% { background-position: 0% 50%; }
            }
            
            /* Beautiful mobile background elements */
            .bg-3d {
                display: block !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                z-index: -1 !important;
                overflow: hidden !important;
            }
            
            /* Mobile floating particles */
            .bg-particles {
                position: absolute !important;
                width: 100% !important;
                height: 100% !important;
            }
            
            .particle {
                position: absolute !important;
                background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%) !important;
                border-radius: 50% !important;
                animation: mobileParticleFloat 15s linear infinite !important;
            }
            
            @keyframes mobileParticleFloat {
                0% { 
                    transform: translateY(100vh) rotate(0deg) scale(0.5);
                    opacity: 0;
                }
                10% { opacity: 0.8; }
                90% { opacity: 0.8; }
                100% { 
                    transform: translateY(-50px) rotate(360deg) scale(1);
                    opacity: 0;
                }
            }
            
            /* Mobile geometric shapes */
            .bg-sphere {
                display: block !important;
                position: absolute !important;
                border-radius: 50% !important;
                background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.3), rgba(255,255,255,0.2), rgba(0,0,0,0.1)) !important;
                box-shadow: 0 0 30px rgba(0,0,0,0.4) !important;
                animation: mobileFloat3d 10s ease-in-out infinite !important;
                filter: blur(0.5px) !important;
            }
            
            @keyframes mobileFloat3d {
                0%, 100% { 
                    transform: translateY(0px) translateX(0px) scale(0.8);
                    opacity: 0.4;
                }
                33% { 
                    transform: translateY(-20px) translateX(15px) scale(1);
                    opacity: 0.6;
                }
                66% { 
                    transform: translateY(15px) translateX(-10px) scale(0.9);
                    opacity: 0.3;
                }
            }
            
            .sphere-1 {
                width: 120px !important;
                height: 120px !important;
                top: 10% !important;
                left: -10% !important;
                animation-delay: 0s !important;
            }
            
            .sphere-2 {
                width: 80px !important;
                height: 80px !important;
                top: 30% !important;
                right: -5% !important;
                animation-delay: -2s !important;
            }
            
            .sphere-3 {
                width: 60px !important;
                height: 60px !important;
                bottom: 20% !important;
                left: 5% !important;
                animation-delay: -4s !important;
            }
            
            .sphere-4 {
                width: 90px !important;
                height: 90px !important;
                top: 60% !important;
                right: 10% !important;
                animation-delay: -6s !important;
            }
            
            .sphere-5 {
                width: 50px !important;
                height: 50px !important;
                top: 80% !important;
                left: 70% !important;
                animation-delay: -8s !important;
            }
            
            .sphere-6 {
                width: 100px !important;
                height: 100px !important;
                bottom: 40% !important;
                right: -5% !important;
                animation-delay: -10s !important;
            }
            
            /* Mobile mesh overlay */
            .bg-mesh {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background: 
                    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%) !important;
                animation: mobileMeshMove 12s ease-in-out infinite !important;
            }
            
            @keyframes mobileMeshMove {
                0%, 100% { 
                    background: 
                        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
                }
                50% { 
                    background: 
                        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 60% 60%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
                }
            }
            
            /* Make all text black on mobile */
            * {
                color: #000000 !important;
            }
            
            /* Beautiful button styling for mobile */
            .btn-3d, .course-btn, .enroll-btn, .submit-btn, .back-btn, .apply-btn {
                color: white !important;
                background: linear-gradient(45deg, #667eea, #764ba2) !important;
                border: 2px solid rgba(255, 255, 255, 0.3) !important;
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
                backdrop-filter: blur(10px) !important;
            }
            
            .btn-3d:hover, .course-btn:hover, .enroll-btn:hover, .submit-btn:hover, .back-btn:hover, .apply-btn:hover {
                background: linear-gradient(45deg, #764ba2, #f093fb) !important;
                box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5) !important;
                transform: translateY(-2px) !important;
            }
            
            .btn-primary {
                background: linear-gradient(45deg, #f5576c, #f093fb) !important;
                box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4) !important;
            }
            
            .btn-primary:hover {
                background: linear-gradient(45deg, #f093fb, #4facfe) !important;
                box-shadow: 0 6px 20px rgba(240, 147, 251, 0.5) !important;
            }
            
            .btn-secondary {
                background: linear-gradient(45deg, #4facfe, #667eea) !important;
                box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4) !important;
            }
            
            .btn-secondary:hover {
                background: linear-gradient(45deg, #667eea, #764ba2) !important;
                box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
            }
            
            .btn-accent {
                background: linear-gradient(45deg, #764ba2, #f5576c) !important;
                box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4) !important;
            }
            
            .btn-accent:hover {
                background: linear-gradient(45deg, #f5576c, #f093fb) !important;
                box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5) !important;
            }
            
            /* Keep navigation with dark background for visibility */
            .navbar {
                background: rgba(0, 0, 0, 0.9) !important;
                backdrop-filter: none !important;
            }
            
            .navbar *, .mobile-menu * {
                color: white !important;
            }
            
            .mobile-menu {
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(51, 51, 51, 0.95)) !important;
                backdrop-filter: none !important;
            }
            
            /* Beautiful card backgrounds for mobile */
            .course-card, .trainer-card, .feature-card, .blog-card, .position-card, .info-card {
                background: rgba(255, 255, 255, 0.15) !important;
                backdrop-filter: blur(15px) !important;
                border: 2px solid rgba(255, 255, 255, 0.3) !important;
                border-image: none !important;
                animation: none !important;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
            }
            
            .course-card:hover, .trainer-card:hover, .feature-card:hover, .blog-card:hover, .position-card:hover, .info-card:hover {
                background: rgba(255, 255, 255, 0.25) !important;
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
                transform: translateY(-5px) !important;
            }
            
            /* Beautiful form styling for mobile */
            .contact-form, .contact-info {
                background: rgba(255, 255, 255, 0.2) !important;
                backdrop-filter: blur(20px) !important;
                border: 2px solid rgba(255, 255, 255, 0.4) !important;
                border-image: none !important;
                animation: none !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
            }
            
            .form-group input, .form-group textarea, .form-group select {
                background: rgba(255, 255, 255, 0.3) !important;
                color: #000000 !important;
                border: 1px solid rgba(255, 255, 255, 0.5) !important;
                backdrop-filter: blur(10px) !important;
                box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1) !important;
            }
            
            .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
                background: rgba(255, 255, 255, 0.4) !important;
                border-color: rgba(102, 126, 234, 0.8) !important;
                box-shadow: 0 0 15px rgba(102, 126, 234, 0.3) !important;
            }
            
            .form-group input::placeholder,
            .form-group textarea::placeholder {
                color: rgba(0, 0, 0, 0.6) !important;
            }
            
            /* Update hero section for mobile */
           
            .hero-content h1 {
                background: none !important;
                -webkit-background-clip: unset !important;
                -webkit-text-fill-color: unset !important;
                background-clip: unset !important;
                color: #000000 !important;
                text-shadow: none !important;
                animation: none !important;
            }
            
            /* Beautiful section backgrounds for mobile */
            .courses, .trainers, .features, .about, .location, .contact, .careers, .blog {
                background: rgba(255, 255, 255, 0.08) !important;
                backdrop-filter: blur(10px) !important;
                box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1) !important;
            }
            
            /* Update headings */
            h1, h2, h3, h4, h5, h6 {
                color: #000000 !important;
                text-shadow: none !important;
                animation: none !important;
            }
            
            /* Update stats section */
            .stat-number {
                color: #000000 !important;
                text-shadow: none !important;
            }
            
            /* Beautiful thank you page for mobile */
            .thank-you-title {
                background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c) !important;
                -webkit-background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
                background-clip: text !important;
                color: transparent !important;
                text-shadow: none !important;
                animation: mobileTitleGlow 3s ease-in-out infinite alternate !important;
            }
            
            @keyframes mobileTitleGlow {
                0% { filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5)); }
                100% { filter: drop-shadow(0 0 20px rgba(245, 87, 108, 0.8)); }
            }
            
            .checkmark-circle {
                background: linear-gradient(45deg, #667eea, #764ba2) !important;
                box-shadow: 0 0 40px rgba(102, 126, 234, 0.6) !important;
            }
            
            .celebration-particles .particle {
                background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c) !important;
            }
            
            /* Beautiful quote cards for mobile */
            .quote {
                background: rgba(255, 255, 255, 0.2) !important;
                backdrop-filter: blur(15px) !important;
                border: 1px solid rgba(255, 255, 255, 0.4) !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
            }
            
            .quote h3 {
                color: #000000 !important;
                text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5) !important;
            }
            
            /* Beautiful step cards for mobile */
            .step, .why-join-item, .process-step {
                background: rgba(255, 255, 255, 0.18) !important;
                backdrop-filter: blur(12px) !important;
                border: 1px solid rgba(255, 255, 255, 0.3) !important;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
            }
            
            .step:hover, .why-join-item:hover, .process-step:hover {
                background: rgba(255, 255, 255, 0.28) !important;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
            }
            
            /* Update course detail pages */
            .course-main-content, .course-info-card, .blog-detail-content {
                background: rgba(0, 0, 0, 0.05) !important;
                backdrop-filter: none !important;
                border: 2px solid #000000 !important;
                border-image: none !important;
                animation: none !important;
            }
            
            /* Update location card */
            .location-card {
                background: rgba(0, 0, 0, 0.05) !important;
                backdrop-filter: none !important;
                border: 2px solid #000000 !important;
                border-image: none !important;
                animation: none !important;
            }
            
            /* Update map wrapper */
            .map-wrapper {
                background: rgba(0, 0, 0, 0.05) !important;
                backdrop-filter: none !important;
                border: 1px solid #000000 !important;
            }
            
            /* Mobile Navigation */
            .nav-links { 
                display: none; 
            }
            
            .hamburger { 
                display: flex; 
            }
            
            /* Mobile Layout Adjustments */
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .features h2 { font-size: 2rem; }
            .about-container { grid-template-columns: 1fr; }
            .location-content { grid-template-columns: 1fr; }
            .contact-content { grid-template-columns: 1fr; }
            .course-detail-content { grid-template-columns: 1fr; }
            .positions-grid { grid-template-columns: 1fr; }
            .why-join-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            
            /* Thank You Page Mobile Styles */
            .thank-you-title { font-size: 2rem; }
            .checkmark-circle { width: 80px; height: 80px; }
            .checkmark { width: 30px; height: 15px; }
            .steps-grid { grid-template-columns: 1fr; }
            .info-cards { grid-template-columns: 1fr; }
            .action-buttons { flex-direction: column; align-items: center; }
            .quote h3 { font-size: 1.2rem; }
            .quote p { font-size: 1rem; }
            
            /* Mobile Padding Adjustments */
            .navbar { padding: 1rem; }
            .courses, .trainers, .features, .about, .location, .contact, .careers, .blog { padding: 3rem 1rem; }
            .hero { padding: 0 1rem; }
        }
   .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin: 15px;
}

.footer h2 {
  color: #ffcc00;
}

.footer h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 5px 0;
}

.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffcc00;
}

.footer-col i {
  font-size: 22px;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-col i:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin: 20px 0;
  }
}
.social-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.2);
}