/* CSS Variables - Modern App Theme */
:root {
    --primary-color: #ff1f01;
    --secondary-color: #ff6b35;
    --accent-color: #ff9558;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --light-color: #f8fafc;
    --dark-color: #1f2937;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(255, 31, 1, 0.1);
    --shadow-md: 0 4px 12px rgba(255, 31, 1, 0.15);
    --shadow-lg: 0 8px 24px rgba(255, 31, 1, 0.2);
    --shadow-xl: 0 12px 32px rgba(255, 31, 1, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --max-width: 1400px;
    --linkedin-blue: #ff1f01;
    --linkedin-light: #ff6b35;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Tawk.to chat widget containment */
#tawk-chat-container,
#tawk-chat-minified,
iframe[src*="tawk.to"],
div[id*="tawk"],
div[class*="tawk"] {
    position: fixed !important;
    max-width: 100% !important;
    overflow: hidden !important;
    z-index: 999999 !important;
    box-sizing: border-box !important;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Additional overflow prevention */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Fix for any potential overflow from flex/grid */
section, .section, main, article, aside, header, footer, nav {
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.3);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

/* Desktop Navigation - Default Styles */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    z-index: auto;
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
    flex-direction: row;
    align-items: center;
    margin: 0;
}

.nav-menu.active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.hamburger {
    display: none;
    visibility: hidden;
    opacity: 0;
}

    
    /* Ensure header elements are visible on mobile */
    .header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
    }

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 31, 1, 0.2);
    background: var(--white);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    animation: autoScroll 20s linear infinite;
}

.carousel-slide {
    min-width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-slide h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.carousel-slide p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 31, 1, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(0);
    }
    30% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-100%);
    }
    55% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-200%);
    }
    80% {
        transform: translateX(-300%);
    }
    95% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-carousel:hover .carousel-container {
    animation-play-state: paused;
}

/* Hero Section - Complete Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ff1f01 0%, #ff6b35 100%);
    color: #ffffff;
    overflow: hidden;
    border-left: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    animation: gentleFloat 15s ease-in-out infinite;
    z-index: -3;
}

@keyframes gentleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-10px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        linear-gradient(45deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.02) 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.02) 75%, 
            transparent 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: contentReveal 1.2s ease-out;
}

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

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 31, 1, 0.15);
    background: var(--white);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-year {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-left: 12px solid var(--primary-color);
    border-right: 12px solid var(--primary-color);
}

.loader-content {
    text-align: center;
    z-index: 10000;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoPulse 2.5s ease-in-out infinite;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 0 0 0 rgba(255, 31, 1, 0.4),
        0 0 40px rgba(255, 31, 1, 0.3),
        0 0 80px rgba(255, 31, 1, 0.2),
        0 0 120px rgba(255, 31, 1, 0.1);
    position: relative;
}

.loader-logo-placeholder {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 1px;
    line-height: 1;
}

.loader-logo img {
    width: 60px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 8px 16px rgba(255, 31, 1, 0.6));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.loader-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textPulse 2s ease-in-out infinite;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.loader-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: none;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.loader-progress {
    width: 250px;
    height: 6px;
    background: rgba(255, 31, 1, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 0 10px rgba(255, 31, 1, 0.3),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    animation: progressAnimation 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(255, 31, 1, 0.8),
        0 0 20px rgba(255, 31, 1, 0.4);
}

.loader-dots {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.loader-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.8s ease-in-out infinite;
    box-shadow: 
        0 0 0 0 rgba(255, 31, 1, 0.6),
        0 0 20px rgba(255, 31, 1, 0.3);
}

.loader-dot:nth-child(2) {
    animation-delay: 0.6s;
}

.loader-dot:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 0 rgba(255, 31, 1, 0.4),
            0 0 40px rgba(255, 31, 1, 0.3),
            0 0 80px rgba(255, 31, 1, 0.2),
            0 0 120px rgba(255, 31, 1, 0.1);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 
            0 0 0 0 rgba(255, 31, 1, 0.8),
            0 0 60px rgba(255, 31, 1, 0.6),
            0 0 100px rgba(255, 31, 1, 0.4),
            0 0 140px rgba(255, 31, 1, 0.2);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 8px 16px rgba(255, 31, 1, 0.6));
    }
    100% {
        filter: drop-shadow(0 12px 24px rgba(255, 31, 1, 0.9));
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes progressAnimation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.4;
        box-shadow: 
            0 0 0 0 rgba(255, 31, 1, 0.6),
            0 0 20px rgba(255, 31, 1, 0.3);
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 
            0 0 0 0 rgba(255, 31, 1, 0.8),
            0 0 25px rgba(255, 31, 1, 0.4);
    }
}

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

/* Hide loader when page is loaded */
body.loaded .loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out, visibility 1s ease-out;
    transform: scale(1.2);
}

/* Show content when loaded */
body.loaded .hero-content {
    opacity: 1;
    visibility: visible;
    animation: contentReveal 1.2s ease-out;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-mission-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    border: 3px solid var(--white);
}

.card-icon i {
    color: var(--white);
    font-size: 1.4rem;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 1rem;
    min-width: 40px;
    text-align: center;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn i {
    margin-left: 0.5rem;
}

/* Quick Stats Section */
.quick-stats {
    padding: 60px 0;
    background: var(--white);
}

}
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(0, 119, 181, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 119, 181, 0.2);
}

.stat-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
    padding: 0 1rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 119, 181, 0.05);
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: calc((100% - 3rem) / 3);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 31, 1, 0.2);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.3);
    z-index: 3;
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.blog-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 31, 1, 0.1);
}

