/* @import url('../assests/font/Almarai-Regular.ttf');
@import url('../assests/font/Almarai-Bold.ttf');
@import url('../assests/font/Almarai-ExtraBold.ttf');
@import url("../assests/font/Almarai-Light.ttf");
@import url("../assests/font/Bahij_TheSansArabic-Bold.ttf");
@import url("../assests/font/Bahij_TheSansArabic-Plain.ttf"); */
@font-face {
  font-family: 'Bahij_TheSansArabic';
  src: url('../assests/fonts/Bahij_TheSansArabic-Plain.ttf') format('opentype');
}
/*@import url('https://fonts.googleapis.com/css2?family=Tajawal&display=swap');*/



/** {*/
/*  margin: 0;*/
/*  padding: 0;*/

/*  font-family: 'Bahij_TheSansArabic', sans-serif;*/

/*  letter-spacing:0px !important;*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
  
/*}*/

/*body {*/
/*    font-family: 'Tajawal', sans-serif;*/
/*  overflow-x: hidden;*/
/*  direction: rtl;*/

/*}*/

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic&display=swap');

:root {
  --main-color: #322d5d;
  --second-color: #221F1F;
  --light-gray: #f4f4f4;
  --white-color: #ffffff;
  --golden-color: #F3B51A;
  --shade-light: rgb(241, 240, 249);
  --dark-purple: #221d37;
  --light-purple: #e1e1e1;
}

body {
  direction: rtl;
  overflow-x: hidden;
  box-sizing: border-box;
}

nav {
  width: 100vw;

  display: flex;
  position: fixed;
  z-index: 10;
  height: 10vh;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

#navbar.scrolled {
  background-color: var(--main-color) !important;
  /* Background on scroll */
}

/*Styling logo*/
.logo {
  padding: 1vh 1vw;
  text-align: center;
}

.logo img {
  width: 7.2rem;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  width: 88vw;
  padding: 0 4.7vw;
  justify-content: space-evenly;
  align-items: center;
  color: var(--second-color);
  margin-bottom: 0 !important;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 0.7vw;
  color: var(--white-color);
}

.nav-links li a:hover {
  color: var(--second-color);
}

.nav-links li {
  position: relative;
}

.nav-links li a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: var(--golden-color);
  position: absolute;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}

.nav-links li a:hover::after {
  width: 80%;
}

/*Styling Buttons*/
.login-button {


  background-color: transparent;
  cursor: pointer;
  color: var(--white-color);
  border: 0;
}

.login-button:hover {
  color: #131418;
  /* background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7; */
  transition: all ease-in-out 350ms;
}

