:root {
  /* Premium Deep Color Palette */
  --primary-blue: #082F49;
  /* Deep Slate Blue */
  --secondary-blue: #0ea5e9;
  /* Sky Blue Accent */
  --primary-gold: #D4AF37;
  /* Metallic Gold */
  --primary-green: #064E3B;
  /* Deep Emerald */
  --secondary-green: #10b981;
  /* Emerald Accent */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-color: #f8fafc;
  --white: #ffffff;

  /* Modern Geometry */
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Smooth Glass Shadows */
  --shadow-sm: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(8, 47, 73, 0.15);

  /* Butter-smooth Transitions */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background-color: var(--bg-color);
  background-image: radial-gradient(rgba(8, 47, 73, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.no-scroll {
  overflow: hidden;
}

/* Beautiful Typography */
.arabic {
  font-family: 'Amiri', 'Traditional Arabic', serif;
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), #b89025);
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b89025, var(--primary-gold));
  box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-blue), #0f4a73);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(8, 47, 73, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0f4a73, var(--primary-blue));
  box-shadow: 0 15px 35px -5px rgba(8, 47, 73, 0.6);
  transform: translateY(-4px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: var(--primary-blue);
  border: 1px solid rgba(8, 47, 73, 0.2);
}

.btn-outline:hover {
  background: rgba(8, 47, 73, 0.05);
  transform: translateY(-4px);
  border-color: var(--primary-blue);
}

/* Glassmorphism Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-blue);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.hamburger:hover {
  color: var(--primary-gold);
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.logo-container img {
  height: 55px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.logo-container:hover img {
  transform: rotate(5deg) scale(1.05);
}

.logo-text h1 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.mobile-only {
  display: none !important;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

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

@media (max-width: 992px) {
  .mobile-only {
    display: inline-flex !important;
  }
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Cinematic Hero Section */
.hero {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: url('./public/images/hero-landing-minarets.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
  from {
    background-size: 105% auto;
  }

  to {
    background-size: 120% auto;
  }
}

/* Disable fixed attachment & switch to portrait image on mobile 
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
    animation: heroZoom 20s infinite alternate linear;
  }
}
*/


@keyframes heroZoom {
  from {
    background-size: 105% auto;
  }

  to {
    background-size: 120% auto;
  }
}


@media (max-width: 768px) {
  .hero {
    background-image: url('./public/images/hero-landing.png');
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
    color: white;
    animation: heroZoom 20s infinite alternate linear;
    min-height: 100svh;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  /* Very light dark wash for minimal contrast */
  z-index: 1;
}

/* Slightly darker overlay on mobile so text is legible over portrait image */
@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
  }
}

.hero-content {
  max-width: 900px;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 2;
}

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

  from {
    transform: translateY(40px);
    opacity: 0;
  }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  /* Stronger shadow for bright sky visibility */
  letter-spacing: -1px;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 1;
  /* Full opacity for better readability */
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Elite Stats Grid */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  margin-top: -5rem;
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Prevent overflowing the viewport on small screens */
  width: calc(100% - 2rem);
  box-sizing: border-box;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.stat-num {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Beautiful Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 5%;
}

/* About Snapshot - Premium Layout */
.about-snapshot {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: var(--transition);
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover::before {
  transform: translate(15px, 15px);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Luxurious Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.course-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary-green);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.course-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.course-card:hover .course-image img {
  transform: scale(1.08);
}

.course-card-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6, 78, 59, 0.02), transparent);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.course-card:hover::before {
  opacity: 1;
}

