:root {
  --disabled-text: #94a3b8;
  --active-text: #f1f5f9;
  --primary-gradient: linear-gradient(90deg,
      rgba(124, 58, 237, 1) 0%,
      rgba(79, 70, 229, 1) 100%);
  --primary-grad-30per: linear-gradient(90deg,
      rgba(124, 58, 237, 0.3) 0%,
      rgba(79, 70, 229, 0.3) 100%);
  --primary-grad-6per: linear-gradient(90deg,
      rgba(124, 58, 237, 0.12) 0%,
      rgba(34, 211, 238, 0.06) 100%);
  --primary-grad-1per: linear-gradient(135deg,
      rgba(173, 70, 255, 0.1),
      rgba(43, 127, 255, 0.1));
  --secondary-gradient: linear-gradient(90deg,
      rgba(34, 211, 238, 1) 0%,
      rgba(167, 139, 250, 1) 100%);
  --progress-grad: linear-gradient(90deg, #ad46ff 0%, #2b7fff 100%);
  --connector-grad: linear-gradient(180deg,
      rgba(173, 70, 255, 1) 0%,
      rgba(43, 127, 255, 1) 100%);
  --text-color: #ffffff;
  --transparent-black: hsl(225, 36%, 4%, 0.8);
  --body-bg: #080a10;
  --hover-bg-color: rgb(241, 245, 249, 0.12);
  --rad-8: 8px;
  --rad-16: 16px;
  --success: #00c950;
  --card-bg: #121a2d;
  --card-border: #1e2939;
  --card-hover-border: #3b82f6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--body-bg);
  font-family: "Cairo", sans-serif !important;
}

ul {
  margin: 0;
  padding: 0;
}

.fw-bold-ex {
  font-weight: 900 !important;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
}

#loading {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: var(--body-bg);
  z-index: 1000;
}

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* Global */

.btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--rad-8);
  text-decoration: none;
  color: var(--disabled-text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  transition: 0.3s;
}

.btn:hover {
  background-image:
    linear-gradient(var(--body-bg), var(--body-bg)), var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--active-text);
}

.btn-primary {
  background: var(--primary-gradient) !important;
  font-weight: 800;
  color: var(--text-color) !important;
  border-color: transparent !important;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
}

.primary-text {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--disabled-text);
  line-height: 1.7;
  justify-self: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.rad-8 {
  border-radius: var(--rad-8);
}

.rad-16 {
  border-radius: var(--rad-16);
}

