/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. GLOBAL STYLES & VARIABLES
   2. NAVBAR & OFFCANVAS
   3. HERO SECTION
   4. ABOUT SECTION
   5. PROGRAMS SECTION
   6. IMPACT SECTION
   7. GALLERY SECTION
   8. CTA SECTION
   9. FOOTER SECTION
   10. RESPONSIVE DESIGN
   11. UTILITIES
   ======================================== */

/* ========================================
   1. GLOBAL STYLES & VARIABLES
   Colors: #632de9, white, black | Font: Manrope
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #632de9;
    --primary-dark: #4a1db8;
    --primary-light: #8a5cf5;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #1a1a2e;
    --gray-light: #4a4a5a;
    --gray-soft: #5a5a6e;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease;
    --navbar-height: 78px;
}

body {
    font-family: 'Manrope', 'Manrope Variable', Arial, sans-serif;
    background: #f9fafc;
    padding-top: 78px;
    overflow-x: hidden;
}

/* ========================================
   2. NAVBAR & OFFCANVAS
   ======================================== */

/* ----- Navbar Fixed Top ----- */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.custom-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----- Logo Area ----- */
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-png {
    height: 80px;
    width: auto;
    max-width: 180px;
}

.brand-text-optional {
    font-weight: 700;
    font-size: 1.35rem;
    background: linear-gradient(135deg, #1e1e2a 0%, var(--primary) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-left: -8px;
}

/* ----- Desktop Navigation ----- */
.desktop-nav-container {
    margin-left: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.desktop-nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 40px;
    transition: var(--transition);
}

.desktop-nav-link:hover {
    color: var(--primary);
    background: rgba(99, 45, 233, 0.08);
    transform: translateY(-1px);
}

.desktop-nav-link.active {
    color: var(--primary);
    background: rgba(99, 45, 233, 0.12);
    font-weight: 700;
}

.desktop-nav-link.btn-contact {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    margin-left: 0.3rem;
    box-shadow: 0 2px 5px rgba(99, 45, 233, 0.2);
}

.desktop-nav-link.btn-contact:hover {
    background: var(--primary-dark);
}

/* ----- Offcanvas Toggler (Hamburger Icon) ----- */
.offcanvas-toggler {
    display: none;
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.offcanvas-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 45, 233, 0.3);
}

.offcanvas-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ----- Offcanvas Component ----- */
.offcanvas {
    background: var(--white);
    width: 300px !important;
    max-width: 85vw !important;
    border-left: none;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offcanvas-logo-img {
    height: 45px;
    width: auto;
}

.offcanvas-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #1e1e2a 0%, var(--primary) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.offcanvas-close-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #2c2c2c;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-close-btn:hover {
    background: rgba(99, 45, 233, 0.1);
    color: var(--primary);
}

.offcanvas-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.offcanvas-nav-item {
    margin-bottom: 0.5rem;
}

.offcanvas-nav-link {
    display: block;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
}

.offcanvas-nav-link:hover {
    background: rgba(99, 45, 233, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.offcanvas-nav-link.active {
    color: var(--primary);
    background: rgba(99, 45, 233, 0.12);
    font-weight: 700;
}

.offcanvas-nav-link.offcanvas-btn-contact {
    background: var(--primary);
    color: white;
    margin-top: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(99, 45, 233, 0.25);
}

.offcanvas-nav-link.offcanvas-btn-contact:hover {
    background: var(--primary-dark);
    transform: translateX(0) translateY(-2px);
}

.offcanvas-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.offcanvas-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.offcanvas-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(99, 45, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.offcanvas-social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.offcanvas-copyright {
    font-size: 0.7rem;
    color: #8a8aa0;
    text-align: center;
    margin: 0;
}

/* ========================================
   3. HERO SECTION
   ======================================== */

.hero-section-new {
    background: linear-gradient(135deg, #fff 0%, #f5f2ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 2rem;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-join, .btn-support {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-slow);
}

.btn-join {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 45, 233, 0.25);
}

.btn-join:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-support {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-support:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Hero Animations */
.hero-content, .hero-image {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   4. ABOUT SECTION
   ======================================== */

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, #faf9fe 100%);
}

.about-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-section-tag {
    display: inline-block;
    background: rgba(99, 45, 233, 0.1);
    color: #632de9;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* About Top Row - Image Left + Content Right */
.about-top-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.about-image-col,
.about-content-col {
    flex: 1;
    min-width: 280px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(99, 45, 233, 0.15);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #632de9;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
   align-items: center;
}

.about-title-highlight {
    color: #632de9;
    position: relative;
    display: inline-block;
}

.about-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(99, 45, 233, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a5a;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Feature List */
.about-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 45, 233, 0.1);
}

.about-feature-item i {
    color: #632de9;
    font-size: 0.9rem;
}

.about-feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c2c2c;
}

/* Mission & Vision Cards */
.about-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-info-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(99, 45, 233, 0.1);
}

.about-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 45, 233, 0.12);
    border-color: rgba(99, 45, 233, 0.25);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #632de9 0%, #8a5cf5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-card-icon i {
    font-size: 2rem;
    color: white;
}

