/* Start Global Style */
:root {
  --main-color: #6d3e8f;
  --primary-color: #ddd;
  --light-color: #fff;
  --dark-color: #000;
}
html {
  scroll-icon-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: myFirstFont;
  src: url("/assets/fonts/harir Regular.ttf");
}
body {
  font-family: myFirstFont;
  background-color: var(--primary-color);
  direction: rtl;
  top: 0;
  left: 0;
  background-image: url("/assets/images/bg.jfif");
  height: 100%;
  position: relative;
  background-size: cover;
}
h2,
h3,
h4,
h5,
h6 {
  font-family: myFirstFont;
  color: var(--main-color);
}
h2 {
  font-size: 50px;
}
a {
  text-decoration: none;
  font-size: 20px;
}
ul {
  padding: 0 !important;
}
p {
  font-size: 20px;
}
.item-one {
  border: 3px solid rgb(152 179 124);
}
.item-two {
  border: 3px solid rgb(144 100 145);
}
.item-three {
  border: 3px solid rgb(182, 122, 80);
}
.item-four {
  border: 3px solid rgb(184, 98, 64);
}
.item-five {
  border: 3px solid rgb(166, 93, 98);
}
.item-six {
  border: 3px solid rgb(157, 149, 79);
}
/* End Global Style */

/* Start Spinner Style */
.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: var(--main-color) transparent var(--main-color) transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: var(--main-color);
  z-index: 1;
}
.loader-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: var(--light-color);
  z-index: 9999;
}

.loader-container-hidden {
  display: none;
}
/* End Spinner Style */

/* Start Nav Style */
.nav {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 999;
  height: 80px;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  background: rgb(255 255 255 / 50%);
}
.nav.fix-nav {
  position: fixed;
  width: 100vw;
  height: 80px;
  background: rgb(234, 232, 227);
  z-index: 999;
  box-shadow: rgb(166 154 128 / 30%) 0px 0px 10px 15px;
}
.offcanvas-start {
  width: 100% !important;
  background-color: rgb(234, 232, 227);
}
.logo {
  width: 230px;
}

.nav-link {
  color: var(--dark-color);
  font-size: 20px;
  transition: color 0.3s ease 0s;
  cursor: pointer;
}

.nav-link:hover {
  color: rgb(101, 101, 101);
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
  justify-content: space-between;
}

/* End Nav Style */
/* Start Hero Style */
.hero-header{
position:relative;
height:100vh;}
.hero-title{
  width:60%;
  margin:auto
}
.hero-title {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color: #fff;
  text-shadow:0 0 10px #000, 0 0 10px #d500ff, 0 0 10px #000,0 0 10px #000;
}

.hero-img {
  position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
  background: url("/assets/images/hero.png");
     background-repeat: no-repeat;
  background-attachment:fixed;
  background-size:cover;
}

.scroll-icon {
  transform: translateX(50%);
  position: absolute;
  right: 50%;
  bottom: 0px;
  align-items: center;
  cursor: pointer;
}
.scroll-icon img {
  height: 100px;
}
/* End Hero Style */

/* Start About Style */
.desc-item {
  z-index: 2;
  font-size: 23px;
  line-height: 2.5rem;
  text-align: center;
  color: var(--dark-color);
}
/* End About Style */

/* Start Principle Style*/
.principle {
  background: linear-gradient(to bottom, #d68490, #ab99c9);
  color: var(--dark-color);
}
/* End Principle Style */

/* Start Service Style */
.service-images img {
  object-fit: cover;
}
.service-list {
  list-style-type: disc;
}
/* End Service Style */

/* Start Footer Style */
.footer {
  width: 100%;
  background: linear-gradient(to top, #d68490, #ab99c9);
  padding: 30px 0px;
  direction: rtl;
  font-weight: 500;
  z-index: 100;
}

/* End Footer Style */
/* Start Button Go Up Style */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 17px;
  display: none;
  padding: 7px 17px;
  text-align: center;
  font-size: 22px;
  background-color: var(--main-color);
  color: var(--light-color);
}
/* End Buuton Go Up Style */
/* Start Media Query */
@media (max-width: 1199px) {
  .nav-link {
    font-size: 18px;
    padding-left: 1.6px !important;
  }
}
@media (max-width: 991.98px) {
  .nav {
    padding: 10px;
    height: auto;
  }

  .nav-link {
    padding: 10px;
    border-bottom: 1px solid rgb(166, 154, 128);
    color: rgb(0, 0, 0);
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }
  .nav-item {
    width: 100%;
  }
  .offcanvas-body {
    padding: 30px;
  }
  .desc-item {
    font-size: 20px;
  }

  .service-images {
    display: none;
  }
  .service-list {
    align-items: center !important;
  }
  h2 {
    font-size: 50px;
  }
  .footer-icon {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 200px;
  }
  .desc-item {
    font-size: 18px;
  }
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 661px) {
  .logo {
    width: 180px;
  }
  
 .hero-title{
  width:90%;
}
}

/* End Media Query */
