/* 
 * Naari Udaan - Custom Styles
 * Purple & Pink Theme for Girls Education NGO
 */

:root {
    --primary-purple: #5D2E8C;
    --secondary-purple: #7B4397;
    --light-purple: #E8D4F5;
    --pink: #E91E8C;
    --light-pink: #FCE4F0;
    --cream: #FDF8F3;
    --gold: #C4944C;
    --text-dark: #333333;
    --text-muted: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

.nav-link.active {
    color: var(--primary-purple) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink));
    border-radius: 2px;
}

/* Sticky Side Buttons */
.sticky-side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
}

.sticky-donate {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    color: white;
    flex-direction: column;
    gap: 5px;
    padding: 15px 12px;
}

.sticky-donate i {
    font-size: 1.3rem;
}

.sticky-donate span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.sticky-donate:hover {
    padding-right: 20px;
    box-shadow: -5px 5px 20px rgba(93, 46, 140, 0.4);
}

.sticky-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.5rem;
    padding: 12px 14px;
}

.sticky-whatsapp:hover {
    padding-right: 20px;
    background: #128C7E;
    color: white;
    box-shadow: -5px 5px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 767px) {
    .sticky-side-buttons {
        top: auto;
        bottom: 20px;
        right: 15px;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }
    
    .sticky-btn {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 0;
    }
    
    .sticky-donate {
        padding: 0;
    }
    
    .sticky-donate span {
        display: none;
    }
    
    .sticky-donate i {
        font-size: 1.2rem;
    }
    
    .sticky-whatsapp {
        font-size: 1.4rem;
        padding: 0;
    }
    
    .sticky-btn:hover {
        padding-right: 0;
        transform: scale(1.1);
    }
}

.btn-donate {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background-color: #b18540;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0f5 30%, #f8f0ff 60%, #fff5f8 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 46, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--primary-purple);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary-purple);
}

.hero-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-donate-lg {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-donate-lg:hover {
    background-color: #b18540;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 148, 76, 0.4);
}

.btn-sponsor {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sponsor:hover {
    background-color: var(--primary-purple);
    color: white;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(93, 46, 140, 0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.feature-box {
    padding: 30px 20px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-icon.education {
    background-color: var(--light-purple);
    color: var(--primary-purple);
}

.feature-icon.orphan {
    background-color: var(--light-pink);
    color: var(--pink);
}

.feature-icon.holistic {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.feature-box h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    padding: 60px 0;
    background-color: var(--cream);
}

.section-title {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
}

.impact-stat {
    padding: 20px;
}

.impact-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.impact-stat p {
    color: var(--text-muted);
    margin: 0;
}

.impact-stat.border-left-right {
    border-left: 1px solid rgba(93, 46, 140, 0.2);
    border-right: 1px solid rgba(93, 46, 140, 0.2);
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef7ff 30%, #f8f0ff 100%);
    position: relative;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), var(--gold), var(--pink), var(--primary-purple));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.program-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(93, 46, 140, 0.15);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 20px;
}

.program-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.btn-learn-more {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #b18540;
    color: white;
}

/* Donation Progress Section */
.donation-progress-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-purple) 100%);
}

.donation-cta-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(93, 46, 140, 0.1);
}

.donation-cta-box h2 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.donation-cta-box p {
    color: var(--text-muted);
}

.progress-container {
    max-width: 600px;
}

