/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

/* Theme Colors */
:root {
    --green: #03bb0c;
    --orange: #ff7a00;
    --orange-light: #ff9933;
    --orange-dark: #cc6200;
    --black: #0a0a0a;
    --dark: #121212;
    --dark-secondary: #1a1a1a;
    --gray: #bfbfbf;
    --gray-light: #e0e0e0;
    --gray-dark: #808080;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Body */
body {
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black);
    border-left: 1px solid rgba(255, 122, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange-light), var(--orange));
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--black);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar:hover {
    background: rgba(5, 5, 5, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: white;
    font-family: Verdana, Geneva, sans-serif;
}

.logo-number {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--orange);
    padding: 0.2rem 0.6rem;
    background: rgba(255, 122, 0, 0.12);
    border: 1.5px solid rgba(255, 122, 0, 0.4);
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-number:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--orange);
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        radial-gradient(
            circle at center,
            rgba(255, 140, 26, 0.25),
            transparent 70%
        ),
        url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    font-size: 30rem;
    font-weight: 900;
    color: rgba(255, 123, 0, 0.04);
    letter-spacing: 15px;
    user-select: none;
    pointer-events: none;
    animation: watermark-float 20s ease-in-out infinite;
}

@keyframes watermark-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(255, 122, 0, 0.2),
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(80px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    animation: hero-fade-in 1.5s ease-out;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-main {
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 6rem;
    letter-spacing: 8px;
    color: var(--orange);
    text-shadow: 0 0 60px rgba(255, 122, 0, 0.5);
    display: inline-block;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%,
    100% {
        text-shadow: 0 0 40px rgba(255, 122, 0, 0.4);
    }
    50% {
        text-shadow: 0 0 80px rgba(255, 122, 0, 0.7);
    }
}

.hero-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero-team {
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 2px;
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: auto;
        min-height: 80vh;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-watermark {
        font-size: 8rem;
        letter-spacing: 5px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }

    .hero-title-main {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-team {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-divider {
        width: 100px;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .hero {
        background-attachment: scroll;
        min-height: 70vh;
        padding-top: 5.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-watermark {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
    }

    .hero-title-main {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-team {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-divider {
        width: 80px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 122, 0, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Countdown Section */
.countdown {
    text-align: center;
    background:
        linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(26, 26, 26, 0.95)),
        radial-gradient(
            ellipse at center,
            rgba(255, 122, 0, 0.03),
            transparent 70%
        );
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.3);
    padding: 4rem 2rem;
    position: relative;
}

.countdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff7a00' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.countdown-container {
    position: relative;
    z-index: 1;
}

.countdown h2 {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-width: 140px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 12px 48px rgba(255, 122, 0, 0.2);
}

.countdown-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.4);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.75rem;
    font-weight: 600;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--orange);
    font-weight: 700;
    opacity: 0.5;
}

/* About Section */
.about {
    background: var(--dark);
    padding: 6rem 0;
}

.about-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 122, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    margin-bottom: 1.5rem;
}

.about-description {
    flex: 1 1 500px;
}

.about-description h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.text-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), transparent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.about-description p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.5),
        rgba(15, 15, 15, 0.5)
    );
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-icon i {
    color: var(--orange);
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    font-weight: 500;
}

.about-photo {
    flex: 1 1 400px;
}

.photo-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 122, 0, 0.2);
    min-height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
    max-height: 500px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.photo-frame:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(255, 122, 0, 0.2),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.photo-frame:hover .photo-overlay {
    opacity: 1;
}

.photo-frame.image-error {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.photo-frame.image-error::after {
    content: "Image Loading...";
    color: var(--gray);
    font-size: 1.2rem;
    position: absolute;
    z-index: 2;
}

/* Stats + Achievements */
.stats-achievements {
    background:
        radial-gradient(
            ellipse at top,
            rgba(255, 122, 0, 0.05),
            transparent 60%
        ),
        var(--dark);
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.3);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.stats-achievements::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(50%);
    }
}

.stats-achievements-container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: stretch;
    padding: 0 2rem;
    max-width: 1400px;
}

