:root {
    --colorPrimary: #0066B2;
    --colorBlue: #4582ff;
    --colorGreen: #00d6d3;
    --colorBlack: #0f2239;
    --paraColor: #636363;
    --ratingColor: #f1cc38;
    --colorWhite: #fff;
    --paraFont: "Rubik", sans-serif;
    --headingFont: "Montserrat";
    --box-shadow: rgba(99, 99, 99, .2) 0px 2px 8px 0px;
}

.course-container {
    width: 100%;
    margin: 80px auto;

}

a {
    text-decoration: none;
}

/* OUR WORKING NOW Section */
.course-section {
    width: 100%;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 95px;
    align-items: center;
}

.course-section p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #7295ff;
    margin-bottom: 50px;
}

hr {
    margin-bottom: 50px;
}

/* Small upper text */
.working-now {
    color: #7295ff;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

/* Main heading */
.course-section h2 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Cards container */
.cards-container {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;
}

/* Each card */
.card {
    flex: 2%;
    background-color: #0066B2;
    color: #fff;
    border-radius: 0 0 6px 6px;
    padding: 17px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 13px;
    width: 271px;
}

/* Bottom accent bar */
.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 0 0 6px 6px;
    background-color: #004C8C;
    transition: background-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.card:hover::after {
    background-color: #00A8E8;
}

/* Individual card colors */
.card-red {
    background-color: #0066B2;
}

.card-purple {
    background-color: #F4C523;
    color: #000;
}

.card-purple p {
    color: #000;
}

.card-orange {
    background-color: #0066B2;
}

/* Circle image container */
.img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--colorWhite);
    position: absolute;
    z-index: 1;
    top: -88px;
    left: 50%;
    transform: translateX(-50%);
}

/* Images styling */
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Headings inside cards */
.card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 49px;
    text-align: center;
    font-size: 1rem;
}

/* Paragraph inside cards */
.card p {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: justify;
    color: #fff;
}

/* Arrow button */
.arrow-btn {
    background-color: #fff;
    color: #313030;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 900px) {
    .cards-container {
        flex-direction: column;
        gap: 40px;
    }

    .card {
        flex: 1 1 auto;
        padding-top: 55px;
        margin-top: 200px;
            }

    .img-container {
        top: -90px;
        width: 170px;
        height: 170px;
        border-width: 5px;
    }

    .course-section h2 {
        font-size: 24px;
    }
    
    /* Specific mobile adjustments */
    @media (max-width: 768px) {
        .card {
            margin: 20px 10px 30px 10px;
            padding-top: 65px;
        }
        
        .img-container {
            width: 140px;
            height: 140px;
            top: -75px;
            border-width: 4px;
        }
        
        .card h3 {
            font-size: 1.1rem;
            margin-top: 35px;
        }
        
        .card p {
            font-size: 12px;
            padding: 0 5px;
        }
    }
}



@media only screen and (max-width: 767px) {
    .logo img {
        width: 100%;
        height: 2.5rem;
        margin-left: 1vw;
    }
}

@keyframes banner_animi_1 {
    0% {
        top: 150px
    }

    to {
        top: 200px
    }
}