/* Combined CSS from both pages with transition enhancements */
        :root {
            /* Color Variables & Glassmorphism Settings */
            --primary-color: #6893ec;
            --primary-light: #96c7ff;
            --secondary-color: #ce42f5;
            --secondary-light: #f883fc;
            --background-color: #0f0f1a;
            --text-color: #ffffff;
            --accent-color: #ff6b6b;
            --success-color: #4ecdc4;
            
            /* Page 2 variables */
            --primary: #977aff;
            --secondary: #f47aff;
            --dark: #121121;
            --darker: #0a090f;
            --light: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shine: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --primary-glow: rgba(151, 122, 255, 0.3);
            --secondary-glow: rgba(244, 122, 255, 0.25);
            --gradient-bg: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            
            /* Glassmorphism */
            --glass-background: rgba(255, 255, 255, 0.08);
            --glass-blur: 10px;
            --transition-speed: 0.3s;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --border-radius: 12px;
            
            /* Gradients */
            --primary-gradient: linear-gradient(135deg, #6893ec, #c1d3ff);
            --secondary-gradient: linear-gradient(135deg, #ac25d1, #eb9cff);
            --dark-gradient: linear-gradient(135deg, #0f0f1a, #1a1a2e);
            --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            overflow: hidden;
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: all var(--transition-speed) ease;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(21, 29, 46, 0.1) 0%, rgba(25, 20, 43, 0.08) 90%),
                radial-gradient(circle at 80% 80%, rgba(21, 29, 46, 0.1) 0%, rgba(25, 20, 43, 0.08) 90%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 150vh;
            background: radial-gradient(circle at top right, rgba(73, 44, 78, 0.123), transparent 60%),
                        radial-gradient(circle at bottom left, rgba(40, 47, 90, 0.123), transparent 60%);
            z-index: -10;
        }

        /* Page 1 Styles */
        .page-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            opacity: 1;
            transform: translateX(0);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: all;
        }

        .page-1.hide {
            opacity: 0;
            transform: translateY(-20%);
            pointer-events: none;
        }

        .page-1.show {
            opacity: 1;
            transform: translateY(0%);
            pointer-events: none;
        }

        .page-1 main {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-1 .hero {
            max-height: 150vh;
            height: 150vh;
            width: 100%;
            display: flex;
            align-items: center;
            position: absolute;
            text-align: center;
            background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
            background-size: 3em 3em;
            border-bottom: 1px solid var(--glass-border);
            justify-content: center;
        }

        .th-logo {
            width: 50%;
            height: 50%;
            position: relative;
            animation-name: logo-start;
            animation-duration: 2s;
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }

        .th-subtext {
            color: #eeeeee;
            font-weight: 700;
            transform: translate(0, -70px);
            animation-name: subtext-start;
            animation-duration: 2s;
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }

        .click-text {
            color: #888888;
            font-weight: 700;
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);  
            height: 20px;
            width: 300px;
            transition: 1s;
            background: none;
            border: none;
            font-family: "Montserrat";
            cursor: pointer;
            align-self: center;
            align-content: center;
            position: relative;
            font-size: 1rem;
            opacity: 1;
            pointer-events: all;
            animation-name: click-start;
            animation-duration: 2s;
        }

        .click-text:hover {
            transform: translate(0, -30px);
            color: #ffffff;
        }

        .page-1.show .click-text:hover {
            transform: translate(0, -30px);
            color: #ffffff;
        }

        .page-1.show .click-text {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1.2s; 
            pointer-events: all;  
        }

        .page-1.hide .click-text {
            opacity: 0;
            transform: translateX(-20px);
            transition-delay: 0s;
            pointer-events: none;
        }

        .page-2.show .click-text,
        .page-3.show .click-text {
            opacity: 0;
            transform: translateX(-20px);
            transition-delay: 0s;
        }

        /* Page 2 Styles */
        .page-2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            opacity: 0;
            transform: translateX(0%);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .page-2.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .page-2.hide {
            opacity: 0;
            transform: translateY(-20%);
            pointer-events: none;
        }

        .page-2 main {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-2 .hero {
            max-height: 300vh;
            height: 150vh;
            width: 100%;
            text-align: center;
            position: relative;
            background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
            background-size: 3em 3em;
            border-bottom: 1px solid var(--glass-border);
            justify-content: center;
            display: flex;
            align-items: center
        }

        /* Page 3 */

        .page-3 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            opacity: 0;
            transform: translateY(0%);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .page-3.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .page-3.hide {
            opacity: 0;
            transform: translateY(0%);
            pointer-events: none;
        }

        .page-3 main {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-3 .hero {
            max-height: 300vh;
            height: 150vh;
            width: 100%;
            text-align: center;
            position: relative;
            background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
            background-size: 3em 3em;
            border-bottom: 1px solid var(--glass-border);
            justify-content: center;
            display: flex;
            align-items: center
        }

        /* Glassmorphism Components */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            box-shadow: 
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 1px var(--glass-shine);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .glass::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--glass-shine) 0%, transparent 80%);
            opacity: 0;
            transition: opacity 0.5s ease;
            transform: translate(-30%, -30%);
            pointer-events: none;
        }

        .glass:hover::before {
            opacity: 0.1;
        }

        .glass:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.15),
                inset 0 0 2px var(--glass-shine);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        /* Section Styles */
        section {
            position: relative;
        }

        .section-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            z-index: -1;
        }

        .section-title-container {
            display: flex;
            align-items: center;
            margin-bottom: 3.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            justify-content: center;
            width: 100%;
            display: flex;
            position: relative;
            color: var(--text-primary);
            opacity: 0;
            transform: translateY(-50px);
            transition: all 0.8s ease;
        }

        .page-2.show .section-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .page-3.show .section-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .section-title::after {
            content: '';
            display: block;
            position: absolute;
            height: 5px;
            width: 200px;
            background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
            margin-top: 4rem;
        }

        /* Choice Section */
        #choice {
            position: relative;
        }

        .choice-container {
            display: flex; /* Arrange items in a row */
            flex-wrap: wrap; /* Allow items to wrap onto the next row if needed */
            gap: 3rem; /* Optional: space between cards */
        }

        .choice-card {
            width: 400px; /* Fixed width for each card */
            height: 500px; /* Fixed height for each card (adjust this value as needed) */
            padding: 2.5rem;
            display: flex; /* Allow flexbox on the card */
            flex-direction: column; /* Arrange content vertically inside the card */
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: all 0.8s ease;
        }

        .about-choice-card {
            width: 600px; /* Fixed width for each card */
            height:600px; /* Fixed height for each card (adjust this value as needed) */
            padding: 2.5rem;
            display: flex; /* Allow flexbox on the card */
            flex-direction: column; /* Arrange content vertically inside the card */
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: all 0.8s ease;
        }

        .page-2.show .choice-card:nth-child(1) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.8s;
        }

        .page-2.show .choice-card:nth-child(2) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1s;
        }

        .page-3.show .about-choice-card:nth-child(1) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.8s;
        }

        .choice-logo {
            width: 100px;
            height: 100px;
            justify-self: center;
            align-self: center;
            margin-bottom: 1.5rem;
        }

        .choice-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .choice-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .choice-description {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .choice-link {
            margin-top: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2.5rem;
            background: rgba(151, 122, 255, 0.1);
            color: var(--primary);
            border: 1px solid rgba(151, 122, 255, 0.3);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-bg);
            z-index: -1;
            transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
            transform: scaleX(0);
            transform-origin: left;
        }

        .btn:hover {
            color: var(--light);
            border-color: transparent;
            box-shadow: 0 10px 25px rgba(151, 122, 255, 0.3);
        }

        .btn:hover::before {
            transform: scaleX(1);
        }

        .btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        /* Back button */
        .back-btn {
            position: absolute;
            top: 2rem;
            left: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            overflow: hidden;
            padding: 0.8rem 1.5rem;
            background: rgba(151, 122, 255, 0.1);
            color: var(--primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            font-family: "Montserrat";
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateX(-50px);
            z-index: 10;
        }

        .page-2.show .back-btn {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1.2s;
        }

        .page-3.show .back-btn {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1.2s;
        }

        .back-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-bg);
            z-index: -1;
            transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
            transform: scaleX(0);
            transform-origin: left;
        }

        .back-btn:hover::before {
            transform: scaleX(1);
        }

        .back-btn:hover {
            color: var(--light);
            border-color: transparent;
            box-shadow: 0 10px 25px rgba(151, 122, 255, 0.3);
        }

        .back-btn:hover i {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes logo-start {
            from {
                transform: translate(0, -100px);
                opacity: 0%;
            }
            to {
                transform: translate(0, -0px);
                opacity: 100%;
            }
        }

        @keyframes subtext-start {
            from {
                transform: translate(0, -0px);
                opacity: 0%;
            }
            to {
                transform: translate(0, -70px);
                opacity: 100%;
            }
        }

        @keyframes click-start {
            from {
                transform: translate(-20, 0px);
                opacity: 0%;
            }
            to {
                transform: translate(0, 0px);
                opacity: 100%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .th-logo {
                width: 70%;
                height: 70%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .choice-container {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .choice-card {
                padding: 1.5rem;
            }
            
            .choice-name {
                font-size: 1.5rem;
            }
        }