/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --brand: #FF6B35;
    --brand-dark: #E55A28;
    --brand-light: #8BC53F;
    --orange: #FF6B35;
    --orange-light: #F7931E;
    --green: #8BC53F;
    --green-light: #8BC53F;
    --green-dark: #439162;
    --white: #FFFFFF;
    --off-white: #FFFFFF;
    --cream: #FFF4EE;
    --cream-green: #F5F9F0;
    --dark: #1a1a1a;
    --gray: #6B7280;
    --gray-light: #F0F0F0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===========================
   Navigation
   =========================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: transparent;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-swap {
    position: relative;
    width: 280px;
    height: 56px;
    overflow: hidden;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.logo-img.logo-en {
    opacity: 1;
}

.logo-swap.active-telugu .logo-en {
    opacity: 0;
}

.logo-swap.active-telugu .logo-telugu {
    opacity: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    background: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--green-dark);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    list-style: none;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    margin-top: 10px;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--green-dark);
}

.dropdown-menu a::after {
    display: none;
}

.nav-cta-btn {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--radius);
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta-mobile {
    display: none;
}

.nav-links .nav-cta {
    background: var(--brand);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 197, 63, 0.4);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

#navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    background: var(--dark);
    overflow: hidden;
    padding: 90px 0 0;
    box-sizing: border-box;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 25, 20, 0.72) 0%, rgba(30, 25, 20, 0.55) 50%, rgba(30, 25, 20, 0.68) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--green);
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--green-dark);
    top: 40%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 197, 63, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--green);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 8px 30px rgba(0,0,0,0.25);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80px;
    height: 6px;
    background: var(--green);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: none;
}

.hero-college {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: none;
}

.hero-meta {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 400;
}

.hero-meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-cta .btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.countdown {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.countdown-box {
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.countdown-box:hover {
    background: rgba(139, 197, 63, 0.25);
    border-color: var(--green);
    transform: translateY(-3px);
}

.countdown-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.025em;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 500;
}

.attending-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(139, 197, 63, 0.45);
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}

.attending-dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.attending-btn:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 197, 63, 0.55);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--green);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee Ticker */
.marquee-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, #e8551d 50%, var(--orange) 100%);
    overflow: hidden;
    padding: 8px 0;
    white-space: nowrap;
    z-index: 2;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marqueeScroll 25s linear infinite;
    will-change: transform;
}

.marquee-ticker:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.marquee-divider {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--cream-green);
    color: var(--green-dark);
    padding: 6px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-desc {
    font-size: 16px;
    color: var(--gray);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--dark);
}

.about-highlight {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--green-dark) !important;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid var(--green);
}

.about-powered {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.about-powered h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.powered-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;
}

.powered-logo {
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(40%);
    opacity: 0.85;
    flex-shrink: 1;
}

.powered-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .powered-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .powered-logo {
        width: 100%;
        height: auto;
    }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 10px 0 10px 36px;
}

/* Vertical trunk line */
.about-stats::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 52px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--green));
    border-radius: 2px;
    z-index: 0;
}

/* Tree root node */
.tree-root {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -36px;
    margin-bottom: 4px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange), #e85a2c);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.tree-root-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
}

.tree-root-icon svg {
    width: 18px;
    height: 18px;
}

.stat-box {
    position: relative;
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: var(--transition);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

/* Horizontal branch connector */
.stat-box::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--green);
    z-index: 1;
}

/* Junction dot on the trunk */
.stat-box::after {
    content: '';
    position: absolute;
    left: -27px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--green);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(139, 197, 63, 0.2);
    z-index: 2;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--orange);
}

.stat-box .stat-number::after {
    content: '+';
    color: var(--green);
}

.stat-box .stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}

.badge {
    background: var(--cream);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
}

/* ===========================
   Highlights Section
   =========================== */
.highlights {
    padding: 100px 0;
    background: var(--off-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
}

.icon-orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
}

.icon-green {
    background: rgba(139, 197, 63, 0.1);
    color: var(--green-dark);
}

.highlight-card:hover .icon-orange {
    background: var(--orange);
    color: var(--white);
}

.highlight-card:hover .icon-green {
    background: var(--green);
    color: var(--white);
}

.highlight-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.highlight-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===========================
   Awards Section
   =========================== */
.awards {
    padding: 100px 0;
    background: var(--white);
}

.awards-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 60px;
}

.awards-content .section-tag {
    margin-bottom: 16px;
}

.awards-content .section-title {
    margin-bottom: 20px;
}

.awards-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.awards-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.awards-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.awards-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: trophyFloat 4s ease-in-out infinite;
}

