* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #F7931E;
    --light-orange: #FFB883;
    --dark-orange: #E55B2B;
    --accent-blue: #4A90E2;
    --success-green: #27AE60;
    --warning-yellow: #F39C12;
    --error-red: #E74C3C;
    --dark-bg: #1a1a1a;
    --medium-bg: #2d2d2d;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
    --border-light: #e1e8ed;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    overscroll-behavior: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all var(--transition-normal);
}

nav.scrolled {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.logo {
    height: 50px;
    margin-right: 2rem;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.construction-notice {
    color: #303030;
    font-weight: bold;
    font-size: 1.1rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #303030;
    margin: 5px 0;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    z-index: -1;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: all var(--transition-fast);
}

nav ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

nav ul li a:hover::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

nav ul li a:hover {
    color: #fff;
    transform: translateY(-2px);
}

section {
    padding: 7rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#about, #programs, #leadership, #signup {
    padding-top: 8rem;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.grey-section {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
    color: var(--text-primary);
    position: relative;
}

.grey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 144, 226, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
    animation: gradient-shift 8s ease-in-out infinite;
}

.orange-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--primary-orange) 100%);
    background-size: 200% 200%;
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: gradient-shift 8s ease infinite;
}

.orange-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: gradient-shift 12s ease-in-out infinite;
}

h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    margin-bottom: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--primary-orange) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease, gradient-shift-text 3s ease infinite;
}

@keyframes gradient-shift-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.orange-section h1 {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.95) 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease, gradient-shift-text 3s ease infinite;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    margin-bottom: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.2s both;
}

h3 {
    font-size: clamp(1.4rem, 2.75vw, 2rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.3s both;
}

p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 400;
}

.orange-section p {
    color: rgba(255,255,255,0.9);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.program-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--primary-orange));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    animation: gradient-shift 3s ease infinite;
}

.program-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover::after {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.program-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(247, 147, 30, 0.03));
}

.program-card:hover .program-image {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.2));
}

.program-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.program-features li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
}

.program-card:hover .program-features li {
    color: var(--text-primary);
}

.leadership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.leadership-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.leadership-card:hover::before {
    opacity: 1;
}

.leadership-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.leadership-avatar {
    position: relative;
    margin-bottom: 2rem;
    z-index: 2;
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}

