 /* ============================================
           COMPLETE FORMATIONS PAGE STYLES
           ============================================ */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0EA5E9;
            --primary-light: #38BDF8;
            --primary-dark: #0284C7;
            --accent: #06B6D4;
            --dark: #0F172A;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            color: #0F172A;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(14, 165, 233, 0.1);
            animation: float 25s linear infinite;
            bottom: -150px;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
        }

        .animated-bg span:nth-child(1) { left: 10%; animation-delay: 0s; width: 80px; height: 80px; }
        .animated-bg span:nth-child(2) { left: 20%; animation-delay: 2s; width: 40px; height: 40px; }
        .animated-bg span:nth-child(3) { left: 30%; animation-delay: 4s; width: 60px; height: 60px; }
        .animated-bg span:nth-child(4) { left: 40%; animation-delay: 0s; width: 50px; height: 50px; }
        .animated-bg span:nth-child(5) { left: 50%; animation-delay: 3s; width: 70px; height: 70px; }
        .animated-bg span:nth-child(6) { left: 60%; animation-delay: 5s; width: 45px; height: 45px; }
        .animated-bg span:nth-child(7) { left: 70%; animation-delay: 1s; width: 55px; height: 55px; }
        .animated-bg span:nth-child(8) { left: 80%; animation-delay: 3s; width: 65px; height: 65px; }
        .animated-bg span:nth-child(9) { left: 90%; animation-delay: 2s; width: 75px; height: 75px; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(14, 165, 233, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-light);
        }

        .btn-contact {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: transform 0.3s ease;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .immersive-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0F172A;
            position: relative;
            overflow: hidden;
            padding-top: 85px;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridMove 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
            animation: particleFloat 15s ease-in-out infinite;
        }

        @keyframes particleFloat {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .hero-content-immersive {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: heroReveal 1.2s ease;
        }

        @keyframes heroReveal {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-label {
            font-size: 0.85rem;
            letter-spacing: 3px;
            color: var(--primary-light);
            font-weight: 700;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .immersive-hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 8rem;
            font-weight: 900;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 2rem;
            text-shadow: 0 20px 60px rgba(14, 165, 233, 0.4);
        }

        .immersive-hero p {
            font-size: 1.5rem;
            color: #94A3B8;
            margin-bottom: 4rem;
        }

        .btn-explore {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3.5rem;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            transition: all 0.4s ease;
        }

        .btn-explore:hover {
            border-color: var(--primary);
            background: rgba(14, 165, 233, 0.1);
            transform: translateY(-3px);
        }

        /* Filter Section */
        .filter-section {
            padding: 3rem 5%;
            background: #ffffff;
            position: sticky;
            top: 85px;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .filter-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.9rem 2.5rem;
            background: transparent;
            border: 2px solid #E2E8F0;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            color: #64748B;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(14, 165, 233, 0.05);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }

        /* Formations Showcase */
        .formations-showcase {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
        }

        .showcase-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
            gap: 2.5rem;
        }

        .formation-item {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #E2E8F0;
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            animation: cardReveal 0.8s ease both;
        }

        @keyframes cardReveal {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .formation-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(14, 165, 233, 0.15);
            border-color: var(--primary);
        }

        .formation-visual {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }

        .badge-wrapper {
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s ease;
        }

        .formation-item:hover .badge-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .badge-wrapper img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .nse-badge {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }

        .formation-item:hover .nse-badge {
            transform: scale(1.1) rotate(-5deg);
        }

        .nse-badge.gold {
            background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
            color: #ffffff;
        }

        .nse-badge.green {
            background: linear-gradient(135deg, #047857 0%, #10B981 100%);
            color: #ffffff;
        }

        .nse-number {
            font-size: 3rem;
            line-height: 1;
        }

        .nse-title {
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-top: 0.5rem;
        }

        .formation-details {
            padding: 3rem 2.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .formation-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-tag {
            padding: 0.5rem 1.2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .meta-level {
            font-size: 0.85rem;
            color: #64748B;
            font-weight: 600;
        }

        .formation-details h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .formation-details p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #64748B;
            margin-bottom: 2rem;
            flex: 1;
        }

        .formation-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid #E2E8F0;
        }

        .btn-details {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .btn-details:hover {
            color: var(--primary-dark);
        }

        .formation-icon {
            font-size: 2rem;
        }

        /* Stats Banner */
        .stats-banner {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-light);
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #94A3B8;
            font-weight: 600;
        }

        /* Final CTA */
        .final-cta-modern {
            padding: 8rem 5%;
            background: #F8FAFC;
            text-align: center;
        }

        .final-cta-modern h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .final-cta-modern p {
            font-size: 1.3rem;
            color: #64748B;
            margin-bottom: 3rem;
        }

        .btn-cta-modern {
            display: inline-flex;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
            transition: all 0.4s ease;
        }

        .btn-cta-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(14, 165, 233, 0.5);
        }

        /* Footer */
        footer {
            background: #0F172A;
            color: #94A3B8;
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #94A3B8;
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(148, 163, 184, 0.2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .showcase-container {
                grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .immersive-hero h1 {
                font-size: 4rem;
            }

            .nav-menu {
                display: none;
            }

            .showcase-container {
                grid-template-columns: 1fr;
            }

            .stats-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .final-cta-modern h2 {
                font-size: 2.5rem;
            }
        }