* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow: hidden; /* Prevent natural scrolling */
        }

        .section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 1.5s ease, opacity 1.5s ease;
            will-change: transform, opacity;
        }

        input, button {
            padding: 10px;
            font-size: 1rem;
            border-radius: 5px;
        }

        input[type="text"], input[type="email"], input[type="password"] {
            width: 100%;
            margin-bottom: 15px;
        }

        button {
            background-color: #007BFF;
            color: white;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #0056b3;
        }

        .hidden {
            opacity: 0;
            transform: translateY(100vh); /* Slide in from below */
        }

        .active {
            opacity: 1;
            transform: translateY(0);
        }

        .section1 {
            background: url('{{ url_for('static', filename='logo.png') }}') no-repeat center center/cover;
            color: white;
        }

        .section2, .how-it-works-section {
            background-color: #f8f9fa;
            color: #333;
        }

        .registration-section { 
            background-color: #0e3863;
            color: rgb(0, 0, 0);
        }

        .content-wrapper {
            max-width: 800px;
            text-align: center;
            padding: 20px;
        }

        h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        p {
            font-family: 'Roboto', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .my-button {
            padding: 12px 24px;
            font-size: 1rem;
            color: white;
            background-color: #007BFF;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .my-button:hover {
            background-color: #0056b3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .scroll-down {
            position: absolute;
            bottom: 20px;
            font-size: 2rem;
            cursor: pointer;
            animation: bounce 2s infinite;
            color: white;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-2px); }
        }

        .navigation {
            position: fixed;
            top: 10px;
            right: 10px;
            z-index: 100;
        }

        .navigation button {
            margin: 5px;
        }

        /* Additional registration styling */
        .registration-section {
            min-height: 100vh;
            background-color: #0e3863;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 20px;
        }

        .container {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: bold;
        }

        input[type="text"], input[type="email"], input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
            border-color: #007BFF;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

        .button-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .button-group button {
            width: 100%;
            padding: 12px;
            background-color: #007BFF;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
        }

        .button-group button:hover {
            background-color: #0056b3;
        }

        .button-group button:last-child {
            background-color: #6c757d;
        }

        .button-group button:last-child:hover {
            background-color: #5a6268;
        }

        /* About Us Card Design */
        .about-us-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeIn 1s ease-in-out;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: #007BFF;
            margin-bottom: 20px;
            text-align: center;
        }

        .highlight {
            color: #007BFF;
            font-weight: bold;
        }

        .hidden {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .hidden.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Block Reveal Effect */
        .block-effect {
            opacity: 1;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .block-effect.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .block-reveal {
            --t: calc(var(--td) + var(--d));
            padding: 4px;
            position: relative;
            overflow: hidden;
        }

        .block-reveal::after {
            content: '';
            width: 0%;
            height: 100%;
            padding-bottom: 4px;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--bc);
            animation: revealingIn var(--td) var(--d) forwards, revealingOut var(--td) var(--t) forwards;
        }

        @keyframes revealingIn {
            0% {
                width: 0;
            }
            100% {
                width: 100%;
            }
        }

        @keyframes revealingOut {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(100%);
            }
        }
