/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-donate-nav {
    background: var(--gradient-warm);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

/* Bootstrap 5 Full Page Carousel */
#heroCarousel {
    height: calc(100vh - 80px);
    min-height: 600px;
}

#heroCarousel .carousel-inner {
    height: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#heroCarousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

#heroCarousel .carousel-caption h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

#heroCarousel .carousel-caption p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#heroCarousel .carousel-indicators {
    margin-bottom: 2rem;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev {
    left: 20px;
}

#heroCarousel .carousel-control-next {
    right: 20px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    #heroCarousel {
        height: calc(100vh - 80px);
        min-height: 500px;
    }

    #heroCarousel .carousel-caption h1 {
        font-size: 1.75rem !important;
    }

    #heroCarousel .carousel-caption p {
        font-size: 1rem !important;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #heroCarousel .carousel-control-prev {
        left: 10px;
    }

    #heroCarousel .carousel-control-next {
        right: 10px;
    }

    #heroCarousel .btn {
        padding: 0.75rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 10px auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.5;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-200deg);
        opacity: 0;
    }

    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 1.2s ease-out both;
}

.animate-slide-in-right {
    animation: slideInRight 1.2s ease-out both;
}

.animate-zoom-in {
    animation: zoomIn 1.2s ease-out both;
}

.animate-rotate-in {
    animation: rotateIn 1.2s ease-out both;
}

.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out both;
}

.animate-delay-1 {
    animation-delay: 0.5s;
}

.animate-delay-2 {
    animation-delay: 1s;
}