.read-aloud-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 31, 1, 0.2);
}

.read-aloud-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.read-aloud-btn.reading {
    background: var(--success-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.author {
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.read-time {
    color: var(--text-light);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 31, 1, 0.05);
    border: 1px solid rgba(255, 31, 1, 0.2);
}

.blog-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    background: rgba(255, 31, 1, 0.1);
    border-color: var(--accent-color);
}

.blog-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover::after {
    transform: translateX(5px);
}

.blog-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.blog-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: all;
}

.blog-carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.blog-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.blog-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 31, 1, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-indicator:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: calc(100% - 2rem);
    }
    
    .blog-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blog-carousel-controls {
        padding: 0 0.5rem;
    }
    
    .blog-carousel-track {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Who We Are Section */
.who-we-are {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 31, 1, 0.1);
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.03) 0%, rgba(255, 31, 1, 0.06) 100%);
    border-radius: 20px;
    z-index: -1;
}

.who-we-are-content {
    position: relative;
    z-index: 1;
}

.who-we-are-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vikasana-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vikasana-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vikasana-logo:hover {
    transform: scale(1.1);
}

.who-we-are-text {
    flex: 1;
}

.founder-name {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 31, 1, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.founder-name:hover {
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 31, 1, 0.1);
}

.who-we-are-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
}

.who-we-are-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.who-we-are-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.vision-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 31, 1, 0.2);
    position: relative;
    overflow: hidden;
}

.vision-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    z-index: 1;
}

.vision-quote h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.vision-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission Section */
.mission-section {
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.05) 0%, rgba(255, 31, 1, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 31, 1, 0.1);
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.03) 0%, rgba(255, 31, 1, 0.06) 100%);
    border-radius: 20px;
    z-index: -1;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mission-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 31, 1, 0.4);
    }
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(255, 31, 1, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 31, 1, 0.3);
    transition: transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.mission-item:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-content h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.mission-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    z-index: 10;
    position: relative;
}

.mission-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.3);
}

/* Approach Section */
.approach-section {
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.05) 0%, rgba(255, 31, 1, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 31, 1, 0.1);
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.03) 0%, rgba(255, 31, 1, 0.06) 100%);
    border-radius: 20px;
    z-index: -1;
}

.approach-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .approach-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.approach-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 31, 1, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 31, 1, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.approach-item:hover::before {
    transform: scaleX(1);
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 31, 1, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98));
}

.approach-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(255, 31, 1, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(255, 31, 1, 0.4);
}

.approach-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    z-index: 10;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 31, 1, 0.1);
}

.approach-content p {
    color: var(--text-color);
    line-height: 1.4;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
    z-index: 10;
    position: relative;
}

.approach-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.1), rgba(255, 31, 1, 0.15));
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 31, 1, 0.2);
    transition: all 0.3s ease;
}

.approach-item:hover .approach-stats {
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.15), rgba(255, 31, 1, 0.2));
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(255, 31, 1, 0.2);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approach-progress {
    margin-top: 1rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 31, 1, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

.progress-bar[data-progress="95"]::before {
    width: 95%;
}

.progress-bar[data-progress="88"]::before {
    width: 88%;
}

.progress-bar[data-progress="92"]::before {
    width: 92%;
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: var(--progress, 100%);
    }
}

.approach-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 31, 1, 0.4);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.impact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Achievements Section */
.achievements-section {
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.05) 0%, rgba(255, 31, 1, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 31, 1, 0.1);
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.03) 0%, rgba(255, 31, 1, 0.06) 100%);
    border-radius: 20px;
    z-index: -1;
}

.achievements-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
}

.achievements-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.achievements-track {
    display: flex;
    gap: 2rem;
    animation: achievementsScroll 20s linear infinite;
    width: fit-content;
}

@keyframes achievementsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.achievement-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 31, 1, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 31, 1, 0.1);
    min-width: 280px;
    flex-shrink: 0;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 31, 1, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98));
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 31, 1, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.4);
}

.achievement-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    z-index: 10;
    position: relative;
}

.achievement-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    z-index: 10;
    position: relative;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(255, 31, 1, 0.2);
    display: block;
    margin-top: 0.5rem;
}