/* Stats Column */
.stats-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 320px;
    flex-shrink: 0;
}

.stat-card {
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 122, 0, 0.08),
            transparent 70%
        ),
        linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    text-align: center;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 122, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 122, 0, 0.1),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow:
        0 12px 48px rgba(255, 122, 0, 0.2),
        0 0 0 1px rgba(255, 122, 0, 0.3),
        inset 0 1px 0 rgba(255, 122, 0, 0.2);
}

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

.stat-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 122, 0, 0.25),
        rgba(255, 122, 0, 0.1) 50%,
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.stat-card:hover .stat-bg-glow {
    opacity: 1;
}

.stat-card .number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    display: block;
    text-shadow:
        0 0 30px rgba(255, 122, 0, 0.5),
        0 0 60px rgba(255, 122, 0, 0.3);
    position: relative;
    z-index: 1;
}

.stat-card .label {
    color: #c0c0c0;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 1;
}

/* Achievements Column */
.achievements-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.achievements-column h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
}

.achievements-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--orange),
        rgba(255, 122, 0, 0.3),
        transparent
    );
    border-radius: 2px;
}

.award-list-wrapper {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.6),
        rgba(15, 15, 15, 0.8)
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
    max-height: 550px;
    overflow-y: auto;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 24px rgba(0, 0, 0, 0.4);
    flex: 1;
}

.award-list-wrapper::-webkit-scrollbar {
    width: 10px;
}

.award-list-wrapper::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    margin: 8px 0;
}

.award-list-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), #cc6200);
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 10, 0.5);
}

.award-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9933, var(--orange));
}

.award-list {
    list-style: none;
}

.award-list li {
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.03), transparent);
    border-left: 3px solid rgba(255, 122, 0, 0.3);
    border-radius: 8px;
    color: #ddd;
    line-height: 1.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.award-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.award-list li:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 122, 0, 0.08),
        rgba(255, 122, 0, 0.02)
    );
    border-left-color: var(--orange);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.1);
}

.award-list li:hover::before {
    transform: scaleY(1);
}

.award-list li:last-child {
    margin-bottom: 0;
}

.award-list li strong {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Robot Section */
.robot {
    background: var(--dark);
    padding: 6rem 0;
}

.robot-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.robot-text {
    flex: 1 1 500px;
}

.robot-text h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.robot-text p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.robot-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8),
        rgba(15, 15, 15, 0.8)
    );
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.badge-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-value {
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
}
.badge-value-green {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
}

.robot-image {
    flex: 1 1 400px;
}

.robot-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 122, 0, 0.2);
    min-height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
    max-height: 500px;
    filter: blur(8px);
    transition: filter 1.5s ease;
    position: relative;
    z-index: 1;
}

.robot-frame img.show {
    filter: blur(0);
}

/* Specific rule to unblur the Making a Difference image */
#featured-event .robot-frame .unblurred-image,
.robot-frame .unblurred-image,
.unblurred-image {
    filter: blur(0px) !important;
    -webkit-filter: blur(0px) !important;
    -moz-filter: blur(0px) !important;
    -o-filter: blur(0px) !important;
    -ms-filter: blur(0px) !important;
    transition: none !important;
}

/* Override any show class effects for unblurred images */
#featured-event .robot-frame .unblurred-image.show,
.robot-frame .unblurred-image.show,
.unblurred-image.show {
    filter: blur(0px) !important;
    -webkit-filter: blur(0px) !important;
}

.robot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(255, 122, 0, 0.3),
        transparent 60%
    );
    pointer-events: none;
}

.blur-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.robot-frame img.show ~ .blur-label {
    opacity: 0;
}

