:root {
    /* The Palette: Warm Orange & Burnt Sienna - Matching Lion Logo */
    --bg-body: #FFFAF5;
    /* Warm cream with orange undertone */
    --bg-surface: #ffffff;
    --text-main: #1A1512;
    /* Warm charcoal */
    --text-muted: #6B5B4F;
    /* Warm grey-brown */
    --primary: #E65100;
    /* Vibrant Orange */
    --primary-dark: #BF360C;
    /* Deep Burnt Orange */
    --accent: #F57C00;
    /* Bright Amber Orange */
    --accent-light: #FF9800;
    /* Light Orange */

    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 250, 245, 0.6);
    --glass-shadow: 0 4px 30px rgba(230, 81, 0, 0.08);
    --blur: blur(12px);

    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 16px;
}

#dynamic-text {
    transition: opacity 0.4s ease;
    white-space: nowrap;
}


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

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

/* Background Mesh Gradient - Warm Orange Theme */
.mesh-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(at 0% 0%, hsla(30, 100%, 95%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(25, 100%, 93%, 1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(35, 100%, 96%, 1) 0, transparent 50%),
        radial-gradient(at 50% 50%, hsla(20, 80%, 98%, 0.5) 0, transparent 70%);
}

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

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/*.logo-mark {
  width: 35px;
  height: 35px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}*/


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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-hub {
    background: var(--text-main);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-hub:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--text-main);
}

/* Abstract Visuals */
.hero-visual {
    position: relative;
    height: 400px;
    width: 100%;
}

.glass-stack {
    position: absolute;
    width: 220px;
    height: 140px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    gap: 10px;
    font-size: 1.2rem;
}

.glass-stack i {
    color: var(--primary);
    font-size: 1.8rem;
}

.card-1 {
    top: 0;
    right: 0;
    z-index: 1;
    animation: float 6s infinite ease-in-out;
}

.card-2 {
    top: 120px;
    right: 40px;
    z-index: 2;
    animation: float 6s infinite ease-in-out 1s;
}

.card-3 {
    top: 60px;
    left: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.8);
    animation: float 6s infinite ease-in-out 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.alt-bg {
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
}

.bento-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--bg-body);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.micro-list {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.micro-list li {
    font-size: 0.8rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.link-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
}

.link-btn:hover {
    gap: 10px;
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: #FEF3C7;
    color: #D97706;
    width: fit-content;
}

.reach .status-badge {
    background: #D1FAE5;
    color: #059669;
}

/* Mission / Impact */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.glass-panel {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.big-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.brand-col p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.socials-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.socials-container a {
    font-size: 1.1rem;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-body);
    color: var(--text-muted);
    text-decoration: none;
}

.socials-container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Brand-specific colors on hover only */
.socials-container a.github:hover {
    background: #181717;
    color: white;
}

.socials-container a.huggingface:hover {
    background: #FFD21E;
    color: #1C1C1C;
}

.socials-container a.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.socials-container a.facebook:hover {
    background: #1877F2;
    color: white;
}

.socials-container a.youtube:hover {
    background: #FF0000;
    color: white;
}

.socials-container a.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.f-col h4 {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.f-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    margin-bottom: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
}

.f-col a i {
    font-size: 0.9rem;
    color: var(--text-muted);
    width: 18px;
    transition: 0.2s;
}

.f-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.f-col a:hover i {
    color: var(--primary);
}

.footer-btm {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* New Footer Styles */
.footer-new {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo i {
    font-size: 1.8rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .footer-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex: 2;
    flex-wrap: wrap;
}

.footer-links .f-col {
    min-width: 120px;
    flex: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.02);
    margin: 0 -2rem;
    padding: 1.5rem 2rem;
}

.footer-bottom-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-right a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.2s;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}

.footer-bottom-right .divider {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Mobile */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

    /* Hide complex animation on mobile */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.large {
        grid-column: span 1;
    }

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

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

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards ease-out;
}

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

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

.delay-3 {
    animation-delay: 0.6s;
}

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