#fixed {
    width: 100%;
    height: 100%;
    color: white;
    background-color: black;
    position: fixed;
}
#shape {
    background-color: #ff651c;
    position: fixed;
    height: 155%;
    width: 136%;
    transform: rotate(-57deg);
    left: -91%;
    top: -48%;
    z-index: -1;
    box-shadow: 0 0 7px rgb(255 255 255 / 95%);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ff651c;
}

::-webkit-scrollbar-thumb:hover {
    background: red;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.glitch-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../assets/images/profile.jpg");
    background-size: cover;
    -webkit-background-size: center;
    background-position: center;
    z-index: 1 !important;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 25px rgb(0, 0, 0 / 85%);
}

.cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 1000;
    background-color: #ff651c;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid #ff651c;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.animated-bar {
    background-color: #ff651c;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    margin: 0 auto 0 auto;
    position: relative;
    right: 0;
    width: 100px;
    border-radius: 4px;
    /* animation: moveRightToLeft 2s infinite linear alternate; */
}

@keyframes moveRightToLeft {
    from {
        right: 0;
    }
    to {
        left: 30%;
    }
}

#image-container {
    overflow: hidden;
}

#image-container img {
    transition: transform 0.5s ease;
}

#image-container:hover img {
    transform: scale(1.2);
}
/* portfolio  */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.content {
    color: white;
    text-align: center;
}

.title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.description {
    font-size: 1rem;
    margin: 0;
}

.service-img {
    transition: all 0.8s ease;
}
.service-img:hover {
    transform: rotate(360deg);
}
