@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #0a0e17;
    --bg-secondary: #121824;
    --bg-tertiary: #1b2336;
    --accent-color: #ffd700; /* Gold */
    --accent-hover: #e6c200;
    --primary-blue: #3b82f6; /* Modern Blue */
    --primary-blue-glow: rgba(59, 130, 246, 0.15);
    --emerald-green: #10b981;
    --card-bg: rgba(27, 35, 54, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(59, 130, 246, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --grad-accent: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --grad-glow: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    
    /* Layout */
    --container-max: 1200px;
    --nav-height: 115px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Background Glow Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: 20%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
}

.glow-bg-right {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: 10%;
    right: -10%;
    pointer-events: none;
    z-index: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--grad-accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Bar Styles */
.top-bar {
    background-color: #0b0f19;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #e6c200;
}

.top-bar-left .separator {
    color: rgba(255, 255, 255, 0.15);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: #94a3b8;
    transition: color 0.3s, transform 0.3s;
}

.top-bar-right a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

/* Navbar Main (White Theme) */
.navbar-main {
    background-color: #ffffff;
    height: 75px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

header.scrolled .top-bar {
    margin-top: -40px;
    opacity: 0;
    pointer-events: none;
}

header.scrolled .navbar-main {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #334155; /* Slate-700 for high readability on white */
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Auth button modifications for white navbar */
.nav-auth .btn-secondary {
    color: #334155;
    border-color: rgba(0,0,0,0.15);
}

.nav-auth .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0,0,0,0.3);
}

/* Mobile Toggle Hamburger (Dark lines on white) */
.mobile-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 5px 0;
    transition: 0.4s;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                var(--bg-primary);
    padding-top: var(--nav-height);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    position: relative;
}

.about-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.about-feature-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    z-index: 1;
    position: relative;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SKYBEX Acronym Section */
.acronym-container {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.acronym-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.acronym-title span {
    color: var(--accent-color);
}

.acronym-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.acronym-item {
    text-align: center;
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 2rem 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.acronym-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.acronym-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.acronym-meaning {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Challenges & Solutions */
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.challenge-box, .solution-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.challenge-box {
    border-left: 4px solid #ef4444;
}

.solution-box {
    border-left: 4px solid var(--emerald-green);
    background: linear-gradient(135deg, rgba(27,35,54,0.4) 0%, rgba(16,185,129,0.05) 100%);
}

.box-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.challenge-box .box-title { color: #f87171; }
.solution-box .box-title { color: #34d399; }

.challenges-list, .solutions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.list-item i {
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.challenge-box .list-item i { color: #ef4444; }
.solution-box .list-item i { color: var(--emerald-green); }

/* Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.module-num {
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(59, 130, 246, 0.2);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.module-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Learning Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.program-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.program-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(180deg, rgba(27,35,54,0.6) 0%, rgba(255,215,0,0.03) 100%);
    transform: scale(1.03);
}

.program-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.program-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.program-card.featured .program-duration {
    color: var(--accent-color);
}

.program-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

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

.program-features li i {
    color: var(--emerald-green);
}

/* Academy Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Why Financial Education Matters */
.matters-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.matters-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.matters-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.matters-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.consequences-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
}

.consequences-title {
    font-family: var(--font-heading);
    color: #ef4444;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consequences-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consequences-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.consequences-list li i {
    color: #ef4444;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #070a10;
    padding: 4rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-box p {
    line-height: 1.8;
}

/* Footer */
footer {
    background: #05070b;
    padding: 5rem 0 2rem 0;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .matters-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .navbar {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text-secondary);
    }

    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--accent-color);
    }
    
    .nav-menu .nav-link::after {
        background: var(--accent-color);
    }
    
    .nav-auth {
        display: none; /* In mobile menu, we'll embed these or keep them simplified */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid, .challenges-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .acronym-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .acronym-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations helper classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Connecting Dots Background Canvas */
#connecting-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Restructured layout styles */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper, .about-image-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-img-element, .about-img-element {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.matters-img-element {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content, .hero-desc {
        text-align: center !important;
    }
    .hero-ctas {
        justify-content: center !important;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-features-grid {
        grid-template-columns: 1fr !important;
    }
}

