:root {
  --green-950: #052719;
  --green-900: #07351f;
  --green-800: #0b4a2c;
  --green-700: #0e5f39;
  --gold-600: #c88418;
  --gold-500: #e2a538;
  --gold-300: #f8d88a;
  --cream: #fffaf0;
  --paper: #fffdf7;
  --text: #17221c;
  --muted: #66756d;
  --line: rgba(8, 52, 30, .12);
  --shadow: 0 20px 50px rgba(9, 33, 20, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(226,165,56,.11), transparent 25%),
    linear-gradient(180deg, #fffdf7, #fff8ec 48%, #fffdf7);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, #062817, #0c4b2c, #062817);
  color: #fffdf5;
  font-size: 13px;
  font-weight: 700;
}

.strip-grid {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.strip-grid span:nth-child(2) {
  text-align: center;
}

.strip-grid span:last-child {
  text-align: right;
}

.arabic {
  font-family: Georgia, serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 245, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 205px;
}

.brand img {
  height: 82px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 900;
  color: #17221c;
}

nav a {
  position: relative;
  padding: 14px 0;
}

nav a.active,
nav a:hover {
  color: var(--gold-600);
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--gold-500);
}

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

.icon-btn,
.menu-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

.icon-btn {
  font-size: 30px;
}

.menu-btn {
  display: none;
  font-size: 30px;
}

.small-btn {
  height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.live-btn {
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  background: #fff8ea;
}

.donate-btn {
  background: var(--green-800);
  color: white;
}



.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: white;
  background:
    radial-gradient(circle at 50% 15%, rgba(251,191,36,.18), transparent 26%),
    linear-gradient(90deg, rgba(3,18,11,.98), rgba(4,45,27,.96), rgba(3,18,11,.98));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 70%, rgba(255,255,255,.08), transparent 18%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.025) 18px 20px);
  opacity: .8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(0,0,0,.42), transparent);
}

.hero-ornament {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  opacity: .7;
  background:
    radial-gradient(circle, transparent 0 15px, rgba(199,132,24,.35) 16px 17px, transparent 18px),
    linear-gradient(180deg, rgba(199,132,24,.3), transparent);
  background-size: 44px 44px, 100% 100%;
}

.hero-ornament.left {
  left: 0;
  clip-path: polygon(0 0, 78% 0, 45% 100%, 0 100%);
}

.hero-ornament.right {
  right: 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 55% 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card img {
  width: min(430px, 92%);
  filter: drop-shadow(0 32px 30px rgba(0,0,0,.44));
}

.quran-quote {
  font-size: 24px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -.8px;
}

.hero h1 span {
  display: block;
  color: var(--gold-300);
}

.hero p {
  max-width: 650px;
  color: #f8f4e8;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 800;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.gold {
  background: linear-gradient(135deg, #f8cd62, #c88418);
  color: white;
}

.green {
  background: linear-gradient(135deg, #0e5f39, #07351f);
  color: white;
}

.outline {
  color: var(--gold-300);
  border: 1px solid var(--gold-500);
  background: rgba(0,0,0,.18);
}

.programs {
  transform: translateY(-36px);
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 150px;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  transition: .22s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,132,24,.35);
}

.program-icon {
  font-size: 43px;
  color: var(--green-800);
  margin-bottom: 8px;
}

.program-card strong {
  font-size: 16px;
  font-family: Georgia, serif;
}

.program-card small {
  color: var(--muted);
  font-weight: 900;
  margin-top: 4px;
}

.section-block {
  margin-top: -10px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title.compact {
  align-items: center;
  margin-bottom: 14px;
}

.section-title h2,
.soft-card h2,
.testimonials h2,
.live-panel h2 {
  margin: 0;
  font-family: Georgia, serif;
  color: var(--green-950);
  font-size: 28px;
}

.section-title a {
  font-weight: 950;
  color: var(--green-800);
}

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

.video-card h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.video-card p,
.video-card small {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.thumb {
  position: relative;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: end;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.58));
}

.thumb span {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--gold-300);
}

.thumb b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.7);
  font-size: 12px;
}