.progress-info {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.progress {
    height: 25px;
    border-radius: 15px;
    background-color: var(--light-purple);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--pink) 100%);
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-donate-secure {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-donate-secure:hover {
    background-color: var(--secondary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 46, 140, 0.3);
}

/* Donors Section */
.donors-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.donors-marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Fade edges */
.donors-marquee-wrapper::before,
.donors-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.donors-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.donors-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.donors-marquee {
    overflow: hidden;
}

.donors-track {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.donors-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.donor-card {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    border-radius: 15px;
    padding: 25px;
    min-width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 46, 140, 0.2);
    border-color: var(--primary-purple);
}

.donor-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.donor-info h5 {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.donor-amount {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.donor-message {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin: 8px 0 0;
    line-height: 1.4;
}

/* View All Donors Button */
.btn-view-all-donors {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(93, 46, 140, 0.3);
}

.btn-view-all-donors:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(93, 46, 140, 0.4);
    color: white;
}

.donor-count-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* All Donors Modal */
.modal-donors .modal-content {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal-donors .modal-header {
    flex-shrink: 0;
}

.modal-donors .modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Donors Search */
.donors-search-wrapper {
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.donors-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid var(--light-purple);
    transition: all 0.3s ease;
}

.donors-search-box:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(93, 46, 140, 0.1);
}

.donors-search-box i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.donors-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.donors-search-box input::placeholder {
    color: #aaa;
}

.search-results-count {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Donors List Container */
.donors-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: 50vh;
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.donor-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f0fa 100%);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.2s ease;
}

.donor-list-item:hover {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    border-color: var(--primary-purple);
    transform: translateX(3px);
}

.donor-list-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donor-rank {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.donor-list-info {
    flex: 1;
    min-width: 0;
}

.donor-list-info h6 {
    margin: 0 0 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donor-list-amount {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.donor-list-message {
    color: var(--pink);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.donor-list-message:hover {
    transform: scale(1.2);
}

/* No Results Message */
.no-results-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-muted);
}

.no-results-message i {
    font-size: 3rem;
    color: var(--light-purple);
    margin-bottom: 15px;
}

.no-results-message p {
    margin: 0;
    font-size: 1rem;
}

/* Donors Modal Footer */
.donors-modal-footer {
    background: var(--cream);
    border-top: 1px solid #eee;
    justify-content: center;
    padding: 15px;
}

.donors-modal-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stories Section */
.stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8fc 0%, #f5f0ff 50%, #fff0f7 100%);
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stories-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(93, 46, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefaff 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 46, 140, 0.12);
    margin: 20px;
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), var(--gold));
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.3);
}

.story-icon i {
    font-size: 2rem;
    color: white;
}

.story-content {
    padding: 50px 60px;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h4 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.story-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.story-meta span {
    color: var(--primary-purple);
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--light-purple);
    padding: 8px 18px;
    border-radius: 20px;
}

.story-meta span i {
    margin-right: 8px;
    color: var(--gold);
}

/* Stories Carousel Navigation */
.stories-nav {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.carousel-nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(93, 46, 140, 0.3);
    transition: all 0.3s ease;
}

.carousel-nav-icon:hover {
    transform: scale(1.1);
}

.stories-indicators {
    bottom: -50px;
}

.stories-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-purple);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.stories-indicators button.active {
    background-color: var(--primary-purple);
    transform: scale(1.2);
}

/* Get Involved Section */
.involved-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8fc 0%, #f5f0ff 50%, #fff0f7 100%);
    position: relative;
    overflow: hidden;
}

.involved-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(233, 30, 140, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.involved-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: rgba(93, 46, 140, 0.06);
    border-radius: 50%;
    filter: blur(50px);
}

.involved-box {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.involved-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 46, 140, 0.2);
}

.involved-box i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.involved-box h5 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.involved-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section - Redesigned */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.contact-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #3A1B5C;
    color: white;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Styles - Compact */
.modal-sm-custom {
    max-width: 360px;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    padding: 15px 20px;
}

.modal-header .modal-title {
    font-size: 1.1rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 20px;
}

/* Quick Amount Buttons */
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.quick-amt {
    padding: 12px 8px;
    border: 2px solid var(--light-purple);
    background: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-amt:hover {
    border-color: var(--primary-purple);
    background: var(--light-purple);
}

.quick-amt.selected {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

/* Compact UPI Section */
.upi-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--cream);
    border-radius: 15px;
    padding: 15px;
}

.qr-small {
    flex-shrink: 0;
}

