/*------------- #MAIN STYLES --------------*/
/*------------------------------------------------------------------
-------------------------------------------------------------------*/

/*------------- #cdn google fonts --------------*/

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");

/*------------- #variables --------------*/

:root {
  --clr-1: #f56200;
  --clr-1-hvr: #bd5008;
  --clr-text: #191d4c;
  --clr-gray: #5b5b5b;
  --bg-1: #f3f8fa;
  --bg-2: #fff6f0;
  --border-clr: #e2e2e2;

  --title-0: 48px;
  --title-1: 40px;
  --title-2: 32px;
  --title-3: 28px;
  --title-4: 24px;
  --title-5: 22px;
  --title-6: 20px;
  --title-7: 18px;
  --title-8: 18px;
  --title-16-14: 16px;
  --title-14-12: 14px;

  --section-padding: 4rem;

  --box-py-xsm: 1.5rem;
  --box-py-sm: 1.5rem;
  --box-py: 2rem;
  --box-py-res: 2rem;
  --box-py-more: 2.5rem;

  --box-px-xs: 1rem;
  --box-px-xsm: 1.5rem;
  --box-px-sm: 1.5rem;
  --box-px: 2rem;
  --box-px-more: 3rem;
}

/*------------- #general --------------*/

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  direction: inherit;
  text-align: start;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: var(--clr-text);
  font-size: 16px;
}

body[data-panel="noScroll"] {
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: #111d44;
}
a,
a:hover {
  text-decoration: none;
  color: inherit;
}
i {
  vertical-align: middle;
}

.clr-1 {
  color: var(--clr-1);
}
.clr-text {
  color: var(--clr-text);
}
.clr-gray {
  color: var(--clr-gray);
}
.bg-clr-1 {
  background-color: var(--bg-1);
}
.bg-clr-2 {
  background-color: var(--bg-2);
}
.title-0 {
  font-size: var(--title-0);
}
.title-1 {
  font-size: var(--title-1);
}
.title-2 {
  font-size: var(--title-2);
}
.title-3 {
  font-size: var(--title-3);
}
.title-4 {
  font-size: var(--title-4);
}
.title-5 {
  font-size: var(--title-5);
}
.title-6 {
  font-size: var(--title-6);
}
.title-7 {
  font-size: var(--title-7);
}
.title-8 {
  font-size: var(--title-8);
}
.title-16-14 {
  font-size: var(--title-16-14);
}
.title-18 {
  font-size: 18px;
}
.title-14-12 {
  font-size: var(--title-14-12);
}
.title-14 {
  font-size: 14px;
}
.title-12 {
  font-size: 12px;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

/** general styles **/

.page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}

.section-style {
  position: relative;
  padding: var(--section-padding) 0;
}

.bg-section {
  padding: calc(var(--section-padding) * 2) 0;
}

.w-bg {
  margin: var(--section-padding) 0;
}

.mt-box {
  margin-top: var(--box-py);
}
.mb-box {
  margin-bottom: var(--box-py);
}

.mt-box-res {
  margin-top: var(--box-py-res);
}
.mb-box-res {
  margin-bottom: var(--box-py-res);
}

.mt-box-more {
  margin-top: var(--box-py-more);
}
.mb-box-more {
  margin-bottom: var(--box-py-more);
}

.mt-section {
  margin-top: var(--section-padding);
}
.mb-section {
  margin-bottom: var(--section-padding);
}

.scroll::-webkit-scrollbar {
  width: var(--scrollbar-dim, 3px);
  height: var(--scrollbar-dim, 3px);
}
.scroll::-webkit-scrollbar-track {
  background-color: var(--scrollbar-track, rgba(0, 0, 0, 0.1));
  border-radius: 20px;
}
.scroll::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb, rgba(0, 0, 0, 0.2));
  border-radius: 20px;
  cursor: pointer;
}

/**** tab-content & accordion_body style ****/

.tabs-content-area .tab-content {
  display: none;
}
.tabs-content-area .tab-content.active {
  display: block;
}
.accordion-panels .panel-item .accordion_body {
  display: none;
}
.accordion-panels .panel-item.opened .accordion_body {
  display: block;
}

/**** side-overlay ****/
.side-overlay {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  z-index: -999999;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.panel-responsive-item.active .side-overlay,
.side-overlay.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 999;
}

/*** buttons-style  ***/
button {
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  padding: 0;
}
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  border-radius: 1rem;
  background-color: var(--clr-1);
  transition: all 0.3s ease;
  color: #fff;
  outline: none;
  padding: 0.75rem 1rem;
  font-weight: 600;
}
.theme-btn.lg-btn {
  max-width: 400px;
  width: 100%;
}
.theme-btn:hover {
  background-color: var(--clr-1-hvr);
}
.btn-whatsapp {
  background-color: #29a840;
  &:hover {
    background-color: #176726;
    color: #fff;
  }
}