.trophy-circle svg {
    width: 100px;
    height: 100px;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===========================
   Who Can Apply Section
   =========================== */
.apply {
    padding: 100px 0;
    background: var(--off-white);
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.apply-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.apply-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.apply-card:hover::before {
    transform: scaleX(1);
}

.apply-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.apply-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-light);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.apply-card:hover .apply-number {
    color: var(--green-dark);
}

.apply-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.apply-card p {
    font-size: 14px;
    color: var(--gray);
}

.apply-card-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.apply-card-btn:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.apply-cta {
    text-align: center;
}

/* ===========================
   AIC-SKU Info Section
   =========================== */
.aic-sku {
    padding: 100px 0;
    background: var(--white);
}

.aic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.aic-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.aic-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.aic-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.aic-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aic-icon svg {
    width: 26px;
    height: 26px;
}

.aic-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.aic-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.aic-list {
    list-style: none;
    padding: 0;
}

.aic-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.aic-list li:last-child {
    border-bottom: none;
}

.aic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 50%;
}

.aic-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 20px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

/* ===========================
   Speakers Section
   =========================== */
.speakers {
    padding: 100px 0;
    background: var(--off-white);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.speaker-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-avatar svg {
    width: 44px;
    height: 44px;
}

.speaker-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.speaker-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===========================
   Program Detail Sections
   =========================== */
.program-detail {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.program-detail:nth-child(even) {
    background: var(--off-white);
}

.program-detail-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.program-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-detail-icon svg {
    width: 30px;
    height: 30px;
}

.program-detail-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.program-detail-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===========================
   Programs Section
   =========================== */
.programs {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    overflow: hidden;
}

.programs-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    counter-reset: program-step;
}

.programs-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), var(--green), var(--orange));
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 0;
}

.program-item {
    position: relative;
    width: 42%;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.programs-timeline.reveal.active .program-item {
    opacity: 1;
    transform: translateY(0);
}

.programs-timeline.reveal.active .program-item:nth-child(1) { transition-delay: 0.1s; }
.programs-timeline.reveal.active .program-item:nth-child(2) { transition-delay: 0.3s; }
.programs-timeline.reveal.active .program-item:nth-child(3) { transition-delay: 0.5s; }

.program-item:nth-child(odd) {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    flex-direction: row-reverse;
    text-align: right;
}

.program-item:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    flex-direction: row;
    text-align: left;
}

.program-item:last-child {
    margin-bottom: 0;
}

/* Connector lines from timeline to cards */
.program-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transform: translateY(-50%);
    z-index: -1;
}

.program-item:nth-child(odd)::before {
    right: -60px;
}

.program-item:nth-child(even)::before {
    left: -60px;
}

/* Timeline dot on the connector */
.program-item::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 4px solid var(--orange);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    z-index: 2;
}

.program-item:nth-child(odd)::after {
    right: -69px;
}

.program-item:nth-child(even)::after {
    left: -69px;
}

.program-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--white), 0 0 0 8px rgba(139, 197, 63, 0.3);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.program-icon.icon-orange {
    background: linear-gradient(135deg, var(--orange), #e85a2c);
}

.program-icon.icon-green {
    background: linear-gradient(135deg, var(--green), #6fa82a);
}

.program-icon::before {
    counter-increment: program-step;
    content: '0' counter(program-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.program-item:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 6px var(--white), 0 0 0 8px var(--orange);
}

.program-icon svg {
    width: 32px;
    height: 32px;
}

.program-content {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.program-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange), var(--green));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.program-item:nth-child(odd) .program-content::before {
    left: auto;
    right: 0;
    transform-origin: top;
}

.program-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.program-content:hover::before {
    transform: scaleY(1);
}

.program-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.program-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===========================
   University Section
   =========================== */
.university {
    padding: 100px 0;
    background: var(--cream);
    color: var(--dark);
}

.university-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.university-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.uni-badge {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(139, 197, 63, 0.3);
    animation: trophyFloat 4s ease-in-out infinite;
}

.uni-badge svg {
    width: 90px;
    height: 90px;
}

.university-content .section-tag {
    background: rgba(139, 197, 63, 0.15);
    color: var(--green-dark);
}

.university-content .section-title {
    color: var(--dark);
    margin-bottom: 20px;
}

.university-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.university-content .btn-outline {
    margin-top: 10px;
    border-color: var(--green);
    color: var(--green-dark);
}

.university-content .btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

/* ===========================
   Register / Contact Section
   =========================== */
.register-contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--green);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--gray-light);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139, 197, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(139, 197, 63, 0.1);
    color: var(--green-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-swap {
    width: 300px;
    height: 60px;
}

.footer-col > p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-objectives {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.footer-objectives li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}

.footer-objectives li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--brand-light);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-org-section {
    margin-bottom: 20px;
}

