
        /* Basic Reset & Styling */
        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            color: #f0f0f0;
            overflow-x: hidden;
            background-color: #000;
        }

        #smooth-content {
            overflow: visible;
            width: 100%;
        }

        #main-wrapper {
            background-color: #000;
            position: relative;
            z-index: 1;
        }

        h1, h2 {
            margin: 0;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        /* --- HEADER AND MENU STYLING --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            padding: 30px; 
            box-sizing: border-box;
            z-index: 100; 
            pointer-events: none;
        }

        .hamburger-menu {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            gap: 6px;
            pointer-events: auto;
        }

        .hamburger-menu .bar {
            width: 30px;
            height: 3px;
            background-color: #fff;
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-menu.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 99;
            display: flex;
            justify-content: center;
            align-items: center;
            clip-path: circle(35px at calc(100% - 50px) 50px);
            pointer-events: none;
            transition: clip-path 0.7s cubic-bezier(0.83, 0, 0.17, 1);
        }
        
        .nav-overlay.open {
            clip-path: circle(150vmax at calc(100% - 55px) 55px);
            pointer-events: all;
        }

        .nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .nav-links li {
            margin: 20px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
        .nav-overlay.open .nav-links > li {
            opacity: 1;
            transform: translateY(0);
        }
        
        .nav-overlay.open .nav-links > li:nth-child(1) { transition-delay: 0.2s; }
        .nav-overlay.open .nav-links > li:nth-child(2) { transition-delay: 0.3s; }
        .nav-overlay.open .nav-links > li:nth-child(3) { transition-delay: 0.4s; }


        .nav-links a, .dropdown-toggle {
            color: #fff;
            text-decoration: none;
            font-size: 2rem;
            font-weight: 700;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .dropdown-toggle::after {
            content: ' ▼';
            font-size: 0.7em;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover, .dropdown-toggle:hover {
            color: #3498db;
        }
        
        .dropdown-menu {
            list-style: none;
            padding: 0;
            margin-top: 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }
        
        .dropdown-menu li {
            margin: 10px 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .dropdown-menu a {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .dropdown.open .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        
        .dropdown.open .dropdown-menu {
            max-height: 500px;
        }
        
        .dropdown.open .dropdown-menu li {
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown.open .dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
        .dropdown.open .dropdown-menu li:nth-child(2) { transition-delay: 0.2s; }
        .dropdown.open .dropdown-menu li:nth-child(3) { transition-delay: 0.3s; }
		
		 /* --- HOME SECTION (GOONIES-STYLE INTRO) --- */
        #home {
            height: 100vh;
            overflow: hidden; 
        }

        .home-image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* --- SITE LOGO STYLES --- */
        .site-logo {
            position: absolute;
            top: 30px;
            left: 40px;
            z-index: 50; 
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .site-logo i {
            font-size: 1.8rem;
        }

        .home-bg, .home-fg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .home-bg {
            z-index: 1;
            background-image: url('https://www.usu.edu/moments/img/flight-simulator.webp');
            background-size: inherit;
            background-position: center;
        }

        .home-fg {
            z-index: 3;
            background-image: url('https://www.usu.edu/moments/img/flight-simulator-mask.webp');
            background-size: inherit;
            background-position: center;
        }
        
        .home-title {
			text-align:center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            font-size: clamp(4rem, 15vw, 6rem);
            font-weight: 900;
            white-space: nowrap;
        }




        .home-text-reveal {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 4;
            background-color: rgba(0,0,0,0.7);
            display: grid;
            place-content: center;
            text-align: center;
            opacity: 0;
        }
        
        .home-text-reveal p {
             max-width: 60ch;
             font-size: clamp(1.2rem, 2.5vw, 1.5rem);
             line-height: 1.8;
        }

        .content-center {
            display: grid;
            place-content: center;
            text-align: center;
		}

        .section {
            position: relative;
            min-height: 100dvh;
            width: 100%;
            overflow: hidden;
            background-color: transparent; 
        }

        .section h2 {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
        }
		
        .scroll-down-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .chevron {
            display: block;
            width: 24px;
            height: 24px;
            border-bottom: 3px solid #fff;
            border-right: 3px solid #fff;
            transform: rotate(45deg);
            animation: bounce-arrow 2s infinite;
            will-change: transform, opacity;
        }

        @keyframes bounce-arrow {
            0% {
                opacity: 0;
                transform: rotate(45deg) translate(-10px, -10px);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: rotate(45deg) translate(10px, 10px);
            }
        }
	
		.standard-paragraph {
		font-size: clamp(1.2rem, 2.5vw, 1.5rem);
		line-height: 1.7;
		font-weight: 400;
		}
		
        /* --- Content Section Styling (Combined) --- */
        .content-section {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 10vh 0;
            min-height: 0;
        }

        .video-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0px;
            width: 96vw;
            max-width: 1200px;
        }

        .video-container {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: -30px;
            position: relative;
            z-index: 2;
        }

        /* --- UNIFIED BUTTON STYLING --- */
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            border: 2px solid #fff;
            color: #fff;
            background-color: transparent;
            text-decoration: none;
            border-radius: .25rem;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.4s ease-in-out;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #3498db;
            transform: translateX(-101%);
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
            z-index: -1;
        }
        .cta-button:hover {
            color: #fff;
        }
        .cta-button:hover::before {
            transform: translateX(0);
        }
        .video-links .cta-button {
            background-color: #fff;
            color: #1a1a1a;
        }

        
        /* --- Horizontal Scroll Section --- */
        .horizontal-scroll-section {
            height: 100vh;
            width: 200vw;
            display: flex;
        }
        
        .horizontal-panel {
            width: 100vw;
            height: 100vh;
        }

        .split-view-section {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .split-panel {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .left-panel {
            background-color: #0F2439;;
			
        }
        
        .right-panel-container {
            width: 50%;
            height: 100%;
            position: relative;
        }

        .text-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
        }
        
        .text-panel {
            background-color: #0F2439;
            z-index: 1;
        }

        .split-content {
            max-width: 65ch;
            text-align: left;
            padding: 2rem;
        }
        
        .split-content h2 {
            font-size: clamp(2rem, 5vw, 5rem);
            display: flex;
            flex-direction: column;
        }
        
        .split-content .highlight {
            color: #4494DA;
            display: inline-block;
        }

        .split-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 177.77vh;
            height: 100vh;
            min-width: 100%;
            min-height: 100%;
			pointer-events:none;
            border: none;
        }

        .reveal-image {
            width: 100%;
            height: 100%;
			object-fit: contain;
			opacity: 0.85;
        }


        /* --- Stats Panel Styling --- */
        .stats-panel {
            display: grid;
            place-content: center;
            text-align: center;
            background-color: #0F2439;
			background-image: url('/moments/img/impact-utah-bg-2.webp');
			background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            margin-left: -1px;
        }

        .stats-container {
            display: flex;
            gap: 5vw;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .stat-number-wrapper {
            display: flex;
            justify-content: center;
            align-items: baseline;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
        }

        .stat-number-wrapper span:not(.stat-number) {
            font-size: 0.5em;
            font-weight: 700;
            margin: 0 0.2em;
        }

        .stat-label {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 700;
            margin-top: 0.2em;
        }
		
		/* --- Image Expand Section Styling --- */
        .image-expand-section {
            position: relative; 
            z-index: 2;
            display: grid;
            place-content: center;
            overflow: hidden; 
            background-color: transparent;
            margin-top: -2px;
        }

        .image-expand-container {
            position: relative;
            width: 40vw; 
            height: 40vh; 
            overflow: hidden;
            border-radius: 20px;
            will-change: width, height, border-radius;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 3;
        }

        .flip-image, .expanding-image, .slide-up-image, .wipe-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .flip-image {
            visibility: hidden;
        }
        
        .expanding-image {
            z-index: 1;
        }

        .slide-up-image {
            z-index: 2;
            will-change: transform;
        }
        
        .wipe-image {
            z-index: 10;
        }

        .fly-in-text-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            white-space: nowrap;
            z-index: 5;
            pointer-events: none;
            will-change: opacity, transform;
        }

        .top-line {
            display: flex;
            gap: 2vw;
        }

        .fly-in-text {
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 900;
            will-change: transform, opacity;
        }

        .text-aggies {
            font-size: clamp(2rem, 8vw, 6rem);
            font-weight: 900;
            opacity: 0;
        }

        .final-text-reveal {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 90%;
            max-width: 50ch;
            box-sizing: border-box;
            text-align: center;
            transform: translate(-50%, -50%);
            opacity: 0;
            z-index: 9;
            will-change: opacity;
        }
		
        .wipe-title-aggies {
            position: absolute;
            top: 5rem; 
            right: 9rem;
            z-index: 12;
            color: #fff;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 900;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            opacity: 1;
        }
		
		/* --- PIONEERS SECTION STYLING --- */
        .pioneers-section {
            position: relative; 
            z-index: 2; 
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh; 
            margin-top: -1px; 
            background-color: #D1CBBD;
            padding-bottom: 5vh;
            box-sizing: border-box;
        }
        .pioneers-container {
            display: flex;
            flex-direction: column; 
            align-items: center;
            width: 90%;
            max-width: 1400px;
            gap: 5vh; 
        }
        .pioneers-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 100%;
        }
        .pioneers-title {
            flex-basis: 45%;
        }
        .pioneers-description {
            flex-basis: 45%;
            text-align: right;
            display: flex;
            gap: 1rem;
        }
        .pioneers-title h2 {
            font-size: clamp(3rem, 7vw, 5rem);
            text-shadow: none;
            color: #0F2439;
            text-align: left;
        }
		
        .pioneers-button {
            background-color: transparent; 
            color: #0F2439;
        }

        .pioneers-button::before {
            display: block; 
            background-color: #fff; 
            transform: translateX(0); 
        }

        .pioneers-button:hover::before {
            transform: translateX(101%);
        }

        .pioneers-button:hover {
            color: #000;
            background-color: transparent;
        }
        
        .pioneers-images {
            width: 100%;
            height: 60vh;
            position: relative;
        }
        .floating-image {
            position: absolute;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            object-fit: cover;
        }
        .image-1 {
            width: 25%;
            height: 50%;
            top: 0;
            left: 10%;
            z-index: 2;
        }
        .image-2 {
            width: 35%;
            height: 45%;
            top: 45%;
            left: 0;
            z-index: 4;
        }
        .image-3 {
            width: 30%;
            height: 50%;
            top: 0%;
            right: 5%;
            z-index: 3;
        }
        .image-4 {
            width: 45%;
            height: 40%;
            bottom: 0%;
            right: 10%;
            z-index: 1;
        }

        /* --- FOOTER STYLING --- */
        .site-footer {
            background-color: #0F2439;
            color: #fff;
            padding: 30px 20px;
            width: 100%;
            box-sizing: border-box;
            position: relative;
            z-index: 10;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: row; 
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .footer-logo img {
            width: 180px;
            height: auto;
            opacity: 0.9;
            transition: opacity 0.3s;
			vertical-align: middle;
        }
        .footer-logo img:hover {
            opacity: 1;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* --- Responsive Styles for Mobile --- */
        @media (max-width: 768px) {
			
			.home-bg {
				z-index: 1;
				background-image: url('https://usu.edu/moments/img/flight-simulator-768.webp');
				background-size: cover;
				background-position: center;
			}

			.home-fg {
				z-index: 3;
				background-image: url('https://usu.edu/moments/img/flight-simulator-mask-768.webp');
				background-size: cover;
				background-position: center;
			}
			
            .video-links {
                flex-direction: column;
                align-items: center;
                margin-top: 30px;
                width: 90%;
            }
            .video-links a {
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }
            .content-section {
                padding-top: 5vh;
                padding-bottom: 5vh;
            }
			.wipe-title-aggies{
				position: sticky;
				text-align: center;
			}
			
            .horizontal-scroll-section {
                display: block;
                width: 100vw;
                height: auto;
            }
            .horizontal-panel {
                height: 85vh;
            }
            .split-view-section {
                display: block;
            }
            .split-panel, .right-panel-container {
                width: 100%;
                height: 75vh;
            }
            .left-panel {
                display: none;
            }
            .stats-container {
                flex-direction: column;
                gap: 5vh;
				margin-bottom: 5rem;
            }
			.final-paragraph {
				font-size: 1rem;
			}
			.slide-up-image, .wipe-image{
				width:200%;
			}
			.pioneers-section{
				min-height: 100vh;
			}
            .pioneers-header {
                display: contents;
            }
            .pioneers-title, .pioneers-description {
                flex-basis: auto;
                width: 100%;
                text-align: center;
				z-index:5;
            }
            .pioneers-title {
                order: 1;
				margin-top: 3rem;
            }
            .pioneers-description {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                order: 3; 
                padding-bottom: 2rem;
            }
            .pioneers-images {
                height: 50vh;
                position: relative; 
                bottom: auto;
                width: 100%;
                z-index: 0;
                margin-top: 0;
                order: 2; 
            }
            
            .image-expand-container {
                width: 90vw;
            }

			.pioneers-title h2 {
				text-align: center;
			}
            
			.image-1 {
                width: 90%;
                height: 100%;
                top: 0; 
                left: 5%;
                z-index: 2;
            }
			.image-2, .image-3, .image-4 {
                display: none;
            }
			.pioneers-description .cta-button{
				background-color: rgb(0, 0, 0, 0.5);
				width: 5rem;
			}

            .site-logo {
                top: 20px;
                left: 20px;
                font-size: 1.2rem;
            }
            
            .site-logo img[alt="Utah State University logo"] {
                display: none;
            }

            .site-logo img[alt="UState logo"] {
                border-right: none !important;
                padding-right: 0 !important;
            }
            
            /* Footer Mobile Layout */
            .footer-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .footer-links {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px 40px;
                text-align: center;
                width: 100%;
            }
        }

        /* --- Responsive Styles for Desktop Text Alignment --- */
        @media (min-width: 769px) {
            .final-text-reveal {
                left: auto;
                right: 10vw;
                width: 40%;
                max-width: 45ch;
                transform: translateY(-50%);
                text-align: right;
            }
        }

.img-fluid {
    max-width: 100%;
    height: auto;
}