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

:root {
    --primary-brown: #2C1810;
    --secondary-brown: #4A2C1F;
    --accent-brown: #6D4C3D;
    --golden: #D4AF37;
    --golden-light: #F4E4B0;
    --golden-dark: #B8941F;
    --forest-green: #1B5E20;
    --emerald: #2E7D32;
    --lime-green: #7CB342;
    --mint: #C8E6C9;
    --cream: #FFF9E6;
    --ivory: #FFFFF0;
    --warm-white: #FAF7F2;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--warm-white);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {

    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--golden), var(--primary-brown));
    padding: 1.2rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
    /* This tells the logo to stay at its natural size
     and not grow or shrink weirdly */
    color: var(--golden);
    flex: 0 0 auto;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--golden);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}


/* --- 3. THE RESPONSIVE MEDIA QUERY --- */
/* This code runs ONLY on screens 768px wide or smaller */
@media (max-width: 768px) {

    .navbar {
        /* This is the key fix. 
      We must re-state our flex rules for mobile.
    */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-menu {
        display: flex;
        /* SHOW the hamburger on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: linear-gradient(135deg, rgba(44, 24, 16, 0.98), rgba(74, 44, 31, 0.98));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* --- Hamburger Animation (to "X") --- */
    .hamburger-menu.active .hamburger-bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger-menu.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.navbar.scrolled {
    padding: 0.8rem 6%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    max-height: 40px;
    /* Or whatever fixed size you want */
    width: auto;
    padding-left: 1.5rem;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--golden), var(--emerald));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.navbar .donate-btn {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.98), rgba(74, 44, 31, 0.98));
    color: var(--warm-white);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    font-family: 'Poppins', sans-serif;
}

.navbar .donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
    color: var(--warm-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 50%, var(--forest-green) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 15s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes wave {

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

    50% {
        transform: translateX(-30px) translateY(-10px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--golden-light);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    grid-column: span 2;
    display: flex;
    gap: 1.5rem;
}

.cta-btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--primary-brown);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--golden);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.cta-secondary:hover {
    background: var(--golden);
    color: var(--primary-brown);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s ease;
}

.hero-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.hero-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--emerald), var(--lime-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Problem Section */
.problem {
    padding: 8rem 6%;
    background: linear-gradient(180deg, var(--warm-white), var(--cream));
    position: relative;
}

.problem-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--emerald);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 4rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-description {
    font-size: 1.3rem;
    color: var(--accent-brown);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.problem-content h3 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    font-weight: 700;
}

.problem-content p {
    font-size: 1.2rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--ivory), white);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--golden);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.stat-box h4 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    color: var(--accent-brown);
    margin: 0;
}

.problem-image {
    position: relative;
}

.problem-img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.problem-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.3), transparent);
    z-index: 1;
}

.problem-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.problem-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Solution Sections */
.solution-section {
    padding: 3rem 6%;
    position: relative;
}

.solution-section:nth-child(even) {
    background: var(--warm-white);
}

