html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: "Tajawal", sans-serif;
    direction: rtl;
}
:root{
    --primary-color:#e31237;
}
.brand{
    color: var(--primary-color);
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
}

.btn:hover{
    background-color: white;
    color: var(--primary-color);
}
.section-title{
    position: relative;
    padding: 115px 0 35px 0;
    text-align: center;
}
.section-title::after{
    position: absolute;
    content: "";
    width: 2px;
    height: 100px;
    top: 0;
    left: 50%;
    margin-left: 1px;
    background: var(--primary-color);
}
header{
    position: absolute;
    width: 100%;
    z-index: 11;
}
/* Start landing  */
.landing{
    background-image: url(../imgs/hero.jpg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;
}
.landing::after{
    content: "";
    background-image: url(../imgs/overlay-bottom.png);
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
.landing .box{
    max-width: 700px;
    text-align: center;
    margin: auto;
    color: white;
}
.landing .box h1{
    font-weight: 700;
}
.landing .box p{
    font-weight: 500;
}
.landing .btn, .about .btn{
    transition: .3s;
    animation: 1.5s ease-out infinite bouncing2;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 30px;
}
/* start about us  */
.about{
    padding-block: 40px;
    background-color: #fffbf2;
}
.about h2{
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 50px;
}
.about p{
    font-size: 20px;
}
.about .box ul li{
    margin-bottom: 20px;
    text-align: right;
}
.about .box ul li i{
    margin-left: 10px;
    font-size: 20px;
    color: var(--primary-color);
}
.about .box ul li span{
    font-size: 20px;
    font-weight: 500;
}
.banner{
    position: relative;
    height: 300px;
    overflow: hidden;
    background-image: url(../imgs/banner.png);
    background-position: center;
    background-size: cover;
    z-index: 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: -1;
}

.banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.banner p {
    font-size: 18px;
}
/* start contact us  */
.contactus {
    padding-block: 35px;
    background-color: #f8f9fa;
}

#book {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form {
    width: 100%;
}

form input {
    width: 100%;
    border-radius: 55px;
    border: 1px solid #EDEDED;
    background: #FFF;
    color: #6A6A6A;
    height: 60px;
    transition: all .5s;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.04);
    padding-right: 15px;
    margin-bottom: 20px;
}

form input:focus {
    border: 2px solid var(--main-color);
}

.btn {
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    border-radius: 55px;
    padding: 10px;
}



footer{
    background-color: var(--primary-color);
    color: white;
    padding-bottom: 5px;
}

  #loading-container {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  #loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* animations  */
@keyframes bouncing2 {
    50%,from,to {
        transform: translateY(-5px) scale(1,1)
    }

    25% {
        transform: translateY(5px) scale(.9,1.01)
    }

    75% {
        transform: translateY(0) scale(.95,1.01)
    }
}
