/* ============================================================
   pages.css — scoped component styles for individual web pages
   ============================================================ */

/* ── Contact page ─────────────────────────────────────────── */
.td_cinfo_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow .2s, transform .2s;
}

.td_cinfo_card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.td_cinfo_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 24px;
  margin: 0 auto 20px;
}

.td_cinfo_social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}

.td_cinfo_social:hover {
  transform: translateY(-4px);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

/* ── Testimonials page ────────────────────────────────────── */
.td_tcard {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.td_tcard:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
}

.td_tcard_bar {
  height: 4px;
}

.td_tcard_inner {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Downloads page ───────────────────────────────────────── */
.td_dl_card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 32px;
  transition: box-shadow .2s, transform .2s;
}

.td_dl_card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.td_dl_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 26px;
  flex-shrink: 0;
}

.td_dl_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.td_dl_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.td_dl_badge {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.td_dl_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 575px) {
  .td_dl_card {
    flex-direction: column;
  }

  .td_dl_icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* ── Jobs index page ──────────────────────────────────────── */
.td_jobs_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.td_job_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 36px;
  transition: box-shadow .2s, transform .2s;
  border-left: 4px solid var(--accent-color);
}

[dir="rtl"] .td_job_row {
  border-left: 1px solid var(--border-color);
  border-right: 4px solid var(--accent-color);
}

.td_job_row:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.td_job_row_left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.td_job_icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .td_job_row {
    padding: 20px;
  }

  .td_job_row_right {
    width: 100%;
  }

  .td_job_row_right .td_btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Job detail page ──────────────────────────────────────── */
.td_job_main_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 44px 52px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .04);
}

.td_job_section_title {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-color);
}

.td_job_body ul {
  padding-left: 1.4em;
}

.td_job_body ul li {
  margin-bottom: 8px;
}

.td_job_body p:last-child {
  margin-bottom: 0;
}

.td_job_back_row {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.td_job_sidebar_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
}

.td_job_sidebar_icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 20px;
}

.td_job_sidebar_cta {
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.td_job_cta_icon {
  font-size: 44px;
  color: #fff;
  opacity: .25;
  line-height: 1;
}

.td_job_apply_btn {
  background: #fff;
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 991px) {
  .td_job_main_card {
    padding: 32px 36px;
  }
}

@media (max-width: 575px) {
  .td_job_main_card {
    padding: 24px 20px;
  }
}

/* ── Form pages (Apply, Scholarship, Partner, Services) ───── */
.wd_form_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .04);
}

.wd_form_note {
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--heading-color);
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.wd_form_divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 32px 0;
}

.wd_form_section_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
}

.wd_form_card .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.wd_form_card .form-control,
.wd_form_card .form-select {
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 11px 16px;
  font-size: 15px;
  color: var(--heading-color);
  background: var(--white-color);
}

.wd_form_card .form-control:focus,
.wd_form_card .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.wd_form_card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.wd_form_card .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.wd_form_success_icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border: 2px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 28px;
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .wd_form_card {
    padding: 36px 36px;
  }
}

@media (max-width: 575px) {
  .wd_form_card {
    padding: 24px 20px;
  }
}

/* ── Contact page — consultation form section ─────────────── */
.wd_consult_wrap {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(0, 0, 0, .05);
}

.wd_consult_sidebar {
  background: var(--accent-color);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #fff;
}

.wd_consult_sidebar_icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.wd_consult_form_area {
  padding: 52px 48px;
}

@media (max-width: 991px) {
  .wd_consult_sidebar {
    padding: 36px 32px;
  }

  .wd_consult_form_area {
    padding: 36px 32px;
  }
}

@media (max-width: 575px) {
  .wd_consult_sidebar {
    padding: 28px 20px;
  }

  .wd_consult_form_area {
    padding: 24px 20px;
  }
}

/* ── Hero section — overrides & RTL ─────────────────────────────── */
.td_hero_btn_group .td_btn.td_style_1 .td_btn_in { padding-left: 20px !important; padding-right: 20px !important; }
[dir="rtl"] .td_hero.td_style_1::before {
  left: auto;
  right: 13%;
}