.footer-org-section h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.footer-org-section p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* ===========================
   Reveal Animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 0;
        border-radius: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        font-size: 18px;
    }

    .nav-cta-btn {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
    }

    .nav-links .nav-cta {
        display: inline-flex;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: var(--off-white);
        border-radius: var(--radius);
        margin-top: 8px;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 200px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .logo-swap {
        width: 220px;
        height: 44px;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .awards-wrapper,
    .aic-grid,
    .university-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .awards-wrapper {
        padding: 40px 24px;
    }

    .about-stats {
        gap: 16px;
        padding-left: 30px;
    }

    .about-stats::before {
        left: 12px;
    }

    .tree-root {
        margin-left: -30px;
        font-size: 13px;
    }

    .stat-box {
        padding: 20px 18px;
    }

    .stat-box::before {
        left: -18px;
        width: 14px;
    }

    .stat-box::after {
        left: -23px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .apply-grid {
        grid-template-columns: 1fr;
    }

    .awards-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-meta {
        gap: 20px;
    }

    .countdown-box {
        width: 72px;
        height: 72px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .program-item {
        width: 100%;
        padding-left: 120px;
        flex-direction: row !important;
        text-align: left !important;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .program-item::before {
        left: 30px;
        right: auto;
        width: 30px;
    }

    .program-item::after {
        left: 20px;
        right: auto;
        width: 16px;
        height: 16px;
    }

    .programs-timeline::before {
        left: 30px;
        transform: none;
    }

    .program-icon {
        position: absolute;
        left: 56px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
    }

    .program-icon svg {
        width: 24px;
        height: 24px;
    }

    .program-icon::before {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: -8px;
        right: -8px;
    }

    .program-content::before {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .highlights-grid,
    .speakers-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo-swap {
        width: 180px;
        height: 36px;
    }

    .footer-logo .logo-swap {
        width: 220px;
        height: 44px;
    }

    .about-stats {
        padding-left: 26px;
    }

    .about-stats::before {
        left: 10px;
    }

    .tree-root {
        margin-left: -26px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .stat-box {
        padding: 18px 16px;
    }

    .stat-box::before {
        left: -16px;
        width: 12px;
    }

    .stat-box::after {
        left: -21px;
        width: 10px;
        height: 10px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .program-item {
        padding-left: 95px;
        gap: 14px;
        margin-bottom: 32px;
    }

    .program-item::before {
        left: 22px;
        width: 24px;
    }

    .program-item::after {
        left: 13px;
        width: 14px;
        height: 14px;
    }

    .programs-timeline::before {
        left: 22px;
    }

    .program-icon {
        width: 42px;
        height: 42px;
        left: 42px;
    }

    .program-icon svg {
        width: 20px;
        height: 20px;
    }

    .program-icon::before {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: -6px;
        right: -6px;
    }

    .program-content {
        padding: 18px;
    }

    .program-content h3 {
        font-size: 18px;
    }
}

/* ===========================
   Sub Page Layout
   =========================== */
.sub-page-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sub-page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 197, 63, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.sub-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.sub-page-hero .section-tag {
    color: var(--green);
    background: rgba(139, 197, 63, 0.15);
    border: 1px solid rgba(139, 197, 63, 0.3);
}

.sub-page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 16px 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.sub-page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.sub-page-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-page-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.sub-page-cta .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.sub-page-section {
    padding: 80px 0;
}

.sub-page-section.alt-bg {
    background: var(--cream);
}

.sub-page-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sub-page-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sub-page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.sub-page-feature {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sub-page-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sub-page-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sub-page-feature-icon svg {
    width: 26px;
    height: 26px;
}

.sub-page-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sub-page-feature p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.sub-page-register {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sub-page-register > p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 28px;
}

.sub-page-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(139, 197, 63, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.sub-page-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* Schedule Timeline */
.schedule-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.schedule-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    width: 50%;
}

.schedule-item:nth-child(odd) {
    margin-right: 50%;
    justify-content: flex-end;
}

.schedule-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-step {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    border: 4px solid var(--white);
    flex-shrink: 0;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.schedule-item:nth-child(odd) .schedule-step {
    right: -26px;
}

.schedule-item:nth-child(even) .schedule-step {
    left: -26px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 4px 16px rgba(139, 197, 63, 0.3);
}

.schedule-item:hover .schedule-step {
    transform: translateY(-50%) scale(1.1);
}

.schedule-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 360px;
}

.schedule-item:nth-child(odd) .schedule-card {
    margin-right: 20px;
    text-align: right;
}

.schedule-item:nth-child(even) .schedule-card {
    margin-left: 20px;
    text-align: left;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.schedule-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.schedule-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.schedule-date {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 197, 63, 0.1));
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* ===========================
   Awards Page
   =========================== */
.awards-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.awards-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 197, 63, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
}

.awards-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.awards-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(22, 33, 62, 0.25) 50%, rgba(15, 52, 96, 0.3) 100%);
    z-index: 1;
}

.awards-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Awards Glimpse Gallery */
.awards-glimpse-section {
    padding: 80px 0;
    background: var(--white);
}

.awards-glimpse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.awards-glimpse-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 2;
    transition: var(--transition);
    cursor: pointer;
}

.awards-glimpse-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.awards-glimpse-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awards-glimpse-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .awards-glimpse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.awards-presented {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFD700;
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.08);
}

.awards-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.awards-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

.awards-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.awards-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.awards-intro p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Awards Categories */
.awards-categories-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.award-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.award-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon svg {
    width: 26px;
    height: 26px;
}

.award-icon-orange {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    color: var(--orange);
}

.award-icon-green {
    background: linear-gradient(135deg, rgba(139, 197, 63, 0.15), rgba(139, 197, 63, 0.05));
    color: var(--green-dark);
}

.award-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.award-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.award-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.award-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--green));
}

