


    :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;
        --swiper-navigation-size: 20px;
    }




.course-container {
       width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    margin-top: 100px;
}

a {
    text-decoration: none;
}

/* OUR WORKING NOW Section */
.course-section {
    width: auto;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 0px;
    align-items: center;
    margin: 0 auto;
}

.course-section p {
    font-family:  var(--headingFont);
    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: 0%; */
    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: 276px;
}

/* 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;
}
.img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--colorWhite);
    position: absolute;
    top: -88px;
    left: 50%;
    transform: translateX(-50%);
    perspective: 1000px; /* needed for 3D effect */
}

.img-container img {
   
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-container:hover img {
    transform:  rotateY(180deg);
    -webkit-transform:  rotateY(180deg);
    -moz-transform:  rotateY(180deg);
    -ms-transform:  rotateY(180deg);
    -o-transform:  rotateY(180deg);
}
/* 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: var(--headingFont);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    padding: 0 10px;
 text-align: justify;
  hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;

    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);
}


    .iconimg13 {
 position: absolute;
    max-width: 100%;
    height: auto;
    z-index: 1;
    left: 8%;
    top: 80%;
    }
/* 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;
    }
  .iconimg13{
            position: absolute;

    top: 92%;
        }
    .course-section h2 {
        font-size: 24px;
    }
    
    /* Specific mobile adjustments */
    @media (max-width: 768px) {
        .card {
            margin: 20px 10px 30px 10px;
            padding-top: 65px;
        }
        
        .iconimg13{
            position: absolute;

    top: 92%;
        }
        
        .img-container {
            width: 140px;
            height: 140px;
            top: -75px;
            border-width: 4px;
        }
        
        .card h3 {
            font-size: 1.1rem;
            margin-top: 35px;
        }
        
        .card p {
            font-size: 0.8rem;
            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
    }
}

   /* ======================
       YouTube Video Section
    ====================== */
    .hero-section {
        width: 100%;
        height: 500px;
        background: #0066B2;
        padding: 0px;
        position: relative;
        overflow: hidden;
    }

    .hero-left {
        position: absolute;

        top: 0px;
        left: 0px;
        z-index: 1;
        background: linear-gradient(90deg, #264796 28%, rgba(1, 77, 176, .9) 45.62%, hsla(0, 0%, 100%, 0));
        width: 50%;
        height: 500px;
    }

    .hero-left h1 {
        padding-top: 120px;
        font-size: 48px;
        font-weight: bold;
        color: #fff;
        margin-left: 14px;
    }

    .hero-left p {
        font-size: 18px;
        color: #f6e540;
        margin-top: 10px;
        margin-left: 14px;
    }

    .btn-watch {
        margin-left: 14px;
        display: inline-block;
        margin-top: 15px;
        padding: 12px 25px;
        background: #fff;
        color: #000;
        border-radius: 8px;
        font-weight: bold;
    }

    /* SLIDER */
    .slider-row {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        margin-top: 17px;
    }

    .track {
        display: inline-flex;
    }

    .video-card {
        display: inline-block;
        margin-right: 18px;
        transition: transform 0.3s;
    }

    .video-card:hover {
        transform: scale(1.05);
    }

    .video-card img {
        width: 240px;
        height: 140px;
        border-radius: 10px;
        object-fit: contain;
    }

    /* Blog title truncation to 3 lines */
    .blog-title-truncated {
        display: --webkit-box;
        --webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4em;
        max-height: 4.2em;
        /* 3 lines * 1.4 line-height */
    }

    /* ANIMATIONS */
    .rtl .track {
        animation: moveRTL 40s linear infinite;
    }

    .ltr .track {
        animation: moveLTR 40s linear infinite;
    }

    @keyframes moveRTL {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @keyframes moveLTR {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0);
        }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {

        .hero-section {
            width: auto;
            height: auto;
        }

        .hero-left {
            position: absolute;
            left: 0;
            top: 0;
            margin-left: 0px;
            margin-bottom: 20px;
            height: 500px;

        }

        .hero-left h1 {
            font-size: 28px;
        }

        .video-card img {
            width: 180px;
            height: 110px;
        }
    }

    /* Container headings */
    .containerdiv {
        font-size: 32px;
        font-weight: 700;
        color: #0066B2;
        text-align: center;

      
        margin-bottom: 0px;
    }

    .containerdiv2,
    .containerdiv3,
    .containerdiv4 {
        font-size: 32px;
        font-weight: 700;
        color: #0066B2;
        text-align: center;
        margin-bottom: 5px;
        white-space: nowrap;

    }

    /* Icon Images */
    .iconimg11 {
       position: absolute;
    max-width: 100%;
    height: auto;
    right: 15%;
    top: 110%;
    z-index: -1;
    height: auto;
    width: 105px;
    transform: rotate(168deg);
    opacity: 0.8;
    }



    /* Notification Section */


    .col-md-4,
    .col-md-6 {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
    }
    
    @media (max-width: 768px) {
    .main-section {
        gap:0px;
        padding: 5px;
        
    }


  


    .course-container {
        /* max-width: 1200px; */
        width: 90%;
        margin: auto;
        height: auto !important;
    }


    a {
        text-decoration: none;
    }

    /* OUR WORKING NOW Section */
    .course-section {
        width: auto;
        text-align: center;
        margin-top: 105px;
        margin-bottom: 0px;
        align-items: center;
        display: flex;
    }

    .course-section p {
        font-family:var(--headingFont);
        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;
        gap: 20px;
        flex-wrap: wrap;
        margin: auto;
    }

    /* Each card */
    .card {
        /* flex: 0; */
        background-color: #0066B2;
        color: #fff;
        border-radius: 0 0 6px 6px;
        padding: 19px 10px 15px;
        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;
        width: 307px;
    }

    /* Bottom accent bar */
    .card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8px;
        border-radius: 0 0 6px 6px;
        background-color: #004C8C;
        transition: background-color 0.3s ease;
    }


    .swiper {
        width: 100%;
        padding: 0;
    }

    /* Hover effect */
    .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: -84px;
        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: 13px;
        margin-top: 37px;
        text-align: center;
        font-size: 1rem;
    }

    /* Paragraph inside cards */
    .card p {
        font-family:var(--headingFont);
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 5px;
        padding: 0 10px;
      
        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);
    }

    /* Optional decorative arrow on the right */
    .arrow-sign {
        font-size: 48px;
        position: absolute;
        right: 10px;
        top: 60px;
        transform: rotate(15deg);
        pointer-events: none;
        user-select: none;
        color: #0a123b;
        opacity: 0.7;
    }

    /* Swiper container */

    .swiper-prev .swiper-next {
        color: #fff !important;
    }

    .slider-wrapper {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        margin-top: 95px;
    }

    .swiper-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: ruby-text;
        transition-property: transform;
        transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
        box-sizing: content-box;
    }

    .slider-wrapper .swiper-pagination-bullet {
        background: #0066B2;
        height: 13px;
        width: 13px;
        opacity: 0.5;
    }

    .slider-wrapper .swiper-pagination-bullet-active {
        opacity: 1;
    }

    .slider-wrapper .swiper-slide-button {
        color: #0066B2;
        margin-top: -55px;
        transition: 0.2s ease;
    }

    .slider-wrapper .swiper-slide-button:hover {
        color: #4658ff;
    }

      .swiper {
        width: 100%;
        padding: 40px 0;
    }



    .swiper-slide:hover {
        transform: translateY(-8px);
    }



    .swiper-pagination {
        margin-top: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #0066B2;
    }

    @media (max-width: 768px) {
        .slider-wrapper {
            margin: 0 10px 40px;
        }
        
         .containerdiv {
             padding: 0px;
         }

        .slider-wrapper .swiper-slide-button {
            display: none;
        }

        .course-section {
            margin-top: 30px;
            
        }
    }

  

    /* Adjust button size for mobile */
    @media (max-width: 768px) {

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }




    @media only screen and (max-width: 767px) {
        .logo img {
            width: 100%;
            height: 2.5rem;
            margin-left: 1vw;
        }
    }

   /* Tablet */
@media (max-width: 900px) {

    .cards-container {
        flex-direction: column;
        gap: 13px;
    }

    .card {
        flex: 1 1 auto;
        padding-top: 55px;
        margin-top: 76px;
    }

    .img-container {
        top: -90px;
        width: 170px;
        height: 170px;
        border-width: 5px;
    }

    .course-section h2 {
        font-size: 24px;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .slider-wrapper {
        margin: 0 10px 40px;
    }

    .containerdiv {
        padding: 0;
    }

    .slider-wrapper .swiper-slide-button,
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .course-section {
        margin-top: 30px;
    }

    .logo img {
        width: 100%;
        height: 2.5rem;
        margin-left: 1vw;
    }

}


/* Banner animation */
@keyframes banner_animi_1 {
    0% {
        top: 150px;
    }

    100% {
        top: 200px;
    }
}