﻿body {
    font-family: 'IBM Plex Sans Arabic', serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
}

.header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative; /* Ensure absolute positioning works within this container */
}



    .header .left-image {
        position: absolute;
        top: 0;
        height: 128px; /* Adjust height as needed */
        left: 0;
    }

    .header .right-image {
        position: absolute;
        top: 0;
        height: 128px; /* Adjust height as needed */
        right: 0;
        transform: scaleX(-1); /* Flip the image horizontally */
    }

.title-image {
    width: 240px;
    height: 70px;
    margin: 0 auto;
    display: block;
}


.content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.service {
    margin-bottom: 20px;
}

    .service h3 {
        color: #16a085;
    }

.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index:1000;
}


.about-link {
    position: absolute;
    top: 20px; /* Adjust to position on the corner image */
    right: 20px; /* Adjust to position on the corner image */
    width: 64px;
    height: 64px;
    background-color: #fff;
    color: black;
    border-color: goldenrod;
    border-width: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.0em;
    text-decoration: none;
    z-index: 10; /* Ensure it overlays the image */
}


.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

    .cookie-consent p {
        margin: 0 0 10px;
    }

    .cookie-consent button {
        background-color: #2c3e50;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
    }

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 0px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    .floating-button:hover {
        background-color: #0056b3;
    }


.left-floating-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #239B56;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 0px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    .left-floating-button:hover {
        background-color: #0056b3;
    }
