/* We Need From You Section Styles */
.need-from-you {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Animation */
.need-from-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 145, 36, 0.05), transparent);
    animation: lightSweep 8s infinite linear;
}

@keyframes lightSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Main Title Styles */
.need-from-you h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #333;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.need-from-you h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #009124;
    border-radius: 2px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Styles */
.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 145, 36, 0.1);
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 145, 36, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 145, 36, 0.1);
    border-color: rgba(0, 145, 36, 0.3);
}

.info-card:hover::before {
    opacity: 1;
}

/* Icon Styles */
.card-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 2.5rem;
    color: #009124;
    background: rgba(0, 145, 36, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon i {
    transform: scale(1.1) rotate(360deg);
    background: #009124;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 145, 36, 0.2);
}

/* Text Styles */
.info-card h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.info-card:hover h2 {
    color: #009124;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.info-card:hover p {
    color: #444;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .need-from-you {
        padding: 3rem 1.5rem;
    }

    .need-from-you h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .card-icon i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .need-from-you h1 {
        font-size: 2rem;
    }

    .info-card {
        padding: 1.5rem 1rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }
}

/* Animation for AOS (Animate on Scroll) */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Custom Animation Delays */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos-delay="600"] { transition-delay: 600ms; } 