
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a52460;
    --primary-dark: #340619;
    --secondary: #FF69B4;
    --secondary-dark: #DB7093;
    --accent: #9370DB;
    --light: #9b103f;
    --dark: #4B0082;
    --white: #FFFFFF;
    --gray: #696969;
}

html { 
    overflow-y: scroll; 
}  

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.welcome-text {
    font-weight: 600;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Social Media Icons */

.social-media {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    width: 100%;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-subtitle {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -5px;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    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-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
     margin-right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    opacity: 0.7;
}

.nav-menu a.active {
    opacity: 1;
    color: var(--primary);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Donate Button */
.donate-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.donate-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    
}

/* Button Animations */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow: 
            0 0 4px var(--secondary),
            0 0 11px var(--secondary),
            0 0 19px var(--secondary),
            0 0 40px var(--secondary),
            0 0 80px var(--secondary),
            0 0 90px var(--secondary),
            0 0 100px var(--secondary),
            0 0 150px var(--secondary);
    }
    20%, 24%, 55% {
        box-shadow: none;
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(219, 112, 147, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
}
.nav-menu .donate-btn {
    animation: flicker 2s infinite alternate, pulse-glow 2s ease-in-out infinite;
    position: relative;
}

/* Enhanced hover effects */
.nav-menu .donate-btn:hover {
    animation: none; /* Stop animation on hover */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 0 20px var(--secondary),
        0 0 30px var(--secondary),
        0 0 40px var(--secondary),
        0 10px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary);
}


@keyframes border-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
/* Mobile optimization - reduce effects on small screens */
@media (max-width: 768px) {
    .nav-menu .donate-btn,
    .hero-buttons .btn-primary {
        animation: pulse-glow 2s ease-in-out infinite;
    }
    
    @keyframes flicker-mobile {
        0%, 100% {
            box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        }
        50% {
            box-shadow: 0 0 5px var(--secondary), 0 0 10px var(--secondary);
        }
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    font-size: 0.85rem;
    opacity: 1;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(78, 9, 71, 0.7), rgba(59, 91, 100, 0.8)), 
                url('Assets/Climateaction.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-statement {
    text-align: center;
    display: block;
}

.statement-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-statement {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
}

.main-statement span {
    display: block;
    margin-bottom: 0.5rem;
}

.line-1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

.line-2, .line-3 {
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 700;

}

.line-4, .line-5 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    margin-top: 1rem;
}

.logo-tagline {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin: 2rem auto 0 auto;
    font-family: 'Great Vibes', cursive;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: slideFromLeft 3s ease-in-out forwards;
    opacity: 0;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

/* ===== CAROUSEL ===== */
.carousel-section {
    padding: 4rem 0;
    background: var(--white);
}

.carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(165, 36, 96, 0.95));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.read-more-btn {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
}

.read-more-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== FACTSHEET ===== */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fact-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.fact-item:hover {
    transform: translateY(-5px);
}

.fact-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.fact-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* ===== CAUSES ===== */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cause-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cause-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cause-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* ===== GET INVOLVED ===== */
.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.option p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.option .btn-primary,
.option .btn-secondary {
    margin-top: auto;
    align-self: center;
}

/* ===== CONTACT ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(165, 36, 96, 0.1);
}



/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .main-statement {
        font-size: 2.2rem;
    }
    
    .line-1 {
        font-size: 2rem;
    }
    
    .line-2, .line-3 {
        font-size: 1.8rem;
    }
    
    .carousel-slide img {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Navigation */
     .hamburger {
        display: flex;
    }
    .navbar {
        padding: 1rem;
        height: 70px;
    }
    
    .nav-menu {
       position: fixed;
        top: 80px; /* Adjust based on your navbar height */
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    /* Enhanced mobile styles */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
        height: 65px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hamburger {
        width: 25px;
        height: 18px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

    /* Hero Section */
    .hero {
        margin-top: 110px;
        min-height: 80vh;
    }
    
    .main-statement {
        font-size: 1.8rem;
    }
    
    .line-1 {
        font-size: 1.6rem;
    }
    
    .line-2, .line-3 {
        font-size: 1.5rem;
    }
    
    .line-4, .line-5 {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 1.3rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 200px;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Carousel */
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.4rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Grid Layouts */
    .causes-grid,
    .involved-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cause-card,
    .option {
        padding: 2rem 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-statement {
        font-size: 1.5rem;
    }
    
    .line-1 {
        font-size: 1.3rem;
    }
    
    .line-2, .line-3 {
        font-size: 1.2rem;
    }
    
    .line-4, .line-5 {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-item {
        padding: 1.5rem 1rem;
    }
    
    .fact-number {
        font-size: 2rem;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .read-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}










/* ===== CONTACT SECTION STYLES ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}


/* Map Section */
.contact-map {
    height: 100%;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-placeholder h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.map-image {
    flex: 1;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 300px;
}

.map-fallback {
    text-align: center;
    color: white;
}

.map-fallback p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-fallback a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.map-fallback a:hover {
    color: var(--secondary);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-social-media {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-social-media .social-link {
        justify-content: center;
    }
}
/* ===== COMPACT FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1.5rem 0 0.5rem;
    position: relative;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Brand Section with Social Media */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1rem;
    margin: 0 0 0.1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.75rem;
    margin: 0;
}

/* Compact Social Media - Fix Twitter visibility */
.footer-social-compact {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.social-link-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

/* Ensure Twitter icon is visible */
.fa-x-twitter {
    color: var(--white) !important;
}

.social-link-compact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.social-link-compact:hover .fa-x-twitter {
    color: var(--white) !important;
}

/* Footer Links - Always 2 columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.link-column {
    display: flex;
    flex-direction: column;
}

.link-column h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.link-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0;
}

.link-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Bottom Footer with Donate Button */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.legal-links {
    display: flex;
    gap: 0.8rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.7rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin: 0;
}

/* Donate Button in Footer Bottom */
.donate-btn-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.donate-btn-bottom:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 112, 147, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex: 1;
    }
    
    .donate-btn-bottom {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 0.6rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .link-column h4 {
        font-size: 0.85rem;
    }
    
    .link-column a {
        font-size: 0.7rem;
    }
    .link-column {
        min-width: 0; /* Prevent columns from getting too wide */
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .donate-btn-bottom {
        align-self: flex-start;
        margin-top: 0.3rem;
    }
    
    .footer-social-compact {
        gap: 0.4rem;
    }
    
    .social-link-compact {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}


/* For extremely small screens */
@media (max-width: 360px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}
 




.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-3px);
}


 
 
 
 /* Mission Pillars - All in One Row */
.mission-pillars {
    padding: 4rem 0;
    background: #f9f9f9;
}

.mission-pillars h3 {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

.mission-pillars h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pillar-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pillar-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.pillar-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pillar-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pillar-item {
        padding: 1.5rem 1rem;
    }
    
    .mission-pillars h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .pillar-content h4 {
        font-size: 1.1rem;
    }
    
    .pillar-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-pillars {
        padding: 3rem 0;
    }
    
    .pillar-grid {
        gap: 1rem;
    }
    
    .pillar-item {
        padding: 1.5rem 1rem;
    }
    
    .pillar-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}