        body {
            overflow-x: hidden !important;
            max-w-full !important;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            letter-spacing: -0.022em;
        }

        /* Rigid Light Mode Contrast Overhaul */
        .light {
            background-color: #f5f5f7 !important;
            color: #000000 !important;
        }

        .light p,
        .light span,
        .light h1,
        .light h2,
        .light h3,
        .light h4,
        .light h5,
        .light h6,
        .light label,
        .light li {
            color: #000000 !important;
        }

        .light .text-gray-600,
        .light .text-[#86868b],
        .light .text-appleGray,
        .light .text-gray-500 {
            color: #1c1c1e !important;
            font-weight: 500;
        }

        .apple-glass {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(25px) saturate(190%);
            -webkit-backdrop-filter: blur(25px) saturate(190%);
            border: 1px solid rgba(255, 255, 255, 0.09);
        }

        .light .apple-glass {
            background: #ffffff !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: 2px solid #000000 !important;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        }

        .apple-transition {
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .apple-transition:hover {
            transform: translateY(-2px);
        }

        .nav-link {
            color: #6e6e73;
            font-weight: 500;
            transition: color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dark .nav-link:hover {
            color: #ffffff;
        }

        .light .nav-link {
            color: #1d1d1f !important;
        }

        .light .nav-link:hover {
            color: #007aff !important;
        }

        .dark .nav-active {
            color: #007aff !important;
            font-weight: 700 !important;
        }

        .light .nav-active {
            color: #007aff !important;
            font-weight: 700 !important;
        }

        .page-section {
            display: none;
        }

        .page-section.active-page {
            display: block;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: transparent;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 99px;
        }

        .light .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.3);
        }

        .material-symbols-outlined {
            vertical-align: middle;
            font-size: 20px;
            display: inline-block;
        }

        /* FAQ Transition Utilities */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .faq-item.active .faq-content {
            max-height: 200px;
        }


        /* Apple-style smooth cubic-bezier transition */
        .apple-transition {
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .apple-bounce {
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1.2);
        }

        .apple-bounce:hover {
            transform: scale(1.03);
        }

        /* Slideshow custom smooth transition */
        .slide-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide-item {
            flex: 0 0 100%;
            width: 100%;
        }

        /* Custom keyframes for text elements rising up beautifully */
        @keyframes textUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-text-up {
            animation: textUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* Fixed-width monospace utility specifically for fast microsecond counters */
        .mono-timer {
            font-family: 'JetBrains Mono', monospace;
        }




        /* Scope all styles cleanly inside the wrapper */
        .tabs-wrapper {
            /* Modern CSS Variables for easy customization */
            --bg-color: #111112;
            --card-bg: #111112;
            --tab-inactive-bg: #111827;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --accent-color: #38bdf8;
            --accent-glow: rgba(56, 189, 248, 0.15);
            --border-color: #334155;

            /* Container layout styling */
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            box-sizing: border-box;
            width: 100%;
            border-radius: 20px;
            /* Optional rounded corners for the outer container */
        }

        .tabs-wrapper *,
        .tabs-wrapper *:before,
        .tabs-wrapper *:after {
            box-sizing: border-box;
        }

        /* Tabs Component Card */
        .tabs-wrapper .tabs {
            display: flex;
            flex-wrap: wrap;
            max-width: 650px;
            width: 100%;
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
                0 0 30px var(--accent-glow);
            overflow: hidden;
        }

        /* Hide the radio buttons */
        .tabs-wrapper .tabs input[type="radio"] {
            display: none;
        }

        /* Tab Labels styling */
        .tabs-wrapper .tabs label {
            padding: 20px 24px;
            flex: 1;
            text-align: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            background: var(--tab-inactive-bg);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tabs-wrapper .tabs label:hover {
            color: var(--text-main);
            background: var(--card-bg);
        }

        /* Active Tab Styling */
        .tabs-wrapper .tabs input[type="radio"]:checked+label {
            color: var(--accent-color);
            background: var(--card-bg);
            border-bottom: 2px solid var(--accent-color);
        }

        /* Content Area */
        .tabs-wrapper .tabs .content {
            width: 100%;
            padding: 35px;
        }

        .tabs-wrapper .tabs .content section {
            display: none;
            animation: tabFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tabs-wrapper .tabs .content section h2 {
            margin-top: 0;
            margin-bottom: 12px;
            color: var(--text-main);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .tabs-wrapper .tabs .content section p {
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .tabs-wrapper .tabs .content section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed var(--accent-color);
            transition: color 0.2s;
        }

        .tabs-wrapper .tabs .content section a:hover {
            color: var(--text-main);
            border-bottom-style: solid;
        }

        /* Show content based on active selection using unique IDs */
        .tabs-wrapper #tab-home:checked~.content #content-home,
        .tabs-wrapper #tab-courses:checked~.content #content-courses,
        .tabs-wrapper #tab-support:checked~.content #content-support {
            display: block;
        }

        /* Modern Fade & Slide Animation */
        @keyframes tabFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }




        .tab-link-container,
        .spand {
            /* Setup Modern Design Variables */
            --bg-slate: #1e293b;
            --text-active: #38bdf8;
            --glow-color: rgba(56, 189, 248, 0.25);
            --border-gradient: linear-gradient(135deg, #38bdf8, #818cf8);
            text-align: center;
            align-items: center;
            justify-content: center;
            display: inline-block;
            font-family: system-ui, -apple-system, sans-serif;
            padding: 10px;
        }

        /* The Modern Tab Link Styling */
        .modern-tab-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            color: #94a3b8;
            /* Muted color initially */
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            background: rgba(30, 41, 59, 0.7);

            /* Smooth modern rounding on top corners only (traditional tab style) */
            border-radius: 12px 12px 12px 12px;

            /* Subtle border & positioning for effects */
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 2px solid transparent;
            position: relative;
            cursor: pointer;

            /* Smooth hardware-accelerated transition */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Hover & Active States */
        .modern-tab-link:hover {
            color: var(--text-active);
            background: var(--bg-slate);
            transform: translateY(-3px);
            /* Interactive lift effect */
            box-shadow: 0 10px 20px -10px var(--glow-color);
        }

        /* Glowing bottom accent line that slides in on hover */
        .modern-tab-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--border-gradient);
            border-radius: 3px 3px 0 0;
            transition: all 0.3s ease;
        }

        .modern-tab-link:hover::after {
            width: 80%;
            left: 10%;
        }
        .spand{
            align-items: center;
            justify-content: center;
            
        }

        /* Precision Micro-animations on interactive target vectors */
        .apple-footer-link {
            transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }
        .apple-footer-link:hover {
            transform: translateX(3px);
        }
        .scrollbar-none::-webkit-scrollbar { display: none; }
        .scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
