:root {
  --no2ta-primary: #4adeb9;
  /* Teal/Mint Green */
  --no2ta-primary-dark: #4bf0ca;
  --no2ta-hero-bg: #ffffff;
  --no2ta-about-bg: #f8fafc;
  --no2ta-news-bg: #ffffff;
  --no2ta-impact-bg: #f08a82;
  /* Coral/Salmon */
  --no2ta-ink: #041822;
  --no2ta-ink-light: #e2fcff;
  --no2ta-ink-lighter: #e3feff;
  --no2ta-muted: #4e6b79;
  --no2ta-border: #d7e6f0;
}

@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url("../fonts/Alexandria-arabic.woff2") format("woff2");
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "Alexandria";
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url("../fonts/Alexandria-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

html,
body {
  font-family:
    "Alexandria",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--no2ta-ink);
}

.link-muted {
  color: var(--no2ta-muted);
  text-decoration: none;
}

.link-muted:hover {
  color: var(--no2ta-primary-dark);
}

.fa-en {display: none;}

.topbar {
  background: #f9fcff;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--no2ta-ink);
  transform: rotate(45deg);
  display: inline-block;
  border-radius: 4px;
}

.brand-mark--inverse {
  border-color: #fff;
}

.navbar .nav-link {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #041822 !important;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  font-weight: 800;
  color: #041822 !important;
}

/* Active page: black underline only */
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #041822;
  border-radius: 2px;
}

.timeline-container {
  display: grid;
  align-items: start;
  position: relative;
}

.timeline-line {
  margin: 0 auto;
  width: 960px;
  height: 4px;
  background-color: #00e6b8;
  position: relative;
  z-index: 100;
  /* Above circles */
  margin-top: 40px;
  /* Space above line */
  margin-bottom: 40px;
  /* Space below line to circles */
  /* RTL: line grows from right → left */
  transform-origin: right center;
  transform: scaleX(0);
}

.timeline-line.grow-play {
  animation: timeline-grow 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes timeline-grow {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* Menu cluster toward the right (RTL start), even gaps between items */
@media (min-width: 992px) {
  .navbar-nav-spaced {
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 0.25rem clamp(0.75rem, 1.5vw, 1.5rem);
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-expand-lg .navbar-collapse#mainNav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .navbar-expand-lg .navbar-collapse#mainNav .navbar-nav-tools {
    margin-inline-start: auto;
  }

  .lang-switch-flag {
    border-radius: 33%;
  }
}


.btn-join {
  font-weight: 700;
}

/* Hero */
.hero {
  background: var(--no2ta-hero-bg);
}

.hero-title {
  color: var(--no2ta-ink);
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(30px, 3.6vw + 10px, 56px);
  letter-spacing: -0.01em;
}

.hero-title-accent {
  color: var(--no2ta-primary-dark);
}

.hero-subtitle {
  max-width: 34rem;
  font-weight: 600;
}

.hero-cta {
  background: #3ff3c9;
  border-color: #3ff3c9;
  color: var(--no2ta-ink);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(74, 222, 185, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-cta:hover {
  background: #2dddb4;
  border-color: #2dddb4;
  color: var(--no2ta-ink);
}

.hero-cta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-illustration {
  width: 465px;
  height: 540px;
  max-width: 100%;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

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

/* About */
.about {
  background: var(--no2ta-about-bg);
}

.about-head {
  max-width: 680px;
  color: #022522;
}

.about-icon {
  font-size: 22px;
}

.about-card {
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-card-shadow {
  box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 50%) !important;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08) !important;
}

.about-note {
  font-weight: 700;
}

/* News */
.news {
  background: var(--no2ta-news-bg);
}

.news-border {
  position: absolute;
  inset-inline: 0;
  height: 6px;
  background-image: repeating-linear-gradient(to right,
      #3a8edb 0,
      #3a8edb 12px,
      transparent 12px,
      transparent 24px);
}

.news-border-top {
  top: 0;
}

.news-border-bottom {
  bottom: 0;
}

.news-tag {
  font-size: 12px;
  font-weight: 800;
  color: #3a8edb;
}

.news-link {
  color: #3a8edb;
}

.news-link:hover {
  text-decoration: underline;
}

.news-thumb {
  height: 180px;
  background: linear-gradient(120deg,
      rgba(58, 142, 219, 0.22),
      rgba(255, 255, 255, 0.9));
}

.news-thumb-2 {
  background: linear-gradient(120deg,
      rgba(0, 230, 192, 0.22),
      rgba(255, 255, 255, 0.9));
}

.news-thumb-3 {
  background: linear-gradient(120deg,
      rgba(255, 130, 123, 0.22),
      rgba(255, 255, 255, 0.9));
}

/* Impact */
.impact {
  background: var(--no2ta-impact-bg);
}

.impact-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  position: relative;
  margin-bottom: 5rem !important;
}

/* Home — impact section title accent line */
.impact-section-main .impact-title::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  margin: 0.75rem auto 0;
  background-color: #ef4e52b5;
  border-radius: 2px;
}

.impact-num {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw + 10px, 72px);
  line-height: 1.1;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.impact-label {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.2vw + 8px, 18px);
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Footer */
.footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding-bottom: 28px;
}

.footer-muted {
  color: #6c757d;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--no2ta-primary-dark);
}

.social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e1f0fa;
  color: #3a8edb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background-color: #3a8edb;
  color: #fff;
}

.newsletter-input::placeholder {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4d5b6b;
  opacity: 1;
  /* Override Firefox default opacity */
}

.footer-bottom {
  border-top: 1px solid #e9ecef;
}

/* Footer — brand wordmark + منصاتنا الاجتماعية (home design) */
.footer-brand-block {
  text-align: end;
}

/* Footer logo asset (Arabic/default pages) */
body:not(.site-en) .footer-brand-block::before {
  content: "";
  display: block;
  width: 220px;
  height: 56px;
  margin-bottom: 10px;
  margin-left: auto;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}

body:not(.site-en) .footer-brand-block .footer-brand-wordmark,
body:not(.site-en) .footer-brand-block .footer-brand-badge {
  display: none !important;
}

.footer-brand-wordmark {
  justify-content: flex-end;
}

.footer-brand-name {
  font-family: "Alexandria", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #041822;
  line-height: 1;
}

.footer-brand-o {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin: 0 0.04em;
  background-color: #041822;
  border-radius: 50%;
  vertical-align: 0.05em;
}

.footer-brand-diamond {
  width: 16px;
  height: 16px;
  border: 2px solid #041822;
  border-radius: 3px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.footer-brand-badge {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  color: #ffffff;
  background: #041822;
  padding: 6px 14px;
  border-radius: 999px;
}

.footer-social-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #5c6d82;
  text-align: start;
}