/* Different gradient colors for each avatar */
.avatar-1 .avatar-initials {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 
        0 12px 32px rgba(255, 107, 53, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.avatar-2 .avatar-initials {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    box-shadow: 
        0 12px 32px rgba(74, 144, 226, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.avatar-3 .avatar-initials {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    box-shadow: 
        0 12px 32px rgba(39, 174, 96, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.avatar-4 .avatar-initials {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
    box-shadow: 
        0 12px 32px rgba(155, 89, 182, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.avatar-5 .avatar-initials {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    box-shadow: 
        0 12px 32px rgba(231, 76, 60, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.leadership-card:hover .avatar-1 .avatar-initials {
    box-shadow: 
        0 16px 40px rgba(255, 107, 53, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.leadership-card:hover .avatar-2 .avatar-initials {
    box-shadow: 
        0 16px 40px rgba(74, 144, 226, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.leadership-card:hover .avatar-3 .avatar-initials {
    box-shadow: 
        0 16px 40px rgba(39, 174, 96, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.leadership-card:hover .avatar-4 .avatar-initials {
    box-shadow: 
        0 16px 40px rgba(155, 89, 182, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.leadership-card:hover .avatar-5 .avatar-initials {
    box-shadow: 
        0 16px 40px rgba(231, 76, 60, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.avatar-initials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.leadership-card:hover .avatar-initials {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 16px 40px rgba(255, 107, 53, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.leadership-card:hover .avatar-initials::before {
    opacity: 1;
}

.card-front h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    font-weight: 700;
    letter-spacing: -0.01em;
    z-index: 2;
    position: relative;
}

.card-front p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.card-back {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: #fff;
    transform: rotateY(180deg);
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.card-back::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-back h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.card-back p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.leadership-card:hover .card-front {
    transform: rotateY(180deg);
}

.leadership-card:hover .card-back {
    transform: rotateY(0);
}

.branch-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.branch-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-link {
    display: inline-block;
    margin-top: 1rem;
    color: #f8ac54;
    text-decoration: none;
    font-weight: bold;
}

.branch-link:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: #fff;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    margin: 0.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--primary-orange) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: #fff;
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

footer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--primary-orange) 100%);
    background-size: 200% 200%;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem 2.5rem;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    animation: gradient-shift 8s ease infinite;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-shift 12s ease-in-out infinite;
}

footer p {
    margin: 0.5rem 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

footer p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Bloom-style Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 60% 20%, rgba(248,172,84,0.15) 0%, rgba(26,26,26,0) 60%),
                radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.08) 0%, rgba(26,26,26,0) 60%);
    mix-blend-mode: screen;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1) translate(0, 0); 
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.1) translate(20px, -20px); 
    }
}

.coding-terminal {
    position: absolute;
    background: #0c0c0c;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(0, 255, 0, 0.05);
    width: 350px;
    min-height: 200px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', Monaco, 'Consolas', monospace;
    font-size: 12px;
    animation: float 8s ease-in-out infinite;
    opacity: 0.95;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.terminal-1 {
    top: 8%;
    left: 3%;
    animation-delay: 0s;
}

.terminal-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
    width: 380px;
}

.terminal-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 4s;
    width: 360px;
}

.terminal-4 {
    top: 55%;
    right: 12%;
    animation-delay: 6s;
    width: 340px;
}

.terminal-header {
    background: #1a1a1a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control-dot.red {
    background: #ff5f57;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #28ca42;
}

.terminal-title {
    color: #ccc;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.terminal-content {
    padding: 12px;
    color: #00ff00;
    line-height: 1.4;
    min-height: 150px;
    overflow-y: auto;
    max-height: 180px;
    background: #0c0c0c;
}

.terminal-session {
    font-family: inherit;
}

.terminal-line {
    margin: 2px 0;
    display: flex;
    align-items: flex-start;
}

.terminal-prompt {
    color: #4CAF50;
    margin-right: 8px;
    flex-shrink: 0;
}

.terminal-command {
    color: #00ff00;
    font-weight: 500;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', Monaco, 'Consolas', monospace;
}

/* Real Terminal Styling */
.terminal-output {
    background: #0c0c0c;
    color: #00ff00;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', Monaco, 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    margin: 0;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.5);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.terminal-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 0, 0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 0, 0.03) 100%);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 1;
}

.terminal-output * {
    position: relative;
    z-index: 2;
}

.code-input {
    background: #0c0c0c !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', Monaco, 'Consolas', monospace !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    padding: 20px !important;
    border-radius: 8px !important;
    resize: none !important;
    outline: none !important;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 0, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.5) !important;
    min-height: 300px !important;
}

.code-input:focus {
    border-color: #00ff00 !important;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 0, 0.1),
        0 0 10px rgba(0, 255, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.code-input::placeholder {
    color: #666 !important;
    font-style: italic;
}

.terminal-error {
    color: #ff6b6b;
}

.terminal-success {
    color: #4CAF50;
}

.terminal-comment {
    color: #888;
    font-style: italic;
}

/* Terminal Scrollbar Styling */
.terminal-output::-webkit-scrollbar,
.terminal-content::-webkit-scrollbar {
    width: 8px;
}

.terminal-output::-webkit-scrollbar-track,
.terminal-content::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.terminal-output::-webkit-scrollbar-thumb,
.terminal-content::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
    opacity: 0.7;
}

.terminal-output::-webkit-scrollbar-thumb:hover,
.terminal-content::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
    opacity: 1;
}

.syntax-keyword {
    color: #ff79c6;
}

.syntax-string {
    color: #f1fa8c;
}

.syntax-number {
    color: #bd93f9;
}

.syntax-function {
    color: #50fa7b;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
    25% { 
        transform: translateY(-8px) translateX(3px) rotate(0.3deg);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    }
    50% { 
        transform: translateY(-12px) translateX(0px) rotate(0deg);
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6);
    }
    75% { 
        transform: translateY(-8px) translateX(-3px) rotate(-0.3deg);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    background: linear-gradient(135deg, #f8ac54 0%, #ac6617 100%);
    color: #1a1a1a;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 6px 20px rgba(248, 172, 84, 0.35);
    letter-spacing: -0.01em;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8ac54 0%, #ac6617 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(248, 172, 84, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(248, 172, 84, 0.5)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f8ac54;
    margin-bottom: 2.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-button {
    background: linear-gradient(135deg, #f8ac54 0%, #ac6617 100%);
    color: #1a1a1a;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(248, 172, 84, 0.35), 0 0 0 0 rgba(248, 172, 84, 0.4);
    animation: cta-bounce 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(248, 172, 84, 0.45), 0 0 0 8px rgba(248, 172, 84, 0.1);
    background: linear-gradient(135deg, #ffc085 0%, #f8ac54 100%);
}

@keyframes cta-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .coding-terminal {
        width: 250px !important;
        font-size: 11px;
    }
    
    .terminal-1, .terminal-2, .terminal-3, .terminal-4 {
        opacity: 0.7;
    }
}

@media (max-width: 1200px) {
    .leadership-cards {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
        transition: transform var(--transition-normal);
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    nav {
        padding: 1rem;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(248, 172, 84, 0.98), rgba(172, 102, 23, 0.98));
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
        z-index: 1000;
        gap: 2rem;
    }

    nav ul.active {
        transform: translateX(0);
        opacity: 1;
    }

    nav ul li {
        text-align: center;
        transform: translateY(30px);
        opacity: 0;
        transition: all var(--transition-normal);
    }

    nav ul.active li {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul li:nth-child(1) { transition-delay: 0.1s; }
    nav ul li:nth-child(2) { transition-delay: 0.2s; }
    nav ul li:nth-child(3) { transition-delay: 0.3s; }
    nav ul li:nth-child(4) { transition-delay: 0.4s; }
    nav ul li:nth-child(5) { transition-delay: 0.5s; }

    nav ul li a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        display: block;
        min-width: 200px;
        border: 2px solid transparent;
    }

    nav ul li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .leadership-cards {
        grid-template-columns: minmax(300px, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .leadership-card {
        height: 360px;
    }

    .leadership-avatar {
        width: 140px;
        height: 140px;
    }

    .avatar-initials {
        font-size: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .content {
        padding: 0 1rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.mission-statement {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    margin: 3.5rem auto;
    max-width: 850px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

.mission-statement h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.mission-statement p {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#signup {
    padding-top: 6rem;
}

#signup .program-features {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

#signup .program-features li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

#signup .contact-buttons {
    margin-top: 3rem;
} 

/* Global scrolling improvements for all platforms */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Ensure scrolling works on all platforms */
    -webkit-overflow-scrolling: touch;
    /* Fix iOS Safari scrolling issues */
    position: relative;
    /* Prevent iOS scroll bounce at top/bottom */
    overscroll-behavior: none;
}

/* Platform-specific scrolling fixes */
/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    body {
        /* iOS Safari specific fixes */
        -webkit-overflow-scrolling: touch;
        /* Prevent zoom on double tap */
        touch-action: manipulation;
    }
}

/* Mobile scrolling improvements */
@media (max-width: 768px) {
    body {
        /* Enhanced mobile scrolling */
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        /* Prevent horizontal scrolling on mobile */
        overflow-x: hidden;
        /* Ensure content can scroll vertically */
        overflow-y: auto;
    }
    
    /* Fix mobile viewport issues */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Improve touch scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Touch device improvements */
@media (pointer: coarse) {
    /* For touch devices */
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: auto;
    }
    
    /* Improve scrollable areas on touch devices */
    .content-area,
    .terminal-content,
    .sidebar-section {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    body {
        /* Android Chrome scrolling improvements */
        scroll-behavior: smooth;
        overflow-y: auto;
    }
}

/* Custom Modal/Popup System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--medium-gray);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(30px);
    transition: all var(--transition-normal);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--medium-gray);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 24px;
    color: var(--white);
    line-height: 1.6;
}

.modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    min-width: 80px;
}

.modal-btn.primary {
    background: var(--primary-orange);
    color: var(--white);
}

.modal-btn.primary:hover {
    background: var(--dark-orange);
    transform: translateY(-1px);
}

.modal-btn.secondary {
    background: var(--medium-gray);
    color: var(--white);
}

.modal-btn.secondary:hover {
    background: var(--dark-gray);
    transform: translateY(-1px);
}

.modal-btn.danger {
    background: var(--error-red);
    color: var(--white);
}

.modal-btn.danger:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.modal-btn.success {
    background: var(--success-green);
    color: var(--white);
}

.modal-btn.success:hover {
    background: #229954;
    transform: translateY(-1px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #1a1a1a;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-orange);
}

.toast.success::before {
    background: var(--success-green);
}

.toast.error::before {
    background: var(--error-red);
}

.toast.warning::before {
    background: var(--warning-yellow);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast-icon {
    font-size: 20px;
    margin-top: 2px;
}

.toast.success .toast-icon {
    color: var(--success-green);
}

.toast.error .toast-icon {
    color: var(--error-red);
}

.toast.warning .toast-icon {
    color: var(--warning-yellow);
}

.toast.info .toast-icon {
    color: var(--accent-blue);
}

.toast-text {
    flex: 1;
}

.toast-title {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.toast-message {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    margin-left: 8px;
}

.toast-close:hover {
    background: var(--medium-gray);
    color: var(--white);
}

/* Progress Modal for PDF Generation */
.progress-modal .modal-body {
    text-align: center;
    padding: 40px 24px;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border: 4px solid var(--medium-gray);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.progress-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Modal Improvements */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-header {
        padding: 16px 20px 12px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-body {
        padding: 16px 20px;
    }
    
    .modal-footer {
        padding: 12px 20px 16px;
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Success button style for PDF export */
.action-btn.success {
    background: var(--success-green);
    color: var(--white);
}

.action-btn.success:hover {
    background: #229954;
    transform: translateY(-1px);
} 

/* Developer Watermark */
.developer-watermark {
    position: fixed;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    user-select: none;
    cursor: default;
}

.developer-watermark.show {
    opacity: 0.4;
    transform: translateY(0);
}

.developer-watermark.show:hover {
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.6);
}

.developer-watermark i {
    font-size: 10px;
    color: #4CAF50;
    opacity: 0.6;
}

/* Responsive watermark */
@media (max-width: 768px) {
    .developer-watermark {
        font-size: 8px;
        padding: 3px 6px;
        bottom: 6px;
        left: 6px;
    }
    
    .developer-watermark.show {
        opacity: 0.3;
    }
    
    .developer-watermark i {
        font-size: 9px;
    }
}