@font-face {
    font-family: "Readex Pro";
    src: url('../fonts/readexpro-variablefont_hexp,wght.ttf') format('truetype');
}
*,
*::after,
*::before {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.4;
    font-family: 'Readex Pro', sans-serif;
}
a,
p,
h1,
h2,
h {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.4;
}
:root {
    --primary-color: #bc852b;
}

body {
    direction: rtl;
    width: 100%;
    height: 100%;
    font-family: 'Readex Pro', sans-serif;
}
.navbar-toggler:focus {
    outline: none;
}
img {
    display: block;
    width: 100%;
}
h3 {
    color: #bc852b;
    font-size: calc(1.7vw + 0.8rem);
    font-weight: 600;
    line-height: normal;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.bottom-left-icons {
    position: fixed;
    bottom: 8px;
    left: 9px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: iconsFadeIn 0.5s ease-in-out;
}

    .bottom-left-icons a {
        margin: 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: white;
        text-align: center;
        text-decoration: none;
        animation: iconsFadeIn 0.5s ease-in-out;
    }

        .bottom-left-icons a.phone-icon {
            color: #bc852b;
            border: 2px solid #bc852b;
            display: none;
        }

        .bottom-left-icons a.whatsapp-icon {
            color: #25d366;
            border: 2px solid #25d366;
            animation: pulse 2s ease-in-out infinite;
        }

        .bottom-left-icons a i {
            font-size: 28px;
        }
@media (max-width: 768px) {
    .bottom-left-icons a.phone-icon {
        display: flex; /* Show phone icon on mobile devices */
    }
}

#progress {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button 20px from the bottom */
    right: 10px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    width: 50px; /* Adjust width */
    height: 50px; /* Adjust height */
    border-radius: 50%; /* Rounded corners */
    background: conic-gradient(rgb(0, 161, 176) 3%, rgb(215, 215, 215) 3%);
    display: grid; /* Use grid to center the icon */
    place-items: center; /* Center the icon */
    cursor: pointer; /* Add a mouse pointer on hover */
    transition: background 0.3s; /* Smooth transition for background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add shadow for better visibility */
}

#progress-value {
    display: block;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #00a1b0;
}


@keyframes iconsFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}
/* For Select Text */
::selection {
    background: #bc852b;
    color: #fff;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    background-color: #f0f0f0; /* Light background color */
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* Thumb color */
    border-radius: 8px;
    transition: background-color 0.2s ease-in-out;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Darker thumb color on hover */
    }

::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Track color */
    border-radius: 8px;
}

    ::-webkit-scrollbar-track:hover {
        background-color: #e0e0e0; /* Darker track color on hover */
    }

::-webkit-scrollbar-button {
    display: none; /* Hide scrollbar buttons (arrows) */
}

::-webkit-scrollbar-corner,
::-webkit-resizer {
    background-color: #f0f0f0; /* Corner and resizer color */
    border-radius: 8px;
}