.qr-small img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: block;
}

.qr-fallback {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
}

.upi-info {
    flex: 1;
}

.upi-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.upi-copy-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.upi-copy-box code {
    flex: 1;
    font-size: 0.85rem;
    color: var(--primary-purple);
    font-weight: 600;
    background: none;
}

.copy-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--secondary-purple);
}

.text-purple {
    color: var(--primary-purple);
}

.btn-copy {
    background-color: var(--light-purple);
    color: var(--primary-purple);
    border: none;
    font-size: 0.8rem;
}

.btn-copy:hover {
    background-color: var(--primary-purple);
    color: white;
}

.donor-form h6 {
    color: var(--primary-purple);
    font-weight: 600;
}

.donor-form .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.donor-form .form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(93, 46, 140, 0.15);
}

.btn-submit-donor {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit-donor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(93, 46, 140, 0.3);
    color: white;
}

.modal-footer {
    border: none;
    justify-content: center;
    padding: 15px 30px 25px;
}

/* Thank You Modal */
.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-purple:hover {
    background-color: var(--secondary-purple);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        margin-top: 40px;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .impact-stat.border-left-right {
        border: none;
    }
    
    .donation-cta-box {
        text-align: center;
    }
    
    .progress-container {
        margin: 0 auto;
    }
    
    .btn-donate-secure {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .impact-stat h3 {
        font-size: 2rem;
    }
    
    .donor-card {
        min-width: 220px;
        padding: 18px;
    }
    
    .donors-track {
        animation-duration: 20s;
    }
    
    .donors-marquee-wrapper::before,
    .donors-marquee-wrapper::after {
        width: 50px;
    }
    
    .story-card {
        margin: 10px;
    }
    
    .story-content {
        padding: 30px 25px;
    }
    
    .story-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .story-icon i {
        font-size: 1.5rem;
    }
    
    .story-content h4 {
        font-size: 1.3rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .carousel-nav-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stories-nav {
        width: 40px;
        height: 40px;
    }
    
    /* Contact Section Mobile */
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-header h2 {
        font-size: 1.6rem;
    }
    
    /* Modal Mobile */
    .modal-sm-custom {
        max-width: 95%;
        margin: 10px auto;
    }
    
    /* All Donors Modal Mobile */
    .modal-donors .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .donors-grid {
        grid-template-columns: 1fr;
    }
    
    .donors-search-wrapper {
        padding: 15px;
    }
    
    .donors-search-box {
        padding: 10px 15px;
    }
    
    .search-results-count {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .donor-list-item {
        padding: 10px 12px;
    }
    
    .donor-list-info h6 {
        font-size: 0.85rem;
    }
    
    .btn-view-all-donors {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upi-compact {
        flex-direction: column;
        text-align: center;
    }
    
    .upi-copy-box {
        justify-content: center;
    }
    
    /* Hero Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-donate-lg,
    .btn-sponsor {
        width: 100%;
        text-align: center;
    }
    
    /* Involved Section Mobile */
    .involved-box {
        padding: 20px 15px;
    }
    
    .involved-box i {
        font-size: 2rem;
    }
    
    /* Footer Mobile */
    .footer .row {
        text-align: center;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .navbar-brand .logo-text span {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .feature-box {
        padding: 20px 10px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .impact-stat h3 {
        font-size: 1.6rem;
    }
    
    .program-card {
        margin-bottom: 20px;
    }
    
    .donor-card {
        min-width: 200px;
        padding: 15px;
    }
    
    .donor-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .quick-amt {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .stories-nav {
        display: none;
    }
}

/* Decorative Flowers */
.donation-progress-section::before,
.donation-progress-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="8" fill="%23E91E8C" opacity="0.3"/><circle cx="50" cy="30" r="5" fill="%235D2E8C" opacity="0.3"/><circle cx="70" cy="50" r="5" fill="%235D2E8C" opacity="0.3"/><circle cx="50" cy="70" r="5" fill="%235D2E8C" opacity="0.3"/><circle cx="30" cy="50" r="5" fill="%235D2E8C" opacity="0.3"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.donation-progress-section::before {
    bottom: 0;
    left: 5%;
    opacity: 0.5;
}

.donation-progress-section::after {
    top: 0;
    right: 5%;
    opacity: 0.5;
}
/* ==================== NEW JOYPLATE-STYLE SECTIONS ==================== */

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), #ff6b9d, var(--pink), var(--primary-purple));
    background-size: 300% 100%;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    animation: gradientFlow 8s ease infinite;
    box-shadow: 0 2px 10px rgba(93, 46, 140, 0.3);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.announcement-banner i {
    margin-right: 8px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

.navbar {
    top: 38px;
}

.hero-section {
    padding-top: 180px;
}

/* Hero Quote */
.hero-quote {
    margin-top: 60px;
    text-align: center;
}

.hero-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    position: relative;
}

.hero-quote blockquote i {
    color: var(--primary-purple);
    opacity: 0.3;
    font-size: 1.5rem;
    margin-right: 10px;
}

.hero-quote blockquote footer {
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-purple);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #f8f0ff 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 46, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(93, 46, 140, 0.15);
}

.mission-content {
    padding-left: 40px;
}

.mission-content h2 {
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.mission-content .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.mission-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-item i {
    color: var(--pink);
    font-size: 1.1rem;
}

/* Progress Section */
.progress-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff0f5 0%, #f8f0ff 30%, #fff5f8 60%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}

.progress-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.progress-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(93, 46, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.progress-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(93, 46, 140, 0.1);
}

.progress-header {
    margin-bottom: 20px;
}

.progress-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.progress-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.progress-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.progress-bar-wrapper .progress {
    flex: 1;
    height: 15px;
}

.progress-percent {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.progress-donors a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.progress-donors a:hover {
    text-decoration: underline;
}

.progress-donors span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.stats-grid {
    height: 100%;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(93, 46, 140, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    margin-top: 50px;
}

.process-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(93, 46, 140, 0.3);
}

.process-card h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.process-quote, .cta-quote {
    margin-top: 60px;
    text-align: center;
}

.process-quote blockquote, .cta-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    border-left: 5px solid var(--primary-purple);
}

.process-quote blockquote i, .cta-quote blockquote i {
    color: var(--pink);
    opacity: 0.5;
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.process-quote blockquote footer, .cta-quote blockquote footer {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-purple);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(93, 46, 140, 0.9));
    color: white;
    padding: 30px 20px 20px;
}

.gallery-caption h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Impact Calculator Section */
.impact-calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-purple) 0%, white 50%, var(--light-pink) 100%);
}

.calculator-card, .qr-donation-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(93, 46, 140, 0.1);
    height: 100%;
}

.calculator-card h4, .qr-donation-card h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.calculator-card h4 i, .qr-donation-card h4 i {
    margin-right: 10px;
    color: var(--pink);
}

.calculator-card > p, .qr-donation-card > p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 12px 15px;
    border: 2px solid var(--light-purple);
    background: white;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, .amount-btn.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    color: white;
    border-color: transparent;
}

.custom-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 25px;
}

