@font-face {
    font-family: "ArabicFont";
    src: url("/assets/fonts/Tajawal-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ArabicFontP";
    src: url("/assets/fonts/Tajawal-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "EngFont";
    src: url("/assets/fonts/Tajawal-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ArabicFontBold";
    src: url("/assets/fonts/Tajawal-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
  background-color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Edge, Safari */
}
h1, h2, h3, h4, h5, h6{
  color: #111;
}
p{
  color: #6e6e6e
}
.navbar{  
  position: sticky;
  top: 0;
  background-color: white;
  height: 50px;
  align-items: center;
  display: flex;
  z-index: 999999999999999999999999999999999999;
  flex-direction: row;
  padding: 20px;
  justify-content: space-between;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06);
}
.navbar-dashboard{
  position: sticky;
  top: 0;
  background-color: white;
  height: 75px;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 20px;
  justify-content: space-between;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06);
  z-index: 999;
}
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: white;
  box-shadow: 0 2px 3px rgba(0,0,0,.06);
}

.navbar-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 80px;
  z-index: 999;
}

.navbar-warning {
  height: 40px;
  background-color: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-menu,
.middle-menu,
.right-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar-profile{
  background-color: white;
  height: 100px;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 20px;
  justify-content: space-between;
  z-index: 999;
}
.navbar-profille{
  position: sticky;
  top: 0;
  background-color: white;
  height: 100px;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06);
  z-index: 999;
}
.left-menu{
  width: auto;
}
.right-menu{
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: baseline;
  gap: 15px;
  align-items: center;
}
.features-title{
    text-align: center;
  }
.div-button-w-img{
  background-color: white;
  width: auto;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #111;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 2px solid #e6e9ef;
  border-radius: 8px;
}

/* HIDE MOBILE MENU BY DEFAULT */
.mobile-menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  border: 2px solid #e6e9ef;
  border-radius: 8px;
  padding: 2px 18px;
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1008;
}

/* SIDE MENU */
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  box-shadow: -10px 0 30px rgba(0,0,0,.2);

  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1009;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* OPEN STATE */
.mobile-side-menu.open {
  transform: translateX(0);
}

/* MOBILE MENU ITEM */
.mobile-menu-item {
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  cursor: pointer;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
  color: #f7c908;
  font-weight: bold;
  
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #middle-menu {
    display: none !important;
  }
  .hero-section{
    margin-top: 0px !important;
    padding: 80px 20px !important;
  }
  .section-heading h1{
    font-size: 30px !important;
  }
  .section-heading h2{
    font-size: 20px !important;
  }

  .mobile-menu-btn {
    display: block;
  }

}

/* RESPONSIVE */
@media (max-width: 900px) {
  .welcome-logo{
    width: 100%;
    place-self: flex-start;
  }
  .welcome-logo-sec{
    height: auto !important;

  }

}

