/* ===================================
   MODERN NEPAL LOCAL CONNECT STYLES
   =================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-cta {
    display: flex;
    justify-content: center; /* centers the button horizontally */
    align-items: center;     /* centers vertically if needed */
    margin-top: 20px;
}

.partners-link {
    display: inline-block;
    padding: 12px 24px;
    color: whitesmoke;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.partners-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

:root {
    /* Primary Colors - Inspired by Nepal */
    --primary: #E74C3C;
    --primary-dark: #C0392B;
    --primary-light: #FF6B6B;
    
    /* Secondary Colors */
    --secondary: #2C3E50;
    --secondary-light: #34495E;
    
    /* Accent Colors */
    --accent: #F39C12;
    --accent-light: #F1C40F;
    
    /* Neutral Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #1A1A2E;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-light: #BDC3C7;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.85));
    --gradient-card: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    --gradient-accent: linear-gradient(135deg, #F39C12, #E74C3C);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-bottom:2px ;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    z-index: 1001;
}

.nav-logo {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.mobile-nav-actions {
    display: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    gap: var(--space-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-glow {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5);
    transform: translateY(-4px);
}

.btn-glow:hover svg {
    transform: translateX(4px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0px;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s ease-in-out infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    animation: fadeInDown 1s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title-line {
    display: block;
    color: white;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #FFFFFF, #F1C40F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: white;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   EXPERIENCES SECTION
   =================================== */

.experiences {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-label {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.experience-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.experience-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 0.4rem var(--space-sm);
    background: var(--gradient-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.experience-content {
    padding: var(--space-md);
}

.experience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.experience-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.experience-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.experience-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.experience-link:hover {
    gap: var(--space-sm);
}

.experience-link:hover svg {
    transform: translateX(4px);
}

/* ===================================
   MISSION SECTION
   =================================== */

.mission {
    padding: var(--space-xl) 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.mission-text {
    max-width: 600px;
}

.mission-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.value-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.value-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.value-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.mission-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.visual-card {
    padding: var(--space-lg);
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.visual-stat {
    color: white;
}

.visual-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.visual-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.footer-tagline {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Mobile First Adjustments */
@media (max-width: 480px) {
    :root {
        --space-xs: 0.375rem;
        --space-sm: 0.75rem;
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .nav-container {
        height: 70px;
        padding: 0 var(--space-sm);
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .hero {
        min-height: 100svh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: var(--space-md) var(--space-sm);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem var(--space-sm);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .stat-item {
        flex: 1 1 45%;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .experience-image {
        height: 200px;
    }
    
    .experience-content {
        padding: var(--space-sm);
    }
    
    .experience-title {
        font-size: 1.25rem;
    }
    
    .mission {
        padding: var(--space-lg) 0;
    }
    
    .mission-content {
        gap: var(--space-md);
    }
    
    .mission-description {
        font-size: 1rem;
    }
    
    .mission-values {
        gap: var(--space-sm);
    }
    
    .value-item {
        flex-direction: column;
        padding: var(--space-sm);
        text-align: center;
    }
    
    .value-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto var(--space-xs);
    }
    
    .value-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .value-text h3 {
        font-size: 1.1rem;
    }
    
    .value-text p {
        font-size: 0.9rem;
    }
    
    .mission-visual {
        grid-template-columns: 1fr;
    }
    
    .visual-card {
        padding: var(--space-md);
    }
    
    .visual-number {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: var(--space-lg) 0 var(--space-sm);
    }
    
    .footer-main {
        gap: var(--space-md);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--bg-secondary);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-md) 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-md);
        padding-top: var(--space-md);
        border-top: 1px solid var(--bg-secondary);
    }
    
    .nav-actions{
        display:flex
    }
    
    
    .scroll-indicator {
        display: none;
    }
    
    .experiences {
        padding: var(--space-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-md);
    }
    
    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.05rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: var(--space-md);
    }
    
    .stat-divider {
        display: block;
        width: 1px;
        height: 40px;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .mission-content {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1.5fr 2fr;
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Landscape Mode Fix for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-stats {
        display: none;
    }
    
    .nav-menu.active {
        height: 100vh;
        overflow-y: auto;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}