/* Select à¤”à¤° Drag à¤°à¥‹à¤•à¥‡à¤‚ */

body {
    user-select: none !important;
    background-color: black;
   
}

img {
    pointer-events: none !important;
    -webkit-user-drag: none !important;
}

.service-one {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e4aa0b 0%, #fcc325 100%);
    opacity: 0.95;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

/* Service Box */

.service-one__item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-one__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Icon */

.service-one__icon {
    font-size: 45px;
    color: #2575fc;
    margin-bottom: 15px;
    transition: 0.4s;
}

.service-one__item:hover .service-one__icon {
    color: #6a11cb;
}

/* Title */

.service-one__title a {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.service-one__title a:hover {
    color: #2575fc;
}

/* List */

.service-one__list {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.service-one__list li {
    margin: 8px 0;
}

.service-one__list a {
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.service-one__list a:hover {
    color: #6a11cb;
}

.call-back-1 {
    position: fixed;
    bottom: 140px;
    right: 10px;
    z-index: 99;
    animation-name: mover1;
    -webkit-animation: mover1 1s infinite alternate;
    animation: mover1 1s infinite alternate;
}

@-webkit-keyframes mover1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.call-back-1 img {
    width: 100px;
    margin-bottom: 5px;
    display: block;
}

.call-back {
    position: absolute;
    top: 225px;
    right: 10px;
    z-index: 99;
    animation-name: mover;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.call-back img {
    width: 100px;
    margin-bottom: 15px;
}