.robot-frame.image-error {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.robot-frame.image-error::after {
    content: "Robot Image Loading...";
    color: var(--gray);
    font-size: 1.2rem;
    position: absolute;
    z-index: 2;
}

/* Outreach Section */
.outreach {
    background:
        radial-gradient(
            ellipse at bottom,
            rgba(255, 122, 0, 0.05),
            transparent 60%
        ),
        var(--dark);
    padding: 6rem 0;
    position: relative;
}

.outreach-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.outreach-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.outreach-header h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.outreach-header .text-accent-line {
    margin: 1.5rem auto 2rem;
}

.outreach-header p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.outreach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.outreach-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.outreach-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.outreach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow:
        0 12px 48px rgba(255, 122, 0, 0.2),
        0 0 0 1px rgba(255, 122, 0, 0.3);
}

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

.outreach-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.outreach-card:hover .outreach-icon {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
    transform: scale(1.1);
}

.outreach-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.outreach-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

.outreach-impact {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.6),
        rgba(15, 15, 15, 0.8)
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 122, 0, 0.3);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.outreach-impact h3 {
    color: var(--orange);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.5),
        rgba(15, 15, 15, 0.5)
    );
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
}

.impact-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.impact-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Timeline Section */
.timeline {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-header h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.timeline-header .text-accent-line {
    margin: 1.5rem auto 2rem;
}

.timeline-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange), rgba(255, 122, 0, 0.2));
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -0.65rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--orange);
    border-radius: 50%;
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.3);
    z-index: 1;
}

.timeline-date {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

.timeline-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 8px 32px rgba(255, 122, 0, 0.2);
}

.timeline-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Sponsors Section */
.sponsors {
    background: var(--dark);
    padding: 6rem 0;
}

.sponsors-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sponsors-header h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.sponsors-header .text-accent-line {
    margin: 1.5rem auto 2rem;
}

.sponsors-header p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-items: center;
    max-width: 1200px;
}

.sponsors-grid::after {
    content: "";
    grid-column: 1 / -1;
}

.sponsor-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 180px;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow:
        0 12px 48px rgba(255, 122, 0, 0.2),
        0 0 0 1px rgba(255, 122, 0, 0.3);
}

.sponsor-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.sponsor-card:hover .sponsor-logo {
    opacity: 0.9;
}

.sponsor-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.sponsor-card:hover .sponsor-name {
    color: var(--gray-light);
}

.sponsors-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.6),
        rgba(15, 15, 15, 0.8)
    );
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.sponsors-cta p {
    color: var(--gray-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.5);
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

/* Contact Section */
.contact {
    background:
        linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(26, 26, 26, 0.95)),
        radial-gradient(
            ellipse at center,
            rgba(255, 122, 0, 0.03),
            transparent 70%
        );
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    padding: 6rem 0;
    text-align: center;
}

#outreach-cta {
    margin: 0;
    padding: 6rem 2rem;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.contact-content .sponsors-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.contact-content .cta-button {
    margin: 0 auto;
    display: inline-block;
}

/* CTA Buttons Container */
.cta-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.1) 0%,
        rgba(255, 122, 0, 0.05) 100%
    );
    border: 2px solid rgba(255, 122, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.cta-box:hover::before {
    opacity: 1;
}

.cta-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.2);
}

.cta-box h3 {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
}

.cta-box p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.contact-btn {
    background: linear-gradient(135deg, var(--orange), #ff8c00);
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.paypal-btn {
    background: linear-gradient(135deg, #0070ba, #003087);
    border-color: #0070ba;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.paypal-btn:hover {
    background: linear-gradient(135deg, #005ea6, #002c7a);
    box-shadow: 0 8px 30px rgba(0, 112, 186, 0.4);
}

.paypal-box {
    border-color: rgba(0, 112, 186, 0.3);
}

.paypal-box:hover {
    border-color: rgba(0, 112, 186, 0.6);
    box-shadow: 0 15px 40px rgba(0, 112, 186, 0.2);
}

.paypal-box::before {
    background: linear-gradient(135deg, rgba(0, 112, 186, 0.05), transparent);
}

/* Mobile responsiveness for CTA boxes */
@media (max-width: 768px) {
    .cta-buttons-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.9rem;
    }
}

.contact-content h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-content .text-accent-line {
    margin: 1.5rem auto 2rem;
}

.contact-content p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    flex: 0 1 280px;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 12px 48px rgba(255, 122, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--orange);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* Donation Section - Integrated with contact info */
.donation-section {
    margin-top: 3rem;
}

.donation-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 112, 186, 0.25);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.donation-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 112, 186, 0.6);
    box-shadow: 0 12px 48px rgba(0, 112, 186, 0.2);
}