/* Responsive adjustments for achievements */
@media (max-width: 768px) {
    .achievements-section {
        padding: 2rem 1.5rem;
    }
    
    .achievements-section h3 {
        font-size: 1.8rem;
    }
    
    .achievement-item {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
}

/* Presence Section - Karnataka Map */
.presence-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(79, 70, 229, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.presence-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.karnataka-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.karnataka-map {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.08);
    border: 2px solid rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
}

.karnataka-map::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.geojson-map {
    width: 100%;
    height: auto;
    max-height: 600px;
    position: relative;
}

.karnataka-svg {
    width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.karnataka-shape {
    fill: rgba(255, 31, 1, 0.2);
    stroke: #ff1f01;
    transition: all 0.3s ease;
}

.karnataka-shape:hover {
    fill: #ff1f01;
}
.karnataka-svg {
  overflow: hidden !important;
}

.marker-point {
  transition: transform 0.2s ease, r 0.2s ease;
}

.district-marker:hover .marker-point {
  transform: scale(1.3);
}

.district-marker:hover text {
  font-weight: 700;
  fill: #111827;
}

.district-marker {
  fill: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker-point {
    transition: all 0.3s ease;
    stroke: #ffffff;
    stroke-width: 0.002;
}

.marker-label {
    font-size: 0.1px;
    font-weight: 600;
    fill: #2d3748;
    pointer-events: none;
    text-anchor: start;
    white-space: nowrap;
    stroke: none;
}

.district-marker:hover .marker-point {
    stroke-width: 0.003;
    filter: brightness(1.2);
}

.district-marker:hover .marker-label {
    font-size: 0.12px;
    font-weight: 700;
}

.district-marker.active .marker-point {
    fill: #38a169;
    stroke: #ffffff;
    stroke-width: 0.002;
}

.district-marker.active .marker-label {
    fill: #22543d;
    font-weight: 700;
}

.district-marker.active:hover .marker-point {
    fill: #2f855a;
    stroke-width: 0.003;
}

.marker-point.main-office {
    fill: #d69e2e;
    stroke: #ffffff;
    stroke-width: 0.003;
    animation: pulse 2s infinite;
}

@keyframes pulse-hq {
    0%, 100% {
        r: 10;
        opacity: 1;
    }
    50% {
        r: 13;
        opacity: 0.8;
    }
}

.marker-label {
    font-size: 11px;
    font-weight: 600;
    fill: #4a5568;
    text-anchor: middle;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.district-marker:hover .marker-label {
    opacity: 1;
    fill: var(--primary-color);
}

.district-marker.active .marker-label {
    fill: var(--primary-color);
    opacity: 1;
    font-weight: 700;
}

.marker-label.main-label {
    font-weight: 800;
    fill: #1a365d;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    animation: pulse-dot 2s ease-in-out infinite;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.legend-dot.hq {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.3);
}

.legend-dot.upcoming {
    background: linear-gradient(135deg, #cbd5e0, #e2e8f0);
    border: 1px solid rgba(203, 213, 224, 0.5);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
    }
}

/* Districts Panel */
.districts-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.08);
    border: 2px solid rgba(79, 70, 229, 0.15);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.districts-panel h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(79, 70, 229, 0.1);
}

.districts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.districts-list::-webkit-scrollbar {
    width: 6px;
}

.districts-list::-webkit-scrollbar-track {
    background: rgba(79, 70, 229, 0.05);
    border-radius: 3px;
}

.districts-list::-webkit-scrollbar-thumb {
    background: rgba(79, 70, 229, 0.3);
    border-radius: 3px;
}

.district-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.district-chip:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.district-chip.active {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.15) 100%);
    border-color: rgba(79, 70, 229, 0.3);
    color: var(--primary-color);
    font-weight: 600;
}

.district-chip.active:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-color: rgba(79, 70, 229, 0.4);
}

.district-chip i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.district-chip span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Design for Karnataka Map */