/**** input-style ***/
.modal-content {
  border-radius: 1.5rem;
}
.input-focus:focus {
  border-color: var(--clr-1) !important;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group {
  position: relative;
}

.form-control,
.form-select {
  border-radius: 1rem;
  transition: all 0.3s ease;
  border-color: var(--border-clr);
  height: var(--input-h, 50px);
  font-size: 16px;
  box-shadow: none !important;
  font-weight: 400;
  color: var(--clr-text);
  direction: inherit;
}
.form-control::placeholder {
  color: var(--clr-gray);
}
textarea.form-control {
  height: auto;
  border-radius: 1.5rem;
}
.form-select {
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  padding-inline-end: 2rem !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4.96762 5' stroke='%23254291' stroke-linecap='round'/%3E%3Cpath d='M9.19995 1L5.23233 5' stroke='%23254291' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: right 0.75rem center;
}
body:not(:lang(en)) .form-select,
html:dir(rtl) .form-select {
  background-position: left 0.75rem center;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  min-height: inherit;
}
.form-check.align-items-start .form-check-input {
  margin-top: 0.25rem;
}
.form-check .form-check-input {
  float: none;
  flex-shrink: 0;
  margin: 0;
  transition: all 0.3s ease;
  box-shadow: none !important;
  border-color: var(--input-clr, var(--border-clr));
  cursor: pointer;
  border-radius: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-width: 2px;
}
.form-check-input:active {
  filter: none !important;
}
.form-check .form-check-input:checked {
  background-color: var(--input-clr, var(--clr-1));
  border-color: var(--input-clr, var(--clr-1));
}
.form-check .form-check-label {
  cursor: pointer;
  color: var(--label-clr, var(--clr-text));
}
.form-switch .form-check-input {
  border-width: 2px;
}
.form-switch .form-check-input:focus,
.form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* Resetting default styles */

.date-input::-webkit-calendar-picker-indicator,
.date-input::-webkit-inner-spin-button,
.date-input::-webkit-clear-button,
.date-input::-webkit-datetime-edit-fields-wrapper {
  display: none;
}
.date-input::-webkit-datetime-edit-day-field,
.date-input::-webkit-datetime-edit-month-field,
.date-input::-webkit-datetime-edit-year-field {
  display: none;
}

/*------------- #swiper --------------*/

.swiper-pagination {
  position: relative;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-width: var(--box-px-xs);
  --swiper-pagination-bullet-height: var(--box-px-xs);
  transition: all 0.3s ease;
  background: var(--clr-1);
  margin: 0 !important;
}
.swiper-pagination-lock{
  display: none !important;
}

/*------------- #responsive --------------*/

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  :root {
    --box-px-xsm: 1rem;
  }
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
  :root {
    --title-0: 36px;
    --title-1: 32px;
    --title-2: 28px;
    --title-3: 24px;
    --title-4: 22px;
    --title-5: 20px;
    --title-6: 18px;
    --title-7: 16px;
    --title-16-14: 14px;
    --title-14-12: 12px;

    --section-padding: 3rem;

    --box-py-res: 1.5rem;
    --box-py-xsm: 1rem;
    --box-py-more: 2rem;

    --box-px-xs: 0.75rem;
    --box-px-xsm: 0.75rem;
    --box-px: 1rem;
    --box-px-sm: 1rem;
    --box-px-more: 1rem;
  }
}

/*------------- #custom-grid --------------*/

.gx-75 {
  --bs-gutter-x: 0.75rem;
}

.gx-40 {
  --bs-gutter-x: 2.5rem;
}

@media (max-width: 767.98px) {
}
@media (max-width: 575.98px) {
  .gx-sm-75 {
    --bs-gutter-x: 0.75rem;
  }
}

/*------------- #animation --------------*/

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.6s;
}

/*------------- #MAIN LTR STYLES --------------*/
body:not(:lang(en)) .rotate-lang,
html:dir(rtl) .rotate-lang {
  transform: rotate(180deg);
}

/*------------- #header--------------*/
:root {
  --nav-h: 80px;
}
.top-nav {
  position: sticky;
  height: var(--nav-h);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  margin-top: 1.5rem;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #ffeadb;
  height: 100%;
  padding: 1rem var(--box-px);
  border-radius: 1.5rem;
}
.nav-wrapper .logo-link {
  flex-shrink: 0;
}
.nav-wrapper .logo-link img {
  max-height: 60px;
}
.nav-wrapper .total {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0;
}

@media (max-width: 575.98px) {
  .nav-wrapper .total span:first-child {
    font-size: 14px;
  }
  .nav-wrapper .total span:last-child {
    font-size: 16px;
  }
}