.footer-social-platforms {
  justify-content: flex-end;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #d9e8f2;
  color: #2b8fd9;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: #2b8fd9;
  color: #ffffff;
}

/* Arabic header language control: EN | AR (AR active) */
body:not(.site-en) .navbar .d-flex.align-items-center.gap-2.gap-md-3 a[aria-label="Search"] {
  order: 1;
}

body:not(.site-en) .navbar .lang-switch-link[hreflang="en"] {
  order: 2;
  /* font-size: 0; */
  text-decoration: none;
}

/* body:not(.site-en) .navbar .lang-switch-link[hreflang="en"]::before {content: "EN";font-size: 14px;color: #98a2b3;margin-left: 6px;}
body:not(.site-en) .navbar .lang-switch-link[hreflang="en"]::after {content: "| AR";font-size: 14px;color: #101828;} */

/* Bootstrap tweaks for RTL look */
.rounded-4 {
  border-radius: 18px !important;
}

@media (max-width: 991.98px) {
  .hero-subtitle {
    max-width: 100%;
  }
}

/* Custom additions for Figma layout */
.container {
  max-width: 1280px !important;
}

.text-teal {
  color: #3ff3c9 !important;
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  letter-spacing: 0px;
  text-align: right;
}

/* Strategic Vision Section (Laptop mockup look) */
.laptop-mockup-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 12px solid #f1f5f9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 3rem;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

/* Projects cards CTA arrow */
.project-hero-img {
	max-height: 54vh;
}
.project-cta {
  color: var(--no2ta-primary-dark);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
}

.project-cta:hover {
  color: var(--no2ta-ink);
}

/* Newsletter Input */
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px;
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 15px;
  flex: 1;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-submit {
  background: var(--no2ta-primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.newsletter-form .btn-submit:hover {
  opacity: 0.8;
}

/* About Section Typography */
.about-card-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--no2ta-ink);
}

.about-card-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--no2ta-muted);
}

.about-footer-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw + 8px, 30px);
  line-height: 1.5;
  letter-spacing: 0px;
  text-align: center;
  color: var(--no2ta-ink);
}

@media (max-width: 575.98px) {
  .about-footer-text {
    font-size: 18px;
  }

  .about-footer-arrow {
    display: none;
  }
}

/* News Section Typography */
.news-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: var(--no2ta-ink);
}

.news-card-category {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #42d2b2;
}

.news-card-title-link, .news-card-title-link .news-card-title {text-decoration: none;}
.news-card-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  color: var(--no2ta-ink);
}

.news-card-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--no2ta-muted);
}

.news-card-link {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: var(--no2ta-primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.news-card-link:hover {
  color: var(--no2ta-ink);
}

/* Migration from Inline Styles */
.navbar-logo-img {
  max-height: 40px;
}

.hero-title-main {
  line-height: 1.3;
}

.hero-title-big {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  letter-spacing: 0px;
  text-align: right;
}
@media (max-width: 575.98px) {
  body:not(.site-en) .hero .hero-title .text-teal, body:not(.site-en) .hero .hero-title-big {font-size: clamp(32px, 9vw, 72px);line-height: 1.2;}
  body:not(.site-en) .hero .hero-title .text-teal, body:not(.site-en) .hero .hero-title-big {font-size: clamp(32px, 9vw, 72px);line-height: 1.4;}
}
.hero-subtitle-p {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: right;
  margin-right: 0 !important;
}

.about-section-main {
  background-color: #4bf0ca;
}

.about-container-narrow {
  max-width: 650px;
}

@keyframes bounce-icon {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  15% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }

  30% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  45% {
    transform: translateY(-12px);
    animation-timing-function: ease-in;
  }

  60% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  75% {
    transform: translateY(-6px);
    animation-timing-function: ease-in;
  }

  90% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.about-section-icon {
  height: 60px;
}

.about-section-icon.bounce-play {
  animation: bounce-icon 2s ease-out forwards;
}

.about-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--no2ta-ink);
  text-align: center;
}

.about-section-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  color: #475569;
}

.cards-container-row {
  max-width: 10800px;
  /* Note: Plan said 1080px, but I'll use 1080px as intended */
  max-width: 1080px;
}

.about-footer-arrow {
  height: 21.37px;
  object-fit: contain;
}

/* Two-state arrow: straight → curved on hover */
.about-footer-cta {
  cursor: pointer;
}

.about-footer-arrow-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 22px;
  overflow: hidden;
}