.donation-icon {
    background: linear-gradient(135deg, #0070ba, #003087);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.donation-content {
    flex: 1;
}

.donation-content h3 {
    color: #0070ba;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.donation-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.paypal-btn {
    background: linear-gradient(135deg, #0070ba, #003087);
    border: 2px solid #0070ba;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.paypal-btn:hover {
    background: linear-gradient(135deg, #005ea6, #002c7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.3);
}

.paypal-btn i {
    font-size: 1rem;
}

/* Mobile responsiveness for donation section */
@media (max-width: 768px) {
    .donation-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .donation-content h3 {
        font-size: 1.2rem;
    }

    .donation-content p {
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0a0a, #000000);
    border-top: 1px solid rgba(255, 122, 0, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.footer-tagline {
    color: var(--gray);
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 122, 0, 0.1);
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-subtitle {
    font-size: 0.85rem !important;
    color: #555 !important;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Simplified Outreach Page Styles */

/* Outreach Hero Custom */
.outreach-hero-custom {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        radial-gradient(
            circle at center,
            rgba(255, 122, 0, 0.25),
            transparent 70%
        ),
        url("images/team_small.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.robots-hero-custom {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        radial-gradient(
            circle at center,
            rgba(255, 122, 0, 0.25),
            transparent 70%
        ),
        url("images/header_robot_page.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .outreach-hero-custom,
    .robots-hero-custom {
        background-attachment: scroll;
    }
}

/* Outreach Impact Stats */
.outreach-impact-stats {
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.3);
}

.outreach-impact-container-new {
    display: block !important;
    max-width: 1200px;
    margin: 0 auto;
}

.outreach-impact-header-centered {
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
}

.outreach-impact-header-centered h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.outreach-impact-header-centered .text-accent-line {
    margin: 1.5rem auto 0;
}

.outreach-impact-photo-top {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.outreach-impact-photo-top .photo-frame {
    min-height: 450px;
}

.outreach-impact-photo-top .photo-frame img {
    min-height: 450px;
    max-height: 550px;
}

.impact-stats-grid-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.outreach-impact-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
}

.outreach-impact-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    border-radius: 2px;
}

.impact-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-stats-column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.outreach-impact-stats .stat-card {
    width: 100%;
    max-width: 420px;
}

/* Outreach Programs Header */
.outreach-programs-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.outreach-programs-header h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.animated-title {
    background: linear-gradient(45deg, var(--orange), #ffaa44, var(--orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.outreach-programs-header p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.enhanced-description {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.8;
}

.glow-effect {
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
    animation: subtle-glow 2s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 122, 0, 0.8);
    }
}

.enhanced-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    width: 150px;
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Outreach Programs Grid */
.programs-showcase {
    margin: 4rem 0;
}

.program-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.1),
        rgba(255, 122, 0, 0.05)
    );
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.outreach-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.enhanced-grid {
    margin-top: 5rem;
}

.outreach-program-card {
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 122, 0, 0.08),
            transparent 70%
        ),
        linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 122, 0, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 122, 0, 0.1);
}

.outreach-program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outreach-program-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 122, 0, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 122, 0, 0.15) 0%,
        rgba(255, 122, 0, 0.05) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.enhanced-card:hover .card-background-effect {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.program-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--orange), #ff8c00);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card {
    border: 2px solid rgba(255, 122, 0, 0.3);
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: var(--orange);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    transform: scale(1.05);
}

.outreach-program-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 122, 0, 0.6);
    box-shadow:
        0 25px 80px rgba(255, 122, 0, 0.4),
        0 0 0 1px rgba(255, 122, 0, 0.5),
        inset 0 1px 0 rgba(255, 122, 0, 0.3);
}

.outreach-program-card:hover::before {
    opacity: 1;
}

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

