/* CSS Reset / Normalize */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #0a0e17;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        /* Ensure no nesting in headings */
        h1, h2, h3, h4, h5, h6 {
            display: block;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #ffcc00;
            text-align: center;
            margin: 1.5rem 0;
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 204, 0, 0.5), 0 0 20px rgba(255, 204, 0, 0.3);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.5), 0 0 40px rgba(255, 204, 0, 0.3);
            }
        }
        
        h2 {
            font-size: 2rem;
            color: #4db8ff;
            margin-top: 2rem;
            animation: slideInFromLeft 0.8s ease-out;
        }
        
        h3 {
            font-size: 1.5rem;
            color: #00cc99;
            animation: slideInFromRight 0.8s ease-out;
        }
        
        p {
            margin-bottom: 1.2rem;
            animation: fadeIn 1s ease-out;
        }
        
        a {
            color: #4db8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 14, 23, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s ease-out;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Logo */
        .logo-container {
            flex: 1;
            text-align: center;
        }
        
        .logo {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: #ffcc00;
            text-decoration: none;
            animation: logoPulse 3s infinite ease-in-out, float 6s ease-in-out infinite;
            position: relative;
        }
        
        .logo span {
            color: #4db8ff;
        }
        
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* COMPLETELY REDESIGNED DESKTOP NAVIGATION */
        .desktop-nav {
            position: relative;
        }
        
        .desktop-nav ul {
            display: flex;
            list-style: none;
            background: linear-gradient(135deg, rgba(20, 25, 40, 0.9), rgba(10, 14, 23, 0.9));
            border-radius: 50px;
            padding: 0.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .desktop-nav ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 204, 0, 0.1), 
                rgba(77, 184, 255, 0.1), 
                rgba(0, 204, 153, 0.1), 
                transparent);
            animation: navShine 4s infinite linear;
            z-index: 0;
        }
        
        @keyframes navShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .desktop-nav li {
            margin: 0 0.5rem;
            position: relative;
            z-index: 1;
            animation: navItemAppear 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
        }
        
        @keyframes navItemAppear {
            0% {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }
        
        .desktop-nav li:nth-child(1) { animation-delay: 0.1s; }
        .desktop-nav li:nth-child(2) { animation-delay: 0.2s; }
        .desktop-nav li:nth-child(3) { animation-delay: 0.3s; }
        .desktop-nav li:nth-child(4) { animation-delay: 0.4s; }
        .desktop-nav li:nth-child(5) { animation-delay: 0.5s; }
        .desktop-nav li:nth-child(6) { animation-delay: 0.6s; }
        
        .desktop-nav a {
            font-weight: 500;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            display: block;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
            overflow: hidden;
            background: rgba(30, 35, 50, 0.3);
            border: 2px solid transparent;
        }
        
        .desktop-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            border-radius: 30px;
        }
        
        .desktop-nav a:hover::before {
            opacity: 1;
        }
        
        .desktop-nav a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.8);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%, -50%);
            transform-origin: 50% 50%;
        }
        
        .desktop-nav a:hover::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(40, 40);
                opacity: 0;
            }
        }
        
        .desktop-nav a:hover {
            color: #0a0e17;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
            border-color: #ffcc00;
        }
        
        .desktop-nav a i {
            margin-right: 8px;
            font-size: 0.9em;
            transition: transform 0.3s ease;
        }
        
        .desktop-nav a:hover i {
            transform: rotate(360deg);
        }
        
        /* Mobile menu button - ENHANCED */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            border: none;
            color: #0a0e17;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.8rem;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
            animation: pulse 2s infinite, buttonFloat 3s ease-in-out infinite;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
            overflow: hidden;
            z-index: 1002;
        }
        
        @keyframes buttonFloat {
            0%, 100% { transform: translateY(0) rotate(0); }
            25% { transform: translateY(-10px) rotate(5deg); }
            75% { transform: translateY(5px) rotate(-5deg); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1) rotate(180deg);
        }
        
        .mobile-menu-btn .burger-icon {
            position: relative;
            width: 24px;
            height: 18px;
            margin: 0 auto;
        }
        
        .mobile-menu-btn .burger-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #0a0e17;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn .burger-icon span:nth-child(1) {
            top: 0;
        }
        
        .mobile-menu-btn .burger-icon span:nth-child(2) {
            top: 7px;
        }
        
        .mobile-menu-btn .burger-icon span:nth-child(3) {
            top: 14px;
        }
        
        .mobile-menu-btn.active .burger-icon span:nth-child(1) {
            top: 7px;
            transform: rotate(135deg);
        }
        
        .mobile-menu-btn.active .burger-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .mobile-menu-btn.active .burger-icon span:nth-child(3) {
            top: 7px;
            transform: rotate(-135deg);
        }
        
        /* COMPLETELY REDESIGNED MOBILE NAVIGATION - SCROLLABLE */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 90%;
            max-width: 350px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(10, 14, 23, 0.98), rgba(20, 25, 40, 0.98));
            backdrop-filter: blur(15px);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            padding: 2rem 1.5rem;
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            display: flex;
            flex-direction: column;
            border-left: 4px solid #ffcc00;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 204, 0, 0.3);
        }
        
        .mobile-nav-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: #ffcc00;
            font-weight: 700;
        }
        
        .mobile-nav-content {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
            margin-bottom: 2rem;
        }
        
        /* Custom scrollbar for mobile menu */
        .mobile-nav-content::-webkit-scrollbar {
            width: 6px;
        }
        
        .mobile-nav-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
        
        .mobile-nav-content::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #ffcc00, #ff9900);
            border-radius: 10px;
        }
        
        .mobile-nav-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #ff9900, #ff6600);
        }
        
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .mobile-nav li {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
            animation: mobileItemSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
        }
        
        @keyframes mobileItemSlideIn {
            0% {
                opacity: 0;
                transform: translateX(50px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }
        
        .mobile-nav.active li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-nav.active li:nth-child(2) { animation-delay: 0.15s; }
        .mobile-nav.active li:nth-child(3) { animation-delay: 0.2s; }
        .mobile-nav.active li:nth-child(4) { animation-delay: 0.25s; }
        .mobile-nav.active li:nth-child(5) { animation-delay: 0.3s; }
        .mobile-nav.active li:nth-child(6) { animation-delay: 0.35s; }
        .mobile-nav.active li:nth-child(7) { animation-delay: 0.4s; }
        .mobile-nav.active li:nth-child(8) { animation-delay: 0.45s; }
        .mobile-nav.active li:nth-child(9) { animation-delay: 0.5s; }
        .mobile-nav.active li:nth-child(10) { animation-delay: 0.55s; }
        .mobile-nav.active li:nth-child(11) { animation-delay: 0.6s; }
        .mobile-nav.active li:nth-child(12) { animation-delay: 0.65s; }
        
        .mobile-nav a {
            display: flex;
            align-items: center;
            padding: 1rem 1.2rem;
            background: rgba(30, 35, 50, 0.5);
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .mobile-nav a:hover::before {
            opacity: 1;
        }
        
        .mobile-nav a:hover {
            color: #0a0e17;
            transform: translateX(10px) scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
            border-color: #ffcc00;
        }
        
        .mobile-nav a i {
            margin-right: 15px;
            font-size: 1.2rem;
            color: #ffcc00;
            transition: transform 0.3s ease;
            width: 25px;
            text-align: center;
        }
        
        .mobile-nav a:hover i {
            transform: rotate(360deg) scale(1.2);
            color: #0a0e17;
        }
        
        .close-mobile-menu {
            background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
            border: none;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }
        
        .close-mobile-menu:hover {
            transform: rotate(180deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
        }
        
        .mobile-nav-footer {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 204, 0, 0.3);
            text-align: center;
        }
        
        .mobile-cta-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #4db8ff 0%, #0066cc 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(77, 184, 255, 0.3);
        }
        
        .mobile-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(77, 184, 255, 0.5);
        }
        
        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.9)), url('/assets/bgimages-universal.webp');
            background-size: cover;
            background-position: center;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: gradientShift 10s infinite alternate;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(77, 184, 255, 0.1) 0%, transparent 70%);
            animation: pulse 8s infinite alternate, rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out, textGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
            100% { text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.6); }
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.3s both, typewriter 3s steps(40) 0.5s 1 normal both;
            overflow: hidden;
            white-space: normal;
            border-right: 3px solid #ffcc00;
        }
        
        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Buttons */
        .greenbtn {
	        background: linear-gradient(135deg, #27af1c 0%, #2de71e 100%)!important;
	        color: #0a0e17;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            color: #0a0e17;
            font-weight: 600;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
            text-align: center;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #4db8ff 0%, #0066cc 100%);
            box-shadow: 0 4px 15px rgba(77, 184, 255, 0.3);
        }
        
        .btn-secondary:hover {
            box-shadow: 0 8px 25px rgba(77, 184, 255, 0.5);
        }
        
        /* Main Content */
        main {
            padding: 4rem 0;
        }
        
        /* Content Sections */
        .content-section {
            margin-bottom: 4rem;
            padding: 2rem;
            background-color: rgba(20, 25, 40, 0.7);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-out, floatSection 6s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes floatSection {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 204, 0, 0.05), transparent);
            animation: shine 3s infinite linear;
            z-index: 0;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Text Blocks */
        .bgotext {
            padding: 1.5rem;
            background-color: rgba(30, 35, 50, 0.5);
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #ffcc00;
            animation: borderGlow 2s infinite alternate;
            position: relative;
            z-index: 1;
        }
        
        @keyframes borderGlow {
            0% { border-left-color: #ffcc00; box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.2); }
            100% { border-left-color: #ff9900; box-shadow: inset 0 0 20px rgba(255, 204, 0, 0.4); }
        }
        
        .bgotext-alt {
            border-left-color: #4db8ff;
            animation: borderGlowAlt 2s infinite alternate;
        }
        
        @keyframes borderGlowAlt {
            0% { border-left-color: #4db8ff; box-shadow: inset 0 0 10px rgba(77, 184, 255, 0.2); }
            100% { border-left-color: #0066cc; box-shadow: inset 0 0 20px rgba(77, 184, 255, 0.4); }
        }
        
        .bgotext h2, .bgotext h3 {
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .bgotext h2::after, .bgotext h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ffcc00;
            animation: lineExtend 2s infinite alternate;
        }
        
        @keyframes lineExtend {
            0% { width: 60px; }
            100% { width: 120px; }
        }
        
        .bgotext-alt h2::after, .bgotext-alt h3::after {
            background-color: #4db8ff;
        }
        
        /* Tables */
        .block-table {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: tableAppear 1s ease-out;
        }
        
        @keyframes tableAppear {
            0% { opacity: 0; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: rgba(40, 45, 60, 0.8);
            animation: tableRows 0.5s ease-out;
        }
        
        @keyframes tableRows {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        thead {
            background: linear-gradient(135deg, #4db8ff 0%, #0066cc 100%);
            animation: headerGlow 3s infinite alternate;
        }
        
        @keyframes headerGlow {
            0% { background: linear-gradient(135deg, #4db8ff 0%, #0066cc 100%); }
            100% { background: linear-gradient(135deg, #0066cc 0%, #4db8ff 100%); }
        }
        
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        th {
            font-weight: 600;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        th::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: tableShine 3s infinite;
        }
        
        @keyframes tableShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        tr {
            animation: rowAppear 0.5s ease-out both;
        }
        
        tr:nth-child(1) { animation-delay: 0.1s; }
        tr:nth-child(2) { animation-delay: 0.2s; }
        tr:nth-child(3) { animation-delay: 0.3s; }
        tr:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes rowAppear {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        tr:hover {
            background-color: rgba(255, 204, 0, 0.1);
            transform: scale(1.01);
            box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
        }
        
        /* Lists */
        ol, ul {
            margin: 1.5rem 0 1.5rem 2rem;
            padding-left: 1rem;
            list-style-type: none;
        }
        
        ol li, ul li {
            margin-bottom: 0.8rem;
            padding-left: 0.5rem;
            position: relative;
        }
        
        /* Animated list items */
        ol li {
            animation: slideInLeft 0.5s ease-out both, listItemGlow 3s infinite alternate;
            counter-increment: item;
        }
        
        @keyframes listItemGlow {
            0% { text-shadow: 0 0 5px rgba(255, 204, 0, 0.3); }
            100% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.6); }
        }
        
        ol li:nth-child(1) { animation-delay: 0.1s; }
        ol li:nth-child(2) { animation-delay: 0.2s; }
        ol li:nth-child(3) { animation-delay: 0.3s; }
        ol li:nth-child(4) { animation-delay: 0.4s; }
        ol li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        ul li {
            animation: slideInRight 0.5s ease-out both, listItemGlowAlt 3s infinite alternate;
        }
        
        @keyframes listItemGlowAlt {
            0% { text-shadow: 0 0 5px rgba(77, 184, 255, 0.3); }
            100% { text-shadow: 0 0 10px rgba(77, 184, 255, 0.6); }
        }
        
        ul li:nth-child(1) { animation-delay: 0.1s; }
        ul li:nth-child(2) { animation-delay: 0.2s; }
        ul li:nth-child(3) { animation-delay: 0.3s; }
        ul li:nth-child(4) { animation-delay: 0.4s; }
        ul li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        ol li::before {
            content: counter(item) ". ";
            color: #ffcc00;
            font-weight: bold;
            position: absolute;
            left: -1.8rem;
            animation: counterPulse 2s infinite;
        }
        
        @keyframes counterPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        ul li::before {
            content: "•";
            color: #4db8ff;
            font-size: 1.5rem;
            position: absolute;
            left: -1.5rem;
            top: -0.2rem;
            animation: bulletSpin 3s infinite linear;
        }
        
        @keyframes bulletSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Sidebar */
        aside {
            padding: 2rem;
            background-color: rgba(20, 25, 40, 0.7);
            border-radius: 10px;
            margin-bottom: 2rem;
            animation: bounceIn 1s ease-out;
        }
        
        @keyframes bounceIn {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        aside h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            text-align: center;
            animation: colorShift 3s infinite alternate;
        }
        
        @keyframes colorShift {
            0% { color: #ffcc00; }
            100% { color: #4db8ff; }
        }
        
        .sidebar-links {
            list-style: none;
        }
        
        .sidebar-links li {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background-color: rgba(30, 35, 50, 0.5);
            border-radius: 6px;
            transition: all 0.3s ease;
            animation: slideInUp 0.5s ease-out both;
        }
        
        .sidebar-links li:nth-child(1) { animation-delay: 0.1s; }
        .sidebar-links li:nth-child(2) { animation-delay: 0.15s; }
        .sidebar-links li:nth-child(3) { animation-delay: 0.2s; }
        .sidebar-links li:nth-child(4) { animation-delay: 0.25s; }
        .sidebar-links li:nth-child(5) { animation-delay: 0.3s; }
        .sidebar-links li:nth-child(6) { animation-delay: 0.35s; }
        .sidebar-links li:nth-child(7) { animation-delay: 0.4s; }
        .sidebar-links li:nth-child(8) { animation-delay: 0.45s; }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .sidebar-links li:hover {
            background-color: rgba(77, 184, 255, 0.2);
            transform: translateX(10px) scale(1.03);
            box-shadow: 0 5px 15px rgba(77, 184, 255, 0.2);
        }
        
        .sidebar-links a {
            display: flex;
            align-items: center;
        }
        
        .sidebar-links i {
            margin-right: 0.8rem;
            color: #ffcc00;
            animation: iconWobble 2s infinite;
        }
        
        @keyframes iconWobble {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }
        
        /* Footer */
        footer {
            background-color: #050810;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
            padding: 0 1rem;
            animation: columnAppear 0.5s ease-out both;
        }
        
        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes columnAppear {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .footer-column h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            animation: titleShake 3s infinite;
        }
        
        @keyframes titleShake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            animation: linkSlide 0.5s ease-out both;
        }
        
        .footer-links li:nth-child(1) { animation-delay: 0.1s; }
        .footer-links li:nth-child(2) { animation-delay: 0.15s; }
        .footer-links li:nth-child(3) { animation-delay: 0.2s; }
        .footer-links li:nth-child(4) { animation-delay: 0.25s; }
        .footer-links li:nth-child(5) { animation-delay: 0.3s; }
        
        @keyframes linkSlide {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .footer-links a {
            color: #ccc;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            animation: socialFloat 3s infinite ease-in-out;
        }
        
        .social-links a:nth-child(1) { animation-delay: 0s; }
        .social-links a:nth-child(2) { animation-delay: 0.2s; }
        .social-links a:nth-child(3) { animation-delay: 0.4s; }
        .social-links a:nth-child(4) { animation-delay: 0.6s; }
        
        @keyframes socialFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .social-links a:hover {
            background-color: #ffcc00;
            transform: translateY(-5px) rotate(360deg);
            animation: none;
        }
        
        .social-links i {
            font-size: 1.2rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
            animation: copyrightFade 2s ease-out;
        }
        
        @keyframes copyrightFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            color: #0a0e17;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            animation: buttonPulse 2s infinite;
        }
        
        @keyframes buttonPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1) rotate(180deg);
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.6);
        }
        
        /* Additional animations for elements */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .footer-column {
                flex: 0 0 50%;
            }
            
            .desktop-nav ul {
                flex-wrap: wrap;
                justify-content: center;
                border-radius: 20px;
            }
            
            .desktop-nav li {
                margin: 0.3rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .footer-column {
                flex: 0 0 100%;
            }
            
            .header-container {
                flex-direction: column;
            }
            
            .logo-container {
                margin-bottom: 1rem;
            }
            
            .mobile-nav {
                width: 85%;
                max-width: 320px;
            }
        }
        
        @media screen and (max-width: 576px) {
            .hero {
                padding: 4rem 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .content-section, .bgotext {
                padding: 1.5rem 1rem;
            }
            
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .mobile-nav {
                width: 90%;
                padding: 1.5rem 1rem;
            }
            
            .mobile-nav a {
                padding: 0.9rem 1rem;
                font-size: 1rem;
            }
        }
        
        @media screen and (max-width: 400px) {
            .mobile-nav {
                width: 95%;
            }
            
            .mobile-nav a {
                padding: 0.8rem;
                font-size: 0.95rem;
            }
            
            .mobile-nav a i {
                margin-right: 10px;
                font-size: 1rem;
            }
        }