.about-footer-arrow-straight,
.about-footer-arrow-curved {
  position: absolute;
  width: 100%;
  height: auto;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* Default: straight visible, curved hidden below */
.about-footer-arrow-straight {
  opacity: 1;
  transform: translateY(0);
}

.about-footer-arrow-curved {
  opacity: 0;
  transform: translateY(6px);
}

/* Hover: straight slides up & fades out, curved slides in */
.about-footer-cta:hover .about-footer-arrow-straight {
  opacity: 0;
  transform: translateY(-6px);
}

.about-footer-cta:hover .about-footer-arrow-curved {
  opacity: 1;
  transform: translateY(0);
}

.news-section-main {
  background-color: #f8f9fa;
}

.news-cards-container {
  max-width: 1080px;
}

.news-card-img-custom {
  border-radius: 20px;
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: transform 0.35s ease;
  will-change: transform;
}

.news-card-img-custom:hover {
  transform: scale(1.05);
}

.impact-section-main {
  background-color: var(--no2ta-impact-bg);
  padding: clamp(60px, 10vw, 120px) 0;
}

@media (max-width: 575.98px) {
  .impact-section-main {
    padding: 48px 0;
  }

  .impact-title {
    margin-bottom: 2rem !important;
    padding-bottom: 1rem !important;
  }
}

.impact-row-custom {
  color: var(--no2ta-ink);
}

.footer-logo-img {
  max-height: 40px;
  margin-bottom: 20px;
}

.footer-desc-p {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: right;
  color: #6c757d;
}

.footer-heading-custom {
  color: var(--no2ta-ink);
}

.footer-text-small {
  font-size: 14px;
}

.newsletter-container {
  max-width: 320px;
}

.footer-newsletter-form {
  max-width: none;
}

.newsletter-input-custom {
  border-radius: 0 8px 8px 0 !important;
  border: 1px solid #e9ecef !important;
  border-left: none !important;
  color: #6c757d;
  font-size: 14px;
  padding: 10px 15px;
}

.newsletter-btn-custom {
  background-color: #3ff3c9 !important;
  border-radius: 8px 0 0 8px !important;
  width: 60px;
  border: 1px solid #3ff3c9 !important;
}

.newsletter-btn-icon-custom {
  color: #1a1a1a;
  transform: rotate(224deg);
  font-size: 20px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-title-figma {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  color: #3ff3c9 !important;
  margin-bottom: 2rem;
}

.search-input-custom {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  color: white !important;
  text-align: center;
  padding: 1rem 0 !important;
  transition: border-bottom-color 0.3s ease;
}

.search-input-custom:focus {
  box-shadow: none !important;
  border-bottom-color: #3ff3c9 !important;
}

.search-input-custom::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.close-search {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  filter: invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
}

.close-search:hover {
  opacity: 1;
}

.search-hint {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
}

/* Prevent scrolling when search is open */
body.search-open {
  overflow: hidden;
}

/* About Page Specific Styles */
.about-hero {
  background-color: #fff;
}

.about-hero-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0px;
  color: #00b6b3;
}

@media (max-width: 575.98px) {
  .about-hero-title { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}
.about-hero-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  letter-spacing: 0px;
  text-align: right;
  color: #364153;
  max-width: 90%;
}
@media (max-width: 767.98px) {
  .about-hero-text {max-width: 100%;}
}

.about-hero-illustration img {
  border-radius: 24px;
  max-height: 570px;
}

.projects-content-production-hero .about-hero-title,
.projects-category-list-hero--ink-title .about-hero-title {
  color: var(--no2ta-ink);
}

.services-visual-identity-list-hero .about-hero-title {
  color: #d41142;
}

.projects-category-list-hero .about-hero-text {
  color: var(--no2ta-ink);
}

.projects-crisis-hero {
  overflow: hidden;
  position: relative;
}

.projects-crisis-hero::before {
  background: rgba(0, 182, 179, 0.18);
  border-radius: 32px;
  content: "";
  height: clamp(220px, 32vw, 360px);
  left: -4%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: clamp(220px, 32vw, 360px);
}

.projects-crisis-hero .container {
  position: relative;
  z-index: 1;
}

.projects-category-hero-accent {
  background-color: #00b6b3;
  border-radius: 999px;
  display: block;
  height: 6px;
  margin-inline-end: 0;
  margin-inline-start: auto;
  width: 128px;
}
.projects-category-hero-accent.right {
  margin-inline-end: auto;
  margin-inline-start: 0;
}

.projects-category-list__heading {
  color: var(--no2ta-ink);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.page-list-all-card__cover-link {
  display: block;
}

.page-list-all--category-cards .news-card-link {
  justify-content: flex-end;
  text-align: right;
}

.projects-category-card-more {
  align-items: center;
  background-color: #00b6b3;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  line-height: 24px;
  padding: 10px 22px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.projects-category-card-more:hover {
  background-color: #00a29f;
  color: var(--no2ta-ink-lighter);
}

/* Values Section */
.about-values {
  background-color: #fff;
}

.value-card {
  padding: 2rem 0;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url('../images/about-section-icon-bg.png'); */
  background-size: contain;
  background-repeat: no-repeat;
}

.value-icon {
  width: 80px;
  height: 80px;
}

.value-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--no2ta-ink);
}

.value-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  color: #364153;
}

/* Audience Section */
.bg-teal-light {
  background-color: #69c8cc;
  /* Light teal/mint */
}

.mashari3una-ornament-bg {
  position: relative;
  z-index: 0;
}

.about-audience {
  position: relative;
  overflow: hidden;
}

.about-audience::before,
.about-audience::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 500px;
  background-image: url("../images/about-section-icon-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.about-audience::before {
  left: -75px;
  background-position: right center;
}

.about-audience::after {
  right: -75px;
  background-position: left center;
  transform: translateY(-50%) scaleX(-1);
}

.about-audience .container {
  position: relative;
  z-index: 1;
}

.about-audience-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0;
  text-align: right;
  color: #041822;
  margin: 0 0 2.5rem;
}

@media (max-width: 991.98px) {
  .about-audience-section-title {
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1.15;
  }
}

@media (max-width: 575.98px) {
  .about-audience-section-title {
    font-size: clamp(28px, 9vw, 40px);
    margin-bottom: 1.75rem;
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  /* Soft grey border all around the card */
  border: 4px solid #e2e8f0;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  /* Room for shadow */
}

/* Top-right corner circular accent */
.audience-card::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 1;
  /* To appear above the card border */
}

/* The hover effect is mainly a slight translation now, as the shadow is static in design */
.audience-card:hover {
  transform: translate(-3px, -3px);
}

.audience-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.audience-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--no2ta-ink);
  margin-bottom: 0;
}

.audience-subtitle {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
}

.audience-icon {
  width: 64px;
  height: 64px;
}

.audience-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--no2ta-muted);
}

/* Audience Card Borders and Shadows */
.border-yellow {
  border-color: #ffde59;
  box-shadow: 6px 6px 0px 0px #ffde5966;
}

.border-yellow::before {
  background-color: #ffde59;
  box-shadow: 6px 6px 0px 0px #ffde5966;
}

.border-green {
  border-color: #4bf0ca;
  box-shadow: 6px 6px 0px 0px #4bf0ca66;
}

.border-green::before {
  background-color: #4bf0ca;

  /* Top left */
  top: -16px;
  right: auto;
  left: -16px;
}

.border-blue {
  border-color: #38b6ff;
  box-shadow: 6px 6px 0px 0px #38b6ff66;
}

.border-blue::before {
  background-color: #38b6ff;
  box-shadow: 6px 6px 0px 0px #38b6ff66;
  /* Bottom left */
  top: auto;
  bottom: -16px;
  right: auto;
  left: -16px;
}

.border-red {
  border-color: #ff5757;
  box-shadow: 6px 6px 0px 0px #ff575766;
}

.border-red::before {
  background-color: #ff5757;
  box-shadow: 6px 6px 0px 0px #ff575766;
  /* Bottom right */
  top: auto;
  bottom: -16px;
  right: -16px;
}

@media (max-width: 991.98px) {
  .about-hero-illustration {
    margin-top: 2rem;
  }
}

/* -------------------------------------------------------------------------- */
/* IMPACT PAGE STYLES
/* -------------------------------------------------------------------------- */

.bg-teal-dark {
  background-color: #00b6b3;
}

/* Impact page hero only — do not override home stats section title */
.impact-hero .impact-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  color: var(--no2ta-white);
}

.impact-hero-card {
  border-radius: 20px;
  box-shadow: 3px 12px 18px 9px rgba(0, 182, 179, 0.42);
}

.impact-hero-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  color: #364153;
  text-align: center;
}

/* Impact Stats Grid */
.impact-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
}

.impact-stat-card.impact-border-green {
  border: 4px solid #4bf0ca;
  background-color: #4bf0ca29;
}

.impact-stat-card.impact-border-cyan {
  border: 4px solid #69c8cc;
  background-color: #69c8cc29;
}