/* ── Brand Typography ─────────────────────────────────────────
   Montserrat  — clear, strong headings
   Libre Baskerville — refined supporting text
   Applied LTR only; RTL uses Cairo loaded in web.blade.php   */
[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] h5,
[dir="ltr"] h6,
[dir="ltr"] .td_section_title,
[dir="ltr"] .td_fs_48,
[dir="ltr"] .td_fs_40,
[dir="ltr"] .td_fs_36,
[dir="ltr"] .td_fs_32,
[dir="ltr"] .td_fs_28,
[dir="ltr"] .td_fs_24,
[dir="ltr"] .td_fs_20,
[dir="ltr"] .td_footer_widget_title,
[dir="ltr"] .td_accordian_title,
[dir="ltr"] .wd_faq_question,
[dir="ltr"] .td_btn {
  font-family: 'Montserrat', sans-serif;
}

[dir="ltr"] body,
[dir="ltr"] p,
[dir="ltr"] .td_fs_18,
[dir="ltr"] .td_fs_17,
[dir="ltr"] .td_fs_16,
[dir="ltr"] .td_fs_15,
[dir="ltr"] .td_fs_14,
[dir="ltr"] .td_fs_13,
[dir="ltr"] .form-label,
[dir="ltr"] .form-control,
[dir="ltr"] .form-select {
  font-family: 'Libre Baskerville', Georgia, serif;
}

/* ── Header rows: force space-between layout ─────────────────── */
.td_site_header.td_style_1 .td_main_header_in,
.td_site_header.td_style_1 .td_top_header_in {
  justify-content: space-between !important;
}

/* ── Topbar buttons: gap between icon and label ─────────────── */
.td_topbar_apply .td_btn_in,
.td_topbar_scholar .td_btn_in {
  gap: 7px !important;
}

/* ── Topbar: compact on mobile ────────────────────────────────
   Stack contact info above buttons; shrink buttons to fit one line */
@media (max-width: 767px) {
  .td_top_header_in {
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    gap: 4px 8px !important;
  }

  .td_top_header_left {
    font-size: 11px !important;
    letter-spacing: 0 !important;
    gap: 8px !important;
  }

  .td_top_header_left .td_topbar_label {
    font-size: 11px !important;
    letter-spacing: 0 !important;
  }

  .td_topbar_apply .td_btn_in,
  .td_topbar_scholar .td_btn_in {
    padding: 5px 12px !important;
    gap: 5px !important;
    font-size: 11px !important;
  }

  .td_topbar_label {
    font-size: 11px !important;
    letter-spacing: 0 !important;
  }

  .td_topbar_apply .fa-paper-plane,
  .td_topbar_scholar .fa-graduation-cap {
    font-size: 11px !important;
  }
}

/* ── FAQ page — brand accordion ───────────────────────────────  */
.wd_faq_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wd_faq_item {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.wd_faq_item:hover,
.wd_faq_item.active {
  border-color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.wd_faq_head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  cursor: pointer;
  user-select: none;
}

.wd_faq_num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, color .25s;
  font-family: 'Montserrat', sans-serif;
}

.wd_faq_item.active .wd_faq_num {
  background: var(--accent-color);
  color: #fff;
}

.wd_faq_question {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.45;
  margin: 0;
}

.wd_faq_icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--heading-color) 8%, transparent);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  transition: background .25s, color .25s, transform .3s;
}

.wd_faq_item.active .wd_faq_icon {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(45deg);
}

.wd_faq_body {
  display: none;
  padding: 4px 28px 24px 84px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--heading-color);
  opacity: .8;
}

.wd_faq_item.active .wd_faq_body {
  display: block;
}

.wd_faq_cta {
  padding: 52px 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 70%, #000) 100%);
}

.wd_faq_cta_icon {
  font-size: 52px;
  color: rgba(255, 255, 255, .6);
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wd_faq_head {
    padding: 16px 20px;
    gap: 12px;
  }

  .wd_faq_body {
    padding: 4px 20px 20px 20px;
  }

  .wd_faq_cta {
    padding: 36px 28px;
  }
}

