:root {
  --color-primary: #27346a;
  --color-secondary: #f0bc66;
  --color-white: #ffffff;

  --color-darkblue: #254f7a;
  --color-yellow: #ffb33ac2;
  --color-yellowTow: #ffb43a;
  --color-lightblue: #26b7e0;
  --color-light: #eef9fc;
  --color-green: #62c149;
  --color-red: #ce1225;
  --border: 20px;
}
body {
  font-family: "Almarai", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* home  */
/* .title {
  text-shadow: 2px 2px 4px #000000;
}
.sub-title {
  text-shadow: 2px 2px 4px #000000;
  line-height: 2.5rem !important;
}
@media (max-width: 550px) {
  .sub-title {
    text-shadow: 2px 2px 4px #000000;
    line-height: 1.5rem !important;
  }
} */
.title {
  text-shadow: 1px 1px 1px #000000;
}
.sub-title {
  text-shadow: 1px 1px 1px #000000;
  line-height: 2.5rem !important;
}
@media (max-width: 550px) {
  .sub-title {
    line-height: 1.5rem !important;
  }
}
.line {
  clip-path: polygon(
    40.5% 0%,
    50% 0%,
    100% 50%,
    50% 100%,
    40.5% 100%,
    50% 91.56%,
    90% 50%
  );
  /* clip-path: polygon(40.25% 0%, 53% 0%, 93.72% 42.45%, 96.77% 50%, 94.24% 57.74%, 52.75% 100%, 42.48% 100%, 50% 91.56%, 87% 50%); */
  background: radial-gradient(circle,rgba(38, 183, 224, 1) 57%, rgba(255, 180, 58, 1) 100%);
  position: absolute;
  right: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
 
}
.main-image {
  clip-path: polygon(
    0% 0%,
    41% 0%,
    75% 25%,
    96.65% 47.5%,
    88.33% 60.38%,
    10% 60.25%,
    9.33% 59.13%,
    90.65% 57%,
    75% 71.33%,
    40.7% 100%,
    0% 100%
  );
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about {
  background: linear-gradient(
    to bottom,
    #eef9fc 0%,
    #f7f4e9 25%,
    #efebd6 50%,
    #ffefd6 75%,
    rgba(38, 183, 224, 0.3) 100%
  );
}

.card-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.login {
  background: linear-gradient(
      to bottom,
      rgba(238, 249, 252, 1),
      rgba(247, 244, 233, 1),
      rgba(239, 235, 214, 1),
      rgba(38, 184, 224, 0.05)
    ),
    url(../image/images/patternAbout.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.btn-gradient {
  background: linear-gradient(
    to right,
    rgba(39, 52, 106, 1),
    rgba(38, 183, 224, 1)
  );
}

/* otp  */

.verification-input {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.2s;
}
.verification-input:focus {
  border-color: var(--color-lightblue);
}

/* single-course */

.header-gradient {
  background-image: linear-gradient(
    to right,
    rgba(37, 79, 122, 1),
    rgba(38, 183, 224, 1)
  );
}
.status-badge {
  font-size: 0.75rem;
  padding: 0.1rem 0.6rem;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-block;
}
.btn-live {
  background-image: linear-gradient(
    to bottom,
    rgba(38, 183, 224, 1),
    rgba(98, 193, 73, 1)
  );
}
.btn-complete {
  background-image: linear-gradient(
    to bottom,
    rgba(93, 96, 99, 1),
    rgba(0, 0, 0, 1)
  );
}

.btn-close {
  background-image: linear-gradient(
    to bottom,
    rgba(206, 18, 37, 1),
    rgba(93, 96, 99, 1)
  );
}

/* profile  */

.active-gradient {
  background-image: linear-gradient(to right, #38bdf8, #0ea5e9);
}
.sidebar-link {
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border-right: 3px solid transparent;
}

.sidebar-link.active {
  color: var(--color-lightblue);
  font-weight: 700;
}
.custom-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  text-align: right;
  outline: none;
  transition: border-color 0.2s;
}

/* scroll  */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: var(--color-lightblue);
}

/* .title {
  text-shadow: 2px 2px 4px #000000;
  line-height: 3rem !important;
}
.sub-title {
  text-shadow: 2px 2px 4px #000000;
  line-height: 2.5rem !important;
} */