.impact-stat-card.impact-border-yellow {
  border: 4px solid #ffd340;
  background-color: #ffd34029;
}

.impact-stat-card.impact-border-red {
  border: 4px solid #ef4e52;
  background-color: #ef4e5229;
}

.stat-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.stat-number {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 72px;
  margin-bottom: 0.5rem;
}

.stat-number.color-green {
  color: #4bf0ca;
}

.stat-number.color-cyan {
  color: #69c8cc;
}

.stat-number.color-yellow {
  color: #ffd340;
}

.stat-number.color-red {
  color: #ef4e52;
}

.stat-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 36px;
  color: #101828;
  margin-bottom: 1rem;
}

.stat-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #364153;
}

/* Partners page — logo grid */
.partners-grid-section {
  --partner-card-ink: var(--no2ta-ink);
  --partner-card-glow: rgba(4, 24, 34, 0.16);
  background-color: #00b6b3;
}

.partners-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #101828;
}

.partners-section-subtitle {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 1.25rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid var(--no2ta-border);
  border-radius: 20px;
  box-sizing: border-box;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

a.partner-logo-card:hover,
a.partner-logo-card:focus-visible,
.partner-logo-card--static:hover,
.partner-logo-card--static:focus-within {
  border-color: var(--partner-card-ink);
  background-color: #ffffff;
  box-shadow:
    0 10px 28px var(--partner-card-glow),
    0 0 0 1px rgba(4, 24, 34, 0.2);
  transform: translateY(-3px);
}

.partner-logo-card--static {
  cursor: default;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.partner-logo-card__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.55rem 0.75rem;
  font-family: "Alexandria", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  background: var(--partner-card-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(0.35rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
}

.partner-logo-card:hover .partner-logo-card__label,
.partner-logo-card:focus-visible .partner-logo-card__label {
  opacity: 1;
  transform: translateY(0);
}

/* Impact Journey Timeline */
.journey-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 60px;
  color: #00b6b3;
}

.journey-subtitle {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
}

/* Duplicated timeline styles removed */

.timeline-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.timeline-dot.dot-green {
  background-color: #4bf0ca;
}

.timeline-dot.dot-cyan {
  background-color: #69c8cc;
}

.timeline-dot.dot-red {
  background-color: #ef4e52;
}

.timeline-dot.dot-yellow {
  background-color: #ffd340;
}

.timeline-small-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 6px;
  right: -6px;
}

.timeline-small-dot.dot-green-small {
  background-color: #4bf0ca;
}

.timeline-small-dot.dot-cyan-small {
  background-color: #69c8cc;
}

.timeline-small-dot.dot-red-small {
  background-color: #ef4e52;
}

.timeline-small-dot.dot-yellow-small {
  background-color: #ffd340;
}

.timeline-year {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
}

.timeline-label {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
}

.journey-bg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  z-index: 0;
  width: 300px;
}

.journey-bg-arrow-right {
  right: -50px;
}

.journey-bg-arrow-left {
  left: -50px;
}

/* -------------------------------------------------------------------------- */
/* PRODUCTION PAGE STYLES */
/* -------------------------------------------------------------------------- */

.mashari3una-main-title {
  color: #00c2b2;
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
}

/* Hero Banner */
.mashari3una-hero-banner {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 600px;
  background-image: url("../images/mashari3una-banner-1.png");
  background-size: cover;
  background-position: center;
}

.prod-page-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 3.6vw, 54px);
	line-height: 60pt;
  color: #00b6b3;
  text-align: right;
}

.prod-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  color: #101828;
}

.prod-section-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #4a5565;
}

.prod-filter-btn {
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1.5px solid #d0d5dd;
  background: #fff;
  color: #101828;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-filter-btn:hover {
  border-color: #00b6b3;
  color: #00b6b3;
}

.prod-filter-btn.active {
  background: #4bf0ca;
  color: #101828;
  border-color: #4bf0ca;
  font-weight: 700;
}

.prod-carousel-wrapper {
  overflow: hidden;
  padding: 8px 0 16px;
}

.prod-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.prod-slide {
  flex: 0 0 calc((100% - 3 * 16px) / 4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.prod-slide-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.prod-carousel-3 {
  gap: 20px;
}

.prod-slide-wide {
  flex: 0 0 calc((100% - 2 * 20px) / 3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.prod-slide-img-wide {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.prod-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #101828;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.prod-carousel-arrow:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.prod-arrow-prev {
  right: -20px;
}

.prod-arrow-next {
  left: -20px;
}

.prod-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5dd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #00b6b3;
}

.prod-cta-btn {
  display: inline-block;
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #101828;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.prod-cta-btn:hover {
  background: #1d2939;
  color: #fff;
}

.prod-search-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.prod-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #d0d5dd;
  border-radius: 12px;
  padding: 12px 20px;
  background: #fff;
}

.prod-search-icon {
  color: #9aa4b2;
  font-size: 18px;
  flex-shrink: 0;
}

.prod-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  color: #101828;
  text-align: right;
}
body:not(.site-en) .prod-search-input {direction: rtl;}

/* أبحاثنا وسياسات المناصرة — controls card (Figma v2) */
.prod-research-controls-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.prod-search-bar--card {
  width: 100%;
  border-radius: 999px;
  background: #f8f9fa;
  border: 1px solid #e4e7ec;
  padding: 10px 18px;
  margin-bottom: 0 !important;
}

/* Match pill fill — browsers default inputs to white */
.prod-search-bar--card .prod-search-input {
  background-color: #f8f9fa;
}

.prod-search-bar--card .prod-search-input:focus {
  background-color: #f8f9fa;
}

.prod-research-controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.prod-research-controls-row .prod-research-select--wide {
  flex: 1 1 200px;
  min-width: min(100%, 180px);
}

.prod-research-filter-pill--short {
  flex: 0 0 128px;
  width: 128px;
  max-width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  background: #f8f9fa;
}

@media (max-width: 767.98px) {
  .prod-research-controls-row {
    gap: 8px;
  }

  .prod-research-filter-pill--short {
    flex: 1 1 calc(50% - 6px);
    min-width: 100px;
  }
}

.prod-research-select {
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #101828;
  border: 1.5px solid #d0d5dd;
  border-radius: 999px;
  padding: 10px 20px;
  padding-inline-end: 2.75rem;
  background-color: #fff;
  min-height: 48px;
  min-width: min(100%, 200px);
  direction: rtl;
  text-align: right;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667085'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}

.prod-research-select:focus {
  border-color: #00b6b3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 182, 179, 0.2);
}

/* Custom multiselect — تصنيف الأبحاث */
.prod-multiselect {
  position: relative;
  flex: 1 1 200px;
  min-width: min(100%, 180px);
}

.prod-multiselect-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 16px;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #101828;
  border: 1.5px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  text-align: right;
}

.prod-multiselect.is-open .prod-multiselect-trigger {
  border-color: #00b6b3;
  box-shadow: 0 0 0 3px rgba(0, 182, 179, 0.2);
}

.prod-multiselect-value-wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.prod-multiselect-placeholder {
  color: #667085;
  font-weight: 500;
}

.prod-multiselect-placeholder[hidden] {
  display: none !important;
}

.prod-multiselect-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
}

