/* 
 * Community Eye Care and Research Center (CECRC) Website
 * Modern, Ultra-Responsive Design with Animations
 */

/* CSS Variables for Consistent Styling */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #ff6b35;
    --text-color: #333;
    --light-text: #f8f9fa;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block; /* Changed from flex to block for vertical content flow */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    font-size: 0.7rem;
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    z-index: 1002;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Space for fixed header */
}

/* Hero Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 8s ease-out forwards;
}

/* Hero Overlay with Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: overlayPulse 10s ease-in-out infinite alternate;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 13s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Slideshow Navigation Arrows */
.slideshow-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slide-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.7);
    border: 2px solid white;
    color: white !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 999;
}

.slide-arrow i {
    color: white !important;
    font-size: 18px;
    font-weight: 900;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-arrows {
        padding: 0 10px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 50px;
    background: linear-gradient(
        135deg,
        rgba(0, 102, 204, 0.55) 0%,
        rgba(0, 77, 153, 0.45) 50%,
        rgba(255, 107, 53, 0.35) 100%
    );
}

.hero-text {
    flex: 1;
    color: white;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: drop-shadow(2px 4px 6px black);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text {
        padding: 30px 20px;
        max-width: 100%;
        background: transparent;
        backdrop-filter: none;
        border: none;
    }
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0%, 90%, 100% { transform: scale(1); }
    95% { transform: scale(1, 0.1); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Enhanced Capacity Section */
.capacity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.capacity-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.capacity-text {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.capacity-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(255, 107, 53, 0.02));
    border-radius: 25px;
    z-index: -1;
}

.capacity-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.capacity-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.capacity-content:hover .capacity-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.capacity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capacity-image:hover img {
    transform: scale(1.1);
}

.capacity-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9), transparent);
    color: white;
    padding: 40px;
    transform: translateY(100%);
    transition: var(--transition);
}

.capacity-image:hover .image-overlay {
    transform: translateY(0);
}

.capacity-image .overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.capacity-image .overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Story Section */
.story-content-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

.story-content-full::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    width: 100%;
    height: 200px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.story-text-full {
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    width: 100%;
}

.story-text-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(0, 102, 204, 0.02));
    border-radius: 25px;
    z-index: -1;
}

.story-text-full h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.story-text-full h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-text-full p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.story-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.story-content:hover .story-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

.story-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9), transparent);
    color: white;
    padding: 40px;
    transform: translateY(100%);
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    transform: translateY(0);
}

.story-image .overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-image .overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Legal Status Section */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.legal-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.legal-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    z-index: 1;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.legal-card:hover::before {
    opacity: 1;
}

.legal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.legal-card:hover .legal-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.legal-icon i {
    font-size: 2.2rem;
    color: white;
}

.legal-card h4 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
}

.legal-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.legal-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #444;
    transition: color 0.3s ease;
}

.legal-card:hover p {
    color: #222;
}

.legal-card strong {
    color: var(--secondary-color);
    font-weight: 800;
}

/* Enhanced Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

.mission-vision-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(255, 107, 53, 0.05));
    border-radius: 30px;
    z-index: 0;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
}

.mission-card {
    border-left: 5px solid var(--primary-color);
}

.vision-card {
    border-left: 5px solid var(--accent-color);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.mission-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.vision-card:hover .card-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Enhanced Mission List Styling */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(255, 107, 53, 0.05));
    padding-left: 15px;
    border-radius: 10px;
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-list li:hover::before {
    opacity: 1;
}

.mission-list li i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mission-list li:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.mission-list li p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    transition: color 0.3s ease;
}

.mission-list li:hover p {
    color: #222;
}