/* ── Global CTA Section ───────────────────────────────────────── */
.wd_cta_section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 70%, #000) 100%);
  padding: 90px 0;
}

.wd_cta_bg_shape {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

.wd_cta_bg_shape_2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .05);
  top: auto;
  right: auto;
  bottom: -120px;
  left: -80px;
}

.wd_cta_eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
}

.wd_cta_heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.wd_cta_sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.wd_cta_btn_primary .td_btn_in {
  gap: 10px;
  padding: 14px 32px;
  background: rgba(0, 0, 0, .25) !important;
}

.wd_cta_btn_outline .td_btn_in,
.wd_cta_btn_outline_inner {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 30px;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  background: transparent;
  text-decoration: none;
}

.wd_cta_btn_outline:hover .wd_cta_btn_outline_inner {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
}

@media (min-width: 992px) {
  .wd_cta_actions {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .wd_cta_section {
    padding: 64px 0;
  }

  .wd_cta_actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── Cookie consent banner ────────────────────────────────────  */
.wd_cookie_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--white-color);
  border-top: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .1);
  z-index: 9999;
  padding: 18px 32px;
}

.wd_cookie_inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wd_cookie_text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}

.wd_cookie_icon {
  font-size: 28px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.wd_cookie_title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.wd_cookie_desc {
  font-size: 13px;
  color: var(--heading-color);
  opacity: .7;
  margin: 0;
  line-height: 1.55;
}

.wd_cookie_actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.wd_cookie_btn {
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}

.wd_cookie_btn:hover {
  opacity: .85;
}

.wd_cookie_btn_outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--heading-color);
}

.wd_cookie_btn_accent {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 575px) {
  .wd_cookie_banner {
    padding: 14px 16px;
  }

  .wd_cookie_actions {
    width: 100%;
  }

  .wd_cookie_btn {
    flex: 1;
    text-align: center;
  }
}

/* ── Phone field: intl-tel-input ─────────────────────────────────────── */
.wd-iti-wrap {
  direction: ltr;
}

.wd-iti-wrap .iti {
  width: 100%;
}

.wd-iti-wrap .iti__tel-input {
  width: 100%;
  text-align: center;
}

.wd-iti-wrap .iti__tel-input::placeholder {
  text-align: center;
}

/* RTL: flag button stays on the left (LTR order) */
[dir="rtl"] .wd-iti-wrap {
  direction: ltr;
}

[dir="rtl"] .wd-iti-wrap .iti__selected-flag {
  left: 0;
  right: auto;
}

[dir="rtl"] .wd-iti-wrap .iti__dropdown-content {
  right: 0;
  left: auto;
}


/* ── Blog post card (index + home) ─────────────────────────────────────── */
.td_post.td_style_1 {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.td_post.td_style_1:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.td_post.td_style_1 .td_post_thumb {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.td_post.td_style_1 .td_post_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.td_post.td_style_1:hover .td_post_thumb img {
  transform: scale(1.05);
}

.td_post.td_style_1 .td_post_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
}

/* ── Blog detail: bordered card around cover image + meta bar ───────────── */
.td_blog_details_head {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.td_blog_details_head>img {
  border-radius: 0;
  display: block;
}

.td_blog_details_head_meta {
  padding: 20px 28px;
}

/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════════════════════════════ */

/* ── Intro strip ─────────────────────────────────────────────────── */
.wd_services_intro_strip {
  padding: 72px 0 0;
}

/* ── Snapshot cards ──────────────────────────────────────────────── */
.wd_service_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.wd_service_card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.wd_service_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.wd_service_card:hover::before {
  transform: scaleX(1);
}

.wd_service_card_icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 22px;
  transition: background .25s, color .25s;
}

.wd_service_card:hover .wd_service_card_icon {
  background: var(--accent-color);
  color: #fff;
}

.wd_service_card_title {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wd_service_card_desc {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Dark section (For Students) ────────────────────────────────── */
.wd_services_dark_section {
  background: var(--gray-color, #0a0e1a);
}

.wd_service_dark_card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background .25s, border-color .25s;
}

.wd_service_dark_card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent-color);
}

.wd_service_dark_icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.wd_service_dark_title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.wd_service_dark_desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── University cards ────────────────────────────────────────────── */
.wd_service_uni_card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 24px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  background: var(--white-color);
  position: relative;
}