.prod-multiselect-chips[hidden] {
  display: none !important;
}

.prod-multiselect-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #e8f8f6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #101828;
  line-height: 1.35;
}

.prod-multiselect-chevron {
  flex-shrink: 0;
  font-size: 14px;
  color: #667085;
  transition: transform 0.2s ease;
}

.prod-multiselect.is-open .prod-multiselect-chevron {
  transform: rotate(180deg);
}

.prod-multiselect-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
  max-height: 260px;
  overflow-y: auto;
}

.prod-multiselect-dropdown[hidden] {
  display: none !important;
}

.prod-multiselect-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 18px;
  cursor: pointer;
  font-family: "Alexandria", sans-serif;
  font-size: 15px;
  color: #101828;
  transition: background 0.15s ease;
}

.prod-multiselect-option:hover {
  background: #f2f4f7;
}

.prod-multiselect-option input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #00b6b3;
  cursor: pointer;
}

.prod-multiselect-option span {
  flex: 1;
  text-align: right;
}

.prod-view-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #d0d5dd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #667085;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-view-btn.active,
.prod-view-btn:hover {
  background: #101828;
  border-color: #101828;
  color: #fff;
}

/* Pill toggle: grid vs list (أبحاثنا وسياسات المناصرة) */
.prod-view-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: #f2f4f7;
  gap: 2px;
  flex-shrink: 0;
}

.prod-view-toggle-btn {
  width: 40px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #667085;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.prod-view-toggle-btn.active {
  background: #fff;
  color: #101828;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.12);
}

.prod-view-toggle-btn:not(.active):hover {
  color: #101828;
}

/* Research section: carousel (Swiper sets slide width; height keeps cards consistent) */
.prod-research-grid-view .carousel-shell {
  padding-inline: clamp(48px, 5vw, 64px);
}

.prod-research-grid-view .carousel-arrow {
  z-index: 20;
  box-shadow: 0 2px 14px rgba(16, 24, 40, 0.12);
  border: 1px solid #e4e7ec;
}

.prod-research-grid-view .carousel-arrow.arrow-prev {
  right: 4px;
}

.prod-research-grid-view .carousel-arrow.arrow-next {
  left: 4px;
}

.swiper-research .swiper-slide {
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.prod-research-slide-card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.prod-research-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Research section: list rows */
.prod-research-list {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.prod-research-list-item+.prod-research-list-item {
  border-top: 1px solid #f2f4f7;
}

.prod-research-list-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.prod-research-list-link:hover {
  background: #f9fafb;
}

.prod-research-list-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f2f4f7;
}

.prod-research-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-research-list-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #101828;
  text-align: right;
  flex: 1;
  min-width: 0;
}

.prod-research-list-link:hover .prod-research-list-title {
  text-decoration: underline;
}

.prod-research-list-date {
  flex-shrink: 0;
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3a8edb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .prod-research-list-link {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .prod-research-list-date {
    width: 100%;
    order: 3;
    justify-content: flex-end;
  }

  .prod-research-grid-view .carousel-shell {
    padding-inline: 44px;
  }

  .swiper-research .swiper-slide {
    height: 300px;
  }
}

.prod-filter-placeholder {
  height: 36px;
  border-radius: 8px;
  background: #f2f4f7;
  flex: 1;
  max-width: 160px;
}

@media (max-width: 991.98px) {
  .prod-page-title { font-size: clamp(40px, 4vw, 56px); line-height: 57px;}

  .prod-section-title {
    font-size: 30px;
  }

  .prod-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .prod-slide-wide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 575.98px) {
  .prod-slide {
    flex: 0 0 80%;
  }

  .prod-slide-wide {
    flex: 0 0 88%;
  }

  .prod-arrow-prev {
    right: 0;
  }

  .prod-arrow-next {
    left: 0;
  }
}

/* ──────────────────────────────────────────────────────────
   ── Campaigns Page Styles ─────────────────────────────────
   ────────────────────────────────────────────────────────── */

.campaigns-page-title-wrap {
  padding: 2rem 1rem 0.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .campaigns-page-title-wrap {
    padding-top: 3rem;
  }
}

.campaigns-services-page-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 52.8px;
  letter-spacing: 0;
  text-align: center;
  color: #00cfce;
  margin: 0 auto;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .campaigns-services-page-title {
    font-size: clamp(36px, 9vw, 56px);
    line-height: 1.1;
  }
}

@media (max-width: 575.98px) {
  .campaigns-services-page-title {
    font-size: clamp(28px, 10vw, 40px);
  }
}

.campaigns-top-section {
  padding: 60px 0 40px;
}

.campaigns-main-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  color: #101828;
  margin-bottom: 8px;
  text-align: right;
}
@media (max-width: 575.98px) {
 .campaigns-main-title { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}

.campaigns-subtitle {
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  color: #4a5565;
  text-align: right;
  max-width: 81%;
  margin-left: auto;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
 .campaigns-subtitle { max-width: 100%; }
}

.campaigns-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.campaigns-nav-wrapper .carousel-arrow {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #e4e7ec;
  color: #667085;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.campaigns-nav-wrapper .carousel-arrow:hover {
  background-color: #f9fafb;
  color: #101828;
}

.swiper-campaigns {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-campaigns .swiper-slide {
  width: 260px;
  height: auto;
}

@media (max-width: 767.98px) {
  .swiper-campaigns .swiper-slide {width: 369px;}
}

.campaign-card {
  width: 100%;
  height: 483px;
  text-align: right;
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.campaign-card:hover {
  transform: translateY(-8px);
}

/* Allow campaign cards to be links without losing styling */
.campaign-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
}

.campaign-card-img {
  width: 100%;
  height: 364px;
  overflow: hidden;
  flex-shrink: 0;
}

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

@media (max-width: 767.98px) {
  .campaign-card {height: 582px;}
  .campaign-card-img {height: 522px;}
}

.campaign-card-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  padding: 0 16px;
  line-height: 27px;
  text-align: right;
}

.campaign-card-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
  padding: 0 16px;
  line-height: 21px;
  text-align: right;
}

/* -------------------------------------------------------------------------- */
/* CAMPAIGNS DETAILS PAGE
/* -------------------------------------------------------------------------- */