.quran-thumb {
  background: linear-gradient(135deg, #092819, #d69b2c);
}

.khutbah-thumb {
  background: linear-gradient(135deg, #b68b47, #1f1c18);
}

.heart-thumb {
  background: linear-gradient(135deg, #07111f, #b97817);
}

.reflection-thumb {
  background: linear-gradient(135deg, #7b4a13, #23170c);
}

.community-thumb {
  background: linear-gradient(135deg, #0b4a2c, #111827);
}

.two-column {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.soft-card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.soft-card p {
  color: #425149;
  font-weight: 750;
  line-height: 1.65;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.mini-badges span {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  color: var(--green-800);
  background: #fffdf7;
  font-weight: 900;
  font-size: 13px;
}

.prayer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.prayer-item {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 14px 8px;
  text-align: center;
  border-radius: 14px;
  background: #fffdf7;
  border: 1px solid var(--line);
}

.prayer-item span {
  color: var(--gold-600);
  font-size: 29px;
}

.prayer-item b {
  color: var(--green-950);
}

.prayer-item strong {
  color: #1c2a22;
  font-size: 15px;
}

.active-prayer {
  background: #f5faef;
  border-color: rgba(14,95,57,.24);
}

.jummah,
.api-note {
  margin: 16px 0 0;
  font-weight: 900;
  color: #536159;
}

.scholar-impact {
  margin-top: 22px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
}

.featured-scholar {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(248,216,138,.16), transparent 28%),
    linear-gradient(135deg, var(--green-800), var(--green-950));
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.scholar-avatar {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff8ea;
  border: 4px solid rgba(248,216,138,.7);
}

.scholar-avatar img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.featured-scholar small {
  color: var(--gold-300);
  font-weight: 900;
}

.featured-scholar h2 {
  margin: 5px 0 8px;
  font-family: Georgia, serif;
}

.featured-scholar p {
  color: #e8f5ed;
  line-height: 1.55;
  font-weight: 750;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  color: white;
  font-weight: 900;
}

.impact-card {
  background: transparent;
}

.impact-card h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  color: var(--green-950);
}

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

.impact-grid div {
  min-height: 138px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  box-shadow: var(--shadow);
}

.impact-grid span {
  font-size: 28px;
  color: var(--green-800);
}

.impact-grid strong {
  display: block;
  color: var(--green-800);
  font-size: 24px;
}

.impact-grid small {
  color: var(--muted);
  font-weight: 900;
}

.testimonials {
  margin-top: 36px;
  text-align: center;
}

.testimonial-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 24px;
}

.testimonial-grid span {
  font-family: Georgia, serif;
  color: var(--gold-600);
  font-size: 48px;
  line-height: 0;
}

.testimonial-grid p {
  color: #55645c;
  font-weight: 750;
  line-height: 1.55;
}

.subscribe-support {
  margin-top: 36px;
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 22px;
}

.subscribe-card,
.support-card {
  border-radius: 16px;
  padding: 28px;
  color: white;
  box-shadow: var(--shadow);
}

.subscribe-card {
  background:
    radial-gradient(circle at top right, rgba(248,216,138,.12), transparent 28%),
    linear-gradient(135deg, var(--green-800), var(--green-950));
}

.subscribe-card h2,
.support-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
}

.subscribe-card p,
.support-card p {
  color: #fff9e8;
  font-weight: 750;
  line-height: 1.55;
}

#subscribeForm {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 150px;
}

#subscribeForm input,
#subscribeForm button {
  height: 52px;
  border: 0;
  font-weight: 900;
}

#subscribeForm input {
  padding: 0 18px;
  border-radius: 10px 0 0 10px;
}

#subscribeForm button {
  border-radius: 0 10px 10px 0;
  background: var(--gold-500);
  color: white;
  cursor: pointer;
}

#subscribeMsg {
  display: block;
  margin-top: 10px;
  color: var(--gold-300);
  font-weight: 900;
}

.support-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 92% 30%, rgba(255,255,255,.2), transparent 18%),
    linear-gradient(135deg, #bc7d16, #dba646);
}

.plant {
  font-size: 100px;
  align-self: center;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.2));
}

.live-section {
  margin-top: 36px;
  margin-bottom: 34px;
}

.live-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fffdf7;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.live-dot {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #dc2626;
  box-shadow: 0 0 0 10px rgba(220,38,38,.12);
}