.wd_service_uni_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.wd_service_uni_num {
  font-size: 48px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.wd_service_uni_icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 20px;
}

.wd_service_uni_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wd_service_uni_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Approach list (services page) ──────────────────────────────── */
.wd_approach_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wd_approach_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 22px;
  transition: box-shadow .2s, border-color .2s;
}

.wd_approach_item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  border-color: var(--accent-color);
}

.wd_approach_num {
  font-size: 36px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color) 20%, transparent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  font-family: 'Montserrat', sans-serif;
}

.wd_approach_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.wd_approach_body {
  flex: 1;
}

.wd_approach_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.wd_approach_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Why Winchester grid (services page) ────────────────────────── */
.wd_why_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wd_why_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 18px;
  transition: box-shadow .2s, border-color .2s;
}

.wd_why_item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  border-color: var(--accent-color);
}

.wd_why_icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.wd_why_title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.wd_why_desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .wd_why_grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════════════ */

/* ── About image block ───────────────────────────────────────────── */
.wd_about_img_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.wd_about_img_main {
  border-radius: 24px;
  overflow: hidden;
  max-height: 500px;
}

.wd_about_img_main img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

.wd_about_badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  min-width: 180px;
}

.wd_about_badge_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.wd_about_badge_num {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.wd_about_badge_text {
  font-size: 12px;
  color: var(--body-color);
  margin-top: 2px;
}

[dir="rtl"] .wd_about_badge {
  right: auto;
  left: -20px;
}


/* ── Stats row ───────────────────────────────────────────────────── */
.wd_about_stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 28px;
  margin-top: 40px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.wd_about_stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.wd_about_stat_num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.wd_about_stat_label {
  font-size: 13px;
  color: var(--body-color);
}

/* ── Mission / Vision cards ──────────────────────────────────────── */
.wd_about_mission_section {
  background: var(--smoke-color, #f9f6f4);
}

.wd_mission_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  transition: box-shadow .25s, transform .25s;
}

.wd_mission_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.wd_mission_card_accent {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.wd_mission_card_accent .wd_mission_icon,
.wd_mission_card_accent .wd_mission_title,
.wd_mission_card_accent .wd_mission_desc {
  color: #fff !important;
}

.wd_mission_card_accent .wd_mission_icon {
  background: rgba(255, 255, 255, .15) !important;
}

.wd_mission_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.wd_mission_title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 14px;
}

.wd_mission_desc {
  font-size: 16px;
  color: var(--body-color);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Values cards ────────────────────────────────────────────────── */
.wd_value_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.wd_value_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.wd_value_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: background .25s, color .25s;
}

.wd_value_card:hover .wd_value_icon {
  background: var(--accent-color);
  color: #fff;
}

.wd_value_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.wd_value_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Why check list (about page) ─────────────────────────────────── */
.wd_why_checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wd_why_check_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 20px;
  transition: box-shadow .2s, border-color .2s;
}

.wd_why_check_item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  border-color: var(--accent-color);
}

.wd_why_check_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.wd_why_check_title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.wd_why_check_desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Approach cards (about page) ─────────────────────────────────── */
.wd_approach_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px 30px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
}

.wd_approach_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.wd_approach_card_num {
  font-size: 52px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.wd_approach_card_icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  transition: transform .25s;
}

.wd_approach_card:hover .wd_approach_card_icon {
  transform: scale(1.08);
}

.wd_approach_card_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.wd_approach_card_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Shared spacing helpers ──────────────────────────────────────── */
.td_mt_20_lg {
  margin-top: 0;
}

@media (max-width: 991px) {
  .td_mt_20_lg {
    margin-top: 20px;
  }

  .wd_about_badge {
    right: 10px;
    bottom: -10px;
  }

  [dir="rtl"] .wd_about_badge {
    left: 10px;
    right: auto;
  }

  .wd_why_grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════════
   SERVICES PAGE — Image Cards
   ════════════════════════════════════════════════════════════════════ */

/* ── Snapshot image cards ────────────────────────────────────────── */
.wd_svc_img_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.wd_svc_img_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
}

