@import url(https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@200..1000&family=Dancing+Script:wght@400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tagesschrift&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap);
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
body {
  max-width: 100%!important;
  font-family: Cairo,sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  color: #333
}
#galleryGrid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 16px;
  padding: 20px 0;
  min-height: 200px
}
.gallery-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
  box-sizing: border-box;
  flex-shrink: 0;
  will-change: transform,box-shadow;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: transform .3s ease,box-shadow .3s ease
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(0,0,0,.22)
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}
.gallery-arrow:hover {
  background: rgba(0,0,0,.6)
}
.gallery-arrow-left {
  left: var(--gallery-arrow-left,20px)
}
.gallery-arrow-right {
  right: var(--gallery-arrow-right,20px)
}

.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  justify-content: center;
  align-items: center;
  flex-direction: row
}
.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: 0 40px;
  box-shadow: 0 0 20px #000;
  border-radius: 8px
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1010;
  user-select: none
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  z-index: 1010;
  background: rgba(0,0,0,.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}
.arrow:hover {
  background: rgba(0,0,0,.5)
}
.arrow-left {
  left: 20px
}
.arrow-right {
  right: 20px
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Cairo,sans-serif;
  font-weight: 700
}
p {
  position: relative;
  font-family: Amiri;
  font-size: 18px;
  text-align: center!important
}
h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #003092;
  letter-spacing: 1px
}
h3,
h5 {
  color: #00879e
}
html {
  scroll-behavior: smooth
}
:root {
  --light: #f8f9fa;
  --dark: #181a1b;
  --semi-dark: #23272b;
  --color: #b1140f;
  --btn-background: #5d56c7;
  --bs-btn-bg: #4D55CC!important
}
.navbar {
  background-color: #2e3a59;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background-color .3s ease
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  animation: fadeInLeft 1.5s
}
.logo a {
  text-decoration: none;
  padding-right: 20px
}
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 5px 0
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap
}
.logo {
  display: flex;
  align-items: center
}
.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain
}
.logo span {
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
  color: #005baa
}
.main-nav {
  display: flex;
  align-items: center
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0
}
.nav-links li {
  margin: 0 5px
}
.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  border-radius: 20px;
  transition: .3s
}
.nav-links a:hover {
  background-color: #005baa;
  color: #fff
}
.menu-toggle {
  display: none;
  font-size: 26px;
  background: 0 0;
  border: none;
  margin-right: 15px;
  cursor: pointer
}
@media (max-width:900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    width: 85%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
  }
  .nav-links.active {
    display: flex
  }
  .menu-toggle {
    display: block;
      margin-left: 20px;
  }
  .main-nav {
    flex-direction: row-reverse
  }
}
.hero {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  animation: fadeIn 1.5s ease-in
}
.about {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25,135,84,.08);
  padding: 36px 18px 24px 18px;
  margin-bottom: 40px;
  transition: box-shadow .3s
}
.about .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto
}
.about h2:hover {
  color: #0d6efd;
  text-decoration: underline
}
.about h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #343a40;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,.1);
  transition: color .3s,transform .3s
}
.about h3:hover,
.about p:hover {
  color: orange;
  transform: translateY(-2px)
}
.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 16px;
  text-align: justify;
  transition: color .3s,transform .3s
}
.about p:last-child {
  margin-bottom: 0
}
.about .quote {
  color: orange;
  border-right: 6px solid #211c84;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 18px 0 24px 0;
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(25,135,84,.07);
  animation: quoteFadeIn 1.2s
}
.stats-table-container {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 6px 43px;
  margin-bottom: 32px
}
.stats-table td,
.stats-table th {
  font-size: 1.2rem;
  vertical-align: middle
}
.stats-table th {
  background: #0810ff2c!important;
  color: #000;
  border: none
}
.stats-table td {
  font-weight: 700;
  transition: color .3s,transform .3s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(25,135,84,.04)
}
.stats-table td.stat-animate {
  color: #211c84;
  transform: scale(1.15) rotate(-2deg);
  box-shadow: 0 2px 12px rgba(25,135,84,.12);
  z-index: 2;
  position: relative
}
.section-title {
  font-weight: 700;
  letter-spacing: 1px
}
.program-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: transform .2s,box-shadow .2s;
  min-height: 420px
}
.program-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25,135,84,.15);
  border-color: #211c84
}
.program-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 12px rgba(25,135,84,.07)
}
.program-title {
  font-size: 1.3rem;
  font-weight: 600
}
.program-desc {
  color: #444;
  font-size: 1rem;
  margin-top: 10px
}
.programs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px
}
.testimonials-messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  margin-top: 30px
}
.testimonial {
  display: flex;
  max-width: 500px
}
.message-right {
  align-self: flex-end;
  justify-content: flex-end
}
.message-left {
  align-self: flex-start;
  justify-content: flex-start
}
.testimonial-content {
  border-radius: 18px 18px 0 18px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(60,120,60,.08);
  position: relative;
  font-size: 1.1em;
  color: #2e4d2e
}
.message-left .testimonial-content {
  border-radius: 18px 18px 18px 0;
  color: #205080
}
.testimonial-author {
  display: block;
  margin-top: 10px;
  font-size: .95em;
  color: #888;
  text-align: left
}
.message-left .testimonial-author {
  text-align: right
}
#news {
  padding: 60px 0 40px 0
}
.events-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 10px
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 5px;
  background: #0c356a;
  border-radius: 2px;
  z-index: 0
}
.timeline-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  min-height: 80px;
  opacity: 0;
  transform: translateY(60px);
  transition: all .7s cubic-bezier(.4,1.6,.4,1)
}
.timeline-event.visible {
  opacity: 1;
  transform: translateY(0)
}
.timeline-dot {
  width: 22px;
  height: 22px;
  background: #0c356a;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #19875444;
  position: relative;
  z-index: 2;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 6px;
  flex-shrink: 0;
  transition: box-shadow .5s
}
.timeline-event.visible .timeline-dot {
  box-shadow: 0 0 0 6px #0174be,0 0 12px #0174be
}
.timeline-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(25,135,84,.08),0 1px 4px rgba(0,0,0,.04);
  padding: 18px 22px 14px 22px;
  min-width: 0;
  flex: 1;
  text-align: right;
  position: relative
}
.timeline-content h3 {
  font-size: 1.1rem;
  color: #211c84;
  margin-bottom: 6px;
  font-weight: 700
}
.timeline-date {
  display: inline-block;
  font-size: .95rem;
  color: #555;
  margin-bottom: 7px;
  background: #ffc436;
  border-radius: 6px;
  padding: 2px 10px;
  margin-right: 0
}
.timeline-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0
}
@media (max-width:500px) {
  .timeline-content {
    font-size: .93rem;
    padding: 10px 7px 8px 7px
  }
  .timeline-line {
    right: 6px
  }
}
.faq {
  max-width: 700px;
  margin: 40px auto;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0001;
  padding: 32px 20px
}
.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px
}
.faq-question {
  width: 100%;
  background: 0 0;
  border: none;
  outline: 0;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 600;
  color: #211c84;
  cursor: pointer;
  padding: 12px 0;
  transition: color .2s;
  position: relative
}
.faq-question::after {
  content: "▼";
  font-size: 1rem;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  transition: transform .3s
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg)
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1),opacity .3s;
  padding-right: 10px
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  animation: fadeInDown .5s
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.card3 {
  width: 90%;
  min-height: 300px;
  color: #000;
  text-align: center;
  background-color: azure;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  transition: transform .3s;
  z-index: 999999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}