.divder {
  width: 100%;
  height: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divder span {
  background-color: rgba(255, 255, 255, 0.2);
  width: 70%;
  height: 100%;
}

.nav-btn.active {
  background-color: #ff00c1 !important;
  pointer-events: none;
}

/* Global */

/* NAV */
.navbar {
  background-color: var(--transparent-black);
  padding: 12px 40px;
  border-bottom: 1px solid var(--hover-bg-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.4s ease-in-out;
}

.navbar.is-fixed {
  position: fixed;
  top: 0;
  transform: translateY(0);
  animation: navDrop 0.3s ease;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.hide-nav {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 35px;
  height: 35px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--disabled-text);
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--active-text);
  background-color: var(--hover-bg-color);
}

.nav-links a.active {
  font-weight: 600;
  pointer-events: none;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn.start {
  background: var(--primary-gradient);
  color: var(--text-color);
  border: none;
  font-weight: 600;
}

.btn.start:hover {
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.mobile-island-toggle {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    background: transparent;
    border: none;
    position: fixed;
    bottom: 20px;
    top: auto;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .navbar .container {
    width: 92%;
    max-width: 420px;
    padding: 10px 18px;
    border-radius: 30px;
    background: var(--transparent-black);
    backdrop-filter: blur(20px);
    border: 1px solid var(--hover-bg-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    pointer-events: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-text {
    display: none;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);

    width: 100%;
    padding: 25px 15px;
    border-radius: 24px;

    background: rgb(0, 0, 0, 0.9);
    border: 1px solid var(--hover-bg-color);

    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .nav-links .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--hover-bg-color);
  }

  .nav-links .btn {
    width: 100%;
    text-align: center;
  }

  .nav-actions {
    display: none;
  }

  .mobile-island-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }

  .bar {
    width: 24px;
    height: 2px;
    background: var(--active-text);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* animation */
  .active-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .active-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  .active-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 786px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 1280px) {
  .navbar .container {
    gap: 1rem;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

/* footer */
.footer-wrap {
  background: #0d1117;
  padding: 48px 60px 0;
}

.footer-wrap a {
  color: var(--disabled-text);
}

.footer-wrap a:hover {
  color: var(--active-text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}

.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
}

.brand-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
}

.brand-desc {
  font-size: 13px;
  color: var(--disabled-text);
  line-height: 1.7;
  text-align: right;
  max-width: 220px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.social-btn:hover {
  background-image:
    linear-gradient(var(--body-bg), var(--body-bg)), var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.social-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--disabled-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 12px;
  color: var(--disabled-text);
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-wrap {
    padding: 32px 24px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .brand-col {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* educational page */

.path-card {
  background: linear-gradient(145deg, #0f172a, #111827);
  border-radius: 20px;
  padding: 25px;
  color: white;
  border: 1px solid #1e293b;
  transition: 0.3s;
  height: 100%;
}

.path-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-hover-border);
}

.custom-badge {
  height: 60;
  width: 28;
  background: #1e1b4b;
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.path-card .icon {
  background: #1e1b4b;
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  padding: 0;
  font-size: 20px;
}

.info-badge {
  background: #1f2937;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 13px;
  margin-left: 6px;
}

.path-card .btn {
  width: 100%;
}

.path-card .start-btn:hover {
  opacity: 0.9;
}

.cta-section {
  width: 100%;
  text-align: center;
}

.cta-section {
  margin-top: 15px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  background: var(--primary-grad-6per);
}

.cta-section .title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-section .sub-title {
  font-size: 16px;
  color: #8b8d96;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-section .highlight {
  color: var(--card-hover-border);
}

.cta-section .btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  padding: 12px 32px;
  border-radius: 12px;
  color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #5e32d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 65, 255, 0.3);
}

/* home */
#home {
  height: 100vh;
}

#home .container {
  height: 100%;
  z-index: 2;
}

#home .hero-title {
  font-size: 4.25rem;
}

#home .cta .btn.edu {
  color: var(--text-color) !important;
  backdrop-filter: blur(10px);
}

#home .row {
  margin-top: 1.75rem;
  margin-bottom: 0;
  margin-right: unset;
  margin-left: unset;
  width: 60%;
}

#advert {
  border-block: 2px solid rgb(255, 255, 255, 0.08);
  background-color: rgb(255, 255, 255, 0.025);
  max-height: 150px;
}

#advert .swiper {
  width: 100%;
  height: 100%;
}

#advert .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  opacity: 0.6;
  transition: 0.3s;
}

#advert .swiper-slide:hover {
  opacity: 1;
}

#advert .swiper-slide img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%) brightness(200%);
  object-fit: contain;
  pointer-events: none;
}

#howTo .container .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  #howTo .container .row {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}

#howTo .icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: var(--rad-16);
  font-size: 24px;
}

#howTo .info p {
  color: var(--disabled-text);
  max-width: 90%;
}

#howTo .card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  min-height: 250px;
  position: relative;
  transition: 0.2s;
}

#howTo .card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-8px);
}

#testimonials .card {
  transition: 0.3s;
  cursor: grab;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#testimonials .card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: white !important;
}

/* home */
.stats-section {
  background-color: var(--body-bg);
}

.stat-number {
  font-size: calc(1.8rem + 1.5vw);
  font-weight: 800;
  margin-bottom: 5px;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-label {
  color: var(--disabled-text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

.bg-spot {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 1;
  filter: blur(140px);
  opacity: 0.3;
  pointer-events: none;
}

.spot-violet {
  top: -10%;
  right: 30%;
  background: var(--primary-gradient);
}

.spot-cyan {
  top: 30%;
  left: 15%;
  background: var(--secondary-gradient);
}

.spot-cyan.sec {
  top: auto;
  left: auto;
  bottom: -5%;
  right: 5%;
}

/*CONTACT*/

#contact {
  height: 100vh;
  width: 100%;
}

@media (max-width: 767px) {
  #contact {
    height: auto;
  }

  h1 {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    max-width: 250px;
  }

  #contact .container {
    gap: 0 !important;
  }
}

#contact .container {
  height: 100%;
}

#contact .container .holder {
  width: 75%;
}

@media (max-width: 767px) {
  #contact .container .holder {
    flex-direction: column-reverse !important;
    width: 90%;
  }
}

#contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contact .contact-form {
  display: flex;
  flex-direction: column;
  flex-basis: 75%;
  background-color: #0f172a;
  border-radius: 16px;
  border-top: 0.8px solid rgba(148, 163, 184, 0.12);
}

#contact .contact-form .form-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  #contact .contact-form .form-row {
    flex-direction: column;
  }
}

#contact .contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#contact .contact-form .form-group label {
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--text-color);
  text-align: right;
}