.live-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  margin-top: 20px;
  color: #edf8f2;
  background:
    radial-gradient(circle at 25% 100%, rgba(248,216,138,.12), transparent 24%),
    linear-gradient(135deg, #062817, #0b4a2c, #062817);
}

.footer-grid {
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 34px;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  color: white;
  margin: 0 0 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #d9efe3;
  margin: 9px 0;
  font-weight: 750;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d9efe3;
}

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.56);
  padding: 30px;
}

.search-overlay.open {
  display: grid;
  place-items: start center;
}

.search-box {
  width: min(680px, 100%);
  margin-top: 8vh;
  padding: 26px;
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  position: relative;
}

.search-box button {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.search-box h2 {
  margin-top: 0;
  font-family: Georgia, serif;
}

.search-box input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 900;
}

#searchResults {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.result-item {
  padding: 13px;
  border-radius: 12px;
  background: #fff8ea;
  color: var(--green-950);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .nav-wrap {
    height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  nav {
    display: none;
    position: absolute;
    left: 24px;
    right: 24px;
    top: 98px;
    padding: 18px;
    border-radius: 16px;
    background: #fffdf7;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  nav.open {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hero-grid,
  .two-column,
  .scholar-impact,
  .subscribe-support,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .programs {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 8px 0;
  }

  .strip-grid span:last-child {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .brand {
    width: 160px;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 70px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .programs,
  .video-grid,
  .impact-grid,
  .testimonial-grid,
  .prayer-grid {
    grid-template-columns: 1fr;
  }

  #subscribeForm {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #subscribeForm input,
  #subscribeForm button {
    border-radius: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }
}

/* BADAWY TV FINAL SVG ICON FIX */
img.svg-icon {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin: 0 !important;
}

.program-card img.program-icon.svg-icon {
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  margin: 0 auto 10px !important;
}

.prayer-item > img.svg-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: block !important;
  margin: 0 auto !important;
}

.impact-grid div > img.svg-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  display: block !important;
  margin: 0 auto 8px !important;
}

.icon-btn img.svg-icon,
.menu-btn img.svg-icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
}

.small-btn,
.btn,
.mini-badges span,
.jummah,
.footer-grid p {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.small-btn img.svg-icon,
.btn img.svg-icon,
.mini-badges span img.svg-icon,
.jummah img.svg-icon,
.footer-grid p img.svg-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

.plant img.plant-icon.svg-icon {
  width: 86px !important;
  height: 86px !important;
  min-width: 86px !important;
  min-height: 86px !important;
  max-width: 86px !important;
  max-height: 86px !important;
  display: block !important;
  margin: 0 auto !important;
}

.brand img {
  height: 82px !important;
  width: auto !important;
  max-width: 205px !important;
  object-fit: contain !important;
}

.hero-logo-card img {
  width: min(430px, 92%) !important;
  height: auto !important;
  max-width: min(430px, 92%) !important;
}

.footer-brand img {
  width: 168px !important;
  height: auto !important;
  max-width: 168px !important;
}

.scholar-avatar img {
  width: 92px !important;
  height: 92px !important;
  max-width: 92px !important;
  max-height: 92px !important;
  object-fit: contain !important;
}

.footer-grid p {
  margin: 9px 0 !important;
}

.footer-grid p img.svg-icon {
  filter: invert(84%) sepia(39%) saturate(477%) hue-rotate(354deg) brightness(103%) contrast(94%);
}
/* END BADAWY TV FINAL SVG ICON FIX */

/* BADAWY TV ABOUT PAGE START */
.about-page {
  background: #fffaf0;
}

.about-page .site-header,
.about-page header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.about-hero-page {
  min-height: 350px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.92), rgba(255,255,255,.72)),
    url("/assets/img/about-hero-bg.png") center/cover no-repeat;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.about-hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 80%, rgba(0,63,36,.10), transparent 20%),
    radial-gradient(circle at 92% 18%, rgba(242,182,0,.20), transparent 18%),
    repeating-linear-gradient(45deg, rgba(0,63,36,.035) 0 2px, transparent 2px 24px);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-ornament {
  width: 130px;
  height: 2px;
  background: #f2b600;
  margin: 0 auto 18px;
  position: relative;
}

