 .hero-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(to right, #e8eaed, #b5b6b8);
        }

        .hero-form {
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translate(-50%, 50%);
            width: 85%;
            z-index: 5;
        }

        .carousel-item {
            padding: 40px 0;
        }

        .carousel-indicators {
            bottom: -40px;
        }

        .carousel-indicators [data-bs-target] {
            background-color: #1e60aa;
        }

        .carousel-item img {
            width: 100%;
            height: 250px;
            border-radius: 10px;
            object-fit: cover;
        }
        /*Form */
        .form-box {
            background: #f5f5f5;
            border-radius: 15px;
            padding: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .service-row {
            margin-bottom: 7px;
        }

        .service-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(45deg, #1e60aa2b, #ffffff);
            padding: 10px;
        }

        .service-item i {
            color: #000;
        }

        .apply-btn {
            border-radius: 3px;
            padding: 8px;
            font-weight: 600;
        }

       .promise-box {
            background: #1e60aa;
            border-radius: 10px;
            padding: 55px 18px 55px 18px;
            color: #000;
            height: 100%;
        }

        .stat-card {
            border-radius: 12px;
            padding: 12px;
            height: 100%;
        }

        .stat1 {
            background: #e9dfe6;
        }

        .stat2 {
            background: #efe9dc;
        }

        .stat3 {
            background: #e3e6f2;
        }

        .stat4 {
            background: #dce8e1;
        }

        .stat5 {
            background: #eadede;
        }

        .stat6 {
            background: #dde9ef;
        }

        .stat-card h3 {
            font-weight: 700;
        }

        .stat-card p {
            line-height: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            color: #fff;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .feature-icon {
            width: 35px;
            height: 35px;
            background: #fff;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .choose-section-modern {
            padding: 90px 0;
            background: linear-gradient(135deg, #f4f7fb, #ffffff);
        }

        /* ORBIT WRAPPER */
        .orbit-wrapper {
            position: relative;
            max-width: 450px;
            aspect-ratio: 1/1;
            margin: auto;
        }

        /* OUTER GLOW RING */
        .orbit-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid rgb(30 96 170 / 23%);
            box-shadow: 0 0 40px rgb(0 75 245 / 27%);
            animation: slowRotate 40s linear infinite;
        }

        /* INNER RING */
        .orbit-ring-inner {
            position: absolute;
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
            border-radius: 50%;
            border: 2px solid rgba(0, 0, 0, 0.08);
            animation: slowRotateReverse 35s linear infinite;
        }

        /* CENTER GLASS LOGO */
        .orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* SERVICE BADGES */
        .orbit-item {
            position: absolute;
            background: #fff;
            padding: 12px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .orbit-item i {
            margin-right: 6px;
            color: #1e60aa;
        }

        .orbit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        /* POSITIONING */
        .items-cards1 {
            top: -2%;
            left: 37%;
        }

        .item-tests {
            top: 25%;
            right: -5%;
        }

        .item-nvq {
            top: 60%;
            right: -3%;
        }

        .item-profile {
            bottom: 1%;
            right: 25%;
        }

        .item-courses {
            bottom: 10%;
            left: 2%;
        }

        .item-cpcs {
            top: 45%;
            left: -5%;
        }

        /* ANIMATION */
        @keyframes slowRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes slowRotateReverse {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        /* MOBILE */
        @media(max-width:991px) {
            .orbit-wrapper {
                margin-bottom: 40px;
            }
        }
        
        .swiper-slide img {
            height: 140px !important;
        }

        .mySwiper {
            padding-bottom: 50px;
            /* space for dots */
        }

        .mySwiper .swiper-pagination {
            position: relative;
            margin-top: 25px;
            text-align: center;
        }