@font-face {
    font-family: 'almarai-regular';
    src: url('../fonts/almarai-regular.ttf') format('truetype');
}
*,
*::after,
*::before {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.4;
    font-family: 'almarai-regular', 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: #125a42;
}
h1, h2, h3, h4, h5, h6 {
    color: #125a42;
    font-weight:700;
}
p {
    color: var(--Neutral-600, #999) ; 
    font-size: calc(0.3vw + 0.85rem) ;
    font-style: normal ;
    font-weight: 500;
}
body {
    width: 100%;
    height: 100%;
    font-family: 'almarai-regular', sans-serif;
}

.navbar-toggler:focus {
    outline: none;
}

img {
    display: block;
    width: 100%;
}
a:hover{
    color:none
}
.overlay-text h1 {
    color: var(--Neutral-White, #FFF);
    font-size: calc(16px + 2vw);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h3 {
    color: #125a42;
    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: #125a42;
            border: 2px solid #125a42;
            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(#125a42 0%, #125a42 30%, rgb(215, 215, 215) 30%, rgb(215, 215, 215) 100%);
    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: #125a42;
}

.language-button span {
    color: var(--Primary-500, #125a42) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.language-button:hover {
    border-color: #125a42;
    color: #ffffff !important;
    background-color: #125a42;
    border-color: #125a42 !important;
}
@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: #125a42;
    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;
}
/********************************************************************************/
:root {
    --main-bg-light: #F7F7F7; /* Background color for light theme */
    --main-bg-dark: #333333; /* Background color for dark theme */
    /* Light theme gradient colors */
    --gradient-light-start: rgba(94, 160, 129, 0.2); /* Light green, semi-transparent */
    --gradient-light-end: rgba(94, 160, 129, 1); /* Darker green */
    /* Dark theme gradient colors */
    --gradient-dark-start: rgba(50, 90, 75, 0.2); /* Darker green, semi-transparent */
    --gradient-dark-end: rgba(50, 90, 75, 1); /* Darker green */
}

/*.main-section {
    background: linear-gradient(to bottom, rgba(94, 160, 129, 0.2) 0%, rgba(94, 160, 129, 1) 100%);
    padding-top: 50px;
    padding-bottom: 35px;
}*/
.main-bg {
    background-color: var(--main-bg-light);
    padding-top: 50px;
    padding-bottom: 35px;
    transition: background-color 0.3s ease; /* Smooth transition */
}

 

/* For Video */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

video {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    display: none; /* Initially hidden */
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/*************************/
/* Light Theme */
 body.light-theme {
    background-color: #ffffff !important;
    color: #000000 !important;
}
 