.solution-section:nth-child(odd) {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.solution-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.solution-content.reverse {
    direction: rtl;
}

.solution-content.reverse>* {
    direction: ltr;
}

.solution-text {
    position: relative;
}

.solution-number {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 10rem;
    font-weight: 800;
    color: var(--golden);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.solution-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.solution-icon-badge i {
    font-size: 2.5rem;
    color: white;
}

.solution-text h3 {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.solution-text p {
    font-size: 1.2rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.solution-features {
    list-style: none;
    margin-top: 2rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.solution-features li i {
    color: var(--emerald);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.solution-features li span {
    padding-top: 3px;
    font-size: 1.1rem;
    color: var(--accent-brown);
}

.solution-image-complex {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.solution-img-main {
    grid-column: 1 / -1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    height: 400px;
}

.solution-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-img-main:hover img {
    transform: scale(1.08);
}

.solution-img-small {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    height: 250px;
}

.solution-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-img-small:hover img {
    transform: scale(1.1);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown), var(--forest-green));
    padding: 8rem 6%;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.05" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,133.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--golden);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-card i {
    font-size: 3rem;
    color: var(--golden-light);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--golden);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
}

/* Mission Section */
.mission {
    padding: 8rem 6%;
    background: var(--warm-white);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.video-card {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.video-caption h4 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.video-caption p {
    color: var(--accent-brown);
    font-size: 1.05rem;
}

/* Founder Section */
.founder {
    padding: 8rem 6%;
    padding-top: 4rem;
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
}

.founder-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.founder-image-section {
    position: relative;
}

.founder-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.3));
    z-index: 1;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.founder-badge i {
    font-size: 3rem;
    color: white;
}

.founder-text h3 {
    font-size: 3.5rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.founder-title {
    color: var(--emerald);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.founder-text p {
    font-size: 1.2rem;
    color: var(--accent-brown);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.founder-quote {
    background: white;
    padding: 2.5rem;
    padding-top: 1rem;
    border-radius: 20px;
    border-left: 5px solid var(--golden);
    margin-top: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.founder-quote i {
    font-size: 3rem;
    color: var(--golden);
    opacity: 0.3;
}

.founder-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-brown);
}

/* LMS Section */
.lms {
    padding: 8rem 6%;
    background: var(--primary-brown);
    color: white;
    position: relative;
    overflow: hidden;
}

.lms::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.lms-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.lms-text h3 {
    font-size: 3rem;
    color: var(--golden-light);
    margin-bottom: 2rem;
    font-weight: 700;
}

.lms-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.lms-features-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column: span 2;
    gap: 2rem;
    margin-top: 3rem;
}

.lms-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.lms-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--golden);
    transform: translateY(-5px);
}

.lms-feature i {
    font-size: 2.5rem;
    color: var(--golden);
    margin-bottom: 1rem;
}

.lms-feature h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
}

.lms-feature p {
    font-size: 1rem;
    margin: 0;
}

.lms-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--primary-brown);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.lms-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.lms-mockup {
    position: relative;
}

.lms-mockup-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.6s ease;
}

.lms-mockup:hover .lms-mockup-image {
    transform: perspective(1000px) rotateY(0deg);
}

.lms-mockup-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Partners Section */
.partners {
    padding: 8rem 6%;
    background: var(--warm-white);
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-carousel {
    position: relative;
    margin-top: 4rem;
    padding: 3rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 200px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-brown);
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

/* Get Involved Section */
.get-involved {
    padding: 8rem 6%;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    position: relative;
}

.get-involved-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.involvement-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.involvement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--golden), var(--emerald));
}

.involvement-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--golden);
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.involvement-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.involvement-card:hover .involvement-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.involvement-icon-circle i {
    font-size: 3rem;
    color: white;
}

.involvement-card h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.involvement-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.involvement-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.involvement-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.involvement-list li i {
    color: var(--golden);
    font-size: 1.2rem;
}

.involvement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--primary-brown);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.involvement-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