.campaign-details-hero {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.campaign-details-hero-img {
  display: block;
  width: 100%;
  height: 617px;
  object-fit: cover;
  object-position: center;
}

.campaign-details-title {
	font-family: "Alexandria", sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 3.6vw, 54px);
	line-height: 57pt;
	letter-spacing: 0;
	color: #00cfce;
}
@media (max-width: 575.98px) {
 .campaign-details-title { font-size: clamp(28px, 10vw, 40px); }
}
.campaign-details-subtitle {
  font-family: "Alexandria", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 32px;
  letter-spacing: 0;
  color: #00cfce;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.campaign-details-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 333;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 33px;
  letter-spacing: 0;
  color: #000000;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.campaign-details-gallery-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0;
  color: #101828;
  text-align: right;
}

.campaign-details-gallery-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.campaign-details-gallery-line {
  display: block;
  width: 980px;
  max-width: 100%;
  height: 1px;
  background-color: #000000;
  flex: 0 0 auto;
}

.campaign-details-gallery-card {
  width: 368px;
  max-width: 100%;
  height: 460px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 48px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

button.campaign-details-gallery-card {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

button.campaign-details-gallery-card:focus-visible {
  outline: 3px solid #c41e3a;
  outline-offset: 3px;
}
/* .modal {background-color: rgba(32, 32, 32, 0.6);} */
.campaign-gallery-modal-dialog {
  max-width: min(96vw, 1100px);
}

.campaign-gallery-modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-gallery-preview-img {
  max-width: 100%;
  max-height: min(85vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.campaign-gallery-video-wrap {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-gallery-close {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.campaign-details-gallery-pdf-placeholder {
    min-height: 200px;
    height: 100%;
    background: #f5f5f5;
    border-radius: inherit;
}
a.campaign-details-gallery-pdf.campaign-details-gallery-card {
    color: inherit;
}
a.campaign-details-gallery-pdf.campaign-details-gallery-card:focus-visible {
  outline: 3px solid #c41e3a;
  outline-offset: 3px;
}
.campaign-details-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-explore-dark {
  display: inline-block;
  background-color: #101828;
  color: #fff;
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0px 8px 10px -6px #0f172a1a;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn-explore-dark:hover {
  background-color: #344054;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0px 20px 25px -5px #0f172a1a;
}

.campaign-divider {
  width: 100%;
  height: 57px;
  background-image: url("../images/campaign-page-divider.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #bac8ea;
  margin: 0;
  overflow: hidden;
}

.content-production-section {
  padding: 100px 0;
  text-align: right !important;
}

.content-production-section .section-title-large {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 4vw, 56px);
  color: #101828;
  line-height: 98px;
  text-align: right;
}
@media (max-width: 575.98px) {
 .content-production-section .section-title-large { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}
.content-production-section .content-prod-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #4a5565;
  max-width: 81%;
  margin: 0 0 40px;
  text-align: right;
}
@media (max-width: 575.98px) {
 .content-production-section .content-prod-text { max-width: 100%; }
}

.content-production-section .read-more-link,
.projects-content-production-hero .read-more-link {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #d41142;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  line-height: 36px;
  vertical-align: middle;
  text-align: right;
  transition: color 0.2s ease;
}

.content-production-section .read-more-link:hover,
.projects-content-production-hero .read-more-link:hover {
  color: #a80d34;
}

.red-arrow-icon {
  width: 151px;
  height: 29px;
  background-image: url("../images/arrow-red-hover.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}

.read-more-link:hover .red-arrow-icon {
  background-image: url("../images/arrow-red.png");
}

.visual-identity-section {
  background-color: #bac8ea;
  padding: 80px 0;
}

.identity-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 72px;
  letter-spacing: -1.8px;
  color: #101828;
  text-align: right;
  vertical-align: middle;
  margin-bottom: 60px !important;
}
@media (max-width: 575.98px) {
 .identity-title { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}

.identity-block {
  margin-bottom: 60px;
}

.identity-block:last-child {
  margin-bottom: 0;
}

.identity-subhead {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #d41142;
  margin-bottom: 16px;
  text-align: right;
}

.identity-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #4a5565;
  text-align: right;
}

.identity-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
  width: 100%;
  max-width: 586px;
  height: auto;
  aspect-ratio: 586 / 328.5;
  position: relative;
}

.identity-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px !important;
}

.curve-bottom {
  width: 100%;
  height: 57px;
  background-image: url("../images/campaign-page-divider.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: -1px;
  /* Prevent sub-pixel gap */
}

.conferences-section {
  padding: 40px 0 80px;
  text-align: center;
}

.conferences-section .section-title-large {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 100px;
  letter-spacing: -0.9px;
  text-align: center;
  color: #101828;
}

.soon-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  letter-spacing: -1.4px;
  text-align: center;
  color: #00e6b8;
  margin-top: 16px;
  margin-bottom: 40px;
}

/* ──────────────────────────────────────────────────────────
   ── Production Page Styles ────────────────────────────────
   ────────────────────────────────────────────────────────── */

.carousel-shell {
  position: relative;
  margin: 0;
}

.carousel-shell .swiper {
  overflow: hidden;
  cursor: grab;
}

.carousel-shell .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.carousel-shell .swiper:active {
  cursor: grabbing;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #101828;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.carousel-arrow:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.carousel-arrow.arrow-prev {
  right: 10px;
}

.carousel-arrow.arrow-next {
  left: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5dd;
  opacity: 1;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dots .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #00b6b3;
}

.swiper-articles .swiper-slide {
  width: 218px;
  height: 286px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
  .swiper-articles .swiper-slide {
    width: 373px;
    height: 489px;
  }
}

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

.swiper-videos .swiper-slide {
  width: 373px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

.swiper-videos .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

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

/* ──────────────────────────────────────────────────────────
   ── Video Details Styles ──────────────────────────────────
   ────────────────────────────────────────────────────────── */

.breadcrumb-custom {
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
  color: #667085;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb-custom:hover {
  color: #00b6b3;
}

.video-details-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  color: #101828;
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
 .video-details-title { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}

.video-details-subtitle {
  font-family: "Alexandria", sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: #4a5565;
  max-width: 100%;
  margin-bottom: 48px;
}
@media (max-width: 575.98px) {
 .video-details-subtitle { max-width: 100%; }
}

/* Production blog detail — cover contained within viewport cap */
.hero-cover-photo {
  align-items: center;
  background: var(--no2ta-hero-bg, #fff);
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  max-height: 72vh;
  overflow: hidden;
  width: 100%;
}

.hero-cover-photo__img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* Single video page: mobile order title → player → description; lg+ keeps text column + player on the right */
.prod-video-page-grid {
  display: grid;
  align-items: start;
  gap: 1.25rem;
  margin-top: 0.25rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "media"
    "desc";
}

.prod-video-page-grid__title {
  grid-area: title;
}

.prod-video-page-grid__media {
  grid-area: media;
}

.prod-video-page-grid__desc {
  grid-area: desc;
}

.prod-video-page-grid .prod-video-page-grid__desc.video-details-subtitle {
  margin-bottom: 0;
  max-width: none;
}

@media (min-width: 992px) {
  .prod-video-page-grid {
    gap: 2rem 3rem;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-areas:
      "title media"
      "desc media";
  }

  .prod-video-page-grid .prod-video-page-grid__desc.video-details-subtitle {
    margin-bottom: 48px;
  }
}

.video-grid-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 277.75 / 493.7734375;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.video-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.video-grid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.video-grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
}

.video-grid-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.video-grid-desc {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.video-grid-card:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-overlay i {
  font-size: 28px;
  color: #101828;
  margin-left: 4px;
}

/* Create Content Page */
.create-content-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 98px;
  color: #000000;
  text-align: center;
  margin-top: 42px;
  margin-bottom: 54px;
  text-align: right;
}

.content-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(362.66px, 1fr));
  gap: 32px;
  justify-items: center;
  padding-bottom: 100px;
}

.content-grid-item {
  width: 362.66px;
  height: 362.66px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 2px 0px #0000000d;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.content-grid-caption {
  width: 100%;
  height: 95px;
  padding: 24px;
  background: #fffffff2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  position: relative;
}

.content-grid-external-icon {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #00b6b3;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}

.content-grid-external-icon .bi {
  display: block;
}

.caption-label {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #ee8c2b;
  text-transform: uppercase;
  text-align: right;
}

.caption-brand {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  color: #181411;
  text-align: right;
}

/* Mashari3una Specific Typography & Components */

/* Main Intro - مشاريعنا */
.masha-main-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  color: #00b6b3;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0;
}

/* Section 1 - بناء القدرات */
.masha-sec1-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  color: #0f172a;
  text-align: right;
  vertical-align: middle;
  margin-bottom: 0;
}
.masha-main-p {
	font-family: "Alexandria", sans-serif;
	font-weight: 333;
	font-size: 21px;
	line-height: 33px;
	color: var(--no2ta-ink);
	text-align: center;
}
.masha-sec1-p {
	font-family: "Alexandria", sans-serif;
	font-weight: 333;
	font-size: 21px;
	line-height: 33px;
	color: var(--no2ta-ink);
	text-align: justify;
}

@media (max-width: 575.98px) {
 .masha-sec1-p { max-width: 90%; font-size: 18px; line-height: 30px; }
}
.masha-sec1-btn {
  border-radius: 12px !important;
}

/* Section 2 - إنتاج المحتوى */
.masha-sec2-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 112px;
  color: #0f172a;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0;
}

.masha-sec2-p {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}

/* Section 2 - Link & Arrow */
.masha-sec2-link {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #00b6b3;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.masha-sec2-link:hover {
  color: #00b6b3;
}

.masha-sec2-arrow {
  width: 71px;
  height: 24px;
  background-image: url("../images/green-curved-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.masha-sec2-link:hover .masha-sec2-arrow {
  background-image: url("../images/green-arrow.png");
}

/* Section 2 - Background Ornaments (Cyan Diamonds) */
.mashari3una-ornament-bg {
  position: relative;
  background-image: url("../images/mashari3una-back-1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0 !important;
}

/* Section 3 - SHIFT */
.masha-sec3-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 43px;
  line-height: 62px;
  color: #0f172a;
  text-align: right;
  vertical-align: middle;
  margin-bottom: 0;
}

.masha-sec3-p {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-align: right;
  vertical-align: middle;
}

/* Section 3 - Background Wave */
.masha-sec3-bg {
  position: relative;
  padding: 3px 0 !important;
}

.masha-sec3-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/mashari3una-asset-4.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  transform: scaleY(-1);
  z-index: 0;
}

/* Projects home — category card grid */
.projects-home-cards-section {
  padding: 0 0 2rem;
}

.projects-home-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projects-home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.projects-home-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.projects-home-card__link:hover {
  color: inherit;
  text-decoration: none;
}

.projects-home-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}

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

.projects-home-card__title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.45;
  color: #00b6b3;
  text-align: right;
  padding: 1.25rem 1.5rem;
  margin: 0;
}

