/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    text-align: center;
    background-color: #1E3A8A; /* Professional blue */
    color: white;
    padding: 100px 0;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1E3A8A;
    margin-bottom: 20px;
}

/* Training Cards */
.training-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.training-video {
    width: 100%;
    border-radius: 8px;
}
/* Apply Section */
.apply-section {
    background: linear-gradient(135deg, #1E3A8A, #4A90E2);
    padding: 60px 0;
}

.apply-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.apply-card .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Submit Button */
.apply-card .btn-primary {
    background: #1E3A8A;
    border: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.apply-card .btn-primary:hover {
    background: #1453A1;
}