/* Enhanced Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.team-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card:hover::before {
    opacity: 1;
}

.team-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-content .team-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.team-content p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Enhanced Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.partners-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.partner-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    padding: 40px;
    text-align: center;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    margin-bottom: 25px;
}

.partner-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) opacity(1);
}

.partner-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partner-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Capacity Section */
.capacity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.capacity-text {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.capacity-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.capacity-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.capacity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capacity-image:hover img {
    transform: scale(1.05);
}

.capacity-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 102, 204, 0.85);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.capacity-image:hover .image-overlay {
    transform: translateY(0);
}

.capacity-image .overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.capacity-image .overlay-content p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 102, 204, 0.85);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    transform: translateY(0);
}

.story-image .overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.story-image .overlay-content p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Legal Status Section */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.legal-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.legal-card:hover .legal-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.legal-icon i {
    font-size: 2rem;
    color: white;
}

.legal-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-card strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Mission List Styling */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list li:hover {
    background: var(--light-bg);
    padding-left: 10px;
}

.mission-list li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.mission-list li p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Services Overview */
.services-overview {
    margin-bottom: 80px;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.overview-stats .stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}

.overview-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.stat-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 15px;
    transition: var(--transition);
}

.overview-stats .stat-item:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

/* Premium Services Grid */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-premium {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-left: 5px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.service-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.service-badge {
    position: absolute;
    top: 0px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-card-premium:hover .service-icon-large {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-tagline {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

/* Service Stats */
.service-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-mini {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.service-card-premium:hover .stat-mini {
    background: #e3f2fd;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-actions .btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.service-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.service-actions .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.service-actions .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Service Card Variations */
.service-card-premium:nth-child(2) {
    border-left-color: var(--accent-color);
}

.service-card-premium:nth-child(2) .service-badge {
    background: var(--accent-color);
}

.service-card-premium:nth-child(3) {
    border-left-color: #28a745;
}

.service-card-premium:nth-child(3) .service-badge {
    background: #28a745;
}

.service-card-premium:nth-child(4) {
    border-left-color: #ffc107;
}

.service-card-premium:nth-child(4) .service-badge {
    background: #ffc107;
    color: #333;
}

.service-card-premium:nth-child(5) {
    border-left-color: #17a2b8;
}

.service-card-premium:nth-child(5) .service-badge {
    background: #17a2b8;
}

.service-card-premium:nth-child(6) {
    border-left-color: #6f42c1;
}

.service-card-premium:nth-child(6) .service-badge {
    background: #6f42c1;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Service Sections */
.service-section {
    margin-bottom: 60px;
}

.service-header {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-header h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Service Details Grid */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.detail-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: #e3f2fd;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-detail-card:hover .detail-header i {
    background: #fff3e0;
    color: var(--accent-color);
    transform: scale(1.05);
}

.detail-header h4 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Strategy and Initiative Lists */
.strategy-list, .initiatives-list {
    margin-top: 30px;
}

.strategy-item, .initiative-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.strategy-item:last-child, .initiative-item:last-child {
    border-bottom: none;
}

.strategy-item:hover, .initiative-item:hover {
    background: #f8f9fa;
    padding-left: 10px;
}

.strategy-item i, .initiative-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.strategy-item p, .initiative-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.initiatives-list h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.initiatives-list h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Coverage Details */
.coverage-details {
    margin-top: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.coverage-item {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.coverage-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.coverage-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Project Sections */
.project-section {
    margin-bottom: 80px;
}

.project-year {
    margin-bottom: 60px;
}

.project-year h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.project-year h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Projects 2022-2026 Section - Full Width */
.project-year:nth-child(3) {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.project-year:nth-child(3) .project-card {
    width: 100%;
    max-width: 100%;
}

.project-year:nth-child(3) .project-content {
    width: 100%;
    max-width: 100%;
}

/* Ensure Projects 2022-2026 section spans full container width */
.project-section:nth-child(2) {
    width: 100%;
    max-width: 100%;
}

.project-section:nth-child(2) .project-year:nth-child(2) {
    width: 100%;
    max-width: 100%;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image .project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.project-period {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-period i {
    font-size: 1rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* Project Stats */
.project-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.project-card:hover .stat {
    background: #e3f2fd;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Project Performance Tables */
.project-performance {
    margin-top: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.project-performance h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.project-performance h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.performance-table th,
.performance-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.performance-table th {
    background: #e3f2fd;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.performance-table tr:hover td {
    background: #f8f9fa;
}

.performance-table td:first-child {
    font-weight: 600;
    color: #333;
}

/* Project Features */
.project-features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: #f8f9fa;
    padding-left: 10px;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #444;
}

/* Project Actions */
.project-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Project Cards Grid for Previous Projects */
.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Past Project Cards */
.past-project-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.past-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.project-header h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.project-year {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    background: #fff3e0;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.project-summary {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item:hover {
    background: #f8f9fa;
    padding-left: 10px;
}

.summary-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.project-impact h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.project-impact h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.project-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-impact li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.project-impact li:last-child {
    border-bottom: none;
}

.project-impact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    margin-bottom: 20px;
}

.partner-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) opacity(1);
}

.partner-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partner-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.partner-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.partner-card:hover .stat-item {
    background: #e3f2fd;
    color: var(--primary-color);
}

/* Alliance Section */
.alliance {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.alliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.alliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.alliance-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.alliance-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

.alliance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.alliance-feature {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.alliance-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.alliance-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    background: #fff3e0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.alliance-feature:hover i {
    background: #fff;
    transform: scale(1.05);
}

.alliance-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.alliance-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.alliance-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.alliance-content:hover .alliance-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.alliance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alliance-image:hover img {
    transform: scale(1.1);
}

.alliance-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.9), transparent);
    color: white;
    padding: 40px;
    transform: translateY(100%);
    transition: var(--transition);
}

.alliance-image:hover .image-overlay {
    transform: translateY(0);
}

.alliance-image .overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.alliance-image .overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.stat-content {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    color: white;
    margin-bottom: 15px;
}

.story-content p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Enhanced Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--secondary-color);
}

.form-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.form-header p {
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    padding: 40px;
}

.contact-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form .input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 1;
    transition: var(--transition);
}

.contact-form .input-wrapper input,
.contact-form .input-wrapper select,
.contact-form .input-wrapper textarea {
    padding-left: 45px;
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    background: #fafbfc;
}

.contact-form .input-wrapper input:focus,
.contact-form .input-wrapper select:focus,
.contact-form .input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: white;
}

.contact-form .input-wrapper:focus-within i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.contact-form .textarea-wrapper {
    align-items: flex-start;
}

.contact-form .textarea-wrapper i {
    top: 18px;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-form .form-checkbox:hover {
    border-color: var(--primary-color);
    background: white;
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-form .form-checkbox label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.contact-form .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-form .btn {
    flex: 1;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.contact-form .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-form .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Quick Info Sidebar */
.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.quick-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    z-index: 0;
}

.quick-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.quick-info-card:hover .quick-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.quick-icon i {
    font-size: 1.2rem;
    color: white;
}

.quick-info-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.quick-info-card > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.quick-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.quick-link i {
    font-size: 0.9rem;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.working-hours span {
    font-size: 0.9rem;
    color: #444;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.working-hours span:last-child {
    border-bottom: none;
}

.working-hours .emergency {
    color: var(--accent-color);
    font-weight: 700;
    background: #fff3e0;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 5px;
}

.quick-info-card address {
    font-style: normal;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Form Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-quick-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }
    
    .contact-form .form-actions {
        flex-direction: column;
    }
    
    .contact-quick-info {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* Impact Overview Section */
.impact-overview {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.impact-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.impact-stats-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.impact-stat-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    z-index: 1;
}

.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.impact-stat-card:hover .stat-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.stat-icon i {
    font-size: 2.2rem;
    color: white;
}

.stat-content {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

/* Impact Stories Section */
.impact-stories {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.impact-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
}

.impact-stories-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.impact-story-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--accent-color);
    backdrop-filter: blur(10px);
    min-height: 600px;
}

.impact-story-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.impact-story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-story-card:hover .story-image::after {
    opacity: 1;
}

.story-content {
    padding: 40px;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.story-header h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    position: relative;
}

.story-header h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-location {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.story-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: var(--font-secondary);
}

.story-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
}

.impact-story-card:hover .detail-item {
    background: #fff3e0;
}

.detail-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.story-impact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.story-impact h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.story-impact h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.story-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-impact li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.story-impact li:last-child {
    border-bottom: none;
}

.story-impact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Community Impact Section */
.community-impact {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.community-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.community-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.community-impact-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.impact-area {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    z-index: 1;
}

.impact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-area:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-area:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.impact-area:hover .impact-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.impact-icon i {
    font-size: 2.2rem;
    color: white;
}

.impact-area h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.impact-area h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.impact-area p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.impact-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.metric {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.impact-area:hover .metric {
    background: #e3f2fd;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
}

.testimonials-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: var(--font-secondary);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover .author-image {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Future Goals Section */
.future-goals {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.future-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.goals-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 30px;
    z-index: 0;
}

.goal-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--accent-color);
    z-index: 1;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(0, 102, 204, 0.03));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.goal-card:hover .goal-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.goal-icon i {
    font-size: 2.2rem;
    color: white;
}

.goal-card h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.goal-card h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.goal-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.goal-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-image {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-content {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-content {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-color);
    z-index: 9999;
    transition: width 0.1s;
}

/* Image Placeholders - Replace with actual images */
body::after {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    z-index: 9999;
    pointer-events: none;
    animation: fadeInUp 1s ease 2s both;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Donation Section */
.donation-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.donation-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.donation-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.impact-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.impact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.impact-item h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Bank Details Card */
.bank-details-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 2rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.card-body {
    padding: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.detail-row .value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Donation Info Cards */
.donation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Donation CTA */
.donation-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.donation-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.donation-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.donation-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.donation-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.donation-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.donation-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Donation Page Responsive */
@media (max-width: 992px) {
    .donation-content {
        grid-template-columns: 1fr;
    }
    
    .impact-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .donation-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .impact-highlights {
        grid-template-columns: 1fr;
    }
    
    .donation-cta {
        padding: 40px 25px;
    }
    
    .donation-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-left-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.faq-item.active .question-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.question-icon i {
    font-size: 1.2rem;
    color: white;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.faq-toggle i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 0 30px 30px 95px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .answer-content {
    opacity: 1;
    transform: translateY(0);
    padding-top: 10px;
}

.answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.answer-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.answer-content li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    transition: var(--transition);
}

.answer-content li:last-child {
    border-bottom: none;
}

.answer-content li:hover {
    background: #f0f7ff;
    padding-left: 10px;
    border-radius: 8px;
}

.answer-content li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.emergency-note {
    background: linear-gradient(135deg, #fff3e0, #ffebee);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 15px;
    font-weight: 600;
}

.emergency-note i {
    color: var(--accent-color);
    margin-right: 8px;
}

.service-tier, .document-requirement {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.service-tier:hover, .document-requirement:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-tier h5, .document-requirement h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tier h5 i, .document-requirement h5 i {
    color: var(--accent-color);
}

.service-tier p, .document-requirement p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.highlight-box i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: #444;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.support-option {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.support-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.support-option span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.answer-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.answer-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        gap: 12px;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
    }
    
    .question-icon i {
        font-size: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .answer-content {
        padding: 0 20px 20px 72px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-question {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .faq-question h4 {
        flex: 1 1 100%;
        order: 1;
    }
    
    .question-icon {
        order: 0;
    }
    
    .faq-toggle {
        order: 0;
    }
    
    .answer-content {
        padding-left: 20px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}