.award-apply-btn {
    width: 100%;
}

/* Selection Process */
.selection-process {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.selection-step {
    text-align: center;
    position: relative;
}

.selection-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
    border: 4px solid var(--white);
    position: relative;
    z-index: 2;
}

.selection-step:nth-child(even) .selection-step-number {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 4px 16px rgba(139, 197, 63, 0.25);
}

.selection-step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.selection-step-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Awards Responsive */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .selection-process {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .selection-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .selection-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .awards-hero-cta {
        flex-direction: column;
    }

    .awards-hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .award-card {
        padding: 24px 20px;
    }

    .award-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Logo Slideshow */
.logo-slideshow {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    overflow: hidden;
    padding: 0 50px;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.logo-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border-radius: var(--radius-sm);
    border: 2px dashed #d0d0d0;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
    color: var(--dark);
}

.slideshow-nav:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(139, 197, 63, 0.3);
}

.slideshow-nav svg {
    width: 20px;
    height: 20px;
}

.slideshow-prev {
    left: 0;
}

.slideshow-next {
    right: 0;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slideshow-dot.active {
    background: var(--green);
    width: 24px;
    border-radius: 4px;
}

/* Logo Slideshow Responsive */
@media (max-width: 768px) {
    .slideshow-slide {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .logo-item {
        height: 90px;
    }

    .logo-slideshow {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .slideshow-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-item {
        height: 80px;
    }

    .logo-slideshow {
        padding: 0 36px;
    }

    .slideshow-nav {
        width: 32px;
        height: 32px;
    }

    .slideshow-nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Sub Page Responsive */
@media (max-width: 768px) {
    .sub-page-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sub-page-cta {
        flex-direction: column;
    }

    .sub-page-cta .btn {
        width: 100%;
    }

    .schedule-timeline::before {
        left: 26px;
    }

    .schedule-item,
    .schedule-item:nth-child(odd),
    .schedule-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }

    .schedule-item:nth-child(odd) .schedule-step,
    .schedule-item:nth-child(even) .schedule-step {
        left: 0;
        right: auto;
    }

    .schedule-item:nth-child(odd) .schedule-card,
    .schedule-item:nth-child(even) .schedule-card {
        margin-right: 0;
        margin-left: 72px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .schedule-step {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .schedule-card {
        width: calc(100% - 60px);
        padding: 18px 16px;
    }

    .schedule-card h3 {
        font-size: 16px;
    }

    .schedule-date {
        font-size: 13px;
    }
}

/* ===========================
   Attending Modal
   =========================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--off-white);
    color: var(--dark);
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
}

.modal-field {
    margin-bottom: 18px;
}

.modal-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-field .req {
    color: var(--brand);
}

.modal-field input,
.modal-field select,
.modal-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(139, 197, 63, 0.15);
}

.modal-field textarea {
    resize: vertical;
}

.modal-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 15px;
}

@media (max-width: 480px) {
    .modal-box {
        padding: 28px 20px;
    }

    .modal-title {
        font-size: 22px;
    }
}
