.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 5px;
}

.jumbotron {
    position: relative;
    background-image: url('../images/innerBanner2.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* This darkens the image */
    z-index: 1;
}

.breadcrumb-container, h1, p {
    position: relative;
    z-index: 2; /* Ensures text stays above the overlay */
}

.breadcrumb-container ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumb-container ul li {
    padding: 0 10px 0 0;
    list-style: none;
}

.breadcrumb-container ul li a {
    color: #b6b6b6;
}

.breadcrumb-container ul li:after {
    content: '\f054';
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    color: #b6b6b6;
    margin-left: 5px;
}

.breadcrumb-container ul li:last-child:after {
    display: none;
}

.breadcrumb-container ul li:last-child a {
    color: #fff;
}

.breadcrumb-container ul li:hover a {
    color: #fff;
    text-decoration: underline;
}

.inner h2:after {
    display: none;
}
/* Side Menu Styling */
.side-menu .sideMenuLinks {
    padding: 30px;
    background-color: #f4f4f4;
    height: fit-content; /* Full height of the viewport */
    left: 0; /* Align to the left */
    overflow-y: auto; /* Scroll if the menu exceeds viewport height */
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin-bottom: 15px;
}

.side-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.side-menu ul li a.active {
    color: #2c8dd2; /* Active menu link color */
}

/* Content Area Styling */

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.side-menu ul li {
    list-style: circle;
    list-style-position: inside;
}

.side-menu h3 {
    margin-bottom: 30px;
}

.sideImg {
    padding: 50px 0;
}

.content ul {
    column-count: 2;
    column-gap: 10%;
}


.accordion {
    width: 100%;
    border: 0;
    border: 1px solid #000000;
    border-radius: 0;
    overflow: hidden;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #000000;
}
.accordion-item:last-child{
    border-bottom: 0;
}

.accordion-header {
    padding: 10px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.active .accordion-content {
    display: block;
}

.active .arrow {
    transform: rotate(180deg);
}

.content {
    padding-left: 50px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-block {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center; /* Center the text and icon */
}

.contact-block i {
    font-size: 2em; /* Size of the icon */
    color: #2c8dd2; /* Icon color */
    margin-bottom: 10px; /* Space below the icon */
}

.contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

button.btn.btn-dark {
    background-color: #000;
    border-color: #000;
}

.btn {
    border-radius: 0;
}

.inner a h3 {
    color: #000;
}

@media only screen and (max-width: 480px) {
    .content ul {
        column-count: auto;
    }
    .sideMenuLinks {
    margin-bottom: 50px;
}

.content {
    padding-left: 20px;
}
}

ul.training li {
    text-transform: capitalize;
}