/* Festival Celebrations Section */
.festival-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--light-cream) 100%);
    position: relative;
    overflow: hidden;
}

.festival-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Festival Introduction */
.festival-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text-hindi {
    font-size: 1.2rem;
    color: var(--deep-red);
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.8;
}

.intro-text-english {
    font-size: 1.1rem;
    color: var(--medium-brown);
    font-weight: 400;
    line-height: 1.7;
}

/* Festival Grid */
.festival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Festival Cards */
.festival-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

/* Card Image */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.festival-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.festival-card:hover .image-overlay {
    background: var(--deep-red);
    transform: scale(1.1);
}

/* Card Content */
.card-content {
    padding: 30px;
}

.card-header {
    margin-bottom: 20px;
    text-align: center;
}

.card-title-hindi {
    font-size: 1.6rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.card-title-english {
    font-size: 1.2rem;
    color: var(--medium-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-size: 1rem;
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Card Stats */
.card-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-brown);
    font-weight: 500;
}

/* Card Actions */
.card-actions {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-saffron));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--deep-red), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Festival Impact */
.festival-impact {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-saffron));
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.festival-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: impact-glow 6s ease-in-out infinite;
}

@keyframes impact-glow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.impact-content {
    position: relative;
    z-index: 1;
}

.impact-title {
    margin-bottom: 40px;
}

.impact-title .title-hindi {
    display: block;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.impact-title .title-english {
    display: block;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info .stat-number {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .festival-section {
        padding: 60px 0;
    }
    
    .festival-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .festival-card {
        margin: 0 10px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .festival-impact {
        padding: 40px 25px;
        margin: 0 10px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .impact-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .intro-text-hindi {
        font-size: 1.1rem;
    }
    
    .intro-text-english {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .festival-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .festival-intro {
        margin-bottom: 40px;
    }
    
    .title-hindi {
        font-size: 2rem !important;
    }
    
    .title-english {
        font-size: 1.4rem !important;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .festival-impact {
        padding: 30px 20px;
    }
}


/* Humanitarian Aid Section */
.humanitarian-aid {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffeee6 100%);
    position: relative;
    overflow: hidden;
}

.humanitarian-aid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.humanitarian-aid .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.humanitarian-aid .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.humanitarian-aid .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.humanitarian-aid .section-title::after {
    content: '🤝';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.humanitarian-aid .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Aid Cards */
.aid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.aid-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.aid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FFD700, #FF6B35);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.aid-card:hover::before {
    transform: scaleX(1);
}

.aid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
}

.aid-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.aid-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.aid-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 15px;
    text-align: center;
}

.aid-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Call to Action */
.aid-cta {
    text-align: center;
    background: linear-gradient(135deg, #8B0000, #FF6B35);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.aid-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.aid-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.aid-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #8B0000;
}

.btn-primary:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B0000;
    transform: translateY(-3px);
}

/* Bilingual Text */
.hindi-text {
    font-family: 'Crimson Text', serif;
    display: block;
    margin-bottom: 5px;
}

.english-text {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .humanitarian-aid {
        padding: 60px 15px;
    }
    
    .humanitarian-aid .section-title {
        font-size: 2rem;
    }
    
    .aid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .aid-card {
        padding: 30px 20px;
    }
    
    .aid-cta {
        padding: 40px 20px;
    }
    
    .aid-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animal Welfare Section */
.animal-welfare {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f8f0 100%);
    position: relative;
    overflow: hidden;
}

.animal-welfare::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

.animal-welfare .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.animal-welfare .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.animal-welfare .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.animal-welfare .section-title::after {
    content: '🐾';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.animal-welfare .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Welfare Cards */
.welfare-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.welfare-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.welfare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #FFD700, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.welfare-card:hover::before {
    transform: scaleX(1);
}

.welfare-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

.welfare-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.welfare-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.welfare-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 15px;
    text-align: center;
}

.welfare-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Community Education Card */
.community-education-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.community-education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.education-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.education-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.community-education-card:hover .education-icon {
    transform: scale(1.05) rotate(5deg);
}

.education-text {
    flex: 1;
}

.education-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 15px;
}

.education-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.education-stats {
    display: flex;
    gap: 40px;
}

.education-stats .stat {
    text-align: center;
}

.education-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #17a2b8;
    margin-bottom: 5px;
}

.education-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Welfare CTA */
.welfare-cta {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.welfare-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.welfare-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.welfare-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: #28a745;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .animal-welfare {
        padding: 60px 15px;
    }
    
    .animal-welfare .section-title {
        font-size: 2rem;
    }
    
    .welfare-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .welfare-card {
        padding: 30px 20px;
    }
    
    .education-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .education-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .welfare-cta {
        padding: 40px 30px;
    }
    
    .welfare-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .welfare-card .card-icon,
    .education-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .education-stats .stat-number {
        font-size: 1.4rem;
    }
}