/* Stats Section */
.stats-section {
    background: var(--bg-white);
    padding: 4rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    background: var(--bg-light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.focus-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.focus-icon {
    font-size: 1.5rem;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.timeline-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Objectives Section */
.objectives-section {
    background: var(--bg-light);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.objective-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view-project {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.impact-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Partners Section */
.partners-section {
    background: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Areas Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.area-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.area-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.area-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.area-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Legal Section */
.legal-section {
    background: var(--bg-light);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.legal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.legal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.legal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-card p {
    color: var(--text-light);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    padding: 0 1.5rem 2rem;
    line-height: 1.7;
}

/* Donate Section */
.donate-section {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donate-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.donate-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.impact-metrics {
    margin-bottom: 2.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.impact-icon {
    font-size: 2rem;
}

.donate-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.donate-section .btn-primary {
    background: white;
    color: var(--accent-color);
}

.donate-section .btn-outline {
    border-color: white;
}

.tax-benefit {
    font-size: 0.95rem;
    opacity: 0.9;
}

.donate-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.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(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Dropdown in mobile menu */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        margin-left: 1rem;
        margin-top: 0.5rem;
    }

    /* Carousel responsive */
    .carousel {
        height: 100vh;
        min-height: 500px;
        margin: 0;
        padding: 0;
    }

    .carousel-inner {
        padding-top: 80px;
    }

    .carousel-caption {
        padding: 1rem;
        width: 95%;
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .carousel-caption p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-content,
    .donate-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(even) .timeline-content {
        order: initial;
        text-align: left;
    }

    /* Footer responsive - stack columns on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Utility Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.hover-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hover-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.text-sm {
    font-size: 0.875rem;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

/* Breadcrumb customization */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}


/* === Modern Banner Styles (Overrides) === */
#heroCarousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 4rem;
    text-align: left;
    text-shadow: none !important;
    background: none !important;
}

#heroCarousel .carousel-caption .container {
    padding: 0 50px;
}

.glass-card {
    background: transparent;
    border: none;
    padding: 3rem;
    max-width: 750px;
    animation: fadeInUp 1s ease-out;
}

#heroCarousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#heroCarousel .carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

#heroCarousel .carousel-caption p.lead {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ken Burns Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

#heroCarousel .carousel-item.active img {
    animation: kenBurns 8s ease-out forwards;
}

@media (max-width: 768px) {
    #heroCarousel .carousel-caption h1 {
        font-size: 2rem !important;
    }

    .glass-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
        background: transparent;
    }

    #heroCarousel .carousel-caption .container {
        padding: 0;
    }

    #heroCarousel .carousel-caption {
        justify-content: center;
    }
}

/* === Top Bar, Footer, and Counter Updates === */

/* Top Bar Styling */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.top-bar-hidden {
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn svg {
    width: 16px;
    height: 16px;
}

.social-icon-btn.facebook {
    color: #1877F2 !important;
}

.social-icon-btn.instagram {
    color: #E4405F !important;
}

.social-icon-btn.whatsapp {
    color: #25D366 !important;
}

.social-icon-btn.twitter {
    color: #000000 !important;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adjust Navbar for Top Bar */
body {
    padding-top: 0;
    /* Let JS handle padding or use relative positioning */
}

/* Fixed Navbar logic with Top Bar */
.navbar-scrolled {
    top: 0 !important;
}

.navbar {
    transition: top 0.3s ease;
}


/* Footer Updates */
.footer-social-left {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-left a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-social-left a svg {
    width: 20px;
    height: 20px;
}

.footer-social-left a.facebook {
    color: #1877F2 !important;
}

.footer-social-left a.instagram {
    color: #E4405F !important;
}

.footer-social-left a.whatsapp {
    color: #25D366 !important;
}

.footer-social-left a.twitter {
    color: #000000 !important;
}

.footer-social-left a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-links a {
    color: white !important;
    text-decoration: none !important;
    transition: padding-left 0.3s;
}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--secondary-color) !important;
}

/* Counter Section Updates */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.stat-card {
    flex: 1 1 200px;
    /* Equal width boxes */
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}


/* Social Media Colors */
.facebook {
    color: #1877F2 !important;
}

.instagram {
    color: #E4405F !important;
}

.whatsapp {
    color: #25D366 !important;
}

.twitter {
    color: #000000 !important;
}

/* Top Bar Styling Update */
.top-bar {
    background-color: var(--gradient-warm) !important;
    /* Like donate button */
    padding: 10px 0;
    font-size: 0.9rem;
    color: white !important;
}

.top-bar a,
.top-bar span,
.top-bar i {
    color: white !important;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-social .social-icon-btn {
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-social .social-icon-btn:hover {
    transform: translateY(-3px);
}

/* Footer Social Icons Update */
.footer-social-left a {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* === Building a Better Tomorrow Section === */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    position: relative;
    z-index: 2;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.focus-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.focus-icon {
    font-size: 1.5rem;
}

.intro-image {
    position: relative;
    z-index: 1;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.intro-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background:
        linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.3) 49%, rgba(37, 99, 235, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(124, 58, 237, 0.3) 49%, rgba(124, 58, 237, 0.3) 51%, transparent 52%);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: -2;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* Decorative geometric shapes */
.intro-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(124, 58, 237, 0.03) 10px,
            rgba(124, 58, 237, 0.03) 20px);
    border-radius: 20px;
    transform: rotate(15deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .focus-areas {
        grid-template-columns: 1fr;
    }

    .intro-image::before,
    .intro-image::after {
        display: none;
    }
}


/* === Partners Section === */
.partners-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Decorative elements */
.partners-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}


/* === Video Section Styles === */
.video-section {
    position: relative;
    overflow: hidden;
}

.video-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.video-caption h3 {
    color: var(--primary-color);
}


/* === Stories of Change Section Styles === */
.stories-section {
    position: relative;
    overflow: hidden;
}

.stories-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.stories-section .carousel-indicators .active {
    width: 30px;
    border-radius: 20px;
    opacity: 1;
    background-color: var(--primary-color) !important;
}

.stories-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .15) !important;
}

.stories-section .hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}


/* === Owl Carousel Customization === */
.owl-theme .owl-dots {
    margin-top: 30px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 5px 6px !important;
    background: #D6D6D6 !important;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2563eb !important;
    /* Primary Color */
    transform: scale(1.2);
}

.owl-carousel .item {
    padding: 10px 0;
    /* Space for shadow */
}

/* Ensure cards in slider have consistent height */
.owl-carousel .card {
    height: 100%;
}
/* === Video Showcase Section Styles === */
.video-image-wrapper {
    max-width: 40%;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .video-image-wrapper {
        max-width: 90%;
    }
    
    .play-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .play-icon i {
        font-size: 1.5rem !important;
    }
}

.play-icon:hover {
    transform: scale(1.1);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.ripple {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}


/* === Active Video Background Effect === */
@keyframes bg-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.bg-video-effect {
    animation: bg-scroll 3s linear infinite;
    background-image: linear-gradient(45deg, #f1f5f9 25%, transparent 25%, transparent 50%, #f1f5f9 50%, #f1f5f9 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.6;
}


/* === Video Image Double Border Effect === */
.video-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(37, 99, 235, 0.4); /* Blue-ish tint */
    border-radius: 18px; /* Slightly larger radius than image */
    z-index: -1;
    transition: all 0.3s ease;
}

.video-image-wrapper::after {
    content: '';
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    bottom: -22px;
    border: 1px dotted rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    z-index: -2;
    transition: all 0.4s ease;
}

.video-image-wrapper:hover::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-color: rgba(37, 99, 235, 0.8);
}

.video-image-wrapper:hover::after {
    top: -28px;
    left: -28px;
    right: -28px;
    bottom: -28px;
    opacity: 0.8;
}


/* === Award Card Design Style === */
.award-outer-wrapper {
    background: #d4eadd; /* Light green brush-like color */
    padding: 15px;
    border-radius: 3px 20px 5px 25px; /* Irregular corners for organic feel */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    display: inline-block;
    max-width: 1000px;
    width: 100%;
    position: relative;
    /* Optional: Use a pseudo element for a more rough border effect if desired later */
}

.award-card {
    background: #2b6cb0; /* Strong Blue #2c5282 adjusted */
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid white;
}

.award-left {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #2b6cb0;
    z-index: 10;
}

.award-text-stack {
    font-family: 'Impact', 'Arial Narrow', sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.text-pink { color: #f687b3; }
.text-cyan { color: #4fd1c5; }
.text-white { color: #fff; }
.text-yellow { color: #faf089; }

.award-play-container {
    margin-top: 10px;
}

.award-play-btn {
    width: 70px;
    height: 70px;
    background: #f56565; /* Red/Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.award-play-btn:hover {
    transform: scale(1.15);
}

.award-play-btn i {
    color: white;
    font-size: 28px;
    margin-left: 5px;
}

.award-right {
    flex: 1.5;
    min-width: 300px;
    padding: 30px 60px 30px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b6cb0;
}

.award-photo-frame {
    background: #fffbeb; /* Light beige/cream */
    padding: 12px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.25);
    max-width: 400px;
    transform: rotate(2deg); /* Slight tilt like the reference */
    transition: transform 0.3s ease;
}

.award-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.award-pattern-strip {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    pointer-events: none;
}

.pattern-box {
    width: 100%;
    height: 120px;
    background-image: repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 5px,
      rgba(255, 255, 255, 0.4) 5px,
      rgba(255, 255, 255, 0.4) 10px
    );
}

@media (max-width: 768px) {
    .award-text-stack {
        font-size: 2.5rem;
    }
    .award-photo-frame {
        transform: none;
        margin-right: 40px; /* Make space for strip */
    }
    .award-right {
        padding: 20px;
    }
}