.card3 h5 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333
}
.card3 .x {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
  color: #333
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  background: #5463b5;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .2s,transform .2s;
  text-align: center;
  cursor: pointer
}
#backToTop:hover {
  background: #2521a4;
  transform: scale(1.1);
  color: #fff;
  text-decoration: none
}
#backToTop i {
  pointer-events: none
}
.holo-container {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 20px;
  background: linear-gradient(135deg,#f0f4f886,#d8eaf285);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
  border: 2px solid #00eaff;
  box-sizing: border-box;
  justify-content: left;
  align-items: center;
  margin-bottom: 2rem;
  min-height: 200px;
  display: block;
  animation: fadeInUp 1s ease-in-out;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2
}
.holo-container p {
  font-size: 18px;
  color: #000;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  z-index: 2;
  position: relative;
  font-family: Poppins,sans-serif;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(0,0,0,.1);
  margin-bottom: 20px;
  text-align: center
}
.holo-bg {
  position: absolute;
  left: 20%;
  top: 30%;
  transform: translateY(-50%);
  width: 135px;
  height: 135px;
  z-index: 1;
  pointer-events: none
}
.holo-bg .holo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,#00eaff,#ff00ea,#00eaff 100%);
  filter: blur(18px) brightness(1.2);
  opacity: .7;
  animation: holo-spin 3s linear infinite
}
.holo-img {
  position: absolute;
  z-index: 2;
  left: 21%;
  top: 14%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 0 24px 0 rgba(0,0,0,.08)
}
.contact-section {
  background: #f8f9fa
}
.contact-section .btn {
  background-color: #4d55cc;
  color: #000;
  font: 2em sans-serif
}
.contact-form h4,
.contact-info h4 {
  color: #211c84
}
.social-icons {
  text-align: center;
  padding: 0
}
.social-icons i {
  font-size: 25px
}
.social-i a {
  margin: 0 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #fff;
  width: 50PX;
  height: 50PX;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .5s;
  background-color: rgba(0,0,0,0);
  color: var(--color);
  font-size: 2.5em
}
.social-i a:hover {
  background-color: var(--color);
  color: #050801;
  box-shadow: 0 0 5px var(--color),0 0 25px var(--color),0 0 50px var(--color),0 0 200px var(--color)
}
.social-icons i:hover {
  color: #050801
}
.contact-form .form-control:focus {
  border-color: #211c84;
  box-shadow: 0 0 0 .2rem rgba(25,135,84,.15)
}
.footer {
  background-color: #c9c9c9;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  direction: ltr
}
.footer > div {
  flex: 1 1 250px;
  margin: 10px
}
.footer-left {
  text-align: right
}
.footer-center {
  text-align: center;
  list-style: none!important
}
.footer-right {
  text-align: left
}
.footer-right h5 {
  margin-bottom: 0;
  padding-top: 10px
}
.footer .social-i a {
  margin: 0 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #fff;
  width: 20PX;
  height: 20PX;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .5s;
  background-color: rgba(0,0,0,0);
  color: var(--color);
  font-size: 1.5em
}
@media (max-width:768px) {
  .footer {
    align-items: center;
    text-align: center
  }
  .footer-left {
    order: 3;
    margin-top: 20px;
    align-items: center;
    text-align: center
  }
  .footer-center {
    order: 1;
    align-items: center;
    text-align: center
  }
  .footer-right {
    order: 2;
    align-items: center;
    text-align: center
  }
  .footer-right .social-icons {
    display: block!important
  }
  .contact-container {
    flex-direction: column
  }
  .contact-form,
  .contact-info {
    margin-bottom: 2rem
  }
}
ul {
  list-style: none;
  padding: 0
}
@keyframes fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }
  to {
    opacity: 1;
    transform: translateX(0)
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }
  to {
    opacity: 1;
    transform: translateX(0)
  }
}
@keyframes holo-spin {
  100% {
    transform: rotate(360deg)
  }
}
@keyframes quoteFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
@keyframes statsFadeIn {
  from {
    opacity: 0;
    transform: scale(.95)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}
@keyframes statBounce {
  0% {
    transform: scale(1) rotate(0)
  }
  50% {
    transform: scale(1.18) rotate(-3deg)
  }
  100% {
    transform: scale(1.15) rotate(-2deg)
  }
}
@media (max-width:1200px) {
  .footer_container {
    width: 100%;
    flex-direction: column;
    align-items: center
  }
}
@media (max-width:900px) and (min-width:601px) {
  body {
    font-size: 1.1rem
  }
  .about .container {
    flex-direction: column;
    padding: 0 8px
  }
    .gallery-img {
    width: 160px;
    height: 160px
  }
  #galleryGrid {
    gap: 8px
  }
  .cards {
    flex-direction: column;
    gap: 16px;
    align-items: center
  }
  .card {
    min-width: 220px;
    max-width: 95%;
    margin: 0 auto
  }
  .card3 {
    padding: 12px;
    width: 95%;
    font-size: .95rem
  }
  .card3 h5 {
    font-size: 16px;
    margin-top: 12px
  }
  .card3 .x {
    font-size: 22px;
    top: 6px;
    right: 6px
  }
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 12px
  }
  .footer_container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 8px
  }
  .footer-col {
    width: 98%;
    margin-bottom: 18px
  }
  .holo-bg .holo {
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,#00eaff,#ff00ea,#00eaff 100%);
    filter: blur(18px) brightness(1.2);
    opacity: .7;
    animation: holo-spin 3s linear infinite
  }
  .footer-col h4 {
    font-size: 1.2rem;
    margin: 10px 0
  }
  .footer-col input,
  .footer-col textarea {
    padding: 8px 12px;
    font-size: .9rem
  }
  .footer-col label {
    font-size: .95rem
  }
  .footer-col button {
    width: 70px;
    padding: 8px;
    font-size: .9rem
  }
  .bottom-bar {
    font-size: .9rem;
    height: auto;
    padding: 8px 0
  }
  .social-i a {
    width: 40px;
    height: 40px;
    font-size: 1.5em
  }
}
@media (max-width:600px) {
  body {
    font-size: 1rem;
    padding-right: 3px!important;
    padding-left: 0!important
  }
  .about,
  .faq,
  .gallery,
  .hero,
  .navbar,
  .stats-table-container,
  footer {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    box-shadow: none
  }
  .navbar {
    padding: 8px 0
  }
  .card3 {
    width: 95%;
    padding: 12px;
    top: 75%;
    font-size: .9rem
  }
  .logo {
    font-size: 20px;
    text-align: center;
    display: block;
    margin-bottom: 8px
  }
  .nav {
    float: none;
    text-align: center;
    margin-top: 8px
  }
  .nav a {
    display: inline-block;
    font-size: 1rem
  }
  .hero {
    height: 300px;
    padding: 50px 0 30px 0;
    font-size: 1.1em
  }
  .hero .btn {
    padding: 8px 14px;
    font-size: 1em;
    margin-top: 10px
  }
  .about .container {
    padding: 0 2px
  }
  .about h2,
  .about h3 {
    font-size: 1.2rem;
    text-align: center
  }
  .about p {
    font-size: 1rem;
    text-align: justify
  }
  .about .quote {
    font-size: 1rem;
    padding: 8px 10px
  }
  .holo-container {
    position: relative;
    width: 90%;
    margin: auto;
    margin-bottom: auto;
    padding: 20px;
    background: linear-gradient(135deg,#f0f4f886,#d8eaf285);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    overflow: hidden;
    border: 2px solid #00eaff;
    box-sizing: border-box;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 200px;
    display: block
  }
  .holo-container h2 {
    display: block;
    position: relative;
    color: #31373b;
    margin: 20px auto;
    justify-self: center;
    z-index: 2;
    font-family: 'Times New Roman',Times,serif;
    font-weight: 700;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0,0,0,.1);
    text-align: center
  }
  .holo-container p {
    font-size: 15px;
    color: #000;
    justify-self: center;
    margin-left: 0;
    z-index: 2;
    position: relative;
    font-family: Poppins,sans-serif;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0,0,0,.1);
    text-align: center
  }
  .holo-bg {
    position: absolute;
    left: 0;
    top: 20%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    z-index: 1;
    pointer-events: none
  }
  .holo-bg .holo {
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,#00eaff,#ff00ea,#00eaff 100%);
    filter: blur(18px) brightness(1.2);
    opacity: .7;
    animation: holo-spin 3s linear infinite
  }
  .holo-img {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff
  }
  .program-card {
    min-height: 340px;
    padding: 2rem 1rem
  }
  .program-img {
    width: 80px;
    height: 80px
  }
  .stats-table-container {
    padding: 12px 2px;
    margin: 0 auto;
    max-width: 100%
  }
  .stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto
  }
  .stats-table td,
  .stats-table th {
    font-size: .95rem;
    padding: 6px
  }
  .cards {
    flex-direction: column;
    gap: 10px;
    align-items: center
  }
  .card {
    min-width: 90%;
    max-width: 98%;
    margin: 0 auto;
    padding: 10px
  }
  .card img {
    height: auto;
    max-height: 120px
  }
    .gallery-img {
    width: 150px;
    height: 150px
  }
  #galleryGrid {
    gap: 8px
  }
  .faq {
    padding: 12px 2px
  }
  .faq h2 {
    font-size: 1.2rem
  }
  .footer_container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 2px
  }
  .footer-col {
    width: 100%;
    margin-bottom: 10px
  }
  .footer-col h4 {
    font-size: 1.1rem;
    margin: 10px 0
  }
  .footer-col input,
  .footer-col textarea {
    padding: 8px 10px;
    font-size: .95rem
  }
  .footer-col label {
    font-size: 1rem
  }
  .footer-col button {
    width: 80px;
    padding: 8px;
    font-size: 1rem
  }
  .bottom-bar {
    font-size: .95rem;
    height: auto;
    padding: 8px 0
  }
  .social-i a {
    width: 36px;
    height: 36px;
    font-size: 1.5em
  }
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #555;
  margin: 20px;
  background: #f8f8f8;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

.breadcrumb a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #0056b3;
}

.breadcrumb .separator {
  color: #999;
}

.breadcrumb .current {
  color: #333;
  font-weight: 600;
}
