:root {
    --color-primary: #0B2545;
    /* Deep Navy */
    --color-secondary: #FF6B35;
    /* Safety Orange */
    --color-accent: #134074;
    /* Lighter Navy */
    --color-bg: #F8F9FA;
    /* Off-white */
    --color-card-bg: #FFFFFF;
    --color-text: #1D1E2C;
    /* Dark text */
    --color-muted: #8D99AE;
    /* Slate Gray */
    --color-border: #E0E0E0;

    --font-heading: 'Play', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.lang-switcher {
    position: fixed;
    right: 20px;
    top: 100px;
    /* Below navbar */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 8px 4px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2000;
    border: 1px solid rgba(11, 37, 69, 0.1);
    transition: var(--transition);
}

.lang-switcher:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(-5px);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 8px 4px;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.lang-btn.active {
    color: white;
    background-color: var(--color-primary);
}

.lang-btn:hover:not(.active) {
    color: var(--color-secondary);
    background: rgba(255, 107, 53, 0.05);
}

.lang-divider {
    display: none;
    /* No divider needed for vertical circles */
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--color-secondary);
}

.logo span {
    color: var(--color-muted);
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar nav a {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.navbar nav a:hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn i {
    margin-left: 0.5rem;
}

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

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background-color: #081d36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.3);
}

.btn-primary-outline {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
}

.btn-primary-outline:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-text {
    color: var(--color-secondary);
    font-weight: 700;
    padding: 0;
    background: none;
}

.btn-text:hover {
    text-decoration: underline;
}

.card-footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.btn-cta {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-cta:hover::after {
    left: 100%;
}

.btn-guide {
    font-size: 0.95rem;
    opacity: 0.8;
}

.btn-guide:hover {
    opacity: 1;
    text-decoration: none;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 37, 69, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    transition: var(--transition);
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: block;
}

.modal-header h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-primary);
}

.modal-desc {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-reassurance {
    background: #f0f7ff;
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.modal-reassurance i {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.modal-reassurance p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-accent);
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.modal-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}


/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-brand-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.main-org-logo {
    max-width: 550px;
    width: 90%;
    height: auto;
    object-fit: contain;
}

/* Abstract Background Shapes for Vector Look */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(11, 37, 69, 0.03);
    border-radius: 50%;
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Side Event Notice */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-event-notice {
    display: flex;
    justify-content: stretch;
    position: relative;
    z-index: 5;
}

.event-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    gap: 1.5rem;
    width: 100%;
    transition: var(--transition);
    text-decoration: none;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.event-date-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.event-date-badge .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    flex-grow: 1;
}

.event-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.event-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.event-action {
    display: flex;
    align-items: center;
}

.btn-event-register {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.event-card:hover .btn-event-register {
    transform: scale(1.1) rotate(-15deg);
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-lg); Optionally add shadow if illustration allows */
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-category {
    font-size: 1.1rem;
    color: var(--color-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.about-headline {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.objective-item h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-left: 1.5rem;
}

.objective-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.objective-item p {
    color: var(--color-muted);
    font-size: 1rem;
    padding-left: 1.5rem;
}

.org-info-box {
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-bg);
}

.org-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.org-text {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.org-motivation {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.org-motivation p {
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* Paths Section */
.paths-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.path-card {
    background: var(--color-card-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 6px solid transparent;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.student-card {
    border-top-color: var(--color-primary);
    /* Use Primary Blue for Students? Or maybe swap. Let's use blue. */
}

.company-card {
    border-top-color: var(--color-secondary);
    /* Use Orange for Companies */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
    color: inherit;
}

.student-card .card-header i {
    color: var(--color-primary);
}

.company-card .card-header i {
    color: var(--color-secondary);
}

.card-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.steps {
    margin-bottom: 2rem;
}

details.step-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

details.step-item[open] {
    background: white;
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.step-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    outline: none;
}

.step-summary::-webkit-details-marker {
    display: none;
}

.step-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-header-left h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text);
}

.dropdown-icon {
    color: var(--color-muted);
    transition: transform 0.3s ease;
}

details.step-item[open] .dropdown-icon {
    transform: rotate(180deg);
}

.step-desc {
    margin-top: 1rem;
    padding-left: 2.5rem;
    /* Align with text */
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-number {
    background-color: #EEE;
    color: var(--color-muted);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.student-card .step-number {
    color: var(--color-primary);
    background: rgba(11, 37, 69, 0.1);
}

.company-card .step-number {
    color: var(--color-secondary);
    background: rgba(255, 107, 53, 0.1);
}


/* Resource Center */
.resources-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.resources-section .section-title,
.resources-section .section-subtitle,
.resources-section h4,
.resources-section p {
    color: white;
}

.section-subtitle {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.resource-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.download-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.download-link:hover {
    background: var(--color-secondary);
    color: white;
}


/* Community Section */
.community-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
    margin: 2rem 0 4rem;
    width: 100%;
    /* Subtle fade on edges for premium feel */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: max-content;
    /* Duration can be adjusted based on item count */
    animation: scroll-marquee 30s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Shift by exactly half the container width so the second set matches the first perfectly */
        transform: translateX(calc(-50% - 1.5rem));
    }
}

.logo-item {
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-note {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}


/* Footer */
footer {
    background-color: #051424;
    color: white;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-message-box {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.footer-message-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 300;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
}

.brand-col .logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.brand-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-link,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-link:hover,
.footer-col a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .brand-col {
        grid-column: span 2;
        margin-bottom: 2rem;
    }

    .brand-col .logo,
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    /* Star hidden */
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar nav.nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        text-align: center;
    }

    .navbar nav.nav-links.active {
        display: block;
        animation: slideDown 0.3s ease-out forwards;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .navbar .container {
        justify-content: space-between;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}