.program-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.2),
        rgba(255, 122, 0, 0.1)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 122, 0, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.2);
}

.outreach-program-card:hover .program-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 122, 0, 0.5);
    border-color: var(--orange);
}

.enhanced-programs-section {
    position: relative;
    overflow: hidden;
}

.enhanced-programs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 20% 30%,
            rgba(255, 122, 0, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(255, 122, 0, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}

.program-card-icon i {
    font-size: 2.5rem;
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

.outreach-program-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.outreach-program-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Outreach Page Hero */
.outreach-page-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        radial-gradient(
            circle at center,
            rgba(255, 122, 0, 0.2),
            transparent 70%
        ),
        url("images/hero.jpg");
}

/* Outreach Stats Section */
.outreach-stats {
    background: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 122, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.3);
}

.stats-grid-outreach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.3);
}

.stat-box i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Outreach Simple Section */
.outreach-simple-section {
    background: var(--black);
    padding: 6rem 0;
}

.outreach-simple-section.dark {
    background: var(--dark);
}

.outreach-simple-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.outreach-simple-header h2 {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
    font-weight: 800;
}

.outreach-simple-header p {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 2rem;
}

/* Outreach Cards Grid */
.outreach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.outreach-simple-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
}

.outreach-simple-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 122, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 122, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 122, 0, 0.4);
}

.card-icon i {
    font-size: 2rem;
    color: var(--orange);
}

.outreach-simple-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.outreach-simple-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Timeline */
.outreach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-entry {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year-badge {
    flex-shrink: 0;
    background: var(--orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.timeline-content-box {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
}

.timeline-content-box:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.2);
}

.timeline-content-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content-box p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Simple */
.outreach-cta-simple {
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.1),
            rgba(255, 122, 0, 0.05)
        ),
        var(--dark);
    padding: 6rem 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.8),
        rgba(15, 15, 15, 0.9)
    );
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.cta-box h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-box .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
}

.cta-box .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.6);
}

/* Old Outreach Hero (keeping for compatibility but simplifying) */
.outreach-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(18, 18, 18, 0.9)),
        radial-gradient(
            ellipse at 20% 30%,
            rgba(255, 122, 0, 0.15),
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(255, 122, 0, 0.1),
            transparent 50%
        ),
        var(--black);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            2px 2px at 20% 30%,
            rgba(255, 122, 0, 0.3),
            transparent
        ),
        radial-gradient(
            2px 2px at 60% 70%,
            rgba(255, 122, 0, 0.2),
            transparent
        ),
        radial-gradient(
            1px 1px at 50% 50%,
            rgba(255, 122, 0, 0.3),
            transparent
        ),
        radial-gradient(
            1px 1px at 80% 10%,
            rgba(255, 122, 0, 0.2),
            transparent
        ),
        radial-gradient(
            2px 2px at 90% 60%,
            rgba(255, 122, 0, 0.25),
            transparent
        ),
        radial-gradient(1px 1px at 33% 90%, rgba(255, 122, 0, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 50% 50%;
    animation: particlesFloat 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes particlesFloat {
    0%,
    100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(10, 10, 10, 0.3) 100%
    );
}

.outreach-hero .hero-content {
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 122, 0, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 122, 0, 0.4);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 122, 0, 0.5);
    }
}

.hero-badge i {
    font-size: 1.2rem;
}

.outreach-hero .hero-title-main {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 60px rgba(255, 122, 0, 0.4);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mini-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.6);
}

.mini-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Mission Section */
.outreach-mission {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon-large {
    font-size: 5rem;
    color: var(--orange);
    margin-bottom: 2rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.mission-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
}

.mission-lead {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.mission-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.1),
        rgba(255, 122, 0, 0.05)
    );
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.mission-point i {
    color: var(--orange);
    font-size: 1.2rem;
}

