/* CSS for Training Page - training.css */

body {
    padding-top: 70px; /* Adjust if navbar height changes */
}

/* Hero Section specific styles (if not already in HTML style tag or main CSS) */
.hero-section-training {
    background: url('../img/training/hero_banner_1920x600.jpg') no-repeat center center/cover;
    /* Ensure path is correct relative to CSS file if image is different or path changes */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem; /* Add some space below hero */
}

.hero-section-training h1 {
    font-size: 3.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.75);
}

.training-page-main-content h2, .training-page-main-content h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.training-page-main-content .lead {
    color: #555;
    font-size: 1.15rem;
}

/* Core Training Programs Section */
.core-programs-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-programs-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.core-programs-section .card-img-top {
    height: 200px; /* Fixed height for images */
    object-fit: cover;
}

.core-programs-section .card-title {
    color: #0056b3; /* A primary color accent */
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa; /* Light background for contrast */
}

.benefits-section h5 {
    color: #0056b3;
    font-weight: 600;
}

.benefits-section i {
    color: #ffc107; /* Accent color for icons */
}

/* Testimonials Section */
.testimonials-section .blockquote {
    border-left: 4px solid #0056b3;
    padding-left: 1rem;
    font-style: italic;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
}

.testimonials-section .blockquote-footer {
    color: #777;
}

/* Call to Action Section */
.cta-section {
    padding: 2rem 0;
    background-color: #e9ecef; /* Slightly different background */
    border-radius: 8px;
}

.cta-section .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background-color: #004494;
    border-color: #003b80;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .hero-section-training h1 {
        font-size: 2.5rem;
    }
    .core-programs-section .card-img-top {
        height: 180px;
    }
}