.districts-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--white);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-row:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design for Karnataka Map */
@media (max-width: 1024px) {
    .karnataka-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .districts-panel {
        position: static;
    }
    
    .districts-list {
        grid-template-columns: repeat(2, 1fr);
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .presence-section {
        padding: 2rem 1.5rem;
    }
    
    .karnataka-map {
        padding: 1.5rem;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .districts-list {
        grid-template-columns: 1fr;
    }
    
    .districts-panel {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .presence-section h3 {
        font-size: 1.6rem;
    }
    
    .karnataka-svg {
        max-height: 350px;
    }
}

/* Special Tribute to Mahesh Chandra Guru */
.guru-tribute {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px rgba(255, 31, 1, 0.2);
    position: relative;
    overflow: hidden;
}

.guru-tribute::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.tribute-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.tribute-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tribute-header p {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.additional-roles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.role-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.role-description {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tribute-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.tribute-image {
    text-align: center;
    position: relative;
}

.tribute-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.tribute-image img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

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

.image-caption {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 280px;
}

.image-caption strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.image-caption span {
    display: block;
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.leadership-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.highlight-item i {
    font-size: 1.3rem;
    color: #fbbf24;
    min-width: 24px;
    margin-top: 2px;
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-content span {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tribute-text h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tribute-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 1;
    color: #f1f5f9;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tribute-qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quality-item i {
    font-size: 1rem;
    color: #fbbf24;
}

.quality-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.tribute-impact h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tribute-impact p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 1;
    color: #f1f5f9;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tribute-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tribute-footer blockquote {
    font-size: 1.15rem;
    font-style: italic;
    margin: 0;
    opacity: 1;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
}

/* Leadership Team */
.leadership-team {
    margin-bottom: 4rem;
}

.leadership-team h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 31, 1, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Team Member Cards */
.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member-card.featured {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    transform: scale(1.05);
}

.team-member-card.featured::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    height: 6px;
}

.team-member-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.3);
}

.member-image {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-member-card:not(.featured) .member-image img {
    border-color: var(--primary-color);
}

.member-image img:hover {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.featured-badge i {
    font-size: 0.8rem;
}

.team-member-card .member-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-member-card:not(.featured) .member-info h4 {
    color: #1e293b;
}

.team-member-card.featured .member-info h4 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-member-card .member-role {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.team-member-card.featured .member-role {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.team-member-card .member-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.team-member-card.featured .member-info p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.member-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.quality-tag {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.team-member-card.featured .quality-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-we-are {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        display: block;
        width: 100%;
        overflow: visible;
    }
    
    .who-we-are-content {
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .who-we-are-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .vikasana-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .who-we-are-text h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .who-we-are-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .who-we-are-visual {
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .vision-quote {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .quote-content h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .quote-content blockquote {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .vikasana-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1.2rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        display: block;
        width: 100%;
        overflow: visible;
    }
    
    .who-we-are-content {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .who-we-are-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .vikasana-logo {
        width: 50px;
        height: 50px;
    }
    
    .who-we-are-text h3 {
        font-size: 1.5rem;
    }
    
    .who-we-are-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .who-we-are-visual {
        gap: 1rem;
        width: 100%;
    }
    
    .vision-quote {
        padding: 1.5rem 1rem;
    }
    
    .quote-content h4 {
        font-size: 1.2rem;
    }
    
    .quote-content blockquote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .vikasana-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .presence-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .tribute-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tribute-qualities {
        grid-template-columns: 1fr;
    }
    
    .guru-tribute {
        padding: 3rem 1.5rem;
    }
    
    .tribute-header h3 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision & Mission */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.vm-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 31, 1, 0.2);
}

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

.vm-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Key Areas */
.key-areas {
    margin-bottom: 4rem;
}

.key-areas h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 31, 1, 0.1);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.2);
}

.area-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements */
.achievements {
    margin-bottom: 4rem;
}

.achievements h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 31, 1, 0.1);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.achievement-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Approach */
.approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.approach-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.approach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Presence */
.presence {
    margin-bottom: 4rem;
}

.presence h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.presence-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-item span {
    color: var(--text-color);
    font-weight: 600;
}

/* Leadership */
.leadership {
    margin-bottom: 4rem;
}

.leadership h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Featured Leader Styling */
.team-member.featured-leader {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(255, 31, 1, 0.15);
}

.team-member.featured-leader:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 31, 1, 0.2);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-member.featured-leader .member-image {
    height: 400px;
}

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

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

/* Leader Badge */
.leader-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.3);
    z-index: 2;
}

.leader-badge i {
    font-size: 0.9rem;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.team-member.featured-leader .member-info {
    padding: 2.5rem;
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member.featured-leader .member-info h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member.featured-leader .member-role {
    font-size: 1rem;
    color: var(--secondary-color);
}

.member-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-member.featured-leader .member-desc {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Legacy Highlight */
.legacy-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 31, 1, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid rgba(255, 31, 1, 0.2);
}

.legacy-highlight i {
    font-size: 0.9rem;
}

/* Responsive adjustments for Leadership */
@media (max-width: 768px) {
    .team-member.featured-leader {
        grid-column: span 1;
    }
    
    .team-member.featured-leader .member-image {
        height: 300px;
    }
    
    .team-member.featured-leader .member-info {
        padding: 2rem;
    }
    
    .team-member.featured-leader .member-info h4 {
        font-size: 1.3rem;
    }
    
    .leader-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Legal Info */
.legal-info {
    margin-bottom: 4rem;
}

.legal-info h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.legal-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 31, 1, 0.2);
}

.legal-details h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-details p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
}

.activity-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 119, 181, 0.05);
    box-shadow: var(--shadow-md);
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background: var(--light-gray);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.activity-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 119, 181, 0.05);
    box-shadow: var(--shadow-md);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.activity-icon i {
    color: var(--linkedin-blue);
    font-size: 1.2rem;
}

.activity-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.activity-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.leader-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 119, 181, 0.05);
    box-shadow: var(--shadow-md);
}

.leader-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.leader-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.leader-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: var(--light-gray);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 119, 181, 0.05);
    box-shadow: var(--shadow-md);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.impact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.impact-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.impact-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 119, 181, 0.1);
}

.gallery-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 0 0;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-overlay p {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--white);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.contact-item:hover {
    background: rgba(79, 70, 229, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details {
    text-align: left;
    flex: 1;
}

.contact-details h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
}

/* Donate Section */
.donate {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.donate-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.donate-text {
    margin-bottom: 2rem;
}

.donate-text h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.donate-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.donate-amounts {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.amount-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow-md);
}

.amount-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.amount-item span.frequency {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.5rem;
}

.donation-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0;
}

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

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    }
    
    }
    
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
    }
    
}
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Ensure Who We Are section is visible on mobile */
    .about {
        position: relative;
        z-index: 1;
    }
    
    .who-we-are {
        position: relative !important;
        z-index: 2 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-donate-large {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

    }
    
    }

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

    
    /* Ensure header elements are visible on mobile */
    .header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
    }

.hamburger span {
    width: 25px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section - Modern Banner Carousel */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0.15) 0%, 
            transparent 20%, 
            transparent 80%, 
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 3;
}

.hero-banner-carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    z-index: 10;
    overflow: hidden;
}

.banner-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.banner-slide-1 {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.banner-slide-2 {
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
}

.banner-slide-3 {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.9) 0%, rgba(32, 201, 151, 0.9) 100%);
}

.banner-slide-4 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(147, 51, 234, 0.9) 100%);
}

.banner-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    animation: slideInFromTop 1s ease-out;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.banner-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.banner-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    min-width: 140px;
}

.banner-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.banner-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.banner-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: none; /* Hide content below carousel */
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.08);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 2rem 4rem;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background 0.4s ease;
}

.hero-badge:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.badge-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.badge-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 1rem 2rem;
    text-align: center;
}

.badge-year {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.vision-icon, .mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.vision-icon i, .mission-icon i {
    color: var(--white);
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
    animation: iconSpin 4s linear infinite;
}

.vision-content h3, .mission-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
}

