  body {
        font-family: 'Poppins';
    }

    p,
    span {
        font-family: 'Poppins', sans-serif;
    }

    h1,
    h2,
    h3 {
        font-family: 'Poppins', sans-serif;

    }

    .hero-title {
        font-size: 21px;
        color: black;
    }

    .course-card {
        background: #f4f6f9;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    #courseContent {
        text-align: justify;
        line-height: 1.8;

    }

    .course-card h3 {
        font-weight: 700;
        color: #0b1c3f;
        margin-bottom: 15px;
    }

    .step {
        margin-top: 20px;
        color: #666;
    }

    .topic-box {
        background: #f4f6f9;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 100px;
    }

    .topic {
        padding: 12px 15px;
        margin-bottom: 10px;
        border-radius: 6px;
        background: #e4e6ea;
        cursor: pointer;
        font-weight: 500;
        transition: 0.3s;
    }

    .topic:hover {
        background: #d8dbe0;
    }

    .topic.active {
        background: linear-gradient(90deg, #5a5df0, #6c63ff);
        color: white;
    }

    /* course section */
    .course-actions {
        margin-top: 20px;
    }

    .know-btn {
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .know-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* recruiter section */
    /* recruiter section */
    .recruiter-section {
        background: linear-gradient(135deg, #f8fafc, #eef2f7);
        overflow: hidden;
    }

    .recruiter-track {
        overflow: hidden;
        margin: 22px auto;
    }

    /* Different ROW widths */
    .track-1 {
        width: 100%;
    }

    .track-2 {
        width: 80%;
    }

    .track-3 {
        width: 60%;
    }

    .recruiter-row {
        display: flex;
        gap: 40px;
        width: max-content;
        align-items: center;
    }

    /* SAME logo size for all */
    .logo-box {
        width: 150px;
        height: 95px;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform .3s ease;
    }

    .logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .logo-box:hover {
        transform: scale(1.08);
    }

    /* Animations */
    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .animate-left {
        animation: scrollLeft 25s linear infinite;
    }

    .animate-right {
        animation: scrollRight 25s linear infinite;
    }

    /* Mobile */
    @media(max-width:768px) {
        .track-2 {
            width: 95%;
        }

        .track-3 {
            width: 90%;
        }

        .logo-box {
            width: 120px;
            height: 80px;
        }
    }

    /* infrastructure issue */
    .features-section {
        background: linear-gradient(120deg, #c6d4ff, #e6e9ff);
        padding: 80px 0;
    }

    .feature-card {
        background: #fff;
        padding: 40px 25px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-card h4 {
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .feature-card p {
        color: #6c757d;
        font-size: 15px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .icon-circle img {
        width: 35px;
    }

    /* icon background colors */

    .bg-blue {
        background: #e3edff;
    }

    .bg-purple {
        background: #efe6ff;
    }

    .bg-green {
        background: #e3f7ea;
    }

    .bg-yellow {
        background: #fff5d8;
    }

    /* blog section */
    .blog-section {
        background: linear-gradient(135deg, #f5f7fb, #e8f0ff);
    }

    .blog-heading {
        font-size: 32px;
        font-weight: 700;
        color: #1c2b4a;
    }

    /* slider */

    .blog-wrapper {
        position: relative;
    }

    .blog-slider {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 60px;
    }

    .blog-slider::-webkit-scrollbar {
        display: none;
    }

    /* card */

    .blog-card {
        min-width: 300px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-decoration: none;
        color: #000;
        transition: .4s;
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    /* image */

    .blog-img {
        position: relative;
    }

    .blog-img img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

    .blog-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
    }

    /* content */

    .blog-content {
        padding: 18px;
    }

    .blog-content h5 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 12px;
        color: #1a2b49;
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #666;
        margin-bottom: 10px;
    }

    .read-more {
        font-size: 14px;
        font-weight: 600;
        color: #0d6efd;
    }

    /* navigation */

    .blog-nav {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
        cursor: pointer;
        font-size: 18px;
        z-index: 10;
        transition: .3s;
    }

    .blog-nav:hover {
        background: #0d6efd;
        color: #fff;
    }

    .blog-prev {
        left: 0;
    }

    .blog-next {
        right: 0;
    }

    /* button */

    .view-all-btn {
        background: linear-gradient(135deg, #0d6efd, #4b8bff);
        padding: 14px 36px;
        border-radius: 40px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(13, 110, 253, .3);
        transition: .3s;
    }

    .view-all-btn:hover {
        transform: translateY(-3px);
        color: #fff;
    }

    /* Footer */
    .footer {
        background: url(../img/footer.png) center center no-repeat;
        background-size: contain;
    }

    .footer .btn.btn-social {
        margin-right: 5px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .5);
        border: 1px solid rgba(256, 256, 256, .1);
        border-radius: 40px;
        transition: .3s;
    }

    .footer .btn.btn-social:hover {
        color: var(--primary);
    }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 10px;
        padding: 0;
        text-align: left;
        color: rgba(255, 255, 255, .5);
        font-weight: normal;
        transition: .3s;
    }

    .footer .btn.btn-link:hover {
        color: #FFFFFF;
    }

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

    .footer .copyright {
        padding: 25px 0;
        font-size: 14px;
        border-top: 1px solid rgba(256, 256, 256, .1);
    }

    .footer .copyright a {
        color: rgba(255, 255, 255, .5);
    }

    .footer .copyright a:hover {
        color: #FFFFFF;
    }

    .footer .footer-menu a {
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }