/* Hide original header elements */
.hero-section, .ultra-minimal-header {
    display: none !important;
}

.breadcrumb-container {
    display: none !important;
}

/* HR Page specific styles */
.hr-page {
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Vision & Mission Cards */
.vision-section .card,
.strategies-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.vision-section .card:hover,
.strategies-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.vision-section .card-title,
.strategies-section .section-title {
    color: #1a365d; /* Updated to professional blue */
    font-weight: 600;
}

.vision-section .card-text,
.strategies-section .card-text {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Strategies Section */
.strategies-section {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.strategies-section .text-primary {
    color: #2c5282 !important; /* Updated to professional blue */
}

/* Responsive */
@media (max-width: 768px) {
    .vision-section .card,
    .strategies-section .card {
        margin-bottom: 1.5rem;
    }
    
    .strategies-section {
        padding: 2rem 0;
    }
}