.vision-content p, .mission-content p {
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    transform-style: preserve-3d;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--linkedin-blue), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 8px rgba(0, 119, 181, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
    margin: 0 0.5rem;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-features-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.feature-card-3d {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, var(--accent-color) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card-3d:hover::before {
    opacity: 1;
}

.feature-card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feature-icon-3d {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.icon-3d {
    color: var(--white);
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    25% { transform: translateY(-5px) rotateX(5deg); }
    50% { transform: translateY(0px) rotateX(-5deg); }
    75% { transform: translateY(-5px) rotateX(5deg); }
}

.feature-content-3d {
    transform: translateZ(20px);
}

.feature-content-3d h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
}

.feature-content-3d p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-stats-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.stat-item-3d {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-item-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, var(--accent-color) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item-3d:hover::before {
    opacity: 1;
}

.stat-item-3d:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.stat-number-3d {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Inter', monospace;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.4);
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 2px 4px rgba(0, 119, 181, 0.4); }
    50% { text-shadow: 0 4px 8px rgba(0, 119, 181, 0.6); }
}

.stat-label-3d {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    animation: progressGrow 2s ease-in-out infinite;
}

@keyframes progressGrow {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.hero-actions-3d {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
}

.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, var(--accent-color) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-3d:hover::before {
    opacity: 1;
}

.btn-3d:hover {
    transform: translateY(-5px) rotateX(5deg) scale(1.05);
}

.btn-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 50px;
}

.btn-primary-3d .btn-bg {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-3d .btn-bg {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-md);
}

.btn-outline-3d .btn-bg {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-md);
}

.btn-3d i {
    margin-left: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}


.karnataka-shape {

  vector-effect: non-scaling-stroke;

  /* 🔑 THIS FIXES THE RED BLOCK */
  fill-rule: evenodd !important;
}


.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator-3d {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 119, 181, 0.3);
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Quick Stats Section - Simple & Elegant */
.quick-stats {
    padding: 60px 0;
    background: var(--white);
}

}
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(0, 119, 181, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.2);
}

