/* ==========================================
   ALT FOR EDUCATION - BRANDING STYLE SHEET
   ========================================== */

/* 1. Global Reset & Variables */
:root {
    /* Mapped from requested color combination */
    --primary-blue: #ff7a00; /* Orange theme brand color */
    --primary-hover: #e06b00;
    
    /* Neutrals & Supporting colors */
    --dark-gray: #1e2025;
    --white: #ffffff;
    --light-gray: #f7f9fc;
    --border-color: #e3e8f0;
    --text-muted: #626a7a;
    
    /* Premium Orange Variations */
    --orange-soft: #fff5ec;
    --orange-tint: #ffebdb;
    --orange-gradient: linear-gradient(135deg, #ff9b3d 0%, #ff7a00 100%);
    --dark-gradient: var(--white); /* Changed to white */
    
    /* Typography & Shadows */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.025);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 50px rgba(255, 122, 0, 0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-gray);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Utility Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 30px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-white {
    background-color: var(--white);
}

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

.text-white {
    color: var(--white) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.orange-text {
    color: var(--primary-blue) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-justify {
    text-align: justify;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.margin-center {
    margin-left: auto;
    margin-right: auto;
}

.margin-b-20 {
    margin-bottom: 20px;
}

.margin-b-25 {
    margin-bottom: 25px;
}

.margin-b-30 {
    margin-bottom: 30px;
}

.margin-t-10 {
    margin-top: 10px;
}

.margin-t-20 {
    margin-top: 20px;
}

.margin-t-30 {
    margin-top: 30px;
}

.margin-t-40 {
    margin-top: 40px;
}

.gap-15 {
    gap: 15px !important;
}

.footer-text1 {
    color: #ff7a00;
    font-size: 1.45rem;
    font-weight: 500;           
}

.footer-text2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    gap: 0;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--orange-soft);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-2-align {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flex {
    display: flex;
}

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

/* 3. Header & Navigation (User custom styles integrated) */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 20px 24px;
    height: auto;
    gap: 20px; /* Added gap between logo and nav */
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 25px 0; /* Reset padding, alignment handled by flexbox */
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    align-items: center;
    position: relative;
    background-color: var(--white);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    width: 100px; /* Further increased logo image size */
}

.logo-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

.orange-dot {
    background-color: var(--primary-blue);
    box-shadow: 0 0 6px var(--primary-blue);
}

.logo-title {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.60rem; /* Increased font size */
    color: #ff7a00;
    line-height: 1.1;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); /* Emboss effect */
}

.logo-main1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem; /* Increased font size */
    color: #1a2b6d;
    line-height: 1.1;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); /* Emboss effect */
}

.logo-sub {
    font-size: 0.75rem;
    color: #ff7a00;
    font-weight: 500;
    
}

.logo-sub1 {
    font-size: 0.65rem; /* Increased font size */
    color: #1a2b6d;
    font-weight: 500;
}

/* Nav Menu (Exact CSS classes user provided) */
/* The user-provided styles have been applied and adapted below */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-item {
    margin-left: 0; /* Reset margin as spacing is handled by link padding */
}

.nav-link {
    display: block;
    line-height: 1.5;
    padding: 10px 10px;
    background: #1a2b6d;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13.5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: 4px 4px 14px rgba(38, 38, 98, 0.1); /* Adjusted opacity for subtlety */
    white-space: nowrap;
}

.nav-item:first-child .nav-link {
  border-bottom-left-radius: 14px;
}

.nav-item:last-child .nav-link {
  border-bottom-right-radius: 14px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    background: #ff7a00;
    color: var(--white) !important; /* Ensure color stays white on hover */
}

.apply-btn {
    color: var(--white) !important;
}

/* Remove the underline effect from the old design */
.nav-link::after {
    display: none; 
}

/* Navbar active status adjustment */
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}
.nav-link.apply-btn.active {
    background-color: var(--primary-hover);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    align-items: center;
}

/* 4. Page Views SPA Toggles */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 5. Buttons & Elements */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
}

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

.btn-secondary {
    background-color: var(--dark-gray);
    color: var(--white) !important;
}

.btn-secondary:hover {
    background-color: #0d0e11;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
}

.btn-outline:hover {
    background-color: var(--orange-soft);
}

.btn-outline-white {
    background: #1a2b6d;
    border-color: var(--white);
    color: var(--white) !important;
}

.btn-outline-white:hover {
    background-color: #1a2b6d;
}

.btn-primary-color {
    background-color: var(--primary-blue);
    color: var(--white) !important;
}

.btn-primary-color:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Cards */
.card {
    padding: 1rem 1rem 1rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-medium);
}

.card-padded {
    padding: 40px;
}

.padded {
    padding: 30px;
}