.wd_svc_img_wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.wd_svc_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.wd_svc_img_card:hover .wd_svc_img {
  transform: scale(1.05);
}

.wd_svc_img_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity .25s;
}

.wd_svc_img_overlay i {
  font-size: 26px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.wd_svc_img_body {
  padding: 22px 22px 24px;
}

.wd_svc_img_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.wd_svc_img_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Dark section student cards (with image) ─────────────────────── */
.wd_svc_dark_img_card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s;
}

.wd_svc_dark_img_card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.wd_svc_dark_img_thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wd_svc_dark_img_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.wd_svc_dark_img_card:hover .wd_svc_dark_img_thumb img {
  transform: scale(1.04);
}

.wd_svc_dark_img_icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

[dir="rtl"] .wd_svc_dark_img_icon {
  right: auto;
  left: 12px;
}

.wd_svc_dark_img_body {
  padding: 20px 22px 22px;
  flex: 1;
}

.wd_svc_dark_img_title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.wd_svc_dark_img_desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── University numbered image cards ────────────────────────────── */
.wd_svc_uni_img_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.wd_svc_uni_img_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.wd_svc_uni_img_wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wd_svc_uni_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.wd_svc_uni_img_card:hover .wd_svc_uni_img_wrap img {
  transform: scale(1.05);
}

.wd_svc_uni_img_num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--accent-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

[dir="rtl"] .wd_svc_uni_img_num {
  left: auto;
  right: 12px;
}

.wd_svc_uni_img_body {
  padding: 20px 22px 24px;
  text-align: center;
}

.wd_svc_uni_img_icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  margin: 0 auto 14px;
  transition: background .25s, color .25s;
}

.wd_svc_uni_img_card:hover .wd_svc_uni_img_icon {
  background: var(--accent-color);
  color: #fff;
}

.wd_svc_uni_img_title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wd_svc_uni_img_desc {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Approach timeline (services + about pages) ─────────────────── */
.wd_approach_timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.wd_approach_timeline::before {
  content: '';
  position: absolute;
  top: 54px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: color-mix(in srgb, var(--accent-color) 25%, transparent);
  z-index: 0;
}

.wd_approach_tl_item {
  text-align: center;
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
}

.wd_approach_tl_num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.wd_approach_tl_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 35%, transparent);
  position: relative;
  z-index: 2;
}

.wd_approach_tl_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.wd_approach_tl_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* About page approach section background */
.wd_about_approach_section {
  background: var(--accent-color, #0a0e1a);
}

.wd_about_approach_section .wd_approach_tl_title {
  color: #fff;
}

.wd_about_approach_section .wd_approach_tl_desc {
  color: rgba(255, 255, 255, .65);
}

.wd_about_approach_section .wd_approach_tl_num {
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 767px) {
  .wd_approach_timeline {
    grid-template-columns: 1fr;
  }

  .wd_approach_timeline::before {
    display: none;
  }

  .wd_approach_tl_item {
    padding: 0 0 24px;
  }
}

/* ════════════════════════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.wd_hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.wd_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, .82) 0%, rgba(10, 14, 26, .55) 100%);
  z-index: 1;
}

.wd_hero>.container-xl {
  position: relative;
  z-index: 2;
}

.wd_hero_inner {
  padding: 120px 0 80px;
}

.wd_hero_content {
  position: relative;
}

.wd_hero_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.wd_hero_title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.wd_hero_sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
}

.wd_hero_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.wd_hero_btn_primary .td_btn_in,
.wd_hero_btn_ghost .td_btn_in {
  padding: 14px 30px;
}

.wd_hero_scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wd_hero_scroll_dot {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: heroScroll 1.8s ease infinite;
}

@keyframes heroScroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ── Stats strip ─────────────────────────────────────────────────── */
.wd_stats_strip {
  background: var(--white-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.wd_stats_row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.wd_stat_item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wd_stat_item:last-child {
  border-right: none;
}

[dir="rtl"] .wd_stat_item {
  border-right: none;
  border-left: 1px solid var(--border-color);
}

[dir="rtl"] .wd_stat_item:last-child {
  border-left: none;
}

.wd_stat_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--border-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--border-color);
  margin-bottom: 8px;
}

.wd_stat_num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

.wd_stat_suffix {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.wd_stat_label {
  font-size: 13px;
  color: var(--body-color);
  margin-top: 4px;
}

@media (max-width: 575px) {
  .wd_stats_row {
    flex-wrap: wrap;
  }

  .wd_stat_item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border-color);
  }

  .wd_stat_item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  [dir="rtl"] .wd_stat_item:nth-child(odd) {
    border-right: none;
    border-left: 1px solid var(--border-color);
  }
}