/*------------- #footer--------------*/

.footer {
  background-color: #242426;
  padding: 2rem 0;
  color: #fff;
}
.footer .footer-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer .footer-menu a {
  transition: all 0.3s ease;
  display: inline-block;
  color: hsl(0, 0%, 90%);
}
.footer .footer-menu a:hover {
  color: var(--clr-1);
}
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer .footer-social .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-1);
  font-size: 20px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.footer .footer-social .social-item:hover {
  background-color: var(--clr-1);
  color: #fff;
}

/*------------- #input-box--------------*/
.input-box .input-label {
  width: 100%;
  display: block;
  border: 1px solid var(--border-clr);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 1.5rem;
  background-color: #fff;
  height: 100%;
}
.input-box .form-check {
  height: 100%;
}
.input-box.input-card .input-label {
  padding: var(--box-px-sm);
}
.input-box.input-row .input-label {
  padding: 1rem;
  text-align: center;
}
.input-box .input-label input:not(.form-check-input) {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.input-box .input-label:has(input:checked) {
  border-color: var(--clr-1);
  background-color: var(--bg-2);
}
.input-box .input-label:has(input:focus-visible) {
  border-color: var(--clr-1);
}
.input-box .input-label img {
  height: 150px;
  max-width: 200px;
  width: 100%;
  object-fit: contain;
}
.input-box .input-label p {
  font-size: 1.125rem;
  color: var(--clr-text);
  font-weight: 500;
  transition: inherit;
  margin: 0;
  flex: 1;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--box-py-xsm);
}
.input-box .label-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

@media (max-width: 767.98px) {
  .input-box .input-label img {
    height: 100px;
  }
}

/*------------- #input-box--------------*/
.section-image {
  text-align: center;
}
.section-image img {
  max-height: 350px;
  object-fit: contain;
  width: -webkit-fill-available;
}

@media (max-width: 575.98px) {
  .section-image img:not(.lg-img) {
    max-height: 200px;
  }
  .section-image img.lg-img {
    max-height: 300px;
  }
}

/*------------- #plan-card--------------*/
.plan-card .input-label {
  padding: 0 !important;
  border-color: #fff;
}
.plan-card .label-content {
  display: block;
  text-align: start;
}
.plan-card .plan-head {
  width: 100%;
  padding: 1.5rem var(--box-px-sm) 0;
}

.plan-card.head-card .plan-head {
  box-shadow: 0px 2px 8px 0px #0000000f;
  padding: 1rem var(--box-px-sm);
  border-radius: 1.5rem;
}

.plan-card.head-card .plan-head .price-wrap {
  background: #efefef;
  border-radius: 1rem;
  padding: 0.5rem;
}
.plan-card .plan-head .price-wrap .plan-type {
  display: inline-block;
  font-size: var(--title-7);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--clr-gray);
}
.plan-card.head-card .plan-head .price-wrap .plan-type {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
  color: var(--clr-text);
}

.plan-card .plan-head .price-wrap .price-text {
  font-size: var(--title-5);
  font-weight: 600;
}

.plan-card .plan-list {
  padding: 1.5rem var(--box-px-sm);
  margin: 0;
  list-style-type: none;
}

.plan-card .plan-list .list-item {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
}
.plan-card .plan-list .list-item:not(:last-child) {
  margin-bottom: 1rem;
}
.plan-card .plan-list .list-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--clr-1);
  border-radius: 100%;
  color: #fff;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  padding: 1px;
  font-size: 14px;
  margin: 0.25rem;
}

/*------------- #hero-section--------------*/
.hero-img {
  position: relative;
}
.hero-img::after,
.hero-img::before {
  position: absolute;
  top: 0;
  height: 100%;
  width: 5%;
  content: "";
  background: linear-gradient(
    180deg,
    #ffffff 21.46%,
    rgba(255, 255, 255, 0.7) 65.48%,
    rgba(255, 255, 255, 0) 89.68%
  );
}
.hero-img::after {
  inset-inline-start: 0;
}
.hero-img::before {
  inset-inline-end: 0;
}

/*------------- #total-section--------------*/
.total-section {
  background: linear-gradient(84.71deg, #fff4ed 1.64%, #dcecf3 99.73%);
}
.selection-list .list-item {
  display: flex;
  align-items: baseline;
  gap: 0.375rem 1rem;
  margin-bottom: 0.75rem;
}
.selection-list .list-item .key {
  min-width: 52px;
}
.selection-list .list-item p {
  font-size: var(--title-8);
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .total-section .section-image {
    margin-bottom: -15%;
    position: relative;
  }
  .total-section .section-image img {
    height: 100%;
    max-width: 480px;
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  .selection-list .list-item {
    flex-direction: column;
    align-items: start;
  }
}