.card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bg-orange-soft {
    background-color: var(--orange-soft);
}

.icon-orange {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.border-top-orange {
    border-top: 4px solid var(--primary-blue);
}

.border-left-orange {
    border-left: 4px solid var(--primary-blue);
}

/* 6. Section Specific Styling */
/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 80% 20%, #fffbf7 0%, var(--white) 100%);
    padding: 40px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Video Placeholder Styling */
.video-placeholder {
    width: 100%;
    aspect-ratio: 8 / 9;
    border-radius: 16px;
    background: var(--dark-gradient), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 L90 90 M90 10 L10 90' stroke='rgba(255,122,0,0.05)' stroke-width='2'/%3E%3C/svg%3E");
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 0, 0.15);
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.section-subtitle {
    display: block;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.section-btn-wrapper {
    margin-top: 2rem;
}

/* Feature Cards (Breaking Barriers) */
.feature-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

/* Why ALT Matters */
.why-alt-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.feature-check-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.why-alt-stats-card {
    background: var(--dark-gradient);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.why-alt-stats-card h4 {
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.stat-bubble {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.stat-bubble:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-lbl {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Program Promo Cards */
.program-promo-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
}

.program-promo-card:hover {
    border-top-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.program-promo-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.program-promo-card h4 {
    margin-bottom: 10px;
}

.program-promo-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sponsor Promo Banner */
.sponsor-promo-banner {
    background: var(--white);
    position: relative;
}

.sponsor-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sponsor-promo-banner h2, .sponsor-promo-banner p {
    color: var(--dark-gray);
}

.tagline-text {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Compliance List & Benefits */
.compliance-list, .benefits-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compliance-list li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.compliance-icon {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.benefits-checklist li {
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefits-checklist li i {
    margin-top: 4px;
}

/* About Page Styles */
.inner-hero-section {
    background: var(--dark-gradient);
    color: var(--dark-gray);
    padding: 40px 0;
    text-align: center;
}

.inner-hero-section h1 {
    color: var(--dark-gray);
    font-size: 3rem;
}

.bullet-list-simple {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.bullet-list-simple li {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.bullet-list-simple li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.grid-5-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

.value-card:hover {
    border-bottom-color: var(--primary-blue);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Governance & Tabs */
.tabs-governance {
    display: flex;
    flex-direction: column;
}

.governance-tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.gov-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.gov-tab-btn:hover {
    color: var(--primary-blue);
    background-color: var(--orange-soft);
}

.gov-tab-btn.active {
    color: var(--white);
    background-color: var(--primary-blue);
}

.gov-panel {
    display: none;
}

.gov-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.founder-message-grid {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--orange-soft);
    color: var(--primary-blue);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border: 2px dashed var(--primary-blue);
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark-gray);
    border-left: 3px solid var(--primary-blue);
    padding-left: 20px;
    margin-bottom: 10px;
}

.team-member-card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.team-member-card h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-member-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Our Journey (Milestones Timeline) */
.grid-5-impact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.impact-stat-card {
    padding: 30px 20px;
    border-radius: 10px;
}

.impact-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.impact-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.impact-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.impact-stat-card h5 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--orange-tint);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 4px solid var(--white);
    top: 30px;
    z-index: 5;
    box-shadow: 0 0 0 3px var(--orange-tint);
}

.left .timeline-dot {
    right: -10px;
}

.right .timeline-dot {
    left: -10px;
}

.timeline-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.timeline-date {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--orange-soft);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 10px;
}

.timeline-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Image Gallery Placeholder Grid */
.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    background-color: var(--orange-soft);
    border: 2px dashed rgba(255, 122, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.gallery-item-placeholder:hover {
    background-color: var(--orange-tint);
    transform: scale(1.02);
}

.gallery-icon-wrap {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.gallery-item-placeholder span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Programs Detailed Cards */
.program-detail-card {
    padding: 40px;
}

.program-detail-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.program-sub-list {
    margin-top: 25px;
}

.program-sub-list h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-weight: 700;
}

.program-sub-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-sub-list ul li {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mentor-cat-pill {
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

/* Scholarships View */
.category-card {
    padding: 30px 20px;
    border-radius: 12px;
}

.cat-card-icon {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.category-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Selection process view */
.selection-pipeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pipeline-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num-bubble {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
}

.step-card {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    flex-grow: 1;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.text-left-list {
    margin-top: 10px;
}

.text-left-list span {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Roadmap View */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-phase-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.phase-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: var(--orange-soft);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.phase-header h4 {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.phase-body {
    padding: 24px;
}

.phase-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phase-body ul li {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.phase-body ul li i {
    margin-top: 3px;
}

.ultimate-vision-card {
    padding: 40px;
}

/* Support View Form elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.donation-btn-toggle {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background-color: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

.amount-btn-presets {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.preset-btn {
    flex: 1;
    padding: 10px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.preset-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--orange-soft);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-blue);
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 500;
    user-select: none;
}

#custom-donation-input {
    display: none;
}

.support-method-card {
    padding: 20px;
    border-radius: 8px;
}

.support-method-card h5 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.support-method-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact View Elements */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.social-links-container {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-link-icon:hover {
    color: var(--white);
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Apply View Elements */
.documents-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.documents-checklist li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.apply-cat-card {
    padding: 30px 20px;
}

.apply-icon {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-horizontal-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.flow-node {
    text-align: center;
    flex: 1;
    min-width: 110px;
}

.node-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.flow-node h5 {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.flow-arrow {
    font-size: 1rem;
    color: var(--text-muted);
}

/* 7. Modal Elements */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 32, 37, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close-btn:hover {
    color: var(--dark-gray);
}

/* 8. Global CTA Banner */
.global-cta-banner {
    background: var(--dark-gradient);
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.global-cta-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.global-cta-banner h3 {
    color: var(--dark-gray);
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.global-cta-banner .sub-lead {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* 9. Footer */
.site-footer {
    background-color: #1a2b6d;
    color: var(--white);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-about .logo-icon img {
    width: 100px;
    height: 100px;
    border-radius: 80%;
    object-fit: cover;
    padding: 0;
}

.footer-about .logo-container {
    flex-direction: column;
    gap: 9px;
    padding-bottom: 0;
}

.footer-about .logo-main {
    display: block;
    color: var(--white);
}

.footer-links h5, .footer-contact h5 {
    color: #ff7a00;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    margin-top: 4px;
}

.footer-bottom {
    background-color: #0b0c0e;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.compliance-badges-row {
    display: flex;
    gap: 15px;
}

.compliance-badges-row span {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 10. Responsive Media Queries */
@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.85rem;
    }
    .logo-main {
        font-size: 1.05rem;
    }
    .logo-sub {
        color: #ff7a00;
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .hero-text-content h1 {
        font-size: 2.8rem;
    }
    
    .grid-5-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .grid-5-impact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* User-provided responsive styles for tablet and mobile dropdown */
@media screen and (max-width: 1150px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none; 
        
        padding: 15px; 
        gap: 10px;
    }

    .nav-menu.active { /* Changed from .open to .active to match script.js */
        display: flex;
    }

    .nav-menu .nav-item {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        width: 100%;
        border-radius: 8px !important; 
        box-shadow: none;
        border: none;
        text-align: center;
        padding: 12px 15px;
        white-space: normal;
    }

    .nav-link.active {
        background: var(--primary-hover);
        color: var(--white) !important;
    }

    .apply-btn {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-2, .grid-3, .grid-4, .grid-2-align {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-alt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-container {
        height: auto; /* Allow height to be flexible */
        padding-bottom: 0;
        padding-top: 8px;
        padding-bottom: 8px;
        position: relative;
    }

    .logo-container {
        padding-top: 0;
        gap: 0; /* Removing gap so absolute centering handles text */
        position: absolute;
        left: 24px; /* Aligned to the left with padding */
        transform: translateX(0); /* Reset transform */
        width: max-content;
    }

    /* Responsive Navigation Menu overlay */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: #0b1a4a; /* Matching the darker menu button from the image */
        margin-left: auto; /* Push toggle to the right */
    }
    
    .nav-container {
        margin-top: 0;
        /* The nav-container itself doesn't need to be a flex container here */
        /* The nav-menu is positioned absolutely relative to the header */
    }

    /* Mobile Logo Scaling */
    .logo-icon {
        display: none; /* Hide the icon box on mobile */
    }

    .logo-main, .logo-main1 {
        font-size: 16px; /* Scaled down drastically to fit mobile */
        line-height: 1;
    }

    .logo-sub {
        font-size: 8px; /* Compact tagline */
        margin-top: 2px;
        letter-spacing: 0px;
    }
    
    /* Hamburger Active Animations */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Timeline adjustments */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-dot {
        left: 10px !important;
    }
    
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-message-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-profile {
        margin-bottom: 20px;
    }
    
    .grid-5-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-5-impact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .global-cta-banner h3 {
        font-size: 1.6rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .compliance-badges-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-5-values {
        grid-template-columns: 1fr;
    }
    
    .grid-5-impact {
        grid-template-columns: 1fr;
    }
    
    .hero-text-content h1 {
        font-size: 2.2rem;
    }
    
    .preset-btn, .toggle-btn {
        font-size: 0.75rem;
        padding: 8px 4px;
    }
    
    .donation-btn-toggle, .amount-btn-presets {
        gap: 4px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
}
