/* Core Values Section Styles */
.core-values-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #FFFFFF;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: pulse 8s infinite alternate;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 215, 0, 0.1) 100%);
    z-index: -1;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
}

.value-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #FFD700, transparent);
    margin-left: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.particle {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.3;
    animation: float linear infinite;
    z-index: 0;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .core-values-section {
        padding: 3rem 1rem;
    }
    .value-card {
        padding: 1.5rem;
    }
}