/* ── Home service cards ──────────────────────────────────────────── */
.wd_home_svc_card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.wd_home_svc_card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
}

.wd_home_svc_img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wd_home_svc_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.wd_home_svc_card:hover .wd_home_svc_img img {
  transform: scale(1.05);
}

.wd_home_svc_icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

[dir="rtl"] .wd_home_svc_icon {
  left: auto;
  right: 14px;
}

.wd_home_svc_body {
  padding: 20px 22px 22px;
}

.wd_home_svc_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wd_home_svc_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── 4-step process overview (home page) ────────────────────────── */
.wd_process_section {
  background: var(--smoke-color, #f9f6f4);
}

.wd_process_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.wd_process_grid::before {
  content: '';
  position: absolute;
  top: 64px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: color-mix(in srgb, var(--accent-color) 22%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wd_process_card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 40px 26px 36px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.wd_process_card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -18px;
  right: 8px;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color) 7%, transparent);
  font-family: 'Montserrat', sans-serif;
  pointer-events: none;
  letter-spacing: -4px;
}

.wd_process_card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  transform: translateY(-8px);
}

.wd_process_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin: 0 auto 22px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

.wd_process_icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  margin: 0 auto 22px;
  transition: background .3s, color .3s, border-radius .3s, transform .3s;
  position: relative;
  z-index: 1;
}

.wd_process_card:hover .wd_process_icon {
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  transform: scale(1.05);
}

.wd_process_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.wd_process_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .wd_process_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd_process_grid::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .wd_process_grid {
    grid-template-columns: 1fr;
  }
}

/* ── Steps section ───────────────────────────────────────────────── */
.wd_steps_section {
  background: var(--accent-color, #0a0e1a);
  position: relative;
  overflow: hidden;
}

.wd_steps_section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  pointer-events: none;
}

.wd_steps_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

.wd_step_item {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  transition: background .25s;
}

.wd_step_item:hover {
  background: rgba(255, 255, 255, .08);
}

.wd_step_num {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.wd_step_icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 40%, transparent);
  transition: transform .25s;
}

.wd_step_item:hover .wd_step_icon {
  transform: scale(1.1);
}

.wd_step_title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wd_step_desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .wd_steps_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .wd_steps_grid {
    grid-template-columns: 1fr;
  }
}

/* ── Home about features list ────────────────────────────────────── */
.wd_about_features_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wd_about_features_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}

.wd_about_check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.wd_about_year_badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

[dir="rtl"] .wd_about_year_badge {
  left: auto;
  right: -16px;
}

.wd_about_year_num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.wd_about_year_text {
  display: block;
  font-size: 12px;
  opacity: .85;
  margin-top: 4px;
}

.td_mb_36 {
  margin-bottom: 36px;
}

/* ── Testimonials ────────────────────────────────────────────────── */
.wd_stars {
  color: #fbbf24;
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 2px;
}

.td_testimonial.td_style_3 {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 24px;
  margin: 8px 10px 20px;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  height: auto;
}

.td_testimonial_author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.td_testimonial_avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
}

.td_testimonial_avatar_placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.td_testimonial_name {
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
}

.td_testimonial_meta {
  font-size: 13px;
  color: var(--body-color);
  margin-top: 2px;
}

/* ── Blog post card shared utilities ────────────────────────────── */
.td_post.td_style_1 .td_post_info>.td_btn:last-child {
  margin-top: auto;
}