.welcome-logo-sec{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.a-div-button-w-img{
  background-color: #f7c908;
  width: auto;
  font-size: 18px;
  height: 35px;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #111;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: 
    background-color 0.15s ease,
    color 0.15s ease,
    font-size 0.15s ease;
}

.a-div-button-w-img:hover{
  background-color: #fff;
  color: #f7c908;
  border: 2px solid #f7c908;
}

.middle-menu-item {
  background-color: transparent;
  font-size: 16px;
  height: 31px;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #111;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  transition: 
    background-color 0.15s ease,
    color 0.15s ease,
    font-size 0.15s ease;
}

.middle-menu-item:hover {
  font-weight: bold;
  color: #f7c908;
  font-size: 19px;
}

.middle-menu-item.active {
  font-weight: bold;
  color: #f7c908;
  font-size: 19px;
}



.b-div-button-w-img{
  background-color: #fff;
  width: auto;
  font-size: 18px;
  height: 31px;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #1b3967;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 2px solid #1b3967;
  border-radius: 8px;
  transition: 
    background-color 0.15s ease,
    color 0.15s ease,
    font-size 0.15s ease;
}
.b-div-button-w-img:hover{
  background-color: #1b3967;
  color: #fff;
  border: 2px solid #fff;
}
.div-button-no-img{
  background-color: white;
  width: auto;
  padding: 5px 15px;
  cursor: pointer;
  align-items: center;
  color: #f7c908;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 2px solid #f7c908;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
}
.div-button-w-img-ballance{
  background-color: white;
  width: auto;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  cursor: pointer;
  align-items: center;
  color: green;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 2px solid #e6e9ef;
  border-radius: 20px;
}
.dropdown-menu {
  background-color: #fff;
  list-style: none;
  border: 2px solid #e6e6e9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 6px;
  position: fixed;
  margin-top: 8px;
  min-width: auto;
  z-index: 2;
}
.dropdown-item a {
  display: block;
  padding: 10px 12px;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
}
.dropdown-item a:hover {
  background-color: #f7f7fa;
}
.nav-button{
  background-color: white;
  width: auto;
  padding: 5px 15px;
  text-align: center;
  align-items: center;
  color: #111;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 2px solid #e6e9ef;
  border-radius: 8px;
  cursor: pointer;
}
.hidden{
  display: none;
}
.icon15{
  width: 15px;
  height: 15px;
}
.icon20{
  width: 20px;
  height: 20px;
}
.icon25{
  width: 30px;
  height: 30px;
}
.icon30{
  width: 30px;
  height: 30px;
}
.icon35{
  width: 30px;
  height: 30px;
}
.icon50{
  width: 50px;
  height: 50px;
}
.icon70{
  width: 70px;
  height: 70px;
}
.nav-logo{
  height: 60px;
  width: 70px;
  margin-left: 20px;
  margin-right: 20px;
}
.main-page{
  overflow-y: scroll;     /* keep scrolling */
  scrollbar-width: none; /* Firefox */
}
.main-page::-webkit-scrollbar {
  display: none;
}
.hero-section{
  padding: 80px 80px;
  background-color: #edeff4;
  display: flex;
  gap: 20px;
  margin-top: 80px;
  flex-direction: row;
  justify-content: space-between;
}
.hero-section2{
  padding: 80px 80px;
  background-color: #fff;
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: space-between;
}
.slideshow{
  width: 50%;
}
.slideshow2{
  width: 50%;
}
.slideshow img{
  width: 100%;
}
.slideshow2 img{
  width: 50%;
}
.section-heading{
  width: 50%;
}
.section-heading2{
  width: 50%;
}
.benifits{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;   
  margin-top: 20px; 
  padding-left: 50px;
}
.benifit-text{
  color: #111;
}
.benifit-detail{
  color: #111;
}
.border-left{
  border-left: 1px solid #e6e9ef;
}
.border-left-white{
  border-left: 1px solid #fff;
}
.mark{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.mark-text{
  color: #111;
  font-weight: bold;
  margin-bottom: 0px;
}
.div-button-w-img-hero{
  background-color: #f7c908;
  width: fit-content;
  padding: 8px 15px;
  display: flex;
  font-weight: bold;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #1b3967;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 0px solid #e6e9ef;
  border-radius: 8px;
  margin-top: 10px;
}
.c-div-button-w-img-hero{
  background-color: #f7c908;
  width: fit-content;
  padding: 8px 20px;
  height: 35px;
  display: flex;
  place-self: start;
  margin-left: 30px;
  margin-right: 30px;
  font-weight: bold;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  color: #1b3967;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  border: 0px solid #e6e9ef;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 18px;
  transition: 
    background-color 0.15s ease,
    color 0.15s ease,
    font-size 0.15s ease;
}
.c-div-button-w-img-hero:hover{
  background-color: transparent;
  border: 2px solid #f7c908;
  font-size: 18px;
  color: #f7c908;
}
.slideshowTwo{
    display: none;
}
.features-section{
  
  padding: 80px 80px;
  background-color: #edeff4;
}
.features{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content:center;
  margin-top: 40px;
}
.features2{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-around;
  margin-top: 40px;
}
.feature{
  background-color: white;
  width: 30%;  
  border-radius: 10px;
  border: 3px solid #c0d0f885;
  box-shadow: 5px 10px 32px rgb(79, 165, 223, 0.35);
  align-items: center;
  text-align: center;
  align-content: center;
}
.feature2{
  background-color: white;
  width: 350px;
  margin-bottom: 20px; 
  border-radius: 10px;
  border: 3px solid #c0d0f885;
  box-shadow: 5px 10px 32px rgb(79, 165, 223, 0.35);
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
  align-content: center;
}
.feature-desc{
  color: #111;
  text-align: start;
  margin-left: 10px;
  margin-right: 10px;
}
.feature-title{
  color: #111;
  text-align: start;
  font-size: 25px;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.feature-desc2{
  color: #111;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}
.feature-title2{
  color: #111;
  text-align: center;
  font-size: 25px;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.bold{
  font-weight: bold;
}
.faq-accordination .faq-bg-color {
    background-color: #edeff4;
    border: 0px solid #eee;
    border-radius: 14px;
    padding: 20px;
}
.accordion-item {
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
}
.item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
}
.item-question {
    color: #111;
    margin: 10px 10px !important;
    padding: 0;
}

.item-answer {
    color: #555;
    margin: 10px 20px;
    padding: 0;
    font-size: 14px;
}
.faq-accordination{
  padding: 80px 80px;
  background-color: #edeff4;
}
.footer {
  background: #183e73;
  padding-top: 70px;
  margin-top: 120px;
  background-color: #183e73;
}
.footer__copyright__text{
  background-color: #183e73;
  color: white;
  margin-top: 50px;
  text-align: center;
  padding-bottom: 20px;
}
.footer__widget h6{
  color: white;
  margin: 0;
  font-size: 14px;

}
.footer__widget ul{
  color: white;
  list-style: none;
  margin: 15px 0;

}
.footer__widget ul li{
  color: white;
  list-style: none;
  margin: 15px 0;

}
.footer__widget ul a{
  color: white;
  list-style: none;
  margin: 15px 0;
  text-decoration: none;
  cursor: pointer;
}
.footer__logo img {
  width: 90px;
  height: 80px;
}
.footer-row{
  display: flex; 
  flex-direction: row; 
  justify-content: space-around;
}
#rights{
    place-self: center;
  }

.pricing {
	display: flex;
	flex-wrap: wrap;
  flex-direction: row;
	justify-content: center;
	width: 100%;
  font-family: "ArabicFont";
	margin: 0 auto 1.5em;
}

.pricing__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
  width: 400px;
	text-align: center;
}

.pricing__feature-list {
	text-align: left;
}

.pricing__action {
	color: inherit;
	border: none;
	background: none;
}

.pricing__action:focus {
	outline: none;
}
    /* Sonam */
.pricing--sonam .pricing__item {
	margin: 1.5em;
	padding: 2em;
	cursor: default;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(236, 107, 1, 0.05), 0 15px 30px -10px rgba(247, 100, 1, 0.3);
	transition: background 0.3s;
}
.pricing--sonam .pricing__title {
	font-size: 30px;
  font-weight: bold;
	width: 100%;
	margin: 0 0 0.25em;
	padding: 0 0 0.5em;
  font-family: "ArabicFont";
}

.pricing--sonam .pricing__price {
	color: #f7c908;
	font-size: 40px;
  font-family: "ArabicFont";
}

.pricing--sonam .pricing__sentence {
	font-weight: bold;
  font-size: 20px;
}

.pricing--sonam .pricing__feature-list {
	margin: 0;
	padding: 20px 2px;
  list-style-type: none;
  font-family: "ArabicFont";
  font-size: 18px;
}

.pricing__feature{
  margin-top: 10px;
}

.pricing--sonam .pricing__action {
	font-weight: bold;
	margin-top: auto;
	padding: 0.75em 2em;
  color: #1b3967;
	border-radius: 5px;
  font-size: 25px;
	background: #f7c908;
  border: 2px solid #f7c908;
  cursor: pointer;
	transition: background 0.3s;
}
.pricing__action:hover {

  color: #f7c908;
	background-color: white !important;
  border: 2px solid #f7c908;

}
.pricing__action_cancel {
	font-weight: bold;
	margin-top: auto;
	padding: 0.75em 2em;
  color: #1b3967;
	border-radius: 5px;
	background: red;
	transition: background 0.3s;
}

.pricing--sonam .pricing__action:hover,
.pricing--sonam .pricing__action:focus {
	background: #f7c908;
}

@media only screen and (max-width: 1080px) {
  .hero-section{
    background-color: white;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .hero-section2{
    background-color: white;
    padding: 80px 20px !important;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .section-heading{
    width: auto;
    text-align: center;
  }
  .section-heading2{
    width: auto;
    text-align: center;
  }
  .section-heading2 h1{
    font-size: 30px !important;
  }
  .slideshow{
    display: none!important;
  }
  .slideshow2{
    display: none!important;
  }
  .slideshowTwo{
    display: block;
    width: auto;
    margin-bottom: 30px;
  }
  .slideshowTwo img{
    width: 100%;
  }
  .div-button-w-img-hero{
    place-self: center !important;
  }
  .c-div-button-w-img-hero{
    place-self: center !important;
  }
  .benifits{
    padding-left: 0;
  }
  .marks{
    display: none;
  }
  .marks2{
    display: block;
    place-items: center;
  }
  .features-title{
    text-align: center;
    font-size: 30px !important;
  }
  .features-section{
    padding: 80px 20px !important;
  }
  .features-section-two{
    padding: 80px 20px !important;
  }
  .features-section-two h1{
    font-size: 30px;
  }
  .features-section-two h2{
    font-size: 20px !important;
  }
  .faq-accordination{
    padding: 80px 20px !important;
  }
}

@media only screen and (max-width: 850px) {

  .main-page{
    overflow-y: scroll;     /* keep scrolling */
    scrollbar-width: none; /* Firefox */
    margin-top: 60px;
  }
  .main-page::-webkit-scrollbar {
    display: none;
  }
  .features{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
  }
  .feature{
    align-items: center;
    text-align: center;
    width: 100%;
  }


}

@media only screen and (max-width: 850px) {

  .pricing__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    text-align: center;
    margin: 0;
  }
      /* Sonam */
  .pricing--sonam .pricing__item {
    margin: 0 0 20px 0;
    padding: 1em;
    cursor: default;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(236, 107, 1, 0.05), 0 15px 30px -10px rgba(247, 100, 1, 0.3);
    transition: background 0.3s;
  }


}

@media only screen and (max-width: 470px) {

  .footer-row{
    flex-direction: column;
  }
  .logo-footer {
    margin-left: 20px;
    width: 100%;
  }
  .footer__logo{
    place-self: center;
  }
  .footer__widget{
    margin-top: 20px;
    place-self: center;
    margin-right: 35px;
  }
  #short-rights{
    place-self: center;
  }

}

