/* objectives.css */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.objective-card {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.objective-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.objective-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.objective-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.objective-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.objective-card:nth-child(1) { animation-delay: 0.1s; }
.objective-card:nth-child(2) { animation-delay: 0.2s; }
.objective-card:nth-child(3) { animation-delay: 0.3s; }
.objective-card:nth-child(4) { animation-delay: 0.4s; }
.objective-card:nth-child(5) { animation-delay: 0.5s; }
.objective-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive design */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-card {
        padding: 20px;
    }
    
    .objective-icon {
        font-size: 36px;
    }
    
    .objective-card h3 {
        font-size: 20px;
    }
    
    .objective-card p {
        font-size: 14px;
    }
}

/* Additional visual enhancements */
.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.1;
    border-radius: 15px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.objective-card:hover::before {
    opacity: 0.2;
}

.objective-icon i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}