.td_post_category {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.td_post_meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

/* ── Home CTA banner ─────────────────────────────────────────────── */
.wd_home_cta_section {
  background: var(--body-color, #0d1321);
  position: relative;
  overflow: hidden;
}

.wd_home_cta_section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  pointer-events: none;
}

.wd_home_cta_section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  pointer-events: none;
}

.wd_home_cta_inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wd_home_cta_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: 22px;
}

.wd_home_cta_heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.wd_home_cta_sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 36px;
}

.wd_home_cta_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.wd_home_cta_trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.wd_home_cta_trust_item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  font-weight: 500;
}

.wd_home_cta_trust_item i {
  color: var(--accent-color);
  font-size: 20px;
}

/* ── Service card icon badge (td_card.td_style_3 overlay) ────────── */
.td_card.td_style_3 .td_card_thumb {
  position: relative;
}

.td_card_icon_badge {
  position: absolute;
  bottom: -18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  z-index: 2;
  transition: transform .3s;
}

[dir="rtl"] .td_card_icon_badge {
  right: auto;
  left: 18px;
}

.td_card.td_style_3:hover .td_card_icon_badge {
  transform: scale(1.12) rotate(-8deg);
}

/* ── Stats strip ─────────────────────────────────────────────────── */
.wd_stats_strip {
  background: var(--accent-color);
  padding: 50px 0;
}

.wd_stats_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .wd_stats_row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .wd_stats_row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.wd_stat_item {
  text-align: center;
}

.wd_stat_icon {
  font-size: 28px;
  color: var(--border-color);
  margin-bottom: 10px;
}

.wd_stat_num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: inline;
}

.wd_stat_suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--border-color);
  display: inline;
}

.wd_stat_label {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ── Hero responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .wd_hero {
    min-height: 70vh;
  }

  .wd_hero_inner {
    padding: 100px 0 60px;
  }

  .wd_hero_btns {
    flex-direction: column;
    align-items: center;
  }

  .wd_hero_scroll {
    display: none;
  }

  .wd_approach_timeline {
    grid-template-columns: 1fr;
  }

  .wd_approach_timeline::before {
    display: none;
  }
}

/* ── Service Clean Card (new services page) ──────────────────────── */
.wd_svc_clean_card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.wd_svc_clean_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
}

.wd_svc_clean_img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wd_svc_clean_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.wd_svc_clean_card:hover .wd_svc_clean_img img {
  transform: scale(1.06);
}

.wd_svc_clean_badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

[dir="rtl"] .wd_svc_clean_badge {
  left: auto;
  right: 14px;
}

.wd_svc_badge_uni {
  background: var(--heading-color);
}

.wd_svc_clean_body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wd_svc_clean_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.wd_svc_clean_desc {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.wd_svc_clean_cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap .25s;
}

.wd_svc_clean_cta:hover {
  gap: 10px;
  color: var(--accent-color);
}

/* ── Why grid (services page) ────────────────────────────────────── */
.wd_why_grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wd_why_item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.wd_why_item_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.wd_why_item_title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.wd_why_item_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin: 0;
}

/* ── Study Jordan page ───────────────────────────────────────────── */
.wd_sj_why_box {
  background: var(--accent-color);
  border-radius: 20px;
  padding: 36px 40px;
  color: #fff;
}

.wd_sj_why_title {
  font-size: 20px;
  font-weight: 700;
  color:var(--smoke-color);
  margin-bottom: 20px;
}

.wd_sj_why_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wd_sj_why_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
}

.wd_sj_why_list li i {
  font-size: 18px;
  color: var(--smoke-color);
}

.wd_sj_help_card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
}

.wd_sj_help_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.wd_sj_help_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.wd_sj_help_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.wd_sj_help_desc {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.65;
  margin: 0;
}

.wd_sj_programs_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width:991px) {
  .wd_sj_programs_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:575px) {
  .wd_sj_programs_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wd_sj_prog_card {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.wd_sj_prog_card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .09);
}

.wd_sj_prog_icon {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.wd_sj_prog_name {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

.wd_sj_assurance {
  max-width: 680px;
  margin: 0 auto;
}

.wd_sj_assurance_icon {
  font-size: 36px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 16px;
}

.wd_sj_assurance_text {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin: 0;
}

/* ── Universities page ───────────────────────────────────────────── */
.wd_uni_intro_icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent-color);
  margin: 0 auto 28px;
}

