﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* apply-rtl */
* {
    font-family: "Cairo", sans-serif;
}

html[lang="ar"] * {
    direction: rtl !important
}

html[lang="en"] * {
    direction: ltr !important
}

body {
    scroll-behavior: smooth !important;
}

button,
a,
router-link,
img,
RouterLink {
    transition: all 0.3s ease-in-out 0.3s !important;
}

    img:hover {
        transform: scale(1.1) !important;
    }

header a:hover,
header span:hover {
    color: #2e97f2;
}

header .mobile-header a:hover,
header .mobile-header span:hover {
    color: #fff;
}


.login-bg {
    height: auto;
    background-image: url("https://lahn.sa/images/our-work/work-grid/%D8%AA%D8%B5%D9%85%D9%8A%D9%85%20%D9%87%D9%88%D9%8A%D8%A9%20%20%D8%B9%D8%B7%D8%A7%D8%A4%D9%86%D8%A7%20%D8%AD%D9%8A%D8%A7%D8%A9.png");
}


/*select date button*/

/* Hide the radio button itself */
input[type="radio"]:checked + .date-text {
    background-color: #e0f7fa; /* Light blue background when selected */
    border: 2px solid #00796b; /* Green border */
}

.
/* Default styles for the label */
.radio-option {
    padding: 1rem;
    border: 2px solid #ccc; /* Light grey border */
    border-radius: 8px; /* Rounded corners */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease; /* Smooth transition */
}

    /* Hover effect for label */
    .radio-option:hover {
        background-color: #f1f1f1; /* Light gray background on hover */
    }

/* Active state for selected radio */
input[type="radio"]:checked + .date-text {
    background-color: #e0f7fa; /* Light blue when selected */
    border-color: #00796b; /* Green border */
}

/* Ensuring good alignment */
.date-text {
    text-align: center;
}


/* Overlay styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner styling */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Content styling */
.content {
    padding: 20px;
    text-align: center;
}


/*tel input*/

.iti {
    width: 100% !important;    
}