/* Custom styles for 3LCSC website */

/* Hero section improvements */
.hero-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

/* Card hover effects */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* Why partner section cards */
.partner-card {
    transition: all 0.3s ease;
    min-height: 180px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Humanitarian commitments cards */
.commitment-card {
    transition: all 0.3s ease;
    min-height: 200px;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

/* Statistics counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.statistic-item {
    animation: countUp 0.8s ease-out forwards;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .partner-card,
    .commitment-card {
        min-height: auto;
    }
}

/* Button animations */
.cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Section spacing */
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}