* {
    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: 2.2;
}

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);
}

.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;
}


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

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

    .navbar {
        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);
    }
}

.logo-container {
    display: inline-flex;
    align-items: center;
    /* This forces the image to sit perfectly in the center */
    vertical-align: middle;
    text-decoration: none;
}

.logo img {
    display: block;
    max-height: 40px;
    /* Or whatever fixed size you want */
    width: auto;

}

.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;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--golden), var(--emerald));
    transition: width 0.4s ease;
}

.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: 70vh;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 50%, var(--forest-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.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>');
    animation: wave 15s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes wave {

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

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

.hero-content {
    max-width: 1000px;
    padding: 4rem 6%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

.hero p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
section {
    padding: 4rem 6%;
}

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

.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;
}

/* Vision Mission Section */
.vision-mission {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
    position: relative;
    overflow: hidden;
}

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

.vision-mission::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
    border-radius: 50%;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vm-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--golden), var(--emerald));
}

.vm-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.vm-card:hover::after {
    right: -30px;
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.vm-icon i {
    font-size: 3.5rem;
    color: white;
}


.vm-icon i {
    font-size: 3.5rem;
    color: white;
}

.vm-card h3 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.5rem;
    line-height: 1.9;
    color: var(--accent-brown);
}

/* Founder Message Section */
.founder-message {
    background: var(--warm-white);
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
}

.founder-image-section {
    padding: 4rem;
    position: relative;
}

.founder-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.founder-img::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-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.founder-text {
    padding: 4rem;
    color: white;
}

.founder-name {
    font-size: 3rem;
    color: var(--golden-light);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.founder-title-text {
    font-size: 1.4rem;
    color: var(--mint);
    margin-bottom: 2rem;
    font-weight: 600;
}

.founder-message-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.founder-message-text p {
    margin-bottom: 1.5rem;
}

.founder-signature {
    margin-top: 2rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--golden);
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(135deg, var(--ivory), white);
}

.what-content {
    max-width: 1200px;
    margin: 0 auto;
}

.what-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--accent-brown);
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.what-intro strong {
    color: var(--primary-brown);
    font-weight: 700;
}

.what-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.what-img-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.what-img-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

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

.what-img-card:hover img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.7), transparent);
    padding: 2.5rem 2rem 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.what-img-card:hover .img-overlay {
    padding-bottom: 2.5rem;
}

.img-overlay h4 {
    color: var(--golden-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.img-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Pyramid Section */
.pyramid-section {
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.pyramid-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.pyramid-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.pyramid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.pyramid-level {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.pyramid-level::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.pyramid-level:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pyramid-level:hover::after {
    right: -10px;
    opacity: 1;
}

.pyramid-level:nth-child(1) {
    width: 95%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), white);
}

.pyramid-level:nth-child(2) {
    width: 85%;
    background: linear-gradient(135deg, rgba(200, 230, 201, 0.3), white);
}

.pyramid-level:nth-child(3) {
    width: 75%;
    background: linear-gradient(135deg, rgba(255, 249, 230, 0.5), white);
}

.pyramid-level:nth-child(4) {
    width: 65%;
    background: linear-gradient(135deg, rgba(255, 255, 240, 0.4), white);
}

.pyramid-level-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pyramid-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--emerald), var(--lime-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.4s ease;
}

.pyramid-level:hover .pyramid-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.5);
}

.pyramid-icon i {
    font-size: 2rem;
    color: white;
}

.pyramid-text {
    flex: 1;
}

.pyramid-text h4 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pyramid-text p {
    font-size: 1.1rem;
    color: var(--accent-brown);
    line-height: 1.7;
}

/* How We Do Section */
.how-we-do {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.how-card {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--golden), var(--emerald));
    border-radius: 25px 0 0 25px;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.how-icon {
    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);
}

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

.how-card h3 {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.how-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-brown);
}

/* Core Values Section */
.core-values {
    background: var(--warm-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, var(--ivory), white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 2rem;
    border: 3px solid transparent;
}

.value-header {
    display: grid;
    /* This creates two columns:
    - 1fr: The number takes up the available space
    - auto: The icon only takes up as much space as it needs
  */
    grid-template-columns: 1fr auto;
    align-items: center;
    /* Vertically center the number and icon */
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--emerald), var(--lime-green));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--golden);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--golden-dark);
    opacity: 1;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--emerald), var(--lime-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--accent-brown);
}

.value-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

/* Journey Section */
.journey {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    position: relative;
    overflow: hidden;
}

.journey::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;
}

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

.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--golden), var(--emerald));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    grid-row: 1;
}

.timeline-year {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 4rem;
}

/* 
.timeline-item:nth-child(even) .timeline-year {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 4rem;
} */

.year-badge {
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 2;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--golden);
    border: 5px solid var(--primary-brown);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--golden);
    transform: translateY(-10px);
}

.timeline-content h3 {
    font-size: 2rem;
    color: var(--golden-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-content li i {
    color: var(--golden);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

/* 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);
}



/* 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);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .what-img-card {
        height: 300px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
    }

    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
    }

    .timeline-year {
        justify-content: flex-start !important;
        padding: 0 !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 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 4%;
    }

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

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .vm-card,
    .founder-text {
        padding: 2.5rem;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .what-images-grid {
        grid-template-columns: 1fr;
    }

    .what-img-card {
        height: 280px;
    }

    .pyramid-level {
        width: 100% !important;
        padding: 2rem;
    }

    .pyramid-level-content {
        flex-direction: column;
        text-align: center;
    }

    .how-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .year-badge {
        font-size: 1.8rem;
        padding: 1rem 2rem;
    }

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

}

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


    .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;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .vm-icon,
    .how-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }

    .vm-icon i,
    .how-icon i {
        font-size: 2rem;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 20px;
        height: 20px;
    }

    .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 */
.footer-reports {
    flex: 2;
    min-width: 300px;
}

.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;
    }
}