﻿body {
    background-color: #f8f9fa;
}

.career-card {
    transition: transform 0.2s ease-in-out;
}

    .career-card:hover {
        transform: scale(1.02);
    }

.header {
    background-color: #ff3115;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.section-title {
    margin-top: 40px;
    margin-bottom: 20px;
}
/* Main Container */
.container-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Course Grid Layout */
.row.grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.grid-item {
    padding: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .grid-item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .grid-item {
        width: 33.333%;
    }
}

/* Course Card Styling */
.course-item-1 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .course-item-1:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

/* Course Image Section */
.course-img-1 {
    position: relative;
    overflow: hidden;
}

    .course-img-1 img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.course-item-1:hover .course-img-1 img {
    transform: scale(1.05);
}

.course-toolbar-1 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    color: #fff;
    border-radius: 5px;
    z-index: 1;
}

.course-category-1 a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.course-duration-1 {
    margin-top: 5px;
    font-size: 12px;
    color: #f8f8f8;
}

    .course-duration-1 i {
        margin-right: 5px;
    }

/* Course Body Section */
.course-body-1 {
    padding: 20px;
    flex-grow: 1;
}

.course-title-1 a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}

    .course-title-1 a:hover {
        color: #007bff;
    }

.course-desc-1 p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Course Footer Section */
.course-footer-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.course-seats-1 {
    font-size: 14px;
    color: #555;
}

    .course-seats-1 i {
        margin-right: 5px;
        color: #007bff;
    }

.course-button-1 a {
    background: #007bff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

    .course-button-1 a:hover {
        background: #0069d9;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
    }

/* Page Header Styling */
.rs-breadcrumbs {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin-bottom: 50px;
}

.breadcrumbs-inner {
    text-align: center;
}

.page-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.rs-breadcrumbs ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .rs-breadcrumbs ul li {
        display: inline-block;
        margin: 0 5px;
        color: orangered;
    }

        .rs-breadcrumbs ul li a {
            color: #007bff;
            text-decoration: none;
        }

            .rs-breadcrumbs ul li a:hover {
                text-decoration: underline;
            }

/* Section Title */
.abt-title {
    text-align: center;
    margin-bottom: 40px;
}

    .abt-title h2 {
        font-size: 32px;
        color: #333;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .abt-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #007bff;
        }