.stat-info h3 {
    color: var(--linkedin-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Blog Section - Simple & Elegant */
.blog {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 119, 181, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--linkedin-blue) !important;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--linkedin-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.author {
    font-weight: 600;
    color: var(--linkedin-blue);
}

.read-time {
    color: var(--text-light);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--linkedin-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--accent-color);
}

.blog-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover::after {
    transform: translateX(5px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Global Impact Section */
.global-impact {
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    color: var(--white);
    padding: 100px 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.impact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-visual {
    position: relative;
    text-align: center;
}

.impact-globe {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: globeRotate 20s linear infinite;
}

.impact-globe i {
    color: var(--white);
    font-size: 3rem;
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.impact-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 120px;
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
}

.impact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon i {
    color: var(--linkedin-blue);
    font-size: 1.5rem;
}

.achievement-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.achievement-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.hero-vision-mission.scroll-animate.visible .vision-card,
.hero-vision-mission.scroll-animate.visible .mission-card {
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-vision-mission.scroll-animate.visible .vision-card {
    animation-delay: 0.1s;
}

.hero-vision-mission.scroll-animate.visible .mission-card {
    animation-delay: 0.3s;
}

.hero-features-3d.scroll-animate.visible .feature-card-3d {
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-features-3d.scroll-animate.visible .feature-card-3d:nth-child(1) { animation-delay: 0.1s; }
.hero-features-3d.scroll-animate.visible .feature-card-3d:nth-child(2) { animation-delay: 0.2s; }
.hero-features-3d.scroll-animate.visible .feature-card-3d:nth-child(3) { animation-delay: 0.3s; }
.hero-features-3d.scroll-animate.visible .feature-card-3d:nth-child(4) { animation-delay: 0.4s; }

.hero-stats-3d.scroll-animate.visible .stat-item-3d {
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-stats-3d.scroll-animate.visible .stat-item-3d:nth-child(1) { animation-delay: 0.1s; }
.hero-stats-3d.scroll-animate.visible .stat-item-3d:nth-child(2) { animation-delay: 0.2s; }
.hero-stats-3d.scroll-animate.visible .stat-item-3d:nth-child(3) { animation-delay: 0.3s; }
.hero-stats-3d.scroll-animate.visible .stat-item-3d:nth-child(4) { animation-delay: 0.4s; }

.hero-actions-3d.scroll-animate.visible .btn-3d {
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-actions-3d.scroll-animate.visible .btn-3d:nth-child(1) { animation-delay: 0.1s; }
.hero-actions-3d.scroll-animate.visible .btn-3d:nth-child(2) { animation-delay: 0.2s; }
.hero-actions-3d.scroll-animate.visible .btn-3d:nth-child(3) { animation-delay: 0.3s; }

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

/* Quick stats scroll animation */
.quick-stats.scroll-animate.visible .stat-card {
    animation: slideInUp 0.6s ease-out forwards;
}

.quick-stats.scroll-animate.visible .stat-card:nth-child(1) { animation-delay: 0.1s; }
.quick-stats.scroll-animate.visible .stat-card:nth-child(2) { animation-delay: 0.2s; }
.quick-stats.scroll-animate.visible .stat-card:nth-child(3) { animation-delay: 0.3s; }
.quick-stats.scroll-animate.visible .stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    }
    
    }
    
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
    }
    
}
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-item:hover {
        transform: translateY(-2px);
    }
}

/* Parallax layers */
.hero-background {
    transform: translateZ(-100px);
    will-change: transform;
}

.hero-particles {
    transform: translateZ(-50px);
    will-change: transform;
}

.hero-orbs {
    transform: translateZ(-80px);
}

/* Enhanced Mobile Responsive Design */
@media screen and (max-width: 768px) {
    /* Fix container and section spacing */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure all sections use full width */
    section, .section {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Hero banner fixes */
    .hero, .hero-banner, .hero-carousel {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 2rem 15px;
    }
    
    /* Banner carousel fixes */
    .hero-banner-carousel {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        height: calc(100vh - 60px);
        min-height: 500px;
    }
    
    /* Carousel slides */
    .carousel-slide {
        min-width: 100vw;
        padding: 2rem 15px;
    }
    
    /* Impact section mobile fixes */
    .impact {
        padding: 4rem 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        display: grid !important;
    }
    
    .impact-card {
        padding: 1.5rem 1rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .impact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .impact-icon i {
        font-size: 1.2rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-label {
        font-size: 0.8rem;
    }
    
    /* Leadership section mobile responsive */
    .leadership {
        padding: 3rem 0;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .leadership-card {
        border-radius: 8px;
    }
    
    .leader-image {
        height: 160px;
    }
    
    .leader-info {
        padding: 1rem;
    }
    
    .leader-info h3 {
        font-size: 1.1rem;
    }
    
    .leader-title {
        font-size: 0.85rem;
    }
    
    .leader-bio {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .leader-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .expertise-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* Blog section mobile fixes */
    .blog-carousel {
        width: 100%;
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-carousel-track {
        display: flex;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .blog-carousel-btn {
        display: none; /* Hide navigation buttons on mobile */
    }
    
    .blog-carousel-indicators {
        display: flex; /* Show dots for navigation */
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    /* Who we are section */
    .who-we-are {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 15px;
        width: 100%;
    }
    
    /* Contact and donate sections */
    .contact-enhanced, .donate-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        padding: 2rem 15px;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 15px 1rem;
        width: 100%;
    }
    
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }
    
    /* Button fixes */
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    /* Image fixes */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Form fixes */
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Extra small devices (phones under 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero, .hero-banner, .hero-carousel {
        padding: 1.5rem 10px;
    }
    
    .hero-banner-carousel {
        height: calc(100vh - 50px);
        min-height: 450px;
    }
    
    .carousel-slide {
        padding: 1.5rem 10px;
    }
    
    .stats-grid, .impact-stats, .quick-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Blog section extra small mobile fixes */
    .blog-carousel {
        padding: 0 5px;
    }
    
    .blog-carousel-track {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .blog-carousel-btn {
        display: none;
    }
    
    .blog-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.8rem;
    }
    
    /* Impact section extra small mobile fixes */
    .impact {
        padding: 3rem 0;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-card {
        padding: 1.2rem 0.8rem;
    }
    
    .impact-number {
        font-size: 1.8rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }
}

/* Tablet devices (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .stats-grid, .impact-stats, .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    /* Leadership section tablet styles */
    .leadership {
        padding: 4rem 0;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .leader-image {
        height: 180px;
    }
    
    .leader-info {
        padding: 1.2rem;
    }
    
    .leadership-card.featured {
        grid-column: span 2;
    }
}

/* Large tablets and small desktops (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .stats-grid, .impact-stats, .quick-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
    }
    
    /* Leadership section desktop styles */
    .leadership {
        padding: 5rem 0;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .leader-image {
        height: 200px;
    }
    
    .leadership-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }
}

/* Large desktops (1025px and above) */
@media screen and (min-width: 1025px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .leadership-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }
    
    .leader-image {
        height: 250px;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero-banner-carousel {
        height: calc(100vh - 60px);
        min-height: 500px;
    }
    
    .banner-slide {
        height: calc(100vh - 60px);
        min-height: 500px;
        padding: 1rem;
    }
    
    .banner-content {
        padding: 0.5rem;
        max-width: 100%;
    }
    
    .banner-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        letter-spacing: -1px;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .banner-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .banner-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .banner-stat {
        padding: 0.8rem 0.6rem;
        min-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .banner-stat-number {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .banner-stat-label {
        font-size: 0.75rem;
    }
    
    /* Banner buttons mobile fixes */
    .banner-actions {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .banner-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features-3d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-carousel {
        height: calc(100vh - 50px);
        min-height: 450px;
    }
    
    .banner-slide {
        height: calc(100vh - 50px);
        min-height: 450px;
        padding: 0.8rem;
    }
    
    .banner-content {
        padding: 0.3rem;
        max-width: 100%;
    }
    
    .banner-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        letter-spacing: -0.5px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .banner-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .banner-stats {
        flex-wrap: wrap;
        gap: 0.4rem;
        margin: 1rem 0;
        padding: 0;
    }
    
    .banner-stat {
        padding: 0.6rem 0.4rem;
        min-width: calc(50% - 0.2rem);
        flex: 0 0 calc(50% - 0.2rem);
    }
    
    .banner-stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .banner-stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .banner-actions {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0 0.5rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .banner-actions .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding: 1.5rem 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-3d {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-actions-3d {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-3d {
        width: 100%;
        max-width: 300px;
    }
}
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    margin-bottom: 3rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-box, .mission-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-icon, .mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vision-icon i, .mission-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.image-showcase {
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-showcase:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Activities Section */
.activities {
    background: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.activity-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.activity-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activity-impact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.impact-tag {
    background: var(--light-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.author {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.read-time {
    color: var(--text-light);
    font-size: 0.8rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.blog-link::after {
    content: '→';
    font-size: 1.2rem;
}

/* Founder Section */
.founder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 100px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.founder-achievements {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.founder-achievements h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.founder-achievements ul {
    list-style: none;
}

.founder-achievements li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.founder-achievements i {
    color: var(--white);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.founder-info {
    padding: 2rem 0;
}

.founder-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.founder-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.founder-bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder-quote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.founder-quote blockquote {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
}

.founder-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 600;
}

.founder-contributions {
    margin-top: 3rem;
}

.founder-contributions h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

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

.contribution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contribution-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contribution-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contribution-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contribution-card h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.founder-legacy {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.founder-legacy h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.founder-legacy p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.legacy-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legacy-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.legacy-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.legacy-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Leadership Section - Mobile Optimized */
.leadership {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.leadership-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.leadership-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Simplified featured cards for mobile */
.leadership-card.featured {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.leader-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.leader-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leadership-card:hover .leader-photo img {
    transform: scale(1.03);
}

.leader-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-info {
    padding: 1.5rem;
}

.leader-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.leader-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: var(--light-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Impact Section - Final Consolidated Styles */
.impact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.impact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.impact-icon i {
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.impact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Impact Metrics Section */
.impact-metrics {
    margin: 4rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--light-color);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.metric-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: var(--white);
    font-size: 1rem;
}

.metric-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 119, 181, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.metric-item:hover {
    background: rgba(0, 119, 181, 0.1);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Impact Stories Section */
.impact-stories {
    margin-top: 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--light-color);
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.story-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-meta i {
    color: var(--primary-color);
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(0, 119, 181, 0.05);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 0.9rem;
}

.story-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(0, 119, 181, 0.05);
    border: 1px solid rgba(0, 119, 181, 0.1);
}

.story-link:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.story-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.story-card:hover .story-link::after {
    transform: translateX(5px);
}

/* Impact Testimonials Section */
.impact-testimonials {
    margin-top: 4rem;
    padding: 4rem 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.impact-testimonials h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.impact-testimonials h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 2px solid var(--light-color);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced responsive design for impact section */
@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-content {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .impact-testimonials {
        padding: 2rem 1rem;
    }
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 1.5rem;
    color: var(--white);
}

.gallery-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-info-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.contact-item:hover {
    background: rgba(79, 70, 229, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.4rem;
    z-index: 1;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-details p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.contact-social {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.contact-right {
    position: sticky;
    top: 2rem;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-info {
    text-align: center;
    padding: 1rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.map-info i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-enhanced {
        gap: 1.5rem;
    }
    
    .contact-info-card,
    .contact-form-card,
    .map-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* Donate Section */
.donate {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    position: relative;
}

.donate-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.donate-impact {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

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

.impact-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.impact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(79, 70, 229, 0.05);
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.area-item i {
    font-size: 1rem;
    color: var(--primary-color);
}

.area-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.donate-payment {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    color: #1e293b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.payment-header p {
    color: #64748b;
    margin-bottom: 1rem;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.secure-badge i {
    font-size: 0.9rem;
}

.amount-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.amount-card:hover {
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.15);
}

.amount-card.selected {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-color: #4f46e5;
}

.amount-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.amount-card.featured.selected {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.amount-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.amount-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #f59e0b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.custom-amount {
    margin-bottom: 2rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.amount-input {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.amount-input:focus-within {
    border-color: #4f46e5;
}

.currency {
    background: #f3f4f6;
    padding: 1rem;
    font-weight: 600;
    color: #6b7280;
}

.amount-input input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
}

.donation-type {
    margin-bottom: 2rem;
}

.donation-type > label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #374151;
}

.type-options {
    display: flex;
    gap: 1rem;
}

.type-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option input {
    display: none;
}

.type-option:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}

.type-option:has(input:checked) {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.type-label {
    font-weight: 600;
}

.donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

.tax-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    color: #166534;
    font-size: 0.9rem;
}

.tax-info i {
    color: #22c55e;
}

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

@media (max-width: 768px) {
    .donate-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donate-impact,
    .donate-payment {
        padding: 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amount-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-areas {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate {
        padding: 60px 0;
        overflow-x: hidden;
    }
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donate-info h3 {
    margin-bottom: 1.5rem;
}

.donate-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.donation-impact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.donation-impact p {
    margin-bottom: 1rem;
}

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

.donate-form h3 {
    margin-bottom: 2rem;
}

.donation-amount {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.amount-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--white);
    color: var(--primary-color);
}

.donation-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.donation-form input {
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 25px;
    font-size: 1rem;
    width: 200px;
}

.donation-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.cert-item i {
    color: #ffd93d;
    font-size: 0.9rem;
}

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

/* Footer Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-brand h4 {
        font-size: 1.3rem;
    }
    
    .footer-certifications {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .cert-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand h4 {
        font-size: 1.1rem;
    }
    
    .footer-certifications {
        gap: 0.5rem;
    }
    
    .cert-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-contact li {
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    
    /* Ensure header elements are visible on mobile */
    .header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
    }
    
    }
    
    }

    transform: translateY(0) !important;
}

/* Ensure about section is visible on mobile */
@media (max-width: 768px) {
/* Force about section visibility on mobile */
    section.about {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        position: relative !important;
        z-index: 10 !important;
        display: block !important;
    }
    
    section.about * {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    section.about .who-we-are {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: relative !important;
        z-index: 5 !important;
        display: block !important;
    }
}

    section.about {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    section.about * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Additional Mobile Header Fixes */
@media (max-width: 768px) {
    .header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: var(--white) !important;
        border-bottom: 3px solid var(--primary-color) !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 1rem !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
        z-index: 1002 !important;
    }
    
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 2px solid var(--primary-color) !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
    }
    
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem !important;
    }
    
    .logo-img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    .hamburger span {
        width: 20px !important;
        height: 2px !important;
    }
}

/* FINAL MOBILE HEADER FIXES - Maximum Priority */
@media screen and (max-width: 768px) {
    header.header,
    .header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        z-index: 9999 !important;
        background: #ffffff !important;
        border-bottom: 3px solid #ff1f01 !important;
        box-shadow: 0 4px 12px rgba(255, 31, 1, 0.15) !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    nav.navbar,
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        height: auto !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    div.nav-content,
    .nav-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 1rem !important;
        height: auto !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    div.nav-logo,
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
        height: auto !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
        z-index: 10000 !important;
    }
    
    img.logo-img,
    .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 2px solid #ff1f01 !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    span.logo-text,
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        color: #ff1f01 !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    div.hamburger,
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-color) !important;
        transition: var(--transition) !important;
        border-radius: 2px !important;
    }
}
    
    .hamburger span,
    .hamburger > span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 25px !important;
        height: 3px !important;
        background: #1f2937 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        transform: none !important;
        clip: auto !important;
        clip-path: none !important;
    }
}


/* Desktop Navigation Fix - Ensure horizontal menu on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        gap: 2rem !important;
        list-style: none !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        z-index: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        transition: var(--transition) !important;
    }
    
    .nav-menu.active {
        display: flex;
        visibility: visible;
        opacity: 1;
    }
    
    .hamburger {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu li {
        margin: 0;
        display: inline-block;
    }
    
    .nav-menu li.nav-item {
        margin-bottom: 0;
    }
}

/* Mobile Navigation - Sidebar menu only on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 2rem;
        z-index: 998;
        flex-direction: column;
        align-items: flex-start;
        transition: left 0.3s ease;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu.active {
        display: flex;
        visibility: visible;
        opacity: 1;
        left: 0;
        position: fixed;
        top: 80px;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 2rem;
        z-index: 998;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu li {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 1rem 1.5rem;
        border-radius: 8px;
        transition: var(--transition);
        display: block;
        width: 100%;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-menu li a:hover {
        background: var(--light-color);
        color: var(--primary-color);
    }
    
    .hamburger {
        display: flex;
        visibility: visible;
        opacity: 1;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        visibility: visible;
        opacity: 1;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        transition: var(--transition);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Full Screen Menu */
.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 31, 1, 0.98), rgba(255, 107, 53, 0.98));
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.fullscreen-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10000000;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10000001;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
    position: relative;
    z-index: 10000002;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.menu-item.donate {
    background: linear-gradient(135deg, #ff1f01, #ff6b35);
    border: none;
    box-shadow: 0 5px 20px rgba(255, 31, 1, 0.3);
}

.menu-item.donate:hover {
    background: linear-gradient(135deg, #ff6b35, #ff1f01);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 31, 1, 0.4);
}

/* Hide header when menu is open */
.fullscreen-menu.active ~ * {
    visibility: hidden;
}

/* Alternative approach - hide body content when menu is open */
body.menu-open {
    overflow: hidden;
}

body.menu-open > *:not(.fullscreen-menu) {
    visibility: hidden;
}

/* Mobile Only */
@media (max-width: 768px) {
    .menu-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .menu-content {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .menu-item {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .menu-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
}

/* Quick Stats Section */
.quick-stats {
    padding: 60px 0;
    background: var(--white);
}

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

.stat-card {
    background: var(--white);
    border: 1px solid rgba(0, 119, 181, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 119, 181, 0.2);
}

.stat-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Stats Grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-info h3 {
        font-size: 1.2rem;
    }
}

/* Disable animations on donation section to prevent dancing */
.donate,
.donate * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.donate.revealed,
.donate.revealed * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Ensure donation section is always visible */
.donate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Disable all hover effects in donation section to prevent dancing */
.donate *:hover {
    transform: none !important;
    transition: none !important;
}

.donate .amount-card:hover {
    transform: none !important;
    transition: none !important;
    border-color: inherit !important;
    box-shadow: inherit !important;
}

.donate .donate-btn:hover {
    transform: none !important;
    transition: none !important;
    box-shadow: inherit !important;
}

.donate .amount-btn:hover {
    transform: none !important;
    transition: none !important;
    background: inherit !important;
    color: inherit !important;
}

/* Disable all transitions in donation section */
.donate,
.donate *,
.donate *:hover,
.donate *:active,
.donate *:focus {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

/* Complete animation disable for donation section */
.donate {
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
}

.donate * {
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
}

/* Force static positioning */
.donate,
.donate * {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

/* Disable GPU acceleration for donation section */
.donate,
.donate * {
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    -moz-transform: translateZ(0) !important;
    -ms-transform: translateZ(0) !important;
    -o-transform: translateZ(0) !important;
}

/* Ultimate fix for donation section dancing */
.donate {
    contain: layout style paint !important;
    isolation: isolate !important;
    transform: translate3d(0, 0, 0) !important;
    will-change: auto !important;
}

.donate * {
    contain: layout style paint !important;
    isolation: isolate !important;
    transform: translate3d(0, 0, 0) !important;
    will-change: auto !important;
}

/* Disable all interactive effects during scroll */
.donate * {
    pointer-events: none !important;
}

.donate input,
.donate button,
.donate label {
    pointer-events: auto !important;
}

/* Force no movement under any circumstances */
.donate,
.donate:before,
.donate:after,
.donate *,
.donate *:before,
.donate *:after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    transform-origin: center center !important;
    perspective: none !important;
    perspective-origin: center center !important;
    filter: none !important;
    backdrop-filter: none !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    mask-image: none !important;
}