.custom-amount .rupee-sign {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.custom-amount input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    width: 100px;
}

.custom-amount input:focus {
    outline: none;
}

.custom-amount .amount-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.impact-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.impact-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--light-purple);
    border-radius: 15px;
}

.impact-item h3 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.impact-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.preset-amounts {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light-purple);
}

.preset-item {
    text-align: center;
}

.preset-amount {
    display: block;
    font-weight: 700;
    color: var(--primary-purple);
}

.preset-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* QR Donation Card */
.qr-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.qr-tab {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--light-purple);
    background: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-tab:hover, .qr-tab.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.qr-display {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 20px;
}

.qr-display img {
    max-width: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.upi-id-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-purple);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.upi-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.upi-id-box code {
    flex: 1;
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 0.95rem;
}

.upi-id-box .copy-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.upi-id-box .copy-btn:hover {
    background: var(--pink);
}

.donation-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 15px;
    background: #fff8f0;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.donation-note i {
    color: var(--gold);
    margin-right: 8px;
}

.donation-note a {
    color: var(--primary-purple);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7B4397 30%, var(--pink) 70%, #ff6b9d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: movePattern 20s linear infinite;
    pointer-events: none;
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    background: white;
    color: var(--primary-purple);
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), var(--gold), var(--pink), var(--primary-purple));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-brand h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.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;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    word-break: break-word;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--pink);
    margin-top: 4px;
    flex-shrink: 0;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.btn-newsletter {
    background: var(--pink);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--primary-purple);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .fa-heart {
    color: var(--pink) !important;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991px) {
    .announcement-banner {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .navbar {
        top: 34px;
    }
    
    .hero-section {
        padding-top: 150px;
    }
    
    .mission-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .announcement-banner {
        font-size: 0.75rem;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-display {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .impact-item {
        padding: 15px 5px;
    }
    
    .impact-item h3 {
        font-size: 1.5rem;
    }
    
    .preset-amounts {
        flex-direction: column;
        gap: 10px;
    }
    
    .qr-tabs {
        flex-wrap: wrap;
    }
    
    .qr-tab {
        flex: 1 1 45%;
    }
    
    .upi-id-box {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ==================== UPDATED CONTENT SECTIONS ==================== */

/* Hero Subtext */
.hero-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-subtext strong {
    color: var(--primary-purple);
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefaff 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(93, 46, 140, 0.12);
    height: 100%;
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, var(--primary-purple), var(--pink)) 1;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(93, 46, 140, 0.18);
}

.vision-mission-card:hover::before {
    transform: scale(3);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(233, 30, 140, 0.3);
    transition: all 0.3s ease;
}

.vision-mission-card:hover .vm-icon {
    transform: scale(1.1) rotate(10deg);
}

.vision-mission-card h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.vision-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
}

/* Difference Cards */
.difference-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fef8ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(93, 46, 140, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(93, 46, 140, 0.18);
}

.difference-card:hover::before {
    transform: scaleX(1);
}

.difference-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.difference-card h5 {
    color: var(--primary-purple);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.difference-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Commitment Box */
.commitment-box {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.commitment-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.commitment-box .highlight-text {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.commitment-box .highlight-text i {
    color: var(--gold);
}

/* Detailed Program Cards */
.program-card-detailed {
    background: linear-gradient(135deg, #ffffff 0%, #fff8fc 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 50px rgba(93, 46, 140, 0.12);
    height: 100%;
    transition: all 0.4s ease;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.program-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), var(--gold));
}

.program-card-detailed::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.program-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(93, 46, 140, 0.2);
}

.program-card-detailed:hover::after {
    transform: scale(2);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    transition: all 0.3s ease;
}

.program-card-detailed:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.4);
}

.program-card-detailed h4 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.program-tagline {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.program-card-detailed > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-includes {
    background: var(--cream);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.program-includes h6 {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.program-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-includes li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.program-includes li i {
    color: var(--pink);
    margin-right: 8px;
}

.program-impact {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-purple);
    border-radius: 10px;
}

.program-impact i {
    color: var(--gold);
    margin-right: 5px;
}

.btn-program {
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-program:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(93, 46, 140, 0.3);
    color: white;
}

/* Detailed Involved Cards */
.involved-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 50px rgba(93, 46, 140, 0.12);
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.involved-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--pink), var(--gold));
}

.involved-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(93, 46, 140, 0.2);
    border-color: rgba(93, 46, 140, 0.1);
}

