        .services-sec {
        padding: 50px 20px;
        background: #0f0c1d;
        color: white;
        text-align: center;
        }

        .services-sec h2 {
        margin-bottom: 40px;
        font-size: 4  rem;
        }

        .box {
        overflow: visible;
        width: 300px;
        height: 350px;
        margin: 20px;
        perspective: 1000px;
        }

        .content-sr {
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 300ms;
        box-shadow: 0px 0px 10px 1px #000000ee;
        border-radius: 5px;
        }
        .content-sr.flipped {
        transform: rotateY(180deg);
        }


        .front, .back {
        background-color: #151515;
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        border-radius: 5px;
        overflow: hidden;
        }

        .back {
        justify-content: center;
        display: flex;
        align-items: center;
        }

        .back::before {
        position: absolute;
        content: ' ';
        display: block;
        width: 160px;
        height: 160%;
        background: linear-gradient(90deg, transparent, #9c27b0, #9c27b0, #9c27b0, #9c27b0, transparent);
        animation: rotation_481 5000ms infinite linear;
        }

        .back-content {
        position: absolute;
        width: 99%;
        height: 99%;
        background-color: #151515;
        border-radius: 5px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 20px;
        box-sizing: border-box;
        font-weight:20;
        }

        .box:hover .content-sr {
        transform: rotateY(180deg);
        }

        .front {
        transform: rotateY(180deg);
        color: white;
        }

        .front .front-content {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        }

        .front-content .badge {
        background-color: #00000055;
        color: #fff;
        padding: 5px 10px;
        border-radius: 10px;
        backdrop-filter: blur(2px);
        width: fit-content;
        font-weight: 40px;
        font-family: Arial, Helvetica, sans-serif;
        }

        .description {
        box-shadow: 0px 0px 10px 5px #00000088;
        width: 90%;
        padding: 10px;
        top: 30px;
        background-color: #00000099;
        backdrop-filter: blur(5px);
        border-radius: 5px;
        opacity: 80%;
        }

        .para {
        font-size: 13px;
        font-family: Arial, Helvetica, sans-serif;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        }

        .box-footer {
        color: #ffffff88;
        margin-top: 5px;
        font-size: 8px;
        }

        .front .img {
        position: absolute;
        width: 100%;
        height: 100%;
        }

        .circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #ba68c8;
        position: relative;
        filter: blur(15px);
        animation: floating 2600ms infinite linear;
        }

        #bottom {
        background-color: #ab47bc;
        left: 150px;
        top: 100px;
        width: 150px;
        height: 150px;
        animation-delay: -800ms;
        }

        #right {
        background-color: #8e24aa;
        left: 200px;
        top: -80px;
        width: 50px;
        height: 50px;
        animation-delay: -1800ms;
        }

        .more-btn a{
            text-decoration: none;
            color: #FFF;
        }

        .more-btn {
        background: #9c27b0;
        color: white !important;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-top: 15px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin-bottom: 20px;
        }

        .more-btn:hover {
        background: #7b1fa2;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        @keyframes rotation_481 {
        0% { transform: rotateZ(0deg); }
        100% { transform: rotateZ(360deg); }
        }

        @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(10px); }
        100% { transform: translateY(0px); }
        }
        .services-container {
        display: flex;

        justify-content: space-around;
        /* flex-wrap: wrap; */
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        }

    @media (max-width: 768px) {

    .services-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

        .box {
        flex: 0 0 100vw;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 10px;
    }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: #9c27b0;
        }

            .services-container::-webkit-scrollbar {
        display: none;
    }

    .services-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
        }