/* General body styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-section p.lead {
    font-size: 1.25rem;
}

/* Course Cards */
.course-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow: hidden;
    background-color: #fff;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-card .card-title {
    color: #0056b3;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-card .summary {
    font-size: 0.95rem;
    color: #555;
    min-height: 70px; /* Ensure consistent height for summaries */
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card .text-muted {
    font-size: 0.85rem;
}

.course-card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    margin-top: 15px;
}

.course-card .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Offcanvas Styling */
.offcanvas-end {
    width: 50% !important; /* Adjust width as needed */
    
}

.offcanvas-header {
    background-color: #007bff;
    color: white;
    border-bottom: 1px solid #0056b3;
}

.offcanvas-title {
    font-weight: bold;
}

.offcanvas-body {
    padding: 20px;
}

.offcanvas-body h5 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.offcanvas-body h6 {
    color: #333;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.offcanvas-body ul {
    list-style-type: disc;
    padding-left: 20px;
}

.offcanvas-body ul ul {
    list-style-type: circle;
    padding-left: 20px;
}

.offcanvas-body p {
    margin-bottom: 10px;
}

/* Face-to-face training section */
#face-to-face-training {
    background-color: #f8f9fa;
    padding: 50px 0;
}

#face-to-face-training h2 {
    color: #0056b3;
    font-weight: bold;
}

#face-to-face-training .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#face-to-face-training .card-body {
    padding: 30px;
}

#face-to-face-training h3 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#face-to-face-training h4 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

#face-to-face-training ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

#face-to-face-training ul ul {
    list-style-type: circle;
    padding-left: 20px;
}

#face-to-face-training ul ul ul {
    list-style-type: square;
    padding-left: 20px;
}
/* Custom styles for header and logo */
.navbar {
    background-color: #ffffff !important; /* Force white background for the navbar */
    box-shadow: 0 2px 4px rgba(0,0,0,.1); /* Add a subtle shadow for definition */
}