.mission-point span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Programs Section */
.outreach-programs {
    background:
        radial-gradient(
            ellipse at top,
            rgba(255, 122, 0, 0.05),
            transparent 60%
        ),
        var(--black);
    padding: 6rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .program-stats-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .outreach-programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enhanced-card {
        margin: 0 1rem;
    }

    .program-features {
        justify-content: center;
    }
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.text-accent-line-center {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 1.5rem auto 2rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.program-card {
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.9),
        rgba(15, 15, 15, 0.95)
    );
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 122, 0, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 122, 0, 0.6);
    box-shadow:
        0 20px 60px rgba(255, 122, 0, 0.3),
        0 0 0 1px rgba(255, 122, 0, 0.4);
}

.program-card.featured {
    background: linear-gradient(
        145deg,
        rgba(255, 122, 0, 0.15),
        rgba(255, 122, 0, 0.05)
    );
    border: 2px solid rgba(255, 122, 0, 0.5);
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 122, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange);
    border: 2px solid rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.program-badge {
    background: var(--orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.program-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.program-features i {
    color: var(--orange);
    font-size: 0.9rem;
}

/* Impact Section Enhanced */
.outreach-impact-section {
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.1),
            rgba(255, 122, 0, 0.05)
        ),
        var(--dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.impact-bg-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 122, 0, 0.1),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 122, 0, 0.08),
            transparent 40%
        );
    animation: impactRotate 30s linear infinite;
}

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

.outreach-impact-section .section-container {
    position: relative;
    z-index: 1;
}

.light-heading {
    color: white !important;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.impact-stats-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 122, 0, 0.1),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 0 25px 70px rgba(255, 122, 0, 0.4);
}

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

.impact-icon-wrapper {
    font-size: 3.5rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.impact-number-large {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.6);
    position: relative;
    z-index: 1;
}

.impact-label-large {
    display: block;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.impact-description {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Timeline Section Enhanced */
.timeline-section {
    background: var(--black);
    padding: 6rem 0;
    position: relative;
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--orange) 10%,
        var(--orange) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item-enhanced {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.timeline-item-enhanced:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    background: var(--black);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.8);
}

.timeline-content-card {
    flex: 1;
    max-width: calc(50% - 60px);
    background: linear-gradient(
        145deg,
        rgba(26, 26, 26, 0.9),
        rgba(15, 15, 15, 0.95)
    );
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content-card::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--orange);
}

.timeline-item-enhanced:nth-child(odd) .timeline-content-card::before {
    right: -23px;
}

.timeline-item-enhanced:nth-child(even) .timeline-content-card::before {
    left: -23px;
}

.timeline-content-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.3);
}

