
        html{
            scroll-behavior: smooth;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0a0e27;
            --secondary-blue: #1a1f3a;
            --accent-purple: #6b46c1;
            --accent-cyan: #00d4ff;
            --text-primary: #ffffff;
            --text-secondary: #b4b4b4;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --education-gold: #ffd700;
            --trust-blue: #2c5aa0;
        }

        body {
            font-family: "Inter", sans-serif;
            background: var(--primary-blue);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Canvas Background */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Loading Screen */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-blue);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 60px;
            height: 60px;
            border: 3px solid var(--accent-cyan);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            z-index: 1000;
            transition: width 0.1s;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            padding: 0.5rem 2rem;
            background: rgba(10, 14, 39, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(318deg, #b3115a, #f2c102);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .nav-links a:hover {
            color: #f4c302;
        }

        .cta-button {
            padding: 0.5rem 1.5rem;
            background: white;
            border: none;
            border-radius: 25px;
            color: rgb(0, 0, 0) !important;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

   
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.6rem;
            cursor: pointer;
        }
        @media (max-width: 1200px) {
            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }
            /* Hide nav links by default */
            #navLinks {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            /* Show when active */
            #navLinks.active {
                display: flex;
            }
        }
        /* Enhanced Hero Section - Bright Image Based Modern Design */
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            background-attachment: fixed;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: heroGlow 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes heroGlow {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, var(--primary-blue), transparent);
            pointer-events: none;
        }

        .hero-content {
            width: 100%;
            max-width: 1330px; /* ideal for your design */
            margin: 0 auto; /* center */
            padding: 0 20px;

            z-index: 2;
            position: relative;

            transform: translateY(0);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        @media (max-width: 1200px) {
  .hero-content {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 12px;
  }
}

        .hero-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #00d4ff 25%, #6b46c1 60%, #ffd700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(50px);
            text-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
            letter-spacing: -1px;
            line-height: 1.1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
        }

        .hero-subtitle {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            color: #ffffff;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            font-weight: 600;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 212, 255, 0.3);
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
        }

        .hero-tagline {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: #00d4ff;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            font-weight: 500;
            text-shadow: 0 0 20px rgba(0, 212, 255, 1), 0 2px 4px rgba(0, 0, 0, 0.8);
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 50px;
            backdrop-filter: blur(15px);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
        }

        .hero-cta {
            padding: 1.2rem 3.5rem;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(30px);
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 10px 30px rgba(0, 212, 255, 0.5),
                0 0 60px rgba(107, 70, 193, 0.3),
                0 4px 15px rgba(0, 0, 0, 0.4);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 20px 40px rgba(0, 212, 255, 0.7),
                0 0 80px rgba(107, 70, 193, 0.5),
                0 8px 25px rgba(0, 0, 0, 0.5);
        }

        /* Floating Elements */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 50%;
            opacity: 0.6;
            animation: floatParticle 10s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Hero Stats Bar - Enhanced Brightness */
        .hero-stats {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 3rem;
            z-index: 3;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
            padding: 1.5rem 3rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #00d4ff;
            display: block;
            text-shadow: 0 0 25px rgba(0, 212, 255, 1), 0 2px 4px rgba(0, 0, 0, 0.8);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: #ffffff;
            margin-top: 0.3rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
            font-weight: 500;
        }

        /* Logo Animation Section */
        .logo-animation {
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            margin: 3rem 0;
            position: relative;
        }

        .logo-box {
            width: 150px;
            height: 150px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 2px solid var(--glass-border);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .logo-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, var(--accent-cyan), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }

        .logo-box.glowing::before {
            opacity: 1;
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 1s ease;
        }

        .connection-line.active {
            transform: scaleX(1);
        }

        /* Content Sections */
        .section {
            padding: 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, var(--text-primary), #ffffff);;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* About Section */
        .about-content {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 820px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .about-content .fa-hand-point-right{
            color: white;
            font-size: 25px;
        }
        .about-content i{
            font-size: 0.9rem;
        }
        .about-content b{
            color: white;
        }
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .card-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .card-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Test Details */
        .test-details {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            margin: 2rem 0;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .detail-item:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateX(10px);
        }

        .detail-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Eligibility */
        .eligibility-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .eligibility-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .eligibility-item:hover {
            border-color: var(--accent-cyan);
            transform: translateX(10px);
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        /* Registration Steps */
        .steps-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateX(-50px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
            padding: 1.5rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(0, 212, 255, 0.1);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-toggle {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--secondary-blue), var(--accent-purple));
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .final-cta .cta-button {
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
        }

        /* Footer */
        footer {
            background: var(--secondary-blue);
            padding: 3rem 2rem 1rem;
            text-align: center;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            color: var(--accent-cyan);
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--secondary-blue);
                flex-direction: column;
                justify-content: center;
                transition: right 0.3s;
            }

            .nav-links.active {
                right: 0;
            }

            

            .logo-container {
                flex-direction: column;
                gap: 2rem;
            }

            .connection-line {
                width: 2px;
                height: 100px;
                top: 150px;
                left: 50%;
                transform: scaleY(0) translateX(-50%);
            }

            .connection-line.active {
                transform: scaleY(1) translateX(-50%);
            }

            .step {
                flex-direction: column;
                text-align: center;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            /* Enhanced Mobile Hero - Better Readability */
            .hero {
                background-attachment: scroll;
            }

            .hero-title {
                font-size: clamp(2.5rem, 8vw, 4rem);
                filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9));
            }

            .hero-subtitle {
                font-size: clamp(1.2rem, 4vw, 1.8rem);
                color: #ffffff;
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
            }

            .hero-tagline {
                font-size: clamp(1rem, 3.5vw, 1.3rem);
                background: rgba(0, 0, 0, 0.6);
                border: 2px solid rgba(0, 212, 255, 0.6);
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
            }

            .hero-cta {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
                bottom: 20px;
                left: 20px;
                right: 20px;
                transform: none;
                background: rgba(0, 0, 0, 0.8);
                border: 2px solid rgba(255, 255, 255, 0.3);
            }

            .hero-stat-number {
                font-size: 1.5rem;
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
            }

            .hero-stat-label {
                font-size: 0.9rem;
                color: #ffffff;
                font-weight: 600;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 3rem 1rem;
            }

            .hero {
                padding: 1rem;
            }

            .test-details {
                padding: 2rem 1rem;
            }

            .logo-box {
                width: 120px;
                height: 120px;
                font-size: 1.2rem;
            }

            /* Enhanced Small Mobile Hero - Maximum Readability */

            .hero-title {
                font-size: clamp(2rem, 10vw, 3.5rem);
                line-height: 1.2;
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 1));
            }

            .hero-subtitle {
                font-size: clamp(1rem, 5vw, 1.5rem);
                color: #ffffff;
                filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 1));
            }

            .hero-tagline {
                font-size: clamp(0.9rem, 4vw, 1.2rem);
                padding: 0.6rem 1.2rem;
                background: rgba(0, 0, 0, 0.7);
                border: 2px solid rgba(0, 212, 255, 0.7);
                filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 1));
            }

            .hero-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .hero-stats {
                bottom: 10px;
                left: 10px;
                right: 10px;
                padding: 1rem;
                gap: 1rem;
                background: rgba(0, 0, 0, 0.85);
                border: 2px solid rgba(255, 255, 255, 0.4);
            }

            .hero-stat-number {
                font-size: 1.3rem;
                filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 1));
            }

            .hero-stat-label {
                font-size: 0.8rem;
                color: #ffffff;
                font-weight: 700;
            }
        }

        /* Floating Register Button */
        .floating-register {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
            transition: all 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .floating-register:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
        }

       
        /* Portion Covered Section */
        .portion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .portion-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem 1.2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .portion-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(107, 70, 193, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }

        .portion-card:hover::before {
            opacity: 1;
        }

        .portion-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-purple);
            box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
        }

        .portion-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
            background: linear-gradient(45deg, var(--trust-blue), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        /* Premium Logo Section - Redesigned */
        .premium-logo-section {
            padding: 4rem 1rem;
            background: radial-gradient(ellipse at center, rgba(107, 70, 193, 0.15) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
        }

        .premium-logo-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            width: 100%;
        }

        .logo-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin: 3rem 0;
            position: relative;
            flex-wrap: wrap;
        }

        .premium-logo-box {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(107, 70, 193, 0.2));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0;
            transform: scale(0.8) rotateY(90deg);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .premium-logo-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00d4ff, #6b46c1, #00d4ff);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.6s;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .premium-logo-box.premium-glow::before {
            opacity: 1;
        }

        .premium-logo-box.premium-glow {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.6), 0 20px 60px rgba(107, 70, 193, 0.4);
            transform: scale(1.05);
        }

        .premium-connection {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
            transform: translate(-50%, -50%) scale(0);
            transform-origin: center;
            transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        }

        .premium-connection.active {
            transform: translate(-50%, -50%) scale(1);
            animation: connectionPulse 2s ease-in-out infinite;
        }

        @keyframes connectionPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .light-burst {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.9) 0%, rgba(107, 70, 193, 0.6) 30%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            pointer-events: none;
            filter: blur(2px);
        }

        .light-burst.burst {
            animation: burst 1.5s ease-out;
        }

        @keyframes burst {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(4);
                opacity: 0;
            }
        }

        .collaboration-text {
            margin-top: 3rem;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--education-gold);
            opacity: 0;
            transform: translateY(50px);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            letter-spacing: 2px;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .partnership-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--education-gold), var(--accent-cyan));
            color: var(--primary-blue);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(30px);
            font-size: 0.9rem;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

       
        /* Section Dividers */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            margin: 4rem auto;
            width: 60%;
            opacity: 0.3;
        }

        /* Responsive Design - Enhanced */
        @media (max-width: 1024px) {
            .logo-showcase {
                gap: 2rem;
            }
            
            .premium-logo-box {
                width: 150px;
                height: 150px;
                font-size: 1.3rem;
            }
            
            .premium-connection {
                width: 120px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 1rem;
            }

            .hero {
                padding: 1rem;
            }

            .test-details {
                padding: 2rem 1rem;
            }

            .logo-showcase {
                flex-direction: column;
                gap: 2rem;
                margin: 2rem 0;
            }

            .premium-logo-box {
                width: 140px;
                height: 140px;
                font-size: 1.2rem;
                margin: 0;
            }

            .premium-connection {
                width: 3px;
                height: 80px;
                top: 140px;
                left: 50%;
                transform: translate(-50%, -50%) scaleX(0);
                transform-origin: top center;
            }

            .premium-connection.active {
                transform: translate(-50%, -50%) scaleX(1);
            }

            .collaboration-text {
                font-size: 1.4rem;
                margin-top: 2rem;
            }

            .glass-bg {
                backdrop-filter: blur(5px);
            }
            
            .card:hover {
                transform: none;
            }
            
            .detail-item:hover {
                transform: none;
            }
            
            .eligibility-item:hover {
                transform: none;
            }

            .portion-card:hover {
                transform: none;
            }

            .floating-register {
                bottom: 20px;
                right: 20px;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

       
            .portion-grid {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                padding: 0 1rem;
            }

            .step {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .premium-logo-section {
                padding: 3rem 1rem;
                min-height: 50vh;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .premium-logo-box {
                width: 120px;
                height: 120px;
                font-size: 1rem;
            }

            .collaboration-text {
                font-size: 1.2rem;
            }

        

         

            .portion-card {
                padding: 1.5rem;
            }

            .card {
                padding: 1.5rem;
            }

            .nav-links {
                width: 90%;
            }

            header {
                padding: 1rem;
            }

            .final-cta {
                padding: 3rem 1rem;
            }
        }
  

/* Custom Banner */

.zat-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background:
    radial-gradient(circle at 50% 30%, rgba(92, 108, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 65%, rgba(162, 89, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #050816 0%, #0b1020 100%); */
}

.zat-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 22%),
    radial-gradient(circle at center, rgba(131, 110, 255, 0.08), transparent 38%);
  filter: blur(20px);
  pointer-events: none;
}

.zat-stage {
  position: relative;
  width: min(1100px, 92vw);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 70px;
  padding-bottom: 40px;
  z-index: 2;
}

.zat-logo {
  position: absolute;
  top: 150px;
  width: 170px;
  height: 170px;
  object-fit: contain;
  transform: translateY(-50%) scale(1);
  opacity: 0;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  transition:
    left 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    right 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 1s ease;
  z-index: 3;
}

.zat-logo-left {
  left: -220px;
}

.zat-logo-right {
  right: -220px;
}

.zat-section.active .zat-logo-left {
  left: calc(50% - 145px);
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.zat-section.active .zat-logo-right {
  right: calc(50% - 145px);
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.zat-section.merge .zat-logo-left {
  left: calc(50% - 85px);
  transform: translateY(-50%) scale(0.92);
}

.zat-section.merge .zat-logo-right {
  right: calc(50% - 85px);
  transform: translateY(-50%) scale(0.92);
}

.zat-section.done .zat-logo-left {
  left: 8%;
  transform: translateY(-50%) scale(0.88);
  opacity: 0.95;
}

.zat-section.done .zat-logo-right {
  right: 8%;
  transform: translateY(-50%) scale(0.88);
  opacity: 0.95;
}

.zat-center-flash {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(163,127,255,0.45) 30%, rgba(163,127,255,0) 72%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  filter: blur(8px);
  transition: all 0.9s ease;
  z-index: 1;
  pointer-events: none;
}

.zat-section.reveal .zat-center-flash {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.8);
}

.zat-text-wrap {
  position: relative;
  z-index: 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.zat-text {
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  /* text-shadow:
    0 0 20px rgba(255,255,255,0.25),
    0 0 40px rgba(138, 92, 255, 0.28); */
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.zat-section.reveal .zat-text {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zat-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.zat-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  box-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 20px rgba(162, 89, 255, 0.65);
  animation: zatSpark 1.6s ease-out forwards;
}

.zat-sparkle::before,
.zat-sparkle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255,255,255,0.9);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.zat-sparkle::before {
  width: 2px;
  height: 16px;
}

.zat-sparkle::after {
  width: 16px;
  height: 2px;
}

@keyframes zatSpark {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  18% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--x) * 1.35), calc(var(--y) * 1.35)) scale(0.3);
  }
}

.zat-info-banner {
  position: relative;
  width: min(980px, 92vw);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
  padding: 0 16px;
  margin-top: 20px;
}

.zat-section.done .zat-info-banner {
  opacity: 1;
  transform: translateY(0);
}

.zat-info-highlight {
  display: inline-block;
  padding: 10px 34px 12px;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #0a0e27;
  background: linear-gradient(90deg, rgba(255, 240, 120, 0) 0%, rgb(255 203 0) 18%, rgb(242 193 2) 50%, rgb(242 193 2) 82%, rgb(255 240 120 / 0%) 100%);
  border-radius: 4px;
  letter-spacing: 0.01em;
  /* box-shadow: 0 8px 30px rgba(255, 230, 90, 0.18); */
}

.zat-info-subtext {
  margin-top: 14px;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.zat-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* padding: 16px 28px; */
  margin-top: 26px;
  /* border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25); */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
  text-align: center;
}

.zat-section.done .zat-meta {
  opacity: 1;
  transform: translateY(0);
}

.zat-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.zat-meta-icon {
  font-size: 30px;
  opacity: 0.9;
}

.zat-meta-date {
  letter-spacing: 0.03em;
}

.zat-meta-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.zat-meta-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.zat-meta-numbers {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  flex-wrap: wrap;
  justify-content: center;
}

.zat-meta-numbers a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.zat-meta-numbers a:hover {
  opacity: 0.75;
}

.zat-meta-sep {
  opacity: 0.5;
}

@media (max-width: 991px) {
  .zat-stage {
    min-height: 540px;
    padding-top: 60px;
  }

  .zat-logo {
    top: 140px;
    width: 140px;
    height: 140px;
  }

  .zat-center-flash {
    top: 140px;
  }

  .zat-section.active .zat-logo-left {
    left: calc(50% - 120px);
  }

  .zat-section.active .zat-logo-right {
    right: calc(50% - 120px);
  }

  .zat-section.merge .zat-logo-left {
    left: calc(50% - 70px);
  }

  .zat-section.merge .zat-logo-right {
    right: calc(50% - 70px);
  }

  .zat-section.done .zat-logo-left {
    left: 6%;
  }

  .zat-section.done .zat-logo-right {
    right: 6%;
  }

  .zat-info-highlight {
    padding: 9px 24px 11px;
  }
}

@media (max-width: 768px) {
  .zat-stage {
    min-height: 520px;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .zat-logo {
    top: 120px;
    width: 110px;
    height: 110px;
  }

  .zat-center-flash {
    top: 120px;
  }

  .zat-section.active .zat-logo-left {
    left: calc(50% - 95px);
  }

  .zat-section.active .zat-logo-right {
    right: calc(50% - 95px);
  }

  .zat-section.merge .zat-logo-left {
    left: calc(50% - 55px);
  }

  .zat-section.merge .zat-logo-right {
    right: calc(50% - 55px);
  }

  .zat-section.done .zat-logo-left {
    left: 4%;
    transform: translateY(-50%) scale(0.82);
  }

  .zat-section.done .zat-logo-right {
    right: 4%;
    transform: translateY(-50%) scale(0.82);
  }

  .zat-text {
    letter-spacing: 0.12em;
  }

  .zat-info-banner {
    width: 94vw;
    padding: 0 10px;
    margin-top: 18px;
  }

  .zat-info-highlight {
    padding: 8px 18px 10px;
    border-radius: 3px;
  }

  .zat-info-subtext {
    margin-top: 12px;
    line-height: 1.3;
  }

  .zat-meta {
    width: min(92vw, 520px);
    padding: 14px 20px;
    gap: 8px;
  }

  .zat-meta-top {
    font-size: 14px;
  }

  .zat-meta-numbers {
    font-size: 16px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .zat-stage {
    min-height: 500px;
  }

  .zat-logo {
    top: 105px;
    width: 88px;
    height: 88px;
  }

  .zat-center-flash {
    top: 105px;
  }

  .zat-section.active .zat-logo-left {
    left: calc(50% - 72px);
  }

  .zat-section.active .zat-logo-right {
    right: calc(50% - 72px);
  }

  .zat-section.merge .zat-logo-left {
    left: calc(50% - 44px);
  }

  .zat-section.merge .zat-logo-right {
    right: calc(50% - 44px);
  }

  .zat-section.done .zat-logo-left {
    left: 3%;
    transform: translateY(-50%) scale(0.78);
  }

  .zat-section.done .zat-logo-right {
    right: 3%;
    transform: translateY(-50%) scale(0.78);
  }

  .zat-text {
    font-size: clamp(40px, 14vw, 70px);
  }

  .zat-info-subtext {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .zat-meta {
    width: min(92vw, 340px);
    padding: 14px 16px;
  }

  .zat-meta-numbers {
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
  }

  .zat-meta-sep {
    display: none;
  }
}

/* How to Register Section */
/* =========================
   REGISTER SECTION (UNIQUE)
========================= */

#regsec-wrapper-ax92 {
  border: 2px solid var(--accent-cyan);
    border-radius: 20px;
  padding: 40px 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* Container */
.regsec-container-ax92 {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ================= LEFT ================= */

.regsec-left-ax92 {
  flex: 1;
  text-align: center;
}

.regsec-illustration-ax92 {
  position: relative;
  display: inline-block;
}

.regsec-illustration-ax92 img {
  width: 470px;
  max-width: 100%;
  display: block;
  margin: auto;
}


/* ================= RIGHT ================= */

.regsec-right-ax92 {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Card */
.regsec-card-ax92 {

  padding: 40px 30px;
  width: 100%;
  max-width: 440px;

  background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s;

  /* Animation initial */
  opacity: 0;
  transform: translateY(50px);
}
.regsec-card-ax92:hover{
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Title */
.regsec-title-ax92 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.regsec-subtitle-ax92 {
  font-size: 14px;
  color: #adadad;
  margin-bottom: 25px;
}

/* ================= STEPS ================= */

.regsec-step-ax92 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;

  opacity: 0;
  transform: translateX(40px);
}

/* Circle */
.regsec-circle-ax92 {
  min-width: 36px;
  height: 36px;
  background: #f2c002;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 7    00;
  font-size: 14px;
  z-index: 2;
}

/* Text */
.regsec-step-text-ax92 {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
}

/* Vertical Line */
.regsec-step-ax92::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 35px;
  width: 2px;
  height: calc(100% + 10px);
  background: #dcdcdc;
  z-index: 1;
}

.regsec-step-ax92:last-child::before {
  display: none;
}

/* ================= ANIMATION ================= */

.regsec-card-ax92.regsec-show-ax92 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

.regsec-step-ax92.regsec-show-ax92 {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .regsec-container-ax92 {
    flex-direction: column;
    text-align: center;
  }

  .regsec-right-ax92 {
    width: 100%;
  }

  .regsec-card-ax92 {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  #regsec-wrapper-ax92 {
    padding: 40px 15px;
  }

  .regsec-title-ax92 {
    font-size: 20px;
  }

  .regsec-step-text-ax92 {
    font-size: 14px;
  }
}


/* Section Layout */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* Card Style */
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 200, 255, 0.2);
  transition: 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
}

/* Icon */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Label */
.label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

/* Highlight text */
.card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
.dts-ancho{
    color: white;
    text-decoration: white;
    cursor: pointer;
}
.logo a{
    text-decoration: none;
}
.regsec-step-text-ax92 a{
    text-decoration: none;
    color: white;
}


/* Sticky Button */

.sticky-register-btn {
  position: fixed;
  right: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 28px;
  background: white;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 10px 30px rgba(12, 83, 150, 0.28);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sticky-register-btn:hover {
  background: rgb(242 193 2);
  box-shadow: 0 14px 36px rgba(12, 83, 150, 0.35);
}

/* Mobile: bottom center horizontal */
@media (max-width: 768px) {
  .sticky-register-btn {
    right: 50%;
    top: auto;
    bottom: 18px;
    transform: translateX(50%) rotate(0deg);
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 15px;
    min-width: 200px;
  }
}


