:root {
    --primary: #1092b6;
    --primary-light: #73cad4;
    --secondary: #53ab60;
    --bg-main: #f2f6fe;
    --dark: #333;
    --white: #ffffff;
}

html, body {
    min-height: 100%;
}

body {
    /*font-family: 'Tajawal', sans-serif;*/
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    background: #F2F6FE 0% 0% no-repeat padding-box;
    overflow-x: hidden;
    direction: ltr;
    color: #565656;
    line-height: 16px;
}


.h3, h3 {
    font-size: 1.5rem;
}

.navbar {
    z-index: 100;
    padding: 1rem 0;
    background-color: var(--white);
}

a {
    text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 400;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-light .nav-item.active .nav-link {
    color: var(--secondary);

}


.text--primary {
    color: var(--primary);
}

.text--secondary {
    color: var(--secondary);
}

/* Mobile styles */
@media (max-width: 992px) {
    .header {

    }

    .navbar-nav {
        padding: 0;
    }

    .navbar-nav li {
        padding: 0.5rem;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .navbar {
    }

    .header {
    }
}

.ltr {
    text-align: left !important;
    direction: ltr;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #8cd6dfcf;
    padding: 150px 0;
}

.hero .container {
    z-index: 2;
    position: relative
}

.hero .wb-logo img {
    width: 200px;
}

.hero .download-group {
    justify-content: flex-start;
}

.download img {
    height: 60px;
    margin-inline-end: 10px;
}

.device img {
    width: 90%;
    margin: 0 auto;
}

#triangle-down {
    width: 0;
    height: 0;
    border-left: 800px solid transparent;
    border-right: 800px solid transparent;
    border-top: 680px solid #8cd6df;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    margin-left: -18%;
}

.register-block {
    background: var(--primary);
    margin-top: 200px;
    color: #fff;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    margin-right: 100px;
    background-image: url('../images/doctor-bg.png');
    background-attachment: fixed;
    background-size: 100% 100%;
}

.centers-block {
    background: var(--primary);
    color: #fff;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    margin-right: 100px;
    background-image: url('../images/doctor-bg.png');
    background-attachment: fixed;
    background-size: 100% 100%;
    padding: 100px 0;
    margin-bottom: 100px;
}


.register-block .doctor {
    text-align: left;
    position: relative;
    min-height: 400px
}

.register-block .doctor-image {
    /*position: absolute;*/
    /*top: -200px;*/
    /*left: 0;*/
}

.register-block .doctor-image img {
    width: 500px;
    margin-top: -100px;
}

.slider {
    margin-top: 200px;
}

.footer {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.footer-pattern-right {
    background: url('../images/pattern.png');
    height: 240px;
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 33%;
    background-size: cover;
    z-index: 1;
}

.footer-pattern-left {
    background: url('../images/pattern.png');
    height: 240px;
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 33%;
    background-size: cover;
    z-index: 1;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 150px;
}

.social-links {
    position: relative;
    z-index: 99;
}

.social-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    margin: 2rem 0;
    padding: 0;
}

.social-links ul li a {
    background: rgb(29 175 241 / 10%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links ul li a img {
    height: 25px;
}


.driver {
    height: 400px;
}

.register {
    padding-top: 200px;
    position: relative;
    overflow-x: hidden;
}


.register .register-logo {
    margin-bottom: 50px;
}

.register .register-logo img {
    width: 200px;
}

.register .card {
    padding-top: 50px;
    border: 1px solid #fff;
    border-radius: 2rem;
}


.form-group {
    margin-bottom: 1rem;
}

.form-container {
    position: relative;
    z-index: 99;
}

.send-btn {
    width: 200px;
    padding: 1rem;
    color: #565656;
}

.error {
    color: #dc3545 !important;
    font-size: 0.8rem;
}

.form-control {
    text-align: left;
}

.form-control::-webkit-input-placeholder {
    color: #ddd;
}

.loading {
    animation: rotation 2s infinite linear;
    background-image: url('../images/logo-weclinic.png');
    text-align: center;
    color: #8fc641;
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
    transform: rotate(360deg);
    transition-duration: 0.8s;
    transition-property: transform;
    width: 300px;
    height: 150px;
    margin: 0 auto;
    padding: 1rem;
    display: none;
}

.form-label {
    color: #8fc641
}

.btn-success-light {
    background-color: #71b94c;
    border-color: #71b94c;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}


@media (max-width: 768px) {

    .hero .device {
        margin-top: 50px;
    }

    .hero .wb-logo {
        margin-top: 50px;
        text-align: center
    }

    .hero .download-group {
        justify-content: space-between;
    }

    .register-block {
        margin-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding-top: 50px;
        text-align: center;
        margin-top: 100px;
    }

    .register-block .doctor-image img {
        width: 100%;
        margin-top: 100px;
    }

    .download img {
        height: 50px;
    }

    #triangle-down {
        width: 0;
        height: 0;
        border-left: 200px solid transparent;
        border-right: 794px solid transparent;
        border-top: 120px solid #8cd6df;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        margin-left: -18%;
    }

    .slider {
        margin-top: 100px;
    }
}

.iti {
    width: 100%;
    direction: ltr
}


.banner {
    min-height: 800px;
    width: 100%;
    overflow: hidden;
    position: relative;

}

.banner-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 800px; /* Match the min-height of .banner */
}


@media (max-width: 768px) {
    .banner {
        min-height: 350px;
        margin-top: 96px;
    }
    .banner-slide {
        height: 350px;

    }
}
.slider-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-main);
    padding: 50px 0;
}

/* Custom Navigation Arrows */
.owl-nav {
    position: relative;
    /*top: 50%;*/
    /*width: 100%;*/
    /*transform: translateY(-50%);*/
}

.owl-nav button {
    background-color: #8fc641 !important;
    color: #fff !important;
    border: 1px solid #8fc641 !important;
    font-size: 18px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 30px;
    text-align: center;
    border-radius: 5px !important;
    transition: all 0.3s ease;
}


.owl-nav button:hover {
    background-color: #fff !important;
    color: #8fc641 !important;
}

.owl-nav .owl-prev {
    left: -50px; /* Position from the left side of the container */
}

.owl-nav .owl-next {
    right: -50px; /* Position from the right side of the container */
}

.owl-nav button:hover {
    background-color: #f0f0f0; /* Background color on hover */
}

.card {
    border: 0;
}

.search-banner {
    position: relative;
    z-index: 9;
}

.search-results {
    position: relative;
}

.mr-auto {
    margin-right: auto;
}
.ml-auto {
    margin-left: auto;
}


.page-content {
    margin-top: 120px;
    padding: 50px 0;
    background: #fff;
}

.page-content h1, .page-content h2 {
    text-align: center;
    color: var(--primary);
    text-transform: capitalize;
}

.page-content .catchy-text {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.page-content .content {
    padding: 50px;
}

.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 50px;
    min-height: 250px;
    display: flex;
    justify-content: right;
    align-items: center;
}

.page-banner h1{
    color: var(--primary);
}

a {
    color:var(--primary);
    text-decoration: none;
}

.rounded-image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #eee;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
}
.rounded-image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.page-item.active .page-link{
    background-color: #8fc740;
    border-color: #8fc740;
}

.navbar-brand-slogan{
    font-size: 24px;
    text-transform: uppercase;
    color: #3fa5c3;
}



.teasr{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 16px 0;
    z-index: 999;
    color: #fff;
    text-align: center;
}
