/* Scroll Animations */
.section-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Animations */
.fade-in, .fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Story Cards */
.story-card, .dream-card {
    position: relative;
    padding: 2rem;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.story-icon i {
    font-size: 2rem;
    color: white;
}

/* Image Hover Zoom Effect */
.image-hover-zoom {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.image-hover-zoom img {
    transition: transform 0.5s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.1);
}



.image-overlay i {
    color: white;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.image-hover-zoom:hover .image-overlay {
    opacity: 1;
}

.image-hover-zoom:hover .image-overlay i {
    transform: scale(1);
}

/* Quote Boxes */
.quote-box {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-left: 5px solid #ffbf00;
    padding: 1.5rem;
    border-radius: 10px;
    font-style: italic;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-box footer {
    font-style: normal;
    font-weight: bold;
    color: #4c4c4c;
    margin-top: 1rem;
}

.quote-italic {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #2196f3;
}

/* Dream Highlight */
.dream-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px dashed #ffc107;
    margin-top: 2rem;
}

/* Stats Box */
.stats-box {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* Passion Section */
.passion-section {
    background: linear-gradient(135deg, #55000050, #ac0000);
    padding: 4rem 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.passion-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.passion-content p {
    color: rgba(255,255,255,0.95);
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2rem;
}

/* Community Card */
.community-card {
    background: #276db2;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(251, 239, 239, 0.1);
}

.community-card * {
    color: #ffffff !important;
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-quote {
    font-size: 1.2rem;
    font-style: italic;
   
    padding-left: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

/* Light Custom Background */
.bg-light-custom {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.cta-section h3, .cta-section p {
    color: white;
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-box {
        flex-direction: column;
    }
    
    .story-icon {
        width: 60px;
        height: 60px;
    }
    
    .story-icon i {
        font-size: 1.5rem;
    }
}