.valign .content {
    padding-left: 40px;
}

.contact-title-arabic {
    text-align: right;
}


.home-page-title .sub-title {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

/* home page carousel drag*/
.drag-carousel {
    position: relative;
    margin: 20px 0;
    cursor: none;
}
.drag-carousel a {
    cursor: none;
}

.custom-cursor {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none !important;
    transition: transform 0.2s ease;
    transform: scale(0);
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.custom-cursor span {
    font-size: 13px;
    color: black;
}

.drag-carousel.hovered .custom-cursor {
    transform: scale(1);
}



.hamenu.open {
    left: 0;
    transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.hamenu {
    position: fixed;
    top: 0;
    left: -100%;
    right: inherit;
    width: 410px;
    height: 100vh;
    background: #ebebeb;
    padding: 130px 30px 30px;
    overflow-y: scroll;
    z-index: 9999;
    -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
    overflow: auto;
}

@media only screen and (max-width: 768px) {
    .hamenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ebebeb;
        padding: 130px 30px 30px;
        overflow-y: scroll;
        z-index: 9999;
        -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
        -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
        transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
        overflow: auto;
    }
}