/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --navy-blue: #1a365d;
    --warm-gold: #d4af37;
    --pure-white: #ffffff;
    --charcoal-gray: #333333;
    
    /* Secondary / Accent Colors */
    --emerald-green: #10b981;
    --soft-beige: #f5f5f0;
    --sky-blue: #3b82f6;
    
    /* Additional shades */
    --light-navy: #2d4a7c;
    --light-gold: #f4e4a6;
    --light-gray: #f8f9fa;
    --medium-gray: #6b7280;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --slow-transition: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--body-font);
}

.btn-primary {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background-color: var(--pure-white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--pure-white);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--warm-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo .logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--navy-blue);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--warm-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-donate .donate-btn {
    background-color: var(--emerald-green);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-donate .donate-btn:hover {
    background-color: var(--sky-blue);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--navy-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero-bg2.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23d4af37" points="0,0 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(26, 54, 93, 0.85),
        rgba(26, 54, 93, 0.75)
    );
    z-index: -1;
}

.hero-content {
    max-width: 750px;
    padding: 0 1.5rem;
    z-index: 1;
    margin-top: -2rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--warm-gold);
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    background-color: var(--soft-beige);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 2.5rem;
}

/* Services Section */
.services {
    background-color: var(--pure-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--pure-white);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-gold), var(--emerald-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--warm-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--navy-blue);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--warm-gold);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--warm-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--navy-blue);
    gap: 0.75rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0;
    position: relative;
    z-index: 1;
}

.mission-panel, .vision-panel {
    padding: 4rem 2.5rem;
    text-align: center;
    position: relative;
}

.mission-panel {
    background-color: var(--navy-blue);
}

.vision-panel {
    background-color: var(--light-navy);
}

.panel-icon {
    font-size: 3rem;
    color: var(--warm-gold);
    margin-bottom: 1.5rem;
}

.panel-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.panel-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--light-gold);
    max-width: 500px;
    margin: 0 auto;
}

/* Testimonials Section */
/* .testimonials {
    background-color: var(--soft-beige);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--pure-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--warm-gold);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal-gray);
    line-height: 1.7;
    padding-left: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-blue);
}

.author-location {
    font-size: 0.9rem;
    color: var(--medium-gray);
} */

/* Impact Stats Section */
.impact-stats {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--sky-blue) 100%);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--pure-white);
    font-weight: 600;
}

/* CTA Section with Image Background */
.cta {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    color: var(--pure-white);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--light-gold);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cta .btn-secondary:hover {
    background-color: var(--pure-white);
    color: var(--navy-blue);
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-title {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-description {
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--warm-gold);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.contact-info i {
    color: var(--warm-gold);
    margin-top: 0.25rem;
}

.newsletter-text {
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    font-family: var(--body-font);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    border: none;
    border-radius: 4px;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gold);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay variations for staggered animations */
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.4s; }
.fade-in:nth-child(4) { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .about-preview::before {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--pure-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .toggle-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .toggle-bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .about-preview::before {
        display: none;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .scroll-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* About Preview Section - Two Columns */
.about-preview {
    background-color: var(--soft-beige);
    position: relative;
    overflow: hidden;
}

.about-preview .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 2.5rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 54, 93, 0.1) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--slow-transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--warm-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-content {
        gap: 3rem;
    }
    
    .about-text-content {
        padding-right: 1rem;
    }
    
    .about-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-image {
        height: 300px;
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 250px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* CTA Section with Black Community Background Image */
.cta {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), 
                url('https://images.unsplash.com/photo-1572021335469-31706a17aaef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--pure-white);
    text-align: center;
    position: relative;
    padding: 6rem 0;
}

/* Alternative Black Community Images (choose one): */
/* 
Option 2: Group of Black immigrants celebrating
background-image: url('https://images.unsplash.com/photo-1572021335469-31706a17aaef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80')

Option 3: Black community gathering
background-image: url('https://images.unsplash.com/photo-1551833997-05a0ec4b034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80')

Option 4: Diverse Black immigrants
background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80')
*/

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--light-gold);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta .btn-primary {
    background-color: var(--warm-gold);
    color: var(--navy-blue);
    border: 2px solid var(--warm-gold);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--warm-gold);
    border-color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cta .btn-secondary:hover {
    background-color: var(--pure-white);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* CTA Pattern Overlay */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><path fill="%23d4af37" d="M0,0 L100,0 L100,100 L0,100 Z M20,20 L80,20 L80,80 L20,80 Z"/></svg>');
    background-size: cover;
    z-index: 0;
}

/* CTA Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta {
        background-attachment: scroll;
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* Logo Styling */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a365d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-link {
        gap: 0.5rem;
    }
}

/* Testimonials Carousel */
/* Testimonials Carousel - Fixed */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem); /* Force 3 cards on desktop */
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #f4e4a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    font-size: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: #718096;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #1a365d;
    border-radius: 50%;
    background: white;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: #1a365d;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #1a365d;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem); /* Force 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* Force 1 card on mobile */
    }

    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}