.form-group input,
.form-group textarea {
  background-color: #1a233a;
  border: 1px solid #2d3748;
  border-radius: 8px;
  padding: 12px 18px;
  color: #ffffff;
  outline: none;
  font-size: 14px;
  text-align: right;
}

.form-group textarea {
  flex-grow: 1;
  resize: none;
}

#contact .contact-form .send-btn {
  width: 100%;
  background-color: #5d45f3;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.contact-info .info-card {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  min-width: 300px;
  padding: 16px 12px;
  background-color: var(--card-bg);
  border-radius: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  box-sizing: border-box;
  gap: 15px;
}

.contact-info .info-text h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-info .info-text p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #a0aec0;
}

.contact-info .info-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: var(--primary-grad-30per);
  color: white;
}

@media (max-width: 1100px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .info-card {
    width: 100%;
    max-width: 500px;
  }

  .contact-form {
    height: auto;
  }
}

/* View Edu Page */
#view-page .dashboard-card {
  width: 100%;
  background: var(--primary-grad-1per);
  border-radius: var(--rad-16);
  border-top: 0.8px solid rgba(173, 70, 255, 0.3);
}

#view-page .dashboard-card .stats-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-direction: row-reverse;
}

#view-page .dashboard-card .stat-box {
  text-align: center;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}

#view-page .dashboard-card .stat-label {
  color: var(--text-muted);
  font-size: 14px;
  display: block;
}

#view-page .dashboard-card .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: white;
}

#view-page .dashboard-card .progress-container {
  height: 12px;
  background: #1e2939;
  border-radius: 100px;
  overflow: hidden;
}

#view-page .dashboard-card .progress-bar {
  height: 100%;
  background: var(--progress-grad);
  border-radius: 100px;
}

#view-page .roadmap-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

#view-page .roadmap-container .level-card {
  width: 100%;
  padding: 40px;
  border-radius: var(--rad-16);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(30, 41, 57, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}

@media (max-width: 767px) {
  #view-page .roadmap-container .level-card {
    flex-direction: column;
    align-items: center;
  }
}

.connector {
  width: 4px;
  height: 32px;
  background-color: var(--disabled-text);
  border-radius: var(--rad-16);
}

.connector.active {
  background: var(--connector-grad);
}

#view-page .roadmap-container .level-card .right-side {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

#view-page .status-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

#view-page .text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  align-items: flex-start;
}

#view-page .text-group .level-num {
  color: #c27aff;
  font-size: 14px;
}

#view-page .level-card .text-group h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

#view-page .level-card .text-group p {
  color: var(--text-muted);
}

#view-page .level-card .time-tag {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.completed {
  background: rgba(0, 201, 80, 0.05);
  border-top: 1.5px solid var(--success);
}

#view-page .completed .status-box {
  background: var(--success);
  color: white;
}

#view-page .completed .btn {
  background: rgba(0, 201, 80, 0.15);
  color: var(--success);
  border: 1px solid var(--success);
}

#view-page .active .status-box {
  background: var(--progress-grad);
  color: white;
}

#view-page .level-card.locked {
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.6;
}

.locked .status-box {
  background: #364153;
  color: var(--text-muted);
}

#view-page .locked .btn {
  background: #36415380;
  color: var(--text-muted);
  width: 100%;
  cursor: not-allowed;
}

#view-page .hero-title .text-primary {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* View Edu Page */

/* sign in */
.auth-card {
  background: rgba(18, 26, 45, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
}

.btn-social {
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
}

.btn-github {
  background: #2d333b;
  color: white;
  border: 1px solid #444c56;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 13px;
}

.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--card-border);
}

.divider-text:not(:empty)::before {
  margin-left: 0.5em;
}

.divider-text:not(:empty)::after {
  margin-right: 0.5em;
}

.input-group-custom {
  position: relative;
}

.input-group-custom input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  color: white;
  padding: 12px 45px 12px 15px;
  border-radius: 12px;
}

.input-group-custom input:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--card-hover-border);
  box-shadow: none;
  color: white;
}

.input-group-custom i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--disabled-text);
}

.form-check-input {
  background-color: transparent;
  border-color: var(--card-border);
}

.form-check-input:checked {
  background-color: #7c3aed;
  border-color: #7c3aed;
}

@media (max-width: 991px) {
  #auth-section {
    padding: 100px 0;
  }

  .auth-card {
    margin-top: 50px;
  }
}

/* sign in */
/* sign up */
.auth-card .btn-social {
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-card .btn-social.bg-white:hover {
  color: var(--text-color) !important;
}

.list-unstyled li i {
  color: #a78bfa;
  /* لون موحد للنقاط */
  font-size: 8px;
}

.input-group-custom input::placeholder {
  color: #4b5563;
  font-size: 13px;
}

/* sign up */