.wd_uni_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width:991px) {
  .wd_uni_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:575px) {
  .wd_uni_grid {
    grid-template-columns: 1fr;
  }
}

.wd_uni_card {
  background: var(--white-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .07);
  border: 1px solid var(--border-color);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
}

.wd_uni_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .13);
}

.wd_uni_card_link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 32px 28px;
  height: 100%;
}

.wd_uni_logo_wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.wd_uni_logo {
  max-height: 120px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(25%);
  transition: filter .3s;
}

.wd_uni_card:hover .wd_uni_logo {
  filter: grayscale(0);
}

.wd_uni_logo_placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.wd_uni_name {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.35;
}

.wd_uni_country {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 0;
  flex: 1;
}

.wd_uni_view_btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  width: 100%;
  transition: letter-spacing .2s;
}

.wd_uni_card:hover .wd_uni_view_btn {
  letter-spacing: .3px;
}

/* ── University detail page ──────────────────────────────────────── */
.wd_uni_detail_card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .08);
  border: 1px solid var(--border-color);
  text-align: center;
}

.wd_uni_detail_logo_wrap {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background: var(--smoke-color, #f9f6f4);
  border: 2px solid var(--border-color);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.wd_uni_detail_logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wd_uni_detail_logo_placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.wd_uni_detail_name {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.wd_uni_detail_country {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 0;
}

.wd_uni_detail_divider {
  border-color: var(--border-color);
  margin: 32px 0;
}

.wd_uni_detail_desc {
  text-align: start;
}

.wd_uni_detail_desc_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 14px;
}

.wd_uni_detail_desc p {
  font-size: 16px;
  color: var(--body-color);
  line-height: 1.8;
  margin: 0;
}

.wd_uni_detail_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.wd_uni_detail_back {
  color: var(--body-color);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}

.wd_uni_detail_back:hover {
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .wd_uni_detail_card {
    padding: 36px 24px;
  }
}

/* ── Services page utility buttons ──────────────────────────────── */
.wd_btn_outline_dark .td_btn_in {
  border: 2px solid var(--border-color);
  background: transparent;
}

.wd_btn_outline_dark .td_btn_in:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}

.wd_approach_cta_btn {
  background: #fff;
  color: var(--heading-color);
  padding: 14px 44px;
}

.wd_approach_cta_btn:hover {
  background: rgba(255, 255, 255, .9);
}

/* ── Service card: no-image placeholder ─────────────────────────── */
.wd_svc_no_img {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 60%, var(--heading-color)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.wd_svc_no_img_num {
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 255, 255, .18);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

/* ── About page — company identity pills ────────────────────────── */
.wd_identity_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.wd_identity_pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.wd_identity_pill_icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wd_identity_pill_label {
  font-size: 11px;
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.wd_identity_pill_value {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

/* ── About page — logo meaning section (dark) ───────────────────── */
.wd_logo_meaning_section {
  background: var(--heading-color, #0a0e1a);
}

.wd_logo_meaning_logo {
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wd_logo_meaning_card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  transition: background .25s, border-color .25s;
  height: 100%;
}

.wd_logo_meaning_card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent-color);
}

.wd_logo_meaning_img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px;
}

.wd_logo_meaning_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.wd_logo_meaning_title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.wd_logo_meaning_desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin: 0;
}

/* ── About page — consultation CTA (dark split layout) ─────────── */
.wd_consult_cta_section {
  background: var(--accent-color, #0a0e1a);
}

.wd_consult_badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.wd_consult_action_card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wd_consult_action_card .td_btn {
  width: 100%;
  justify-content: center;
}

.wd_consult_action_card .td_btn_in {
  justify-content: center;
  width: 100%;
}

.wd_btn_whatsapp .td_btn_in {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}

.wd_btn_whatsapp .td_btn_in:hover {
  background: #20ba59;
  border-color: #20ba59;
}

@media (max-width: 991px) {
  .wd_consult_action_card {
    padding: 28px 24px;
  }
}