.about-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.about-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a6e;
}

/* ========================================
   5. PROGRAMS SECTION
   ======================================== */

.programs-section {
    padding: 5rem 0;
    background: #ffffff;
}

.programs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.programs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs-tag {
    display: inline-block;
    background: rgba(99, 45, 233, 0.1);
    color: #632de9;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.programs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.programs-divider {
    width: 60px;
    height: 4px;
    background: #632de9;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.programs-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a5a;
    text-align: center;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: var(--transition-slow);
    border: 1px solid rgba(99, 45, 233, 0.08);
    box-shadow: var(--shadow-sm);
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 45, 233, 0.2);
    box-shadow: 0 15px 35px rgba(99, 45, 233, 0.1);
}

.program-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #632de9 0%, #8a5cf5 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-card-icon i {
    font-size: 1.6rem;
    color: white;
}

.program-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.program-card-description {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #5a5a6e;
    margin: 0;
    text-align: justify;
}

/* ========================================
   6. IMPACT SECTION (Timeline Design)
   ======================================== */

.impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf9fe 0%, #ffffff 100%);
}

.impact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-tag {
    display: inline-block;
    background: rgba(99, 45, 233, 0.1);
    color: #632de9;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.impact-divider {
    width: 60px;
    height: 4px;
    background: #632de9;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.impact-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a5a;
    text-align: center;
}

/* Timeline Journey */
.impact-journey {
    margin: 4rem 0;
    position: relative;
}

.impact-journey-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #632de9 0%, rgba(99, 45, 233, 0.2) 100%);
    border-radius: 3px;
}

.impact-journey-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.impact-journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.impact-journey-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    justify-content: center;
}

.impact-journey-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(99, 45, 233, 0.15);
    border: 2px solid #632de9;
    z-index: 2;
    position: relative;
}

.impact-journey-icon i {
    font-size: 1.5rem;
    color: #632de9;
}

.impact-journey-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(99, 45, 233, 0.08);
    transition: var(--transition-slow);
}

.impact-journey-content:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 45, 233, 0.2);
    box-shadow: 0 15px 30px rgba(99, 45, 233, 0.08);
}

.impact-journey-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.impact-journey-title i {
    color: #632de9;
    margin-right: 8px;
    font-size: 1.1rem;
}

.impact-journey-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a6e;
    margin: 0;
}

/* Vision Section */
.impact-vision {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 45, 233, 0.05), rgba(99, 45, 233, 0.02));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.impact-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 45, 233, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.impact-vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #632de9 0%, #8a5cf5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-vision-icon i {
    font-size: 2rem;
    color: white;
}

.impact-vision-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.impact-vision-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a5a;
}

/* Closing Note */
.impact-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #632de9;
    border-radius: 20px;
    color: white;
}

