.main-banner{
    width: 100%;
    background-position: center;
    background-size: cover;
    padding: 5rem 0 9rem;
    background-origin: content-box;
    background-repeat: no-repeat;
}

.main-banner .banner-heading{
    color: #ffffff;
    font-size: 3.6rem;
    line-height: 55px;
    font-weight: 700;
    padding-left: 24px;
    position: relative;
}

.main-banner .banner-heading::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    background-color: #FFC107;
    width: 6px;
    height: 100%;
    border-radius: 5px;
}

.main-banner .banner-heading span{
    font-size: 2.6rem;
    font-weight: 500;
}

.main-banner .banner-sub-heading{
    font-size: 1.2rem;
    line-height: 2rem;
    color: #fff;
    font-weight: 400;
}


.info-banner {
    background-color: white;
    border-radius: 12px;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
    gap: 20px;
    border: 1px solid #8b8b8b;
    text-align: center;
}

.info-item {
    flex: 1 1 200px;
    font-weight: bold;
    color: #000;
    position: relative;
}

/* Vertical divider */
.info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: 1px;
    background-color: #ccc;
}



/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .main-banner {
        padding: 0 0 6rem;
        background-position: center;
    }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
    .main-banner {
        padding: 0 0 6rem;
        background-position: center;
    }
    .main-banner .banner-heading {
        color: #ffffff;
        font-size: 2rem;
        line-height: 36px;
        font-weight: 700;
        margin-top: 125px;
    }
    .main-banner .banner-sub-heading {
        font-size: 1rem;
    }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
    .main-banner {
        padding: 0 0 6rem;
        background-position: center;
    }
    .main-banner .banner-heading {
        color: #ffffff;
        font-size: 2rem;
        line-height: 36px;
        font-weight: 700;
        margin-top: 125px;
    }
    .main-banner .banner-heading span {
        font-size: 1.5rem;
        font-weight: 500;
    }

}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
    .main-banner {
        padding: 0 0 6rem;
        background-position: center;
    }
    .main-banner .banner-heading {
        color: #ffffff;
        font-size: 2rem;
        line-height: 36px;
        font-weight: 700;
        margin-top: 125px;
    }
    .main-banner .banner-heading span {
        font-size: 1.5rem;
        font-weight: 500;
    }
}





























.section-assurance-wrapper{
    position: relative;
    padding: 3rem 0 5rem;
}


.section-assurance-wrapper .assurance-bar{
  background-color: #fff;
  padding: 5rem 0rem;
  border-radius: 11px;
  font-size: 1rem;
  text-align: center;
  box-shadow: rgb(210 217 255) 0px 2px 8px 0px;
}

.section-assurance-wrapper .assurance-bar h2{
  color: #3c3690;
  font-size: 3.2rem;
}

.section-assurance-wrapper .assurance-bar p{
  font-size: 1.3rem;
  color: #565656;
}




.student-reviews-wrapper{
  background-color: #060058;
  padding: 5rem 0 5rem;
}

.student-reviews-wrapper .student-reviews-wrapper-heading{
  margin-bottom: 7rem;
  color: #fff;
}

.student-reviews-bar{
  position: relative;
  border: 1px solid #ddd;
  padding: 5rem 0rem 2rem;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
}

.student-reviews-bar h3{
  color: #17117a;
  font-size: 1.4rem;
}

.student-reviews-bar h4{
  color: #606060;
  font-size: 1.4rem;
}

.student-reviews-bar img{
  position: absolute;
  top: -21%;
  left: 31%;
  border-radius: 50%;
  border: 5px solid #ffffff;
  z-index: 2;
}