.timeline-year {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.timeline-content-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.timeline-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 122, 0, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-tags .tag i {
    font-size: 0.9rem;
}

/* CTA Section */
.outreach-cta {
    background: var(--dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 30% 50%,
            rgba(255, 122, 0, 0.15),
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 50%,
            rgba(255, 122, 0, 0.1),
            transparent 50%
        );
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

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

.cta-icon-large {
    font-size: 5rem;
    color: var(--orange);
    margin-bottom: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    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.5s ease,
        height 0.5s ease;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border: 2px solid var(--orange);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.3);
}

.cta-button i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-achievements-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-column {
        width: 100%;
        max-width: 500px;
    }

    .achievements-column {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        max-width: 400px;
        width: 100%;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo-number {
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(5, 5, 5, 0.98),
            rgba(15, 15, 15, 0.98)
        );
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 122, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: white;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 122, 0, 0.1);
        color: var(--orange);
    }

    .nav-links a::after {
        display: none;
    }

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .section-container,
    .about-inner,
    .robot-inner {
        padding: 2rem 1rem;
    }

    /* Hero section mobile improvements */
    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-team {
        font-size: 0.9rem;
    }

    /* Mobile typography improvements */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Contact cards mobile stacking */
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    /* Stats section mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Robot section mobile */
    .robot-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .robot-image,
    .robot-text {
        flex: none;
    }

    /* Awards section mobile */
    .award-list-wrapper {
        max-height: none;
        padding: 2rem;
    }

    /* Sponsor logos mobile */
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sponsor-logo {
        padding: 1rem;
    }

    /* Outreach timeline mobile */
    .timeline-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Button improvements */
    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }

    /* Ensure text is readable */
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Improve spacing */
    section {
        padding: 3rem 0;
    }

    .hero-title-main {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-team {
        font-size: 0.9rem;
    }

    .hero-watermark {
        font-size: 15rem;
    }

    .countdown h2 {
        font-size: 2rem;
    }

    #countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem 2rem;
        min-width: 100px;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .about-description h2,
    .robot-text h2,
    .contact-content h2 {
        font-size: 2.5rem;
    }

    .about-description p,
    .robot-text p,
    .contact-content p {
        font-size: 1rem;
    }

    .about-highlights {
        justify-content: center;
    }

    .stats-column {
        min-width: auto;
        width: 100%;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card .number {
        font-size: 2.5rem;
    }

    .achievements-column h3 {
        font-size: 2rem;
        text-align: center;
    }

    .achievements-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .award-list-wrapper {
        padding: 1.5rem;
        max-height: 400px;
    }

    .award-list li {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .outreach-header h2 {
        font-size: 2.5rem;
    }

    .outreach-header p {
        font-size: 1rem;
    }

    .outreach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .outreach-card {
        padding: 2rem;
    }

    .outreach-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .outreach-card h3 {
        font-size: 1.3rem;
    }

    .outreach-impact h3 {
        font-size: 2rem;
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .impact-item {
        padding: 1.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .timeline-header h2 {
        font-size: 2.5rem;
    }

    .timeline-content {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-date {
        font-size: 1.3rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1.3rem;
    }

    .sponsors-header h2 {
        font-size: 2.5rem;
    }

    .sponsors-header p {
        font-size: 1rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .sponsor-card {
        padding: 2rem 1.5rem;
        min-height: 120px;
    }

    .sponsor-logo {
        max-width: 150px;
        max-height: 70px;
    }

    .sponsor-name {
        font-size: 1.1rem;
    }

    .sponsors-cta p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .stat-card .number {
        font-size: 2rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 4rem;
    }

    .sponsor-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .sponsor-logo {
        max-width: 140px;
        max-height: 60px;
    }

    /* Outreach Hero Responsive */
    .outreach-hero .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats-mini {
        gap: 2rem;
    }

    .mini-number {
        font-size: 2rem;
    }

    /* Mission Section Responsive */
    .mission-icon-large {
        font-size: 3.5rem;
    }

    .mission-content h2 {
        font-size: 2.5rem;
    }

    .mission-lead {
        font-size: 1.1rem;
    }

    .mission-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .mission-point {
        justify-content: center;
    }

    /* Programs Grid Responsive */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card {
        padding: 2rem;
    }

    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .program-card h3 {
        font-size: 1.5rem;
    }

    /* Impact Stats Responsive */
    .impact-stats-large {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }

    .impact-number-large {
        font-size: 3.5rem;
    }

    .impact-icon-wrapper {
        font-size: 2.5rem;
    }

    /* Timeline Responsive */
    .timeline-wrapper {
        padding-left: 2rem;
    }

    .timeline-line {
        left: 0;
        transform: none;
    }

    .timeline-item-enhanced {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 3rem;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(-50%);
    }

    .marker-ring {
        width: 30px;
        height: 30px;
    }

    .marker-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-content-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .timeline-content-card::before {
        display: none;
    }

    .timeline-year {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .timeline-content-card h3 {
        font-size: 1.4rem;
    }

    .timeline-tags {
        gap: 0.5rem;
    }

    .timeline-tags .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* CTA Section Responsive */
    .cta-icon-large {
        font-size: 3.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
}

/* Design Page Styles */

/* Design Process Section */
.design-process {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--dark) 0%,
        var(--dark-secondary) 100%
    );
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 122, 0, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
}

.step:hover::before {
    left: 100%;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3);
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

/* CAD Tools Section */
.cad-tools {
    padding: 6rem 0;
    background: var(--black);
}

.cad-image {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    border: 2px solid rgba(255, 122, 0, 0.2);
    position: relative;
}

.cad-image::before {
    content: "\f1b2";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255, 122, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.15);
    border-color: var(--orange);
}

.tool-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.tool-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Methodology Section */
.methodology {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--dark-secondary) 0%,
        var(--dark) 100%
    );
}

.methodology-image {
    background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    border: 2px solid rgba(255, 122, 0, 0.2);
    position: relative;
}

.methodology-image::before {
    content: "\f0e7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255, 122, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.methodology-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 122, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 122, 0, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1rem;
    color: white;
}

.feature-text {
    font-weight: 500;
    color: white;
}

.methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 122, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* CAD Library Section */
.cad-library {
    padding: 6rem 0;
    background: var(--black);
}

.cad-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.category-desc {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cad-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 6px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cad-link:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.cad-link i {
    font-size: 0.9rem;
}

/* Design Team Section */
.design-team {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--dark) 0%,
        var(--dark-secondary) 100%
    );
}

.team-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.role-card {
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 122, 0, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
}

.role-card:hover::before {
    left: 100%;
}

.role-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.role-icon i {
    font-size: 1.8rem;
    color: white;
}

.role-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.role-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* Design Contact Section */
.design-contact {
    padding: 6rem 0;
    background: var(--black);
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.contact-link i {
    font-size: 1rem;
}

/* Navigation active state */
.nav-links a.active {
    color: var(--orange);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive Design for Design Page */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .step {
        padding: 1.5rem 0.75rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .methodology-features {
        gap: 0.75rem;
    }

    .methodology-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cad-categories {
        grid-template-columns: 1fr;
    }

    .team-roles {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Design Page Styles */

/* CAD Placeholder */
.cad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    border-radius: 12px;
    color: var(--orange);
}

.cad-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.cad-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Timeline Links */
.timeline-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 6px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.timeline-link:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    color: white;
    transform: translateX(5px);
}

.timeline-link i {
    font-size: 0.8rem;
}

/* CAD Library Styling */
.cad-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cad-category-card {
    background: linear-gradient(
        135deg,
        var(--dark-secondary) 0%,
        var(--dark) 100%
    );
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cad-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.cad-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 122, 0, 0.25);
    border-color: var(--orange);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.category-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn.primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: 2px solid transparent;
}

.download-btn.secondary {
    background: rgba(255, 122, 0, 0.1);
    color: var(--orange);
    border: 2px solid rgba(255, 122, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-btn.primary:hover {
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.download-btn.secondary:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
    color: white;
}

.download-btn i {
    font-size: 1rem;
}

.download-btn span {
    flex: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.download-btn:hover .btn-glow {
    left: 100%;
}

/* Horizontal Timeline Styling */
.horizontal-timeline {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    background: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 2px solid var(--orange);
    margin-bottom: 1rem;
    z-index: 3;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
    margin-bottom: 1.5rem;
    z-index: 3;
    position: relative;
    border: 4px solid var(--dark);
}

.timeline-dot i {
    font-size: 1.4rem;
    color: white;
}

.timeline-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 200px;
    position: relative;
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 122, 0, 0.2);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
    border-color: var(--orange);
}

.timeline-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* Design Hero Custom Background */
.design-hero-custom {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        radial-gradient(
            circle at center,
            rgba(255, 140, 26, 0.25),
            transparent 70%
        ),
        url("/static/images/2023_robot.JPG");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .design-hero-custom {
        background-attachment: scroll;
    }
}

/* Footer Centering */
.footer-centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-centered .footer-section {
    order: 1;
}

.footer-centered .footer-links {
    order: 2;
}

.footer-centered .footer-bottom {
    order: 3;
}

/* Responsive Design for Design Page */
@media (max-width: 1200px) {
    .timeline-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timeline-step {
        flex: 0 0 calc(33.333% - 1rem);
        margin-bottom: 2rem;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .cad-library-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cad-category-card {
        padding: 2rem;
    }

    .category-header {
        gap: 1rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 1.2rem;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }

    .timeline-step {
        flex: 0 0 calc(50% - 1rem);
    }

    .timeline-card {
        max-width: 160px;
        padding: 1rem;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .timeline-dot i {
        font-size: 1.2rem;
    }
}