.join-button {
  color: #fff;
  background-color: var(--main-color);
  border: 1.5px solid var(--main-color);
  border-radius: 0.5em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;

  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: var(--light-purple);
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
  nav {
    position: fixed;
    z-index: 3;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    left: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .nav-links {
    position: fixed;
    background: var(--main-color);
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }

  .nav-links li a {

    color: #ffffff;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }

  li.fade {
    opacity: 1 !important;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}




.register-btn {
  background-color: var(--golden-color);
  color: #000;
  border: 0;
  padding: 12px;
  font-size: 18px;
  border-radius: 0.5em;
  margin-top: 5%;
  font-weight: bold;
}

.main-bg {
  position: relative;

  background-repeat: no-repeat;
  background-size: cover;

}

.hero-title {
  color: var(--white-color);
  font-size: 3.5rem;
}

.hero-title span {
  color: var(--golden-color);
}

.hero-p {
  color: var(--white-color);
  padding: 30px 0px;
  font-size: 1.2rem;
}

.btn-join {
  background-color: var(--golden-color);
  padding: 12px;
  color: var(--second-color) !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}

.sub-hero {
  width: 80%;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -12%;
  border-radius: 20px;
  border: 2px solid var(--main-color);
  background-color: #f4f4f4;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 10px;
}

.sub-img {
  width: 80px;
  height: 80px;
}

.rating {
  margin: 5rem 0rem;
}

.rating h1 {
  color: var(--golden-color);
  font-weight: bold;
}

.rating p {
  color: #322d5d;
  width: 80%;
  font-size: 1.2rem;
  padding: 30px 0px;
  font-weight: 500;
}

.options {
  background-color: #f4f4f4;
}

.options h1 {
  color: var(--main-color);
  font-weight: bold;
}

.options span {
  color: var(--golden-color);

}

.options p {
  color: var(--main-color);
  width: 80%;
  font-size: 1.2rem;
  padding: 30px 0px;
  font-weight: 500;
}

.partner {
  margin: 5rem 0rem;
}

.partner h1 {
  color: var(--main-color);
  font-weight: bold;
}

.partner p {
  color: var(--main-color);
  width: 80%;
  font-size: 1.2rem;
  padding: 30px 0px;
  font-weight: 500;
}

.reach {
  background-color: var(--light-gray);
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--golden-color);
  margin-left: 10px;

}

.point {
  color: var(--main-color);
}

.point-p {
  padding-right: 30px;
  color: var(--main-color);
}

.start {
  background-image: linear-gradient(#1a1525, #50489b);
  margin: 5rem 0rem;
  padding: 5%;
}

.start h1 {
  color: var(--white-color);
  line-height: 70px;
  padding-bottom: 30px;
}

.team {
  background-color: var(--light-gray);
}

.box-one {
  background-color: var(--light-purple);
  width: 45%;
  padding: 10px;
  border-radius: 20px;
}

.main-title {
  color: var(--main-color);
}

.box-two {
  background-color: #50489b;
  color: var(--white-color);
  width: 45%;
  padding: 10px;
  border-radius: 20px;
}

.blogs {
  margin: 5rem 0rem;
  color: var(--main-color);

}

.blog-card {
  background-color: var(--light-purple);
  padding: 20px;
  border-radius: 20px;
  color: var(--main-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.blog-card img {
  border-radius: 15px;
  width: 100%;
}

.sub {
  color: var(--golden-color);
}

.hero-title2 {
  color: var(--golden-color);
  font-size: 3.0rem;
}

.requirments-title {
  color: var(--main-color);
  font-size: 2.5rem;

}

.requirments-p {
  color: var(--dark-purple);
  font-size: 1.5rem;
  font-weight: bolder;
  padding: 20px 0px;
}

.requirments-card {
  border: 3px solid var(--main-color);
  border-radius: 20px;
  padding: 20px;
  width: 70%;
  margin: 0 auto;
  height: 250px;
}

.requirments-card p {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.requirments-card2 {
  border: 3px solid var(--main-color);
  border-radius: 20px;
  padding: 20px;
  width: 70%;
  margin: 0 auto;
  background-color: var(--main-color);
}

.requirments-card2 p {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}

.underline {
  width: 70px;
  height: 4px;
  background-color: var(--golden-color);
  margin: 0 auto;

}

.background {
  background-image: linear-gradient(#1a1525, #50489b);
}

.join-title {
  font-size: 2.5rem;
}

.join-title span {
  font-size: 2.5rem;
  color: var(--golden-color);
}

.join-card {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 30px;
  height: 450px;
  color: var(--main-color);
  font-weight: bold;
}

.join-card h3 {
  font-weight: bolder;
}

.join-card button {
  background-color: #50489b;
  color: var(--white-color);
  border: 0;
  border-radius: 15px;
  padding: 7px 15px;
  font-size: 20px;
  font-weight: bold;
}

.bg-light-purple {
  background-color: var(--light-gray);
}

.start-title {
  color: #50489b;
  font-size: 2.5rem;
}

.golden-line {
  width: 25%;
  margin: 3px auto;
  background-color: var(--golden-color);
  height: 3px;
}

.start-card {
  border: 3px solid #50489b;
  position: relative;
  width: 50%;
  border-radius: 20px;
  height: 300px;
  padding-top: 30px;
  overflow: hidden;
  color: #50489b;
  padding-right: 20px;
  padding-left: 20px;
  font-weight: bold;
}

.corner-number {
  position: absolute;
  top: -16px;
  right: -14px;
  width: 80px;
  height: 80px;
  background-color: #50489b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--white-color);
}

.w-35{
  width: 35%;
}

.circle2 {
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
 
  color: #333;
}

.card {
  border: none;
  box-shadow: none !important; /* Disables shadow */
  background-color: var(--white-color);
  border-radius: 20px;
  height: 200px;
  direction: rtl;
  padding: 20px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color);
}

.card-text {
  font-size: 1rem;
  color: var(--main-color);
  font-weight: 600;
}
.ltr{
  direction: ltr;
  background-image: linear-gradient(#1a1525, #50489b);
}

/* Customize the dots */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block !important;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #e10909;
  border-radius: 50%;
  cursor: pointer;
}

.owl-dot.active {
  background: #FFA500;
}



.disabled {
  display: block !important;
}
.owl-nav{
  display: none !important;
}




.fqa-header h2 {
  color: var(--main-color);
  font-weight: bold;
}
.jumbtroon-content2{

  position: absolute;
      width: 45%;
      top: 27%;
      left: 4%;
}
.jumbtroon-content2 h2{
  font-weight: bold;
  font-size: 40px;
  color: var(--main-color);
  line-height: 55px;

}
.jumbtroon-content2 .jumbtroon-header p {
  color: var(--second-color);
  padding-top: 5%;
  padding-left: 35px;
}




.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid var(--main-color);
  background-color: var(--shade-light);
}

.accordion button {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  padding: 1em 0;
  color: #5f6874;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--main-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.accordion button .accordion-title {
  padding: 20px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: var(--golden-color);
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: var(--main-color);
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
  opacity: 1;
  max-height: 15em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  padding: 0px 20px;
}

.whatsapp{
  background-image:  linear-gradient(to bottom right, #1a1525, #50489b);
  padding: 6%;
}
.whatsapp h2{
  color: var(--white-color);
  font-size: 3rem;
}
.whatsapp button{
  color: var(--main-color);
  background-color: var(--golden-color);
  padding: 15px;
  font-size: 30px;
  border-radius: 20px;
  font-weight: bold;
}

.main-blogs{
  position: relative;
}
.main-blogs img{
width: 100%;
height: 500px;
border-radius: 30px;
}
.overlay{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top , #1d1d1d9f, transparent);
}
.blogs-title{
position: absolute;
bottom: 0;
padding: 30px;
}
.blogs-title h2{
  font-size: 3rem;
  color: var(--golden-color);
}
.blogs-title p{
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: bold;
}
.blogs-page-title{
  color: var(--main-color);
  font-weight: bold;
  font-size: 3rem;
}
.blog-cardd img{
  width: 100%;
  border-radius: 20px;
}
.blog-cardd h3{
  color: var(--main-color);
}
.blog-cardd p{
  color: var(--main-color);
  font-weight: 600;
}
.read-more-blogs{
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 10px;
  border: 0;
}
.main-blogs h3{
  color: var(--main-color);
}
.main-blogs-p{
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: bold;
}
.blogg-img img{
  width: 100%;
  border-radius: 20px;
  margin-bottom:20px ;
}
.blogg-content P{
  font-size: 1.2rem;
}
footer {
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 10px 0;
}

.flex-parent {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.copy-rights {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
}

.p-20 {
  padding: 30px 0;
}

.p-20 p {
  padding-bottom: 10px;
}

.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-img img {
  width: 150px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-right: 10px;

}

.footer-content {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  width: 60%;


}

.flex-child {

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-company {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.footer-company h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  color: var(--golden-color);
}

.footer-company ul {
  list-style: none;
}

.footer-company ul li {
  padding-bottom: 10px;
}

.footer-company ul li a {
  text-decoration: none;
  color: var(--white-color);
}

.footer-company ul li a:hover {
  color: var(--second-color);
}

.footer-company2 {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.footer-company2 h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  color: var(--golden-color);
}

.footer-info input {
  padding: 10px 50px;
  border-radius: 8px;
  background-color: var(--shade-light);
  border: 0;
  opacity: 80%;

  color: var(--main-color);
}

::placeholder {
  color: var(--main-color);
  opacity: 1;
  /* Firefox */
}

.p-l {
  padding-right: 20%;
  text-align: start;
}

.footer-image img {
  width: 150px;
}





@media (max-width: 768px) {
  .accordion .accordion-item button {
    padding: 0.75em 0;
  }

  .accordion button .accordion-title {
    padding: 10px;
  }

  .accordion button {
    font-size: 1rem;
  }

  .accordion .accordion-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .accordion .accordion-item button {
    padding: 0.5em 0;
  }

  .accordion button .accordion-title {
    padding: 5px;
  }

  .accordion button {
    font-size: 0.9rem;
  }

  .accordion .accordion-content p {
    font-size: 0.8rem;
  }

  .accordion button .icon {
    top: 6px;
    left: 2px;
  }
}
.main-color{
  color: var(--main-color);
}

@media (max-width: 768px) {
  .accordion .accordion-item button {
    padding: 0.75em 0;
  }
}



@media (max-width: 991px) {

  /* Tablets and below */
  .sub-hero {
    width: 90%;
    bottom: -10%;
    padding: 15px;
  }

  .sub-hero .pe-3 {
    padding: 0;
  }
}

@media (max-width: 768px) {

  .start-card{
      width:80%;
  }
  /* Small tablets and mobile */
  .hero-title {
    font-size: 2.5rem;
    margin-top: 20px;
  }

  .sub-hero {
    width: 95%;
    bottom: -8%;
    position: static;
  }

  .sub-hero img.sub-img {
    max-width: 60px;
  }

  .sub-hero .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .sub-hero h4 {
    font-size: 1.2rem;
  }

  .sub-hero p {
    font-size: 0.9rem;
  }
  .blogs-title h2{
font-size: 1.5rem;
  }
  .blogs-title p{
    font-size: 0.75rem;
  }
  .footer-content{
  width: 100%;
}
.footer-company{
  width: 100%;
  text-align: center; 
  padding-bottom: 20px;
}
.footer-company2{
  width: 100%;
  text-align: center; 

}
.footer-info{
  width: 100%;
}
.footer-info input{
  padding: 10px 40px;
  width: 100%;
}
.p-l {
  text-align: center;
  padding: 0;
 }
 .social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-info input{
  width: 93%;
}

}