.section-real-life-project.section-real-life-project{
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

/* Background Animation */
.section-real-life-project::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(6, 0, 88, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    animation: floating 6s ease-in-out infinite;
}

.section-real-life-project::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    bottom: -120px;
    right: -100px;
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Heading */
.section-real-life-project h2{
    color: #060058;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-real-life-project h2::after{
    content: "";
    width: 90px;
    height: 4px;
    background: #060058;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Column Gap */
.section-real-life-project .col-lg-4{
    margin-bottom: 30px;
}

/* Card Design */
.section-real-life-project .card{
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(6, 0, 88, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Hover Background Effect */
.section-real-life-project .card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060058, #272685);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.section-real-life-project .card:hover::before{
    opacity: 1;
}

/* Hover Animation */
.section-real-life-project .card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(6, 0, 88, 0.22);
}

/* Image */
.section-real-life-project .card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-real-life-project .card:hover img{
    transform: scale(1.08);
}

/* Card Body */
.section-real-life-project .card-body{
    padding: 24px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

/* Title */
.section-real-life-project .card-title{
    font-size: 22px;
    font-weight: 700;
    color: #060058;
    margin: 0;
    transition: all 0.4s ease;
}

.section-real-life-project .card:hover .card-title{
    color: #fff;
    letter-spacing: 0.5px;
}

/* Fade Up Animation */
.section-real-life-project .card{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1199px){

    .section-real-life-project h2{
        font-size: 36px;
    }

    .section-real-life-project .card-title{
        font-size: 20px;
    }
}

@media (max-width: 991px){

    .section-real-life-project{
        padding: 60px 0;
    }

    .section-real-life-project h2{
        font-size: 32px;
        margin-bottom: 45px;
    }

    .section-real-life-project .card img{
        height: 220px;
    }
}

@media (max-width: 767px){

    .section-real-life-project{
        padding: 50px 0;
    }

    .section-real-life-project h2{
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 40px;
    }

    .section-real-life-project .card{
        border-radius: 18px;
    }

    .section-real-life-project .card img{
        height: 200px;
    }

    .section-real-life-project .card-body{
        padding: 20px 15px;
    }

    .section-real-life-project .card-title{
        font-size: 18px;
    }
}

@media (max-width: 480px){

    .section-real-life-project h2{
        font-size: 22px;
    }

    .section-real-life-project .card img{
        height: 180px;
    }

    .section-real-life-project .card-title{
        font-size: 17px;
    }
}








.section-payroll-reports{
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shape */
.section-payroll-reports::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    animation: floatShape 7s ease-in-out infinite;
}

.section-payroll-reports::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(6, 0, 88, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: floatShape 9s ease-in-out infinite;
}

@keyframes floatShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Column Spacing */
.section-payroll-reports .col-lg-6{
    margin-bottom: 30px;
}

/* Main Item Box */
.section-payroll-reports .d-flex{
    background: #fff;
    padding: 25px 25px;
    border-radius: 22px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(6, 0, 88, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

/* Gradient Hover Overlay */
.section-payroll-reports .d-flex::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060058, #272685);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.section-payroll-reports .d-flex:hover::before{
    opacity: 1;
}

/* Hover Effect */
.section-payroll-reports .d-flex:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(6, 0, 88, 0.20);
}

/* Number Circle */
.section-payroll-reports .flex-shrink-0{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #060058, #272685);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */
.section-payroll-reports .flex-shrink-0::after{
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.15);
    top: -100%;
    left: -100%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.section-payroll-reports .d-flex:hover .flex-shrink-0::after{
    top: 100%;
    left: 100%;
}

/* Title */
.section-payroll-reports h4{
    font-size: 24px;
    font-weight: 700;
    color: #060058;
    margin: 0 0 0 22px;
    line-height: 1.4;
    transition: all 0.4s ease;
}

/* Hover Text */
.section-payroll-reports .d-flex:hover h4{
    color: #fff;
}

/* Hover Number */
.section-payroll-reports .d-flex:hover .flex-shrink-0{
    background: #fff;
    color: #060058;
    transform: scale(1.08) rotate(5deg);
}

/* Fade Animation */
.section-payroll-reports .d-flex{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-payroll-reports h4{
        font-size: 22px;
    }
}

@media(max-width:991px){

    .section-payroll-reports{
        padding: 60px 0;
    }

    .section-payroll-reports .d-flex{
        padding: 22px 20px;
    }

    .section-payroll-reports .flex-shrink-0{
        width: 68px;
        height: 68px;
        min-width: 68px;
        font-size: 24px;
    }

    .section-payroll-reports h4{
        font-size: 20px;
    }
}

@media(max-width:767px){

    .section-payroll-reports{
        padding: 50px 0;
    }

    .section-payroll-reports .col-lg-6{
        margin-bottom: 20px;
    }

    .section-payroll-reports .d-flex{
        padding: 18px;
        border-radius: 18px;
    }

    .section-payroll-reports .flex-shrink-0{
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px;
    }

    .section-payroll-reports h4{
        font-size: 18px;
        line-height: 1.5;
    }
}

@media(max-width:480px){

    .section-payroll-reports .d-flex{
        padding: 16px;
    }

    .section-payroll-reports .flex-shrink-0{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 20px;
    }

    .section-payroll-reports h4{
        font-size: 16px;
    }
}








.section-certificate-wrapper{
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.section-certificate-wrapper::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -120px;
    animation: floatingShape 8s ease-in-out infinite;
}

.section-certificate-wrapper::after{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(6, 0, 88, 0.07);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: floatingShape 10s ease-in-out infinite;
}

@keyframes floatingShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Row Alignment */
.section-certificate-wrapper .row{
    align-items: center;
}

/* Image Design */
.section-certificate-wrapper img{
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(6, 0, 88, 0.12);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    animation: imageFloat 5s ease-in-out infinite;
}

/* Image Hover */
.section-certificate-wrapper img:hover{
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 55px rgba(6, 0, 88, 0.22);
}

@keyframes imageFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Content Box */
.section-certificate-wrapper .col-lg-6:last-child{
    padding-left: 50px;
}

/* Heading */
.section-certificate-wrapper h2{
    font-size: 48px;
    font-weight: 800;
    color: #060058;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Underline */
.section-certificate-wrapper h2::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, #060058, #272685);
    left: 0;
    bottom: -12px;
    border-radius: 10px;
}

/* Paragraph */
.section-certificate-wrapper p{
    font-size: 20px;
    line-height: 1.9;
    color: #4b4b6a;
    margin-top: 30px;
    margin-bottom: 0;
}

/* Content Animation */
.section-certificate-wrapper .col-lg-6:last-child{
    animation: fadeRight 1s ease;
}

@keyframes fadeRight{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-certificate-wrapper h2{
        font-size: 40px;
    }

    .section-certificate-wrapper p{
        font-size: 18px;
    }
}

@media(max-width:991px){

    .section-certificate-wrapper{
        padding: 70px 0;
    }

    .section-certificate-wrapper .col-lg-6:last-child{
        padding-left: 15px;
        margin-top: 40px;
        text-align: center;
    }

    .section-certificate-wrapper h2{
        font-size: 34px;
    }

    .section-certificate-wrapper h2::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .section-certificate-wrapper p{
        font-size: 17px;
        line-height: 1.8;
        margin-top: 25px;
    }
}

@media(max-width:767px){

    .section-certificate-wrapper{
        padding: 55px 0;
    }

    .section-certificate-wrapper img{
        border-radius: 20px;
    }

    .section-certificate-wrapper h2{
        font-size: 28px;
        line-height: 1.4;
    }

    .section-certificate-wrapper p{
        font-size: 16px;
        line-height: 1.7;
    }
}

@media(max-width:480px){

    .section-certificate-wrapper h2{
        font-size: 24px;
    }

    .section-certificate-wrapper p{
        font-size: 15px;
    }
}





.section-activities-wrapper{
    padding: 90px 0;
    background: linear-gradient(180deg, #f6f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.section-activities-wrapper::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    animation: floatShape 7s ease-in-out infinite;
}

.section-activities-wrapper::after{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(6, 0, 88, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: floatShape 9s ease-in-out infinite;
}

@keyframes floatShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Heading */
.section-activities-wrapper h2{
    font-size: 44px;
    font-weight: 800;
    color: #060058;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-activities-wrapper h2::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, #060058, #272685);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 20px;
}

/* Card Spacing */
.section-activities-wrapper .col-lg-3{
    margin-bottom: 30px;
}

/* Card Design */
.section-activities-wrapper .activities-card{
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(6, 0, 88, 0.08);
    transition: all 0.45s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Hover Gradient */
.section-activities-wrapper .activities-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060058, #272685);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.section-activities-wrapper .activities-card:hover::before{
    opacity: 1;
}

/* Hover Effect */
.section-activities-wrapper .activities-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(6, 0, 88, 0.20);
}

/* Image */
.section-activities-wrapper .activities-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.section-activities-wrapper .activities-card:hover img{
    transform: scale(1.08);
}

/* Card Body */
.section-activities-wrapper .card-body{
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
}

/* Title */
.section-activities-wrapper .card-body h4{
    font-size: 18px;
    font-weight: 700;
    color: #060058;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

/* Description */
.section-activities-wrapper .card-body p{
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

/* Hover Text */
.section-activities-wrapper .activities-card:hover h4,
.section-activities-wrapper .activities-card:hover p{
    color: #fff;
}

/* Shine Effect */
.section-activities-wrapper .activities-card::after{
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.12);
    transform: rotate(35deg);
    transition: all 0.7s ease;
}

.section-activities-wrapper .activities-card:hover::after{
    top: 100%;
    left: 100%;
}

/* Fade Up Animation */
.section-activities-wrapper .activities-card{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-activities-wrapper h2{
        font-size: 38px;
    }

    .section-activities-wrapper .card-body h4{
        font-size: 22px;
    }
}

@media(max-width:991px){

    .section-activities-wrapper{
        padding: 70px 0;
    }

    .section-activities-wrapper h2{
        font-size: 32px;
        margin-bottom: 50px;
    }

    .section-activities-wrapper .activities-card img{
        height: 220px;
    }
}

@media(max-width:767px){

    .section-activities-wrapper{
        padding: 55px 0;
    }

    .section-activities-wrapper h2{
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .section-activities-wrapper .activities-card{
        border-radius: 20px;
    }

    .section-activities-wrapper .activities-card img{
        height: 200px;
    }

    .section-activities-wrapper .card-body{
        padding: 22px 18px;
    }

    .section-activities-wrapper .card-body h4{
        font-size: 20px;
    }

    .section-activities-wrapper .card-body p{
        font-size: 15px;
    }
}

@media(max-width:480px){

    .section-activities-wrapper h2{
        font-size: 22px;
    }

    .section-activities-wrapper .activities-card img{
        height: 180px;
    }

    .section-activities-wrapper .card-body h4{
        font-size: 18px;
    }

    .section-activities-wrapper .card-body p{
        font-size: 14px;
    }
}









.section-faq-wrapper{
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.section-faq-wrapper::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    animation: floatShape 8s ease-in-out infinite;
}

.section-faq-wrapper::after{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(6, 0, 88, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Heading */
.section-faq-wrapper h2{
    font-size: 44px;
    font-weight: 800;
    color: #060058;
    text-align: left;
    position: relative;
    display: inline-block;
}


/* Accordion Card */
.section-faq-wrapper .card{
    border: none;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(6, 0, 88, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Hover Background */
.section-faq-wrapper .card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #eef1ff);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.section-faq-wrapper .card:hover::before{
    opacity: 1;
}

/* Hover Effect */
.section-faq-wrapper .card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 0, 88, 0.12);
}

/* Card Header */
.section-faq-wrapper .card-header{
    background: transparent;
    border: none;
    padding: 0;
}

/* Accordion Button */
.section-faq-wrapper .btn-link{
    width: 100%;
    text-align: left;
    padding: 28px 75px 28px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #060058;
    text-decoration: none !important;
    position: relative;
    line-height: 1.5;
    transition: all 0.4s ease;
    display: block;
}

/* Remove Bootstrap Focus */
.section-faq-wrapper .btn-link:focus{
    box-shadow: none;
}

/* Hover and Active Text */
.section-faq-wrapper .card:hover .btn-link,
.section-faq-wrapper .btn-link[aria-expanded="true"]{
    color: #060058;
}

/* Plus Icon Right Side */
.section-faq-wrapper .btn-link::before{
    content: "+";
    position: absolute;
    right: -217%;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #060058;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Minus Icon When Open */
.section-faq-wrapper .btn-link[aria-expanded="true"]::before{
    content: "-";
    background: #272685;
    color: #fff;
}

/* Hover Icon */
.section-faq-wrapper .card:hover .btn-link::before{
    background: #272685;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* Accordion Body */
.section-faq-wrapper .card-body{
    padding: 0 30px 30px;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    transition: all 0.4s ease;
}

/* Fade Animation */
.section-faq-wrapper .card{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-faq-wrapper h2{
        font-size: 38px;
    }

    .section-faq-wrapper .btn-link{
        font-size: 20px;
    }
}

@media(max-width:991px){

    .section-faq-wrapper{
        padding: 70px 0;
    }

    .section-faq-wrapper h2{
        font-size: 32px;
    }

    .section-faq-wrapper .btn-link{
        font-size: 19px;
        padding: 24px 65px 24px 25px;
    }

    .section-faq-wrapper .btn-link::before{
        width: 38px;
        height: 38px;
        font-size: 24px;
        right: 22px;
    }

    .section-faq-wrapper .card-body{
        padding: 0 25px 25px;
        font-size: 16px;
    }
}

@media(max-width:767px){

    .section-faq-wrapper{
        padding: 55px 0;
    }

    .section-faq-wrapper h2{
        font-size: 26px;
        line-height: 1.5;
    }

    .section-faq-wrapper .card{
        border-radius: 18px;
    }

    .section-faq-wrapper .btn-link{
        font-size: 17px;
        line-height: 1.5;
        padding: 20px 60px 20px 20px;
    }

    .section-faq-wrapper .btn-link::before{
        width: 34px;
        height: 34px;
        font-size: 22px;
        right: -22%;
    }

    .section-faq-wrapper .card-body{
        padding: 0 20px 20px;
        font-size: 15px;
        line-height: 1.8;
    }
}

@media(max-width:480px){

    .section-faq-wrapper h2{
        font-size: 22px;
    }

    .section-faq-wrapper .btn-link{
        font-size: 16px;
    }

    .section-faq-wrapper .btn-link::before{
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .section-faq-wrapper .card-body{
        font-size: 14px;
    }
}





.section-job-assurance{
    padding: 80px 0;
    background: #f2f2f2;
}

/* Main Box */
.section-job-assurance .job-assurance-box{
    background: linear-gradient(135deg, #7b5cff, #6a5af9);
    border-radius: 28px;
    padding: 55px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(106, 90, 249, 0.20);
}

/* Animated Glow */
.section-job-assurance .job-assurance-box::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    animation: floatingGlow 7s ease-in-out infinite;
}

@keyframes floatingGlow{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Content */
.section-job-assurance .job-content{
    position: relative;
    z-index: 2;
}

.section-job-assurance .job-content h2{
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 18px;
}

.section-job-assurance .job-content p{
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 0;
}

/* Arrow */
.section-job-assurance .curve-arrow{
    position: absolute;
    margin-top: -80px;
    right: -19%;
    animation: arrowMove 4s ease-in-out infinite;
}

@keyframes arrowMove{
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(10px);
    }
    100%{
        transform: translateX(0px);
    }
}

/* Right Side */
.section-job-assurance .job-btn-area{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Button */
.section-job-assurance .btn-get-started{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* Button Hover */
.section-job-assurance .btn-get-started:hover{
    transform: translateY(-5px) scale(1.03);
    background: #060058;
    color: #fff;
}

/* Book Call */
.section-job-assurance .book-call{
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.section-job-assurance .book-call span{
    margin-left: 6px;
    transition: all 0.4s ease;
}

.section-job-assurance .book-call:hover span{
    margin-left: 12px;
}

.section-job-assurance .book-call:hover{
    color: #fff;
    opacity: 0.85;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-job-assurance .job-content h2{
        font-size: 44px;
    }
}

@media(max-width:991px){

    .section-job-assurance{
        padding: 60px 0;
    }

    .section-job-assurance .job-assurance-box{
        padding: 45px 40px;
        text-align: center;
    }

    .section-job-assurance .job-content h2{
        font-size: 38px;
    }

    .section-job-assurance .job-content p{
        max-width: 100%;
    }

    .section-job-assurance .curve-arrow{
        display: flex;
        justify-content: center;
    }

    .section-job-assurance .job-btn-area{
        align-items: center;
        margin-top: 35px;
    }
}

@media(max-width:767px){

    .section-job-assurance{
        padding: 50px 0;
    }

    .section-job-assurance .job-assurance-box{
        padding: 35px 25px;
        border-radius: 22px;
    }

    .section-job-assurance .job-content h2{
        font-size: 30px;
        line-height: 1.4;
    }

    .section-job-assurance .job-content p{
        font-size: 16px;
        line-height: 1.7;
    }

    .section-job-assurance .btn-get-started{
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-job-assurance .book-call{
        font-size: 16px;
    }

    .section-job-assurance .curve-arrow svg{
        width: 130px;
    }
}

@media(max-width:480px){

    .section-job-assurance .job-content h2{
        font-size: 24px;
    }

    .section-job-assurance .job-content p{
        font-size: 15px;
    }

    .section-job-assurance .btn-get-started{
        width: 100%;
    }
}




.landing-footer{
    background-color: #383737;
    color: #fff;
    text-align: center;
    padding: 1.6rem 0;
}

.landing-footer p{
    color: #7e7b7b;
    line-height: 0;
    margin-bottom: 0;
}







.section-lectures-wrapper{
    padding: 90px 0;
    background: linear-gradient(180deg, #ebeeff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}


@keyframes floatingShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Row Alignment */
.section-lectures-wrapper .row{
    align-items: center;
}

/* Image */
.section-lectures-wrapper img{
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(6, 0, 88, 0.12);
    transition: all 0.5s ease;
    animation: imageFloat 5s ease-in-out infinite;
}

/* Image Hover */
.section-lectures-wrapper img:hover{
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 55px rgba(6, 0, 88, 0.22);
}

@keyframes imageFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Right Content */
.section-lectures-wrapper .col-lg-6:last-child{
    padding-left: 50px;
    animation: fadeRight 1s ease;
}

@keyframes fadeRight{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* Heading */
.section-lectures-wrapper h2{
    font-size: 44px;
    font-weight: 800;
    color: #060058;
    line-height: 1.3;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
}

/* Sub Heading */
.section-lectures-wrapper h4{
    font-size: 16px;
    line-height: 1.9;
    color: #4c4c68;
    font-weight: 500;
    margin-top: 13px;
    margin-bottom: 35px;
}

/* List */
.section-lectures-wrapper ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

/* List Item */
.section-lectures-wrapper ul li{
    position: relative;
    padding: 1px 20px 0px 38px;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #060058;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

/* Check Icon Circle */
.section-lectures-wrapper ul li::after{
    content: "✓";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 25px;
    border-radius: 5px;
    background: #060058;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s ease;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-lectures-wrapper h2{
        font-size: 40px;
    }

    .section-lectures-wrapper h4{
        font-size: 16px;
    }
}

@media(max-width:991px){

    .section-lectures-wrapper{
        padding: 70px 0;
    }

    .section-lectures-wrapper .col-lg-6:last-child{
        padding-left: 15px;
        margin-top: 45px;
    }

    .section-lectures-wrapper h2{
        font-size: 34px;
    }

    .section-lectures-wrapper h4{
        font-size: 16px;
        line-height: 1.8;
    }

    .section-lectures-wrapper ul li{
        font-size: 16px;
        padding: 16px 18px 16px 60px;
    }
}

@media(max-width:767px){

    .section-lectures-wrapper{
        padding: 55px 0;
    }

    .section-lectures-wrapper img{
        border-radius: 22px;
    }

    .section-lectures-wrapper h2{
        font-size: 28px;
        line-height: 1.4;
    }

    .section-lectures-wrapper h4{
        font-size: 16px;
        margin-bottom: 28px;
    }

    .section-lectures-wrapper ul li{
        font-size: 15px;
        line-height: 1.7;
        padding: 15px 15px 15px 55px;
        border-radius: 16px;
    }

    .section-lectures-wrapper ul li::after{
        width: 30px;
        height: 30px;
        font-size: 14px;
        left: 15px;
    }
}

@media(max-width:480px){

    .section-lectures-wrapper h2{
        font-size: 24px;
    }

    .section-lectures-wrapper h4{
        font-size: 15px;
    }

    .section-lectures-wrapper ul li{
        font-size: 14px;
    }
}









.section-number {
    padding: 7rem 1rem 4rem;
}


@media (max-width: 1200px) {
    .section-number {
        padding: 6rem 1rem 3.5rem;
    }
}

@media (max-width: 992px) {
    .section-number {
        padding: 5rem 1rem 3rem;
    }
}

@media (max-width: 768px) {
    .section-number {
        padding: 4rem 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-number {
        padding: 3rem 0.5rem 2rem;
    }
}


.section-number .number-bar{
  position: relative;
  padding: 5rem 0;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section-number .number-bar{
    background-size: cover;
  }
  .number-bar-side-img{
    display: none;
  }
}

@media (max-width: 480px) {
  .section-number .number-bar{
    background-size: cover;
  }
  .number-bar-side-img{
    display: none;
  }
}


.number-bar-side-img{
  position: absolute;
  width: 274px;
  top: -89px;
  left: 21px;
}

.section-number .number-bar h2{
    color: #000452;
    font-weight: 700;
    font-size: 2.9rem;
}
.section-number .number-bar h6{
  color: #000452;
  font-weight: 400;
  font-size: 1.1rem;
}





/* =========================
   SECTION OPTION WRAPPER
========================= */

.section-option-wrapper{
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.section-option-wrapper .row{
    row-gap: 25px;
}

/* OPTION CARD */
.section-option-wrapper .option-bar{
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #edf0f5;
}

/* HOVER EFFECT */
.section-option-wrapper .option-bar:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* TOP GRADIENT EFFECT */
.section-option-wrapper .option-bar::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#0d6efd,#6610f2);
}

/* ICON BOX */
.section-option-wrapper .icon-bar{
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #f1f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

/* ICON IMAGE */
.section-option-wrapper .icon-bar img{
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: 0.4s ease;
}

/* HOVER ICON ANIMATION */
.section-option-wrapper .option-bar:hover .icon-bar{
    background: #b0d0ff;
    transform: rotateY(180deg);
}

.section-option-wrapper .option-bar:hover .icon-bar img{
    transform: rotateY(180deg) scale(1.1);
}

/* TITLE */
.section-option-wrapper .card-title{
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.4;
    margin-bottom: 0;
    transition: 0.3s ease;
}

/* TITLE HOVER */
.section-option-wrapper .option-bar:hover .card-title{
    color: #060058;
}

/* =========================
   RESPONSIVE
========================= */

/* LARGE TABLET */
@media(max-width:991px){

    .section-option-wrapper{
        padding: 60px 0;
    }

    .section-option-wrapper .option-bar{
        padding: 30px 18px;
    }

    .section-option-wrapper .card-title{
        font-size: 20px;
    }
}

/* MOBILE */
@media(max-width:767px){

    .section-option-wrapper{
        padding: 50px 0;
    }

    .section-option-wrapper .row{
        row-gap: 20px;
    }

    .section-option-wrapper .option-bar{
        padding: 25px 15px;
        border-radius: 16px;
    }

    .section-option-wrapper .icon-bar{
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .section-option-wrapper .icon-bar img{
        width: 50px;
        height: 50px;
    }

    .section-option-wrapper .card-title{
        font-size: 18px;
    }
}

/* SMALL MOBILE */
@media(max-width:575px){

    .section-option-wrapper .card-title{
        font-size: 17px;
        line-height: 1.5;
    }

    .section-option-wrapper .option-bar{
        padding: 22px 14px;
    }
}




.landing-menu .navbar-light .navbar-nav .nav-link{
    color: #393185;
    font-size: 16px;
    font-weight: 500;
    margin-right: 8px;
}





.section-outcomes2 {
  padding: 8rem 0 4rem;
  position: relative;
  background-color: #f5f6f9;
}

.section-outcomes2 .card-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
}

.card {
  flex: 1;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
  position: relative;
}

.card:hover {
  flex: 2;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #ebebeb;
}

.text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}

/* ✅ Play button styling */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.play-btn:hover {
  background: rgba(38, 0, 255, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .section-outcomes2 .card-container {
    flex-wrap: wrap;
    height: auto;
  }

  .card {
    flex: 1 1 calc(50% - 20px);
  }

  .card:hover {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .section-outcomes2 .card-container {
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  .card {
    width: 100%;
  }
}









.section-career-wrapper{
    background: linear-gradient(180deg, #d1dfff, #ffffff);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* SECTION TITLE */

.career-tag{
    display: inline-block;
    background: rgba(13, 71, 161, 0.1);
    color: #0d47a1;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-career-wrapper h2{
    font-size: 42px;
    font-weight: 700;
    color: #071c45;
    margin-bottom: 6px;
    line-height: 1.3;
}

.career-subtitle{
    font-size: 18px;
    font-weight: 400;
    color: #5d6778;
    line-height: 1.8;
}

/* CARD DESIGN */

.careers-wrapper{
    background: #fff;
    border-radius: 6px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.careers-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d47a1, #0376f9, #60abf9);
}

.careers-wrapper:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.career-icon{
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 5px solid #dbe5ff;
    overflow: hidden;
}

.career-icon img{
    max-width: 100%;
    height: 100%;
}

.career-content h4{
    font-size: 20px;
    font-weight: 700;
    color: #071c45;
    margin-bottom: 15px;
}

.career-content h5{
    display: inline-block;
    background: #3e4095;
    color: #ffffff;
    padding: 10px 9px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.career-content h6{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #5d6778;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .career-content h4{
        font-size: 22px;
    }

}

@media(max-width:991px){

    .section-career-wrapper h2{
        font-size: 34px;
    }

    .career-subtitle{
        font-size: 16px;
    }

    .careers-wrapper{
        padding: 30px 20px;
    }

}

@media(max-width:767px){

    .section-career-wrapper{
        padding: 60px 0;
    }

    .section-career-wrapper h2{
        font-size: 28px;
    }

    .career-subtitle{
        font-size: 15px;
        line-height: 1.7;
    }

    .career-content h4{
        font-size: 22px;
    }

    .career-content h5{
        font-size: 16px;
    }

}

@media(max-width:575px){

    .section-career-wrapper h2{
        font-size: 24px;
    }

    .careers-wrapper{
        padding: 28px 18px;
        border-radius: 18px;
    }

    .career-icon{
        width: 85px;
        height: 85px;
    }

    .career-icon img{
        max-width: 45px;
    }

    .career-content h4{
        font-size: 20px;
    }

}






.section-awards-recognition {
    padding: 80px 0;
    background: #d6ddff;
}

.section-awards-recognition h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.section-awards-recognition h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 15px auto 0;
    border-radius: 50px;
}

.awards-bar {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.awards-bar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.awards-bar img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.5s ease;
}
.awards-bar:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .section-awards-recognition {
        padding: 60px 0;
    }
    .section-awards-recognition h2 {
        font-size: 2rem;
    }
    .awards-bar {
        margin-bottom: 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-awards-recognition {
        padding: 50px 0;
    }
    .section-awards-recognition h2 {
        font-size: 1.75rem;
    }
    .awards-bar {
        margin-bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .section-awards-recognition h2 {
        font-size: 1.5rem;
    }
    .awards-bar {
        padding: 10px;
        border-radius: 12px;
    }
    .awards-bar img {
        border-radius: 8px;
    }
}
















.section-activities-wrapper2{
    padding: 90px 0;
    background: linear-gradient(180deg, #f6f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.section-activities-wrapper2::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(6, 0, 88, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    animation: floatShape 7s ease-in-out infinite;
}

.section-activities-wrapper2::after{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(6, 0, 88, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: floatShape 9s ease-in-out infinite;
}

@keyframes floatShape{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Heading */
.section-activities-wrapper2 h2{
    font-size: 44px;
    font-weight: 800;
    color: #060058;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-activities-wrapper2 h2::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, #060058, #272685);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 20px;
}

/* Card Spacing */
.section-activities-wrapper2 .col-lg-3{
    margin-bottom: 30px;
}

/* Card Design */
.section-activities-wrapper2 .activities-card{
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(6, 0, 88, 0.08);
    transition: all 0.45s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Hover Gradient */
.section-activities-wrapper2 .activities-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060058, #272685);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.section-activities-wrapper2 .activities-card:hover::before{
    opacity: 1;
}

/* Hover Effect */
.section-activities-wrapper2 .activities-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(6, 0, 88, 0.20);
}

/* Image */
.section-activities-wrapper2 .activities-card img{
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.section-activities-wrapper2 .activities-card:hover img{
    transform: scale(1.08);
}

/* Card Body */
.section-activities-wrapper2 .card-body{
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
}

/* Title */
.section-activities-wrapper2 .card-body h4{
    font-size: 18px;
    font-weight: 700;
    color: #060058;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

/* Description */
.section-activities-wrapper2 .card-body p{
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

/* Hover Text */
.section-activities-wrapper2 .activities-card:hover h4,
.section-activities-wrapper2 .activities-card:hover p{
    color: #fff;
}

/* Shine Effect */
.section-activities-wrapper2 .activities-card::after{
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.12);
    transform: rotate(35deg);
    transition: all 0.7s ease;
}

.section-activities-wrapper2 .activities-card:hover::after{
    top: 100%;
    left: 100%;
}

/* Fade Up Animation */
.section-activities-wrapper2 .activities-card{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1199px){

    .section-activities-wrapper2 h2{
        font-size: 38px;
    }

    .section-activities-wrapper2 .card-body h4{
        font-size: 22px;
    }
}

@media(max-width:991px){

    .section-activities-wrapper2{
        padding: 70px 0;
    }

    .section-activities-wrapper2 h2{
        font-size: 32px;
        margin-bottom: 50px;
    }

    .section-activities-wrapper2 .activities-card img{
        height: 220px;
    }
}

@media(max-width:767px){

    .section-activities-wrapper2{
        padding: 55px 0;
    }

    .section-activities-wrapper2 h2{
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .section-activities-wrapper2 .activities-card{
        border-radius: 20px;
    }

    .section-activities-wrapper2 .activities-card img{
        height: 200px;
    }

    .section-activities-wrapper2 .card-body{
        padding: 22px 18px;
    }

    .section-activities-wrapper2 .card-body h4{
        font-size: 20px;
    }

    .section-activities-wrapper2 .card-body p{
        font-size: 15px;
    }
}

@media(max-width:480px){

    .section-activities-wrapper2 h2{
        font-size: 22px;
    }

    .section-activities-wrapper2 .activities-card img{
        height: 180px;
    }

    .section-activities-wrapper2 .card-body h4{
        font-size: 18px;
    }

    .section-activities-wrapper2 .card-body p{
        font-size: 14px;
    }
}






.section-certificates{
    background-color: #e6eaff;
    padding: 5rem 0;
}

.slider-container {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .slider-track {
      display: flex;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .slider-container:hover .slider-track {
      animation-play-state: paused;
    }

    .slider-track img {
      height: 60px;
      margin: 0 30px;
      object-fit: contain;
      transition: transform 0.3s;
    }

    .slider-track img:hover {
      transform: scale(1.1);
    }

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

    @media (max-width: 768px) {
      .slider-track img {
        height: 40px;
        margin: 0 20px;
      }
    }

    @media (max-width: 480px) {
      .slider-track img {
        height: 64px;
        margin: 0 15px;
      }
    }


    .slider-left {
      overflow: hidden;
      position: relative;
      width: 100%;
      margin-top: 15px;
    }

    .slider-track-left {
      display: flex;
      width: max-content;
      animation: scroll-right 30s linear infinite;
    }

    .slider-left:hover .slider-track-left {
      animation-play-state: paused;
    }

    .slider-track-left img {
      height: 60px;
      margin: 0 30px;
      object-fit: contain;
      transition: transform 0.3s;
    }

    .slider-track-left img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll-right {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    @media (max-width: 768px) {
      .slider-track-left img {
        height: 40px;
        margin: 0 20px;
      }
    }

    @media (max-width: 480px) {
      .slider-track-left img {
        height: 64px;
        margin: 0 15px;
      }
    }












/* Heading */
.section-payroll-reports h2{
    font-size: 44px;
    font-weight: 800;
    color: #060058;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-payroll-reports h2::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, #060058, #272685);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 20px;
}











.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    text-align: center;
}

.stat-item h2 {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 700;
}

.stat-item h6 {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 28px;
    }

    .stat-item h6 {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}