.course-card h3 {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.course-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.achievement {
  background: rgba(212, 175, 55, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Immersive Sponsorship Section */
.sponsorship {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  text-align: center;
  padding: 8rem 5%;
  margin: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sponsorship::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  z-index: 0;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.sponsorship>* {
  position: relative;
  z-index: 1;
}

.sponsorship h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sponsorship p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0.9;
}

.price-tag {
  display: inline-block;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  border-radius: 50px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Details */
footer {
  background-color: #041c2c;
  color: white;
  padding: 6rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

/* Ensure footer text is readable on small screens */
.footer-col p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h3 {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a,
.footer-col p a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover,
.footer-col p a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* ══════════════════════════════════════════
   RESPONSIVE MASTERCLASS  
   ══════════════════════════════════════════ */

@media (max-width: 1200px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -3rem;
    padding: 2rem;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    order: 3;
    background: rgba(8, 47, 73, 0.08);
    border: 1px solid rgba(8, 47, 73, 0.1);
    border-radius: 12px;
    color: var(--primary-blue) !important;
    z-index: 2500;
  }

  .logo-container {
    order: 1;
  }

  .navbar>.btn-primary {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-links .btn-primary {
    display: inline-flex;
    margin-top: 1rem;
    width: 100%;
  }

  .about-snapshot {
    flex-direction: column;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .testi-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .course-card div[style*="display:flex"] {
    flex-direction: column !important;
    white-space: normal !important;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .container {
    padding: 4rem 5%;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-snapshot {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image::before {
    display: none;
  }
}

@media (max-width: 768px) {

  /* ── General ── */
  body {
    overflow-x: hidden;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 3rem 1.2rem;
  }

  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
  }

  /* ── Navbar ── */
  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text p {
    display: none;
  }

  .logo-container img {
    height: 42px;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 80px;
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 2rem 1.2rem;
    border-radius: 20px;
    margin: 0 1rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
    letter-spacing: -0.5px;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .arabic {
    font-size: 1.6rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }

  .hero-btns .btn {
    width: 100%;
  }

  /* ── Stats ── */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -1rem;
    gap: 0.8rem;
    padding: 1.2rem;
    border-radius: 20px;
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .stat-card {
    padding: 1.2rem 0.8rem;
  }

  .stat-num {
    font-size: 2.4rem;
  }

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

  /* ── About snapshot ── */
  .about-snapshot {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image::before {
    display: none;
  }

  /* ── Courses ── */
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── Facilities icons ── */
  .fac-icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .fac-icon-card {
    padding: 1.4rem 1rem;
  }

  /* ── Stars slider ── */
  .stars-slider-wrap {
    overflow: hidden;
  }

  .stars-nav {
    position: static;
    margin: 0.5rem;
    transform: none;
    display: inline-flex;
  }

  .star-card {
    width: calc(50% - 0.6rem);
  }

  .stars-counter {
    margin-top: 1rem;
  }

  /* ── Testimonials ── */
  .testi-section {
    padding: 4rem 1.2rem;
  }

  .testi-slide {
    padding: 0 0.5rem;
  }

  .testi-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.2rem;
    border-radius: 20px;
  }

  .testi-bigquote {
    font-size: 3.5rem;
  }

  .testi-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ── Sponsorship ── */
  .sponsorship {
    padding: 4rem 1.5rem;
  }

  .sponsorship h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sponsorship p {
    font-size: 1rem;
  }

  .price-tag {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .sponsorship>div[style] {
    flex-direction: column !important;
  }

  /* ── Contact CTA ── */
  .contact-cta-wrapper {
    padding: 2rem 1.2rem;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
    border-radius: 24px;
  }

  .contact-cta h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .contact-cta p {
    font-size: 0.95rem;
  }

  .contact-phone {
    font-size: 1.4rem;
  }

  /* ── Media strip ── */
  .media-strip {
    padding: 3rem 1.2rem;
  }

  .media-strip h3 {
    font-size: 1.4rem;
  }

  /* ── Footer ── */
  footer {
    padding: 4rem 1.2rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ── About page hero ── */
  .page-header {
    padding: 120px 1.2rem 3rem !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 0.9rem;
  }

  .stat-num {
    font-size: 2rem;
  }

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 0.6rem;
  }

  .star-card {
    width: 100%;
    max-width: 200px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .fac-icon-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 1.5rem 1rem;
  }

  .courses-grid {
    gap: 1rem;
  }

  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }

  .sponsorship h2 {
    font-size: 1.5rem;
  }

  .contact-cta h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 360px) {
  .logo-text h1 {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 0.8rem;
  }
}

@media (max-width: 360px) {
  .logo-text h1 {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS PATCH
   ══════════════════════════════════════════ */

/* ── Inner page headers ── */
@media (max-width: 768px) {
  .page-header {
    padding: 110px 1.2rem 2.5rem !important;
    text-align: center;
  }

  .page-header .section-title,
  .page-header h1 {
    font-size: 1.7rem;
  }

  .page-header p {
    font-size: 0.95rem !important;
    max-width: 100% !important;
  }

  .page-header .arabic {
    font-size: 1.4rem;
  }

  .page-header .arabic-trans {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  .page-header .section-title,
  .page-header h1 {
    font-size: 1.45rem;
  }
}

/* ── Visitor slideshow ── */
@media (max-width: 768px) {
  .visitor-slideshow-container {
    padding: 0 44px;
    margin: 2rem auto 4rem;
  }

  .slide-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .slide-nav-btn.prev {
    left: 0;
  }

  .slide-nav-btn.next {
    right: 0;
  }

  .testimonial-card-main {
    padding: 3.5rem 1.5rem 2rem;
  }

  .testimonial-card-main::before {
    font-size: 2.5rem;
    top: -22px;
  }

  .main-quote {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .main-author-name {
    font-size: 1.1rem;
  }

  .main-author-title {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .context-note {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .slideshow-dots {
    margin-top: 2rem;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .visitor-slideshow-container {
    padding: 0 36px;
  }

  .slide-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .testimonial-card-main {
    padding: 3rem 1rem 1.5rem;
  }

  .main-quote {
    font-size: 0.97rem;
  }
}

/* ── Visitor grid ── */
@media (max-width: 640px) {
  .visitor-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Visitor filter buttons ── */
@media (max-width: 600px) {
  .visitor-filter-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
    scrollbar-width: none;
  }

  .visitor-filter-container::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
}

/* ── Testimonials visitors page ── */
@media (max-width: 768px) {
  .testimonial-bx {
    padding: 2rem 1.5rem;
  }

  .testimonial-bx p.quote {
    font-size: 1.05rem;
  }
}

/* ── Donation page ── */
@media (max-width: 768px) {
  .donation-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .urgency-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .bank-details {
    padding: 2.5rem 1.2rem;
    margin-top: 2rem;
    border-radius: var(--radius-md);
  }

  .account-box {
    padding: 1.5rem 1rem;
  }

  .account-row {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .donate-card {
    padding: 2rem 1.5rem;
  }

  .price-list li {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }

  .price-list li strong {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .urgency-item .stat {
    font-size: 1.8rem;
  }

  .donation-options {
    gap: 1rem;
  }

  .donate-card {
    padding: 1.8rem 1.2rem;
  }

  .water-cost-number {
    font-size: 2.5rem;
  }
}

/* ── Contact page ── */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .contact-info-box {
    padding: 2rem 1.2rem;
    border-radius: var(--radius-md);
  }
}

/* ── Facilities tables — make scrollable ── */
@media (max-width: 768px) {
  .fac-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .fac-table th,
  .fac-table td {
    padding: 0.75rem 1rem;
  }

  .fac-cta-strip {
    padding: 4rem 1.5rem;
  }

  .fac-cta-strip h2 {
    font-size: 1.6rem;
  }

  .fac-cta-strip p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .fac-heading {
    font-size: 1.6rem;
  }

  .fac-subheading {
    font-size: 1rem;
  }

  .fac-card {
    padding: 2rem 1.5rem;
  }

  .fac-callout {
    padding: 2rem 1.2rem;
  }

  .water-cost-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fac-cta-strip h2 {
    font-size: 1.35rem;
  }

  .fac-cta-strip p {
    font-size: 0.88rem;
  }

  .fac-table {
    font-size: 0.83rem;
  }

  .fac-section.container,
  .fac-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

/* ── About page specifics ── */
@media (max-width: 768px) {
  .timeline {
    padding-left: 16px;
    margin: 2rem 0;
  }

  .timeline-item h3 {
    font-size: 1.1rem;
  }

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

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

/* ── Media / Blog page ── */
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-container {
    padding: 0 1.2rem 4rem;
  }

  .blog-img {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }
}

/* ── Stats grid (academics page) ── */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* ── Program cards (academics) ── */
@media (max-width: 768px) {
  .program-content {
    padding: 2rem 1.5rem;
  }

  .program-image {
    min-height: 220px;
  }
}

/* ── Prevent any horizontal overflow globally ── */
html,
body {
  overflow-x: hidden;
}

/* ── Inline flex CTAs — ensure wrapping at small sizes ── */
@media (max-width: 600px) {

  /* Generic flex button groups used throughout in inline styles */
  .hero-btns,
  .sponsorship>div[style*="flex"],
  .fac-cta-strip>div[style*="flex"] {
    flex-direction: column;
    align-items: stretch;
  }

  .sponsorship>div[style*="flex"] .btn,
  .fac-cta-strip>div[style*="flex"] .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Sponsorship section price tag ── */
@media (max-width: 480px) {
  .price-tag {
    word-break: break-word;
    white-space: normal;
  }
}

/* ── General image max-width safety ── */
img {
  max-width: 100%;
  height: auto;
}

/* ── Ensure iframes don't overflow ── */
iframe {
  max-width: 100%;
}

/* =============================================
   SUPPORT US / DONATION ENHANCEMENTS
   ============================================= */

.urgency-strip {
  background: white;
  padding: 4rem 5%;
  border-bottom: 1px solid rgba(8, 47, 73, 0.05);
}

.urgency-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.urgency-item {
  padding: 2rem;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary-gold);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.urgency-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.urgency-item .stat {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  display: block;
}

.urgency-item .label {
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.urgency-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   NOTABLE VISITORS ENHANCEMENTS & TYPOGRAPHY
   ============================================= */

.arabic-trans {
  display: block;
  color: var(--primary-gold);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.visitor-filter-container {
  margin: 4rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(8, 47, 73, 0.1);
  background: white;
  color: var(--primary-blue);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.visitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.visitor-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.visitor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.v-institution {
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.v-name {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.v-title {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.v-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.v-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: rgba(8, 47, 73, 0.05);
  color: var(--primary-blue);
  font-weight: 600;
}

.v-tag.testimonial {
  background: rgba(212, 175, 55, 0.15);
  color: #9c7b14;
}

/* Automated Slideshow */
.visitor-slideshow-container {
  max-width: 1100px;
  margin: 4rem auto 6rem;
  position: relative;
  padding: 0 70px;
  /* Space for arrows */
}

.slideshow-inner {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1rem 0;
}

.slide-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.visitor-slide {
  min-width: 100%;
  padding: 0 1rem;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.visitor-slide.active-slide {
  opacity: 1;
}

.testimonial-card-main {
  background: white;
  padding: 4.5rem 5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visitor-slide.active-slide .testimonial-card-main {
  transform: translateY(0);
}

.testimonial-card-main::before {
  content: '📜';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
}

.main-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.9;
  color: #0c1b25;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 500;
}

.main-author-name {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.main-author-title {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.context-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 85%;
  margin: 2.5rem auto 0;
}

/* Slideshow Dots */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 47, 73, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--primary-gold);
  width: 35px;
  border-radius: 50px;
}

.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slide-nav-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.slide-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slide-nav-btn.prev {
  left: 0;
}

.slide-nav-btn.next {
  right: 0;
}

@media (max-width: 1100px) {
  .visitor-slideshow-container {
    padding: 0 10px;
  }

  .slide-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card-main {
    padding: 3rem 1.5rem;
  }

  .main-quote {
    font-size: 1.25rem;
  }
}

/* =============================================
   FACILITIES PAGE STYLES
   ============================================= */

.fac-section {
  padding: 6rem 0;
}

.fac-section.container {
  padding: 6rem 5%;
}

.fac-label {
  color: var(--primary-gold);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fac-heading {
  font-size: 2.4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fac-subheading {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 750px;
  line-height: 1.7;
}

.fac-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

/* Grid Layouts */
.fac-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

/* Facility Cards */
.fac-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.fac-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.fac-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.fac-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Glass cards (on dark backgrounds) */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.glass-card h3 {
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* Detail Row (3-column text blocks) */
.fac-detail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fac-detail-content h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.fac-detail-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* Dark section variant */
.fac-dark {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  padding: 6rem 0;
  color: white;
}

.fac-dark .fac-heading {
  color: white;
}

/* Light section variant */
.fac-light {
  background: var(--bg-color);
  padding: 6rem 0;
}

/* Callout box */
.fac-callout {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.07), rgba(8, 47, 73, 0.05));
  border-left: 4px solid var(--primary-green);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.fac-callout h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.fac-callout p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Water Cost Box */
.water-cost-box {
  background: linear-gradient(135deg, var(--primary-blue), #0f4a73);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.water-cost-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.water-cost-number span {
  font-size: 1.8rem;
}

.water-cost-detail {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.water-cost-annual {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-gold);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Facility Table */
.fac-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fac-table th {
  background: var(--primary-blue);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.fac-dark .fac-table th {
  background: rgba(255, 255, 255, 0.15);
}

.fac-dark .fac-table {
  background: rgba(255, 255, 255, 0.08);
}

.fac-dark .fac-table td {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.fac-table td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.97rem;
  color: var(--text-dark);
}

.fac-table tr:last-child td {
  border-bottom: none;
}

.fac-table tr:hover td {
  background: rgba(212, 175, 55, 0.05);
}

/* Bullet List */
.fac-list {
  list-style: none;
  padding: 0;
}

.fac-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.98rem;
}

.fac-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 0.6rem;
  top: 0.95rem;
}

/* Footer CTA Strip */
.fac-cta-strip {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: white;
  text-align: center;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.fac-cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  animation: pulse 15s infinite alternate;
}

.fac-cta-strip>* {
  position: relative;
  z-index: 1;
}

.fac-cta-strip h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.fac-cta-strip p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

/* Responsive Facilities */
@media (max-width: 992px) {

  .fac-grid.three-col,
  .fac-detail-row {
    grid-template-columns: 1fr 1fr;
  }

  .fac-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .fac-grid.three-col,
  .fac-grid.two-col,
  .fac-detail-row {
    grid-template-columns: 1fr;
  }

  .fac-heading {
    font-size: 1.7rem;
  }

  .fac-cta-strip h2 {
    font-size: 1.8rem;
  }

  .water-cost-box {
    padding: 1.5rem;
  }

  .water-cost-number {
    font-size: 2.5rem;
  }
  
  .water-cost-number span {
    font-size: 1.2rem;
  }

  .water-cost-detail {
    font-size: 0.9rem;
  }

  .water-cost-annual {
    font-size: 1rem;
  }
}

/* Facility cards with top image */
.fac-card-img {
  padding: 0;
  overflow: hidden;
}

.fac-card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fac-card-img:hover .fac-card-photo {
  transform: scale(1.05);
}

.fac-card-body {
  padding: 1.8rem 2rem;
}

.fac-card-body h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.6rem;
}

.fac-card-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.glass-card.fac-card-img .fac-card-body h3 {
  color: var(--primary-gold);
}

.glass-card.fac-card-img .fac-card-body p {
  color: rgba(255, 255, 255, 0.85);
}

/* White / Light CTA Strip */
.fac-cta-light {
  background: var(--white) !important;
}

.fac-cta-light::before {
  display: none;
}

.fac-cta-light h2 {
  color: var(--primary-blue) !important;
}

.fac-cta-light p {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}