
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DRAWER (Mobile Nav)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 94, 0.45);
  z-index: 1040;
  backdrop-filter: blur(3px);
}
.drawer-overlay.show {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  box-shadow: 4px 0 40px rgba(10, 26, 94, 0.15);
}
.nav-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-md);
  cursor: pointer;
  transition: var(--t-fast);
}
.drawer-close:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-nav li {
  border-bottom: 1px solid var(--line);
}
.drawer-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--ink);
  transition: var(--t-fast);
}
.drawer-nav li a:hover {
  color: var(--blue);
  background: var(--soft);
}

.drawer-foot {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY â€” BADGE / TAG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  background: #eaefff;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.badge-tag-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY â€” DIVIDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue);
  margin: 1rem 0;
}
.divider-center {
  margin-inline: auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY â€” SCROLL REVEAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BACK TO TOP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#toTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: 0;
  font-size: var(--text-md);
  box-shadow: 0 10px 24px rgba(30, 77, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#toTop.show {
  opacity: 1;
  visibility: visible;
}
#toTop:hover {
  background: var(--navy-3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ACCESSIBILITY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}



.form-label{
  font-size: var(--text-sm);
  color: var(--blue);
}
.form-control{
  padding: 0.8rem;
}
.apply-card input.form-control,
.apply-card textarea.form-control {
  font-size: var(--text-sm);
}


html[lang="ar"] input[type="email"],
html[lang="ar"] input[type="number"],
html[lang="ar"] input[type="tel"],
html[lang="ar"] input[type="url"] {
    direction: rtl;
    text-align: right;
}

html[lang="en-US"] input[type="email"],
html[lang="en-US"] input[type="number"],
html[lang="en-US"] input[type="tel"],
html[lang="en-US"] input[type="url"] {
    direction: ltr;
    text-align: left;
}

/* Testimonial form — About page */
.testi-form-section .section-lead {
  max-width: 560px;
}

.testi-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.testi-form-card .form-control {
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  font-size: var(--text-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.testi-form-card .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 77, 255, 0.12);
}

.testi-form-card textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.testi-form-card input[type="file"].form-control {
  padding: 0.65rem 0.8rem;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.35rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  font-size: var(--text-2xl);
  color: #d4daf0;
  line-height: 1;
  transition: color var(--t-fast), transform var(--t-fast);
  margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f0a500;
}

.star-rating label:hover {
  transform: scale(1.08);
}

@media (max-width: 575px) {
  .testi-form-card {
    padding: 1.35rem 1.15rem 1.5rem;
  }
}