.involved-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    transition: all 0.3s ease;
}

.involved-card:hover .involved-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.4);
}

.involved-card h5 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.involved-card > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.involved-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    background: var(--light-purple);
    border-radius: 12px;
    padding: 15px 20px;
}

.involved-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.involved-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
}

.involved-highlight {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(93, 46, 140, 0.08), rgba(233, 30, 140, 0.08));
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.involved-highlight i {
    color: var(--gold);
    margin-right: 8px;
}

.btn-involved {
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 25px rgba(93, 46, 140, 0.3);
}

.btn-involved:hover {
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 30, 140, 0.4);
}

.together-message {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
}

.together-message p {
    margin: 0;
    color: var(--text-dark);
}

.together-message p:first-child {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Donate Section */
.donate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f0ff 0%, #ffffff 30%, #fff5f8 60%, #fef0ff 100%);
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(196, 148, 76, 0.1));
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.donate-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(93, 46, 140, 0.08), rgba(233, 30, 140, 0.08));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.donate-content {
    padding-right: 40px;
}

.donate-content h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 20px;
}

.donate-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.donation-uses {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.donation-uses h5 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1rem;
}

.donation-uses ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-uses li {
    padding: 8px 0;
    color: var(--text-muted);
}

.donation-uses li i {
    color: var(--pink);
    margin-right: 10px;
}