.impact-closing-quote {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.impact-closing-quote i {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.impact-closing-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   7. GALLERY SECTION
   ======================================== */

.gallery-section {
    padding: 5rem 0;
    background: #ffffff;
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-tag {
    display: inline-block;
    background: rgba(99, 45, 233, 0.1);
    color: #632de9;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.gallery-divider {
    width: 60px;
    height: 4px;
    background: #632de9;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a5a;
    text-align: center;
}

/* Gallery Grid - 3 columns */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Overlay Effect */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 45, 233, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    border-radius: 16px;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-overlay-content span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.gallery-lightbox-close:hover {
    color: #632de9;
    transform: scale(1.1);
}

.gallery-lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
}

/* ========================================
   8. CTA SECTION
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #632de9 0%, #4a1db8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-slow);
    cursor: pointer;
    font-family: inherit;
}

.cta-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn-primary {
    background: white;
    color: #632de9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ========================================
   9. FOOTER SECTION
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 0 1.5rem;
    color: #ffffff;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #b89aff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #c4c4d4;
    max-width: 250px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #632de9;
    border-radius: 2px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #c4c4d4;
}

.footer-contact-item i {
    width: 20px;
    color: #632de9;
    font-size: 1rem;
}

.footer-link {
    color: #c4c4d4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #632de9;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-slow);
    font-size: 1.1rem;
}

.footer-social-icon:hover {
    background: #632de9;
    transform: translateY(-3px);
}

.footer-tagline-text {
    font-size: 1rem;
    font-weight: 600;
    color: #b89aff;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #8a8aa0;
    margin: 0;
}

/* ========================================
   10. RESPONSIVE DESIGN
   ======================================== */

/* Desktop Navigation */
@media (min-width: 992px) {
    .offcanvas-toggler {
        display: none;
    }
    .desktop-nav-container {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
}

/* Tablet & Mobile Navigation */
@media (max-width: 991.98px) {
    .offcanvas-toggler {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
    .custom-navbar {
        padding: 0.7rem 1.2rem;
    }
    .logo-png {
        height: 50px;
    }
    .brand-text-optional {
        font-size: 1.1rem;
        margin-left: -4px;
    }
}

/* ========================================
   HERO SECTION MOBILE FIX
   ======================================== */

@media (max-width: 768px) {
    /* Fix hero section padding */
    .hero-section-new {
        padding: 2rem 0 !important;
    }
    
    /* Fix hero headline for mobile */
    .hero-headline {
        font-size: 1.8rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* Fix hero subheadline */
    .hero-subheadline {
        font-size: 0.95rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* Fix hero image height */
    .hero-image {
        height: 250px !important;
        object-fit: cover !important;
    }
    
    /* Fix hero buttons */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
        padding: 0 1rem !important;
    }
    
    .btn-join, .btn-support {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
    
    /* Fix hero content padding */
    .hero-content {
        padding-right: 0 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Fix container padding */
    .hero-section-new .container {
        padding: 0 1rem !important;
    }
    
    /* Fix row margins */
    .hero-section-new .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix columns padding */
    .hero-section-new [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.5rem !important;
    }
    
    .hero-image {
        height: 200px !important;
    }
    
    .hero-subheadline {
        font-size: 0.85rem !important;
    }
    
    .btn-join, .btn-support {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}

/* Tablet fix */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-headline {
        font-size: 2.2rem !important;
    }
    
    .hero-image {
        height: 350px !important;
    }
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    .hero-headline { font-size: 2.5rem; text-align: center; }
    .hero-subheadline { text-align: center; max-width: 100%; }
    .hero-content { text-align: center; padding-right: 0; margin-bottom: 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { height: 400px; }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 1.8rem; }
    .hero-subheadline { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; }
    .btn-join, .btn-support { justify-content: center; width: 100%; }
    .hero-image { height: 300px; }
}

@media (max-width: 576px) {
    .logo-png { height: 40px; }
    .brand-text-optional { font-size: 1rem; }
    .custom-navbar { padding: 0.5rem 1rem; }
    .hero-headline { font-size: 1.5rem; }
}

/* About Responsive */
@media (max-width: 992px) {
    .about-top-row { gap: 2rem; flex-direction: column; }
    .about-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .about-section { padding: 3rem 0; }
    .about-section-container { padding: 0 1.5rem; }
    .about-title { font-size: 1.8rem; }
    .about-description { font-size: 0.95rem; }
    .about-info-card { padding: 1.5rem; }
    .about-card-icon { width: 55px; height: 55px; }
    .about-card-icon i { font-size: 1.5rem; }
    .about-info-card h3 { font-size: 1.3rem; }
    .about-image-badge { bottom: 12px; right: 12px; padding: 0.3rem 0.8rem; font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .about-title { font-size: 1.5rem; }
}

/* Programs Responsive */
@media (max-width: 992px) {
    .programs-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .programs-section { padding: 3rem 0; }
    .programs-container { padding: 0 1.5rem; }
    .programs-title { font-size: 1.8rem; }
    .programs-intro { font-size: 0.95rem; }
    .programs-grid { grid-template-columns: 1fr; }
    .program-card { padding: 1.5rem; }
    .program-card-title { font-size: 1.2rem; }
    .program-card-icon { width: 48px; height: 48px; }
    .program-card-icon i { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .programs-container { padding: 0 1.2rem; }
    .programs-title { font-size: 1.5rem; }
    .programs-intro { font-size: 0.85rem; }
    .program-card { padding: 1.2rem; }
    .program-card-title { font-size: 1.1rem; }
    .program-card-description { font-size: 0.85rem; }
}

/* Impact Timeline Responsive */
@media (max-width: 992px) {
    .impact-journey-line { left: 40px; }
    .impact-journey-item,
    .impact-journey-item:nth-child(even) { flex-direction: row; gap: 1.5rem; }
    .impact-journey-icon-wrapper { width: 60px; }
    .impact-journey-icon { width: 50px; height: 50px; }
    .impact-journey-icon i { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .impact-section { padding: 3rem 0; }
    .impact-container { padding: 0 1.5rem; }
    .impact-title { font-size: 1.8rem; }
    .impact-intro { font-size: 0.95rem; }
    .impact-journey-line { left: 30px; }
    .impact-journey-item,
    .impact-journey-item:nth-child(even) { gap: 1rem; margin-bottom: 2rem; }
    .impact-journey-icon-wrapper { width: 50px; }
    .impact-journey-icon { width: 42px; height: 42px; }
    .impact-journey-icon i { font-size: 1rem; }
    .impact-journey-content { padding: 1rem; }
    .impact-journey-title { font-size: 1.1rem; }
    .impact-journey-description { font-size: 0.85rem; }
    .impact-closing { padding: 1.5rem; }
    .impact-closing-quote { font-size: 1rem; }
    .impact-closing-text { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .impact-title { font-size: 1.5rem; }
    .impact-journey-line { left: 22px; }
    .impact-journey-icon-wrapper { width: 40px; }
    .impact-journey-icon { width: 35px; height: 35px; }
    .impact-journey-title { font-size: 1rem; }
    .impact-journey-description { font-size: 0.8rem; }
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .gallery-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .gallery-section { padding: 3rem 0; }
    .gallery-container { padding: 0 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-title { font-size: 1.8rem; }
    .gallery-intro { font-size: 0.95rem; }
    .gallery-overlay-content i { font-size: 1.5rem; }
    .gallery-overlay-content span { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .gallery-container { padding: 0 1rem; }
    .gallery-title { font-size: 1.5rem; }
    .gallery-intro { font-size: 0.85rem; }
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section { padding: 3rem 0; }
    .cta-container { padding: 0 1.5rem; }
    .cta-title { font-size: 1.8rem; }
    .cta-description { font-size: 0.95rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 280px; justify-content: center; padding: 0.8rem 1.5rem; }
}

@media (max-width: 480px) {
    .cta-section { padding: 2.5rem 0; }
    .cta-title { font-size: 1.5rem; }
    .cta-description { font-size: 0.85rem; }
    .cta-btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
    .cta-divider { width: 60px; }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-tagline { grid-column: span 2; justify-content: center; text-align: center; margin-top: 0.5rem; }
    .footer-tagline-text { font-size: 0.95rem; }
}

@media (max-width: 768px) {
    .footer-section { padding: 2.5rem 0 1rem; }
    .footer-container { padding: 0 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-description { max-width: 100%; margin: 0 auto; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-contact-item { justify-content: center; }
    .footer-social-icons { justify-content: center; }
    .footer-tagline { grid-column: span 1; }
    .footer-tagline-text { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .footer-container { padding: 0 1rem; }
    .footer-logo { font-size: 1.4rem; }
    .footer-description { font-size: 0.85rem; }
    .footer-heading { font-size: 1rem; }
    .footer-tagline-text { font-size: 0.85rem; }
    .footer-copyright { font-size: 0.7rem; }
}

/* ========================================
   11. UTILITIES
   ======================================== */

html {
    scroll-behavior: smooth;
}

*[id] {
    scroll-margin-top: 85px;
}

p, h1, h2, h3, h4, h5, h6, span, a, li, button {
    font-family: 'Manrope', 'Manrope Variable', Arial, sans-serif;
}