.about-ornament::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #f2b600;
  position: absolute;
  left: 50%;
  top: -4px;
  transform: translateX(-50%) rotate(45deg);
}

.about-ornament.small {
  margin: 14px auto 18px;
}

.about-hero-page h1 {
  margin: 0;
  text-transform: uppercase;
  color: #003f24;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 2px;
}

.about-hero-page p {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
  color: #191919;
}

.about-intro {
  padding: 36px 0 34px;
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.about-intro h2,
.about-values-numbers h2 {
  margin: 0 0 28px;
  color: #003f24;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 950;
  position: relative;
}

.about-intro h2::after,
.about-values-numbers h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 52px;
  height: 2px;
  background: #f2b600;
}

.about-who p,
.about-mission p {
  color: #111;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.strong-line {
  font-weight: 950 !important;
}

.about-center-image {
  min-height: 310px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  background:
    linear-gradient(180deg, rgba(135,206,235,.45), rgba(255,255,255,.35)),
    #eadcc1;
  display: grid;
  place-items: center;
}













.about-mission {
  align-self: stretch;
}

.mission-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.13);
}

.mission-item span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006536, #003f24);
  display: grid;
  place-items: center;
}

.mission-item img {
  width: 27px !important;
  height: 27px !important;
  filter: brightness(0) invert(1);
}

.mission-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 950;
}

.mission-item p {
  margin: 0;
}

.about-values-numbers {
  padding: 24px 0 28px;
  background: linear-gradient(90deg, #fff8e7, #fffdf7, #fff8e7);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.about-vn-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.values-row,
.numbers-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.numbers-row {
  grid-template-columns: repeat(4, 1fr);
}

.values-row span,
.numbers-row span {
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  border: 1.8px solid #006536;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.values-row img,
.numbers-row img {
  width: 30px !important;
  height: 30px !important;
  filter: invert(20%) sepia(48%) saturate(1047%) hue-rotate(104deg) brightness(90%) contrast(93%);
}

.values-row h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 950;
}

.values-row p,
.numbers-row p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.numbers-row strong {
  display: block;
  color: #003f24;
  font-size: 32px;
  font-weight: 950;
}

.about-cta {
  color: #fff;
  background:
    radial-gradient(circle at 16% 110%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(135deg, #003f24, #006536, #003f24);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.about-cta-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-quote {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
}

.cta-quote strong {
  color: #f2b600;
  font-size: 64px;
  line-height: 1;
}

.cta-quote p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.cta-quote span {
  grid-column: 2;
  color: #f2b600;
  font-weight: 950;
}

.cta-action {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.28);
  padding-left: 54px;
}

.cta-action span {
  width: 64px;
  height: 64px;
  background: #e6d486;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cta-action img {
  width: 32px !important;
  height: 32px !important;
  filter: invert(20%) sepia(48%) saturate(1047%) hue-rotate(104deg) brightness(90%) contrast(93%);
}

.cta-action p {
  margin: 0 0 4px;
  font-size: 17px;
}

.cta-action strong {
  color: #f2b600;
}

@media (max-width: 1050px) {
  .about-intro,
  .about-vn-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-action {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .about-intro {
    gap: 24px;
  }

  .values-row,
  .numbers-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-page {
    min-height: 300px;
  }

  .about-hero-page h1 {
    font-size: 48px;
  }

  .about-hero-page p {
    font-size: 17px;
  }
}
/* BADAWY TV ABOUT PAGE END */



/* BADAWY TV ABOUT CENTER REAL IMAGE START */
.about-center-image {
  min-height: 310px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  background: #efe3cf;
  display: block !important;
}

.about-center-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 310px !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
/* BADAWY TV ABOUT CENTER REAL IMAGE END */

/* BADAWY_HOME_YOUTUBE_ROTATION_20260705 */
.btv-youtube-home-card .btv-youtube-home-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.btv-youtube-home-card .btv-youtube-home-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.btv-youtube-home-card .btv-youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,32,32,.92);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
}

.btv-youtube-home-card .video-badge.live {
  background: #ff2020;
  color: #fff;
}

.btv-youtube-home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 800;
}

.btv-youtube-home-meta span {
  background: rgba(0,0,0,.38);
  border-radius: 999px;
  padding: 5px 8px;
}