@media (max-width: 575.98px) {
  .projects-home-card__title {
    font-size: 1.125rem;
    padding: 1rem 1.125rem;
  }
}

/* =========================================
   Tadrib Shabeb Page
   ========================================= */

.ts-header-label {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fa5f5f;
}

.ts-header-icon {
  width: 44px;
  height: 44px;
  background-color: #fa5f5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.ts-main-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 75px;
  color: #101828;
  text-align: center;
}
@media (max-width: 575.98px) {
  .ts-main-heading { font-size: clamp(40px, 4vw, 56px); line-height: 57px; }
}

.ts-main-sub {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32.5px;
  color: #4a5565;
  text-align: center;
}

.ts-card-bg {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow:
    0px 4px 6px -4px #0000001a,
    0px 10px 15px -3px #0000001a;
  opacity: 1;
}

.ts-card-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  text-align: right;
}

.ts-stat-box {
  background-color: #f87171;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  color: white;
}

.ts-stat-number {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}

.ts-stat-label {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #364153;
}

.ts-list-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
  text-align: right;
}

.ts-list-styled {
  list-style-type: none;
  padding-right: 0;
  color: #4a5565;
}

.ts-list-styled li {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding-right: 25px;
  margin-bottom: 12px;
  color: #4a5565;
  text-align: right;
}

.ts-list-styled li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f87171;
}

.ts-section-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #101828;
  text-align: center;
}

.ts-section-sub {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* Project page — moments gallery bento (tadrib-shabeb layout; shared public gallery) */
.ts-moments-grid-img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 220px;
  height: 260px;
}

@media (min-width: 768px) {
  .ts-moments-grid-img {
    height: 350px;
  }
}

.media-gallery-bento-trigger {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
}

.media-gallery-bento-trigger:focus-visible {
  outline: 3px solid #c41e3a;
  outline-offset: 3px;
}

.media-gallery-bento-fallback {
  min-height: 220px;
  height: 260px;
}

@media (min-width: 768px) {
  .media-gallery-bento-fallback {
    height: 350px;
  }
}

.media-gallery-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 24, 40, 0.35);
  pointer-events: none;
  transition: background 0.2s ease;
}

.media-gallery-bento-trigger:hover .media-gallery-play-overlay,
.media-gallery-bento-trigger:focus-visible .media-gallery-play-overlay {
  background: rgba(16, 24, 40, 0.45);
}

