/* Core Objectives Section */
.objectives-section {
    padding: var(--space-xl) var(--space-md);
    background: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.section-header p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: #555;
}

/* Grid layout */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Objective Card */
.objective-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    text-align: center;
}

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

/* Objective Icon */
.objective-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.objective-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: bounce 2s infinite;
}

.objective-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.objective-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Bounce Animation for icons */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 600px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .objective-card {
        padding: var(--space-md);
    }

    .objective-icon {
        width: 50px;
        height: 50px;
    }
}