/* Footer */
footer {
    background: var(--primary-brown);
    color: white;
    padding: 5rem 6% 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-about {
    flex: 2 1 300px;
}

.footer-reports {
    flex: 2 1 100%;
}

.footer-section h3 {
    color: var(--golden);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--golden);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item i {
    color: var(--golden);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

Scroll Animation .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .navbar {
        padding: 1.2rem 4%;
    }

    section {
        padding: 6rem 4%;
    }

    .hero-content,
    .problem-container,
    .solution-content,
    .stats-container,
    .mission-container,
    .founder-container,
    .lms-container,
    .partners-container,
    .get-involved-container {
        padding: 0 4%;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }

    .solution-content {
        gap: 4rem;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .problem-grid {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 3%;
    }

    .donate-btn,
    .login-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-content,
    .problem-grid,
    .solution-content,
    .founder-content,
    .lms-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .solution-text h3 {
        font-size: 2.5rem;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }

    .solution-image-complex {
        grid-template-columns: 1fr;
    }

    .solution-img-main {
        grid-column: 1;
    }

    .lms-features-grid {
        grid-template-columns: 1fr;
    }

    .involvement-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 3%;
    }



    .donate-btn,
    .login-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 4rem 3%;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-description {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .problem-content h3 {
        font-size: 2rem;
    }

    .problem-content p {
        font-size: 1.1rem;
    }

    .solution-text h3 {
        font-size: 2.2rem;
    }

    .solution-text p {
        font-size: 1.1rem;
    }

    .solution-icon-badge {
        width: 70px;
        height: 70px;
    }

    .solution-icon-badge i {
        font-size: 2rem;
    }

    .solution-img-main,
    .solution-img-small {
        height: 250px;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .founder-text h3 {
        font-size: 2.5rem;
    }

    .founder-title {
        font-size: 1.3rem;
    }

    .founder-text p {
        font-size: 1.1rem;
    }

    .founder-badge {
        width: 100px;
        height: 100px;
    }

    .lms-text h3 {
        font-size: 2.5rem;
    }

    .lms-text p {
        font-size: 1.1rem;
    }

    .involvement-card h3 {
        font-size: 2rem;
    }

    .involvement-card p {
        font-size: 1.05rem;
    }

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

    .hero-img-wrapper,
    .problem-img-wrapper,
    .lms-mockup-image {
        transform: none;
    }

    .hero-img-wrapper:hover,
    .problem-img-wrapper:hover,
    .lms-mockup:hover .lms-mockup-image {
        transform: none;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 1.8rem;
    }


    section {
        padding: 3rem 5%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .problem-content h3 {
        font-size: 1.8rem;
    }

    .problem-content p,
    .solution-text p,
    .founder-text p {
        font-size: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box i {
        font-size: 2rem;
    }

    .stat-box h4 {
        font-size: 1.2rem;
    }

    .solution-number {
        font-size: 7rem;
        top: -30px;
        left: -10px;
    }

    .solution-text h3 {
        font-size: 1.8rem;
    }

    .solution-features li {
        font-size: 1rem;
    }

    .solution-img-main {
        height: 200px;
    }

    .solution-img-small {
        height: 180px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

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

    .founder-image {
        aspect-ratio: 1;
    }

    .founder-text h3 {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1.2rem;
    }

    .founder-quote {
        padding: 1.5rem;
    }

    .founder-quote p {
        font-size: 1.1rem;
    }

    .lms-text h3 {
        font-size: 2rem;
    }

    .lms-feature {
        padding: 1.5rem;
    }

    .lms-feature i {
        font-size: 2rem;
    }

    .lms-feature h4 {
        font-size: 1.2rem;
    }

    .lms-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .partner-logo {
        flex: 0 0 150px;
        height: 100px;
    }

    .involvement-icon-circle {
        width: 80px;
        height: 80px;
    }

    .involvement-icon-circle i {
        font-size: 2.5rem;
    }

    .involvement-card h3 {
        font-size: 1.8rem;
    }

    .involvement-card p {
        font-size: 1rem;
    }

    .involvement-list li {
        font-size: 0.95rem;
    }

    .involvement-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-about p,
    .footer-section a {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 4%;
    }

    .logo {
        font-size: 1.5rem;
    }


    .donate-btn,
    .login-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    section {
        padding: 2.5rem 4%;
    }

    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-img-wrapper {
        height: 300px;
    }

    .img-placeholder {
        height: 300px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .problem-content h3,
    .solution-text h3,
    .founder-text h3,
    .lms-text h3 {
        font-size: 1.6rem;
    }

    .solution-number {
        font-size: 5rem;
    }

    .solution-icon-badge {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .solution-icon-badge i {
        font-size: 1.8rem;
    }

    .solution-img-main {
        height: 180px;
    }

    .solution-img-small {
        height: 150px;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .founder-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }

    .founder-badge i {
        font-size: 2rem;
    }

    .founder-quote {
        padding: 1.2rem;
    }

    .founder-quote i {
        font-size: 2rem;
    }

    .founder-quote p {
        font-size: 1rem;
    }

    .lms-mockup-image img {
        height: 350px;
    }

    .partner-logo {
        flex: 0 0 120px;
        height: 80px;
        padding: 1rem;
    }

    .involvement-card {
        padding: 2.5rem 1.5rem;
    }

    .involvement-icon-circle {
        width: 70px;
        height: 70px;
    }

    .involvement-icon-circle i {
        font-size: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}

/* Footer Reports Grid */
.reports-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.report-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
    transform: translateY(-2px);
}

.report-card i {
    font-size: 1.25rem;
    color: var(--golden-light);
}

.report-card span {
    flex: 1;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
}