.media-gallery-play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #c41e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.media-gallery-pdf-list {
  border-top: 1px solid #e5e7eb;
}

.media-gallery-pdf-list-title {
  font-family: "Alexandria", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a7282;
}

.media-gallery-pdf-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-gallery-pdf-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.875rem 1rem;
  background: #faf8f5;
  border: 1px solid #e8e4df;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.media-gallery-pdf-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
}

.media-gallery-pdf-icon-wrap {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(220, 53, 69, 0.1);
  color: #c41e3a;
  font-size: 1.5rem;
  line-height: 1;
}

.media-gallery-pdf-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  min-width: 0;
}

.media-gallery-pdf-title {
  font-family: "Alexandria", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #101828;
  word-break: break-word;
}

.media-gallery-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-family: "Alexandria", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #364153;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.media-gallery-pdf-link:hover {
  color: #101828;
  border-color: #9ca3af;
  background: #fff;
}

.media-gallery-pdf-link:focus-visible {
  outline: 2px solid #c41e3a;
  outline-offset: 2px;
}

.media-gallery-pdf-link .fa-arrow-up-right-from-square {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Gallery lightbox: darker backdrop, top-weighted dialog, visible close control */
.media-gallery-modal {
  --bs-backdrop-opacity: 0.82;
}

.media-gallery-modal-dialog {
  max-width: min(96vw, 1100px);
  margin: clamp(0.75rem, 3vh, 1.75rem) auto 1rem;
}

.media-gallery-modal-content {
  position: relative;
}

.media-gallery-modal-close-btn {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: 6;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #101828;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.media-gallery-modal-close-btn:hover,
.media-gallery-modal-close-btn:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.media-gallery-modal-close-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101828'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1rem auto no-repeat;
}

.media-gallery-modal-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3.25rem;
  min-height: 0;
}

.media-gallery-preview-img {
  max-width: 100%;
  max-height: min(88vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.media-gallery-video-wrap {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .media-gallery-modal-dialog {
    margin-top: clamp(1rem, 5vh, 2.5rem);
  }
}

/* Testimonials Refinement */
.ts-testimonial-card {
  width: 373px;
  max-width: 100%;
  height: 269px;
  background-color: #faf8f5;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ts-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ts-quote-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #364153;
  text-align: right;
  margin-bottom: 0;
}

.ts-quote-author {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  text-align: right;
}

.ts-quote-role {
  font-family: "Alexandria", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
  text-align: right;
}

.ts-partnership-banner {
  background: linear-gradient(180deg, #f17f82 0%, #ff4040 100%);
  border-radius: 40px;
}

.ts-partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 121.58px;
  max-width: 100%;
  height: 64px;
  padding: 0 1rem;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.4);
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: white;
  text-align: center;
}

.ts-partner-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16.8px;
  height: 36px;
  color: white;
  opacity: 1;
  font-size: 30px;
  margin: 0 10px;
}

/* Language switch (AR ↔ EN) — base; LTR tweaks in style-en.css */
.lang-switch-link {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

/* “View all” list pages — shared card grid (blogs, videos, content production, …) */
.page-list-all-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-list-all-card:hover {
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
  transform: translateY(-4px);
}

.page-list-all-card__link {
  color: inherit;
}

.page-list-all-card__link:hover {
  color: inherit;
}

.page-list-all-card__cover {
  aspect-ratio: 16 / 10;
  background: #f2f4f7;
  overflow: hidden;
  width: 100%;
}

.page-list-all-card__cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-list-all-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.page-list-all-card__meta {
  font-family: "Alexandria", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.page-list-all-card__meta-primary {
  min-width: 0;
}

.page-list-all-card__meta-primary-img {
  border-radius: 50%;
  flex-shrink: 0;
  height: 32px;
  object-fit: cover;
  width: 32px;
}

.page-list-all-card__meta-primary-label {
  color: #344054;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-list-all-card__date {
  color: #13b1b0;
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
}

.page-list-all-card__date .bi {
  margin-inline-end: 0.35rem;
}

.page-list-all-card__title {
  color: #101828;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 0.75rem;
}

.page-list-all-card__rule {
  background: #00b6b3;
  border: 0;
  height: 3px;
  margin: 0 auto 1rem;
  opacity: 1;
  width: 28%;
}

.page-list-all-card__excerpt {
  -webkit-box-orient: vertical;
  color: var(--no2ta-ink);
  display: -webkit-box;
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.65;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Page modifiers (optional overrides per list type) */
.page-list-all--blogs .page-list-all-card__rule {
  width: 54%;
}

.page-list-all-pagination__list a {
border-radius: 999px;
border: 1.5px solid #d0d5dd;
color: #101828;
display: inline-block;
font-family: "Alexandria", sans-serif;
font-size: 13pt;
font-weight: 700;
min-width: 2.25rem;
padding: 0.39rem 0.93rem;
text-align: center;
text-decoration: none;
transition: border-color 0.2s ease, background 0.2s ease;
}

.page-list-all-pagination__list li.active a {
  border-color: hsl(179, 86%, 23%);
  color: hsl(179, 86%, 23%);
}

.page-list-all-pagination__list a:hover,
.page-list-all-pagination__list li.active a:hover {
  border-color: #00b6b3;
  color: #00b6b3;
}

.page-list-all-pagination__list a#current,
.page-list-all-pagination__list .current a {
  background: #4bf0ca;
  border-color: #4bf0ca;
  color: #101828;
}
.page-title-logo {
	margin: 0px 9px;
	max-width: 72px;
	max-height: 72px;
}
.page-p-center, .page-p-justify {
	font-family: "Alexandria", sans-serif;
	font-weight: 333 !important;
	line-height: 33px !important;
	text-align: center;
}
.page-p-justify {
	text-align: justify !important;
}
.campaign-details-desc {line-height: 39px !important;}
.campaign-details-desc.w-100 {width: 100% !important; max-width: 100% !important;}
.campaign-details-desc.w-98 {width: 98% !important; max-width: 98% !important;}
.campaign-details-gallery-line {width: 810px;}

/* Contact page */
.contact-section-title {
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.3;
  color: #101828;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e6fffb;
  color: #00b6b3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.contact-details-text {
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #364153;
}

.contact-details-link {
  color: inherit;
  text-decoration: none;
}

.contact-details-link:hover {
  color: #00b6b3;
}

.contact-page-input {
  border: 1px solid #d1d5dc;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  background: #fff;
}

.contact-page-input:focus {
  border-color: #00b6b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 182, 179, 0.15);
}

.contact-page-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-page-submit {
  background: #00b6b3;
  border: 1px solid #00b6b3;
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.contact-page-submit:hover,
.contact-page-submit:focus {
  background: #00918f;
  border-color: #00918f;
  color: #fff;
}