.donation-note-box {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 20px;
    background: #fff8f0;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.donation-note-box i {
    color: var(--gold);
    margin-right: 8px;
}

.donation-note-box a {
    color: var(--primary-purple);
    font-weight: 600;
}

.btn-donate-large {
    background: linear-gradient(135deg, var(--primary-purple), var(--pink));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-donate-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 46, 140, 0.3);
    color: white;
}

/* Footer Updates */
.footer-commitment {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-footer-donate {
    background: var(--pink);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-footer-donate:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .donate-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .vision-mission-card {
        margin-bottom: 20px;
    }
    
    .difference-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .program-card-detailed {
        margin-bottom: 30px;
    }
    
    .involved-card {
        margin-bottom: 20px;
    }
    
    .commitment-box {
        padding: 25px;
    }
    
    .commitment-box p {
        font-size: 1rem;
    }
    
    .donate-content h2 {
        font-size: 1.6rem;
    }
}

/* ==================== EQUAL HEIGHT CARDS FIX ==================== */

/* Vision & Mission Cards - Equal Height */
.mission-section .row.mt-5:first-of-type {
    display: flex;
    flex-wrap: wrap;
}

.mission-section .row.mt-5:first-of-type > [class*="col-"] {
    display: flex;
}

.vision-mission-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.vision-mission-card p {
    flex-grow: 1;
}

.vision-mission-card .mission-list {
    flex-grow: 1;
}

/* What Makes Us Different - Equal Height */
.mission-section .row.mt-5:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
}

.mission-section .row.mt-5:nth-of-type(2) > [class*="col-md-3"] {
    display: flex;
    margin-bottom: 20px;
}

.difference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.difference-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Programs Section - Equal Height Cards */
.programs-section .row {
    display: flex;
    flex-wrap: wrap;
}

.programs-section .row > [class*="col-"] {
    display: flex;
}

.program-card-detailed {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card-detailed > p:not(.program-tagline):not(.program-impact) {
    flex-grow: 0;
}

.program-includes {
    flex-grow: 1;
}

.program-card-detailed .btn-program {
    margin-top: auto;
}

/* Get Involved Section - Equal Height Cards */
.involved-section .row {
    display: flex;
    flex-wrap: wrap;
}

.involved-section .row > [class*="col-"] {
    display: flex;
}

.involved-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.involved-card > p:first-of-type {
    min-height: 70px;
}

.involved-list {
    flex-grow: 1;
}

.involved-card .btn-involved {
    margin-top: auto;
}

/* Responsive Adjustments for Equal Height */
@media (max-width: 991px) {
    .vision-mission-card {
        min-height: auto;
    }
    
    .involved-card > p:first-of-type {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .difference-card {
        min-height: auto;
    }
    
    .program-card-detailed,
    .involved-card {
        height: auto;
    }
}