body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden !important;
  background-color: #4D2872;
}
.nav_icon {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav_link:hover .nav_icon {
  filter: none;
}
/*Page1 secttion 1*/
.orange-decoration {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
}

:dir(rtl) .orange-decoration {
  left: 0;
  right: auto;
}

:dir(ltr) .orange-decoration {
  right: 0;
  left: auto;
}


.hero-background {
  position: relative;
  z-index: 1;
}

.navbar {
  background: transparent;
  padding-top: 15px;
  animation: fadeInDown 1s ease-out;
}

.navbar-brand {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  margin-right: 15px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  overflow: visible;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, #ff9800, #fff, #ff9800);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right;
  border-radius: 2px;
}

.nav-link::before {
  top: 0;
}

.nav-link::after {
  bottom: 0;
}

.nav-link:hover::before,
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: #ff9800 !important;
  transform: scale(1.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link.active::before,
.nav-link.active::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.nav-link.active {
  color: #ff9800 !important;
  transform: scale(1.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.nav-icons {
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-section {
  padding: 60px 0;
  color: white;
  position: relative;
}

.hero-title {
  color: white;
  font-weight: bold;
  font-size: 4rem;
}

.orange-letter {
  color: #ff9800;
}

.hero-desc {
  font-size: 1.2rem;
  margin-top: 15px;
  opacity: 0;
  animation: slideInRight 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

.hero_image {
  position: absolute;
  top: 60%;
  left: 12.5%;
  transform: translate(-50%, -50%) scale(1);
  max-width: 450px;
  height: auto;
  z-index: 1;
  opacity: 0;
  animation: zoomIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

.hero_image2 {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translate(-50%, -50%) scale(1);
  max-width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0;
  animation: zoomIn 1.5s ease forwards;
  animation-delay: 0.8s;
}


[dir="ltr"] .hero_image {
  top: 50%;
  right: -300px; 
  left: auto;
  transform: translate(50%, -50%) scale(1); 
  max-width: 450px;
}

[dir="ltr"] .hero_image2 {
  top: 10%;
  right: -200px;
  left: auto;
  transform: translate(50%, -50%) scale(1);
  max-width: 100%;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.animated-icon {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideFadeIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.super-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #4D2872, #4D2872);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 1s;
  transition: transform 0.3s ease;
}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #FF9800, #FFFFFF, #4D2872, #FF9800);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #4D2872;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.super-button:hover .arrow_index {
  transform: translateX(6px);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.text-end-responsive {
  text-align: center;
}

@media (min-width: 992px) {
  .text-end-responsive {
    text-align: start;
  }
}


/*Page1 secttion 1*/

/*Page1 cards*/
.hero2-title {
  font-size: 3rem;
  font-weight: bold;
}

.orange-letter {
  color: #ff9800;
}

.service-wrapper {
  position: relative;
  height: 100%;
  width: 250px;
}

.service-card {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.orange-box {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #FF9800;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 10px;
  bottom: -35px;
  right: -15px;
  z-index: 1;
}

.group_4 {
  position: absolute;
  top: -150px;
  right: -10px;
  z-index: 1;
  width: 300px;
}

.services-section {
  position: relative;
}

.group_5 {
  position: absolute;
  top: 40px;
  width: 230px;
  z-index: 1;
  max-width: 100%;
  height: auto;
}

:dir(rtl) .group_5 {
  left: 0;
  right: auto;
}

:dir(ltr) .group_5 {
  right: 0;
  left: auto;
}


.service-card img {
  margin-bottom: 1rem;
}

.service-card p {
  margin: 0;
  color: #5E6282;
}

.service-card {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
}

.service-card img {
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.service-wrapper:hover .service-card {
  background-color: #FF9800;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-wrapper:hover .service-card p {
  color: #fff;
}

.service-wrapper:hover .orange-box {
  background-color: #ffffff;
  transition: background-color 0.4s ease;
}

.service-wrapper:hover .service-card img {
  transform: scale(1.05);
}

.service-wrapper:hover .service-card img {
  transform: rotate(8deg) scale(1.1);
  transition: transform 0.5s ease;
}

.stars-wrapper {
  width: fit-content;
  height: fit-content;
  transform: scale(0.8);
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(5, 12px);
  grid-template-rows: repeat(4, 15px);
  gap: 5px 7px;
  max-width: 100vw;
}

.star {
  width: 12px;
  height: 12px;
  background-color: #E5E5E5;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
      50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  animation-name: float3D, wave, rotateColor;
  animation-duration: 6s, 3s, 7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal;
}

.star.orange,
.star.purple {
  animation-name: float3D, wave, rotateColor, glowingPulse;
  animation-duration: 6s, 3s, 7s, 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear, ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal, alternate;
}

.star.orange {
  background-color: #FF9800;
  filter: drop-shadow(0 0 8px #FF9800);
}

.star.purple {
  background-color: #6246E5;
  filter: drop-shadow(0 0 8px #6246E5);
}

.star.hidden {
  visibility: hidden;
  animation: none !important;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: translateY(-10px) rotateX(15deg) rotateY(15deg);
    filter: drop-shadow(0 0 8px rgba(255 255 255 / 0.6));
  }
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.7;
  }
}

@keyframes rotateColor {
  0% {
    transform: rotate(0deg);
    background-color: #E5E5E5;
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: rotate(15deg);
    background-color: #FF9800;
    filter: drop-shadow(0 0 10px #FF9800);
  }

  100% {
    transform: rotate(0deg);
    background-color: #6246E5;
    filter: drop-shadow(0 0 10px #6246E5);
  }
}

@keyframes glowingPulse {

  0%,
  100% {
    box-shadow: 0 0 5px #E5E5E5, 0 0 15px #E5E5E5;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px #FF9800, 0 0 40px #FF9800;
    transform: scale(1.3);
  }
}

.stars-grid>div:nth-child(1) {
  animation-delay: 0s, 0s, 0s, 0s;
}

.stars-grid>div:nth-child(2) {
  animation-delay: 0.15s, 0.15s, 0.15s, 0.15s;
}

.stars-grid>div:nth-child(3) {
  animation-delay: 0.3s, 0.3s, 0.3s, 0.3s;
}

.stars-grid>div:nth-child(4) {
  animation-delay: 0.45s, 0.45s, 0.45s, 0.45s;
}

.stars-grid>div:nth-child(5) {
  animation-delay: 0.6s, 0.6s, 0.6s, 0.6s;
}

.stars-grid>div:nth-child(6) {
  animation-delay: 0.75s, 0.75s, 0.75s, 0.75s;
}

.stars-grid>div:nth-child(7) {
  animation-delay: 0.9s, 0.9s, 0.9s, 0.9s;
}

.stars-grid>div:nth-child(8) {
  animation-delay: 1.05s, 1.05s, 1.05s, 1.05s;
}

.stars-grid>div:nth-child(9) {
  animation-delay: 1.2s, 1.2s, 1.2s, 1.2s;
}

.stars-grid>div:nth-child(10) {
  animation-delay: 1.35s, 1.35s, 1.35s, 1.35s;
}

.stars-grid>div:nth-child(11) {
  animation-delay: 1.5s, 1.5s, 1.5s, 1.5s;
}

.stars-grid>div:nth-child(12) {
  animation-delay: 1.65s, 1.65s, 1.65s, 1.65s;
}

.stars-grid>div:nth-child(13) {
  animation-delay: 1.8s, 1.8s, 1.8s, 1.8s;
}

.stars-grid>div:nth-child(14) {
  animation-delay: 1.95s, 1.95s, 1.95s, 1.95s;
}

.stars-grid>div:nth-child(15) {
  animation-delay: 2.1s, 2.1s, 2.1s, 2.1s;
}

.stars-grid>div:nth-child(16) {
  animation-delay: 2.25s, 2.25s, 2.25s, 2.25s;
}

.stars-grid>div:nth-child(17) {
  animation-delay: 2.4s, 2.4s, 2.4s, 2.4s;
}

.stars-grid>div:nth-child(18) {
  animation-delay: 2.55s, 2.55s, 2.55s, 2.55s;
}

.stars-grid>div:nth-child(19) {
  animation-delay: 2.7s, 2.7s, 2.7s, 2.7s;
}

.stars-grid>div:nth-child(20) {
  animation-delay: 2.85s, 2.85s, 2.85s, 2.85s;
}

/*Page1 cards*/

/*Page1 about us*/
.why-us-section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.orange-shape {
  position: relative;
  background-color: #FF9800;
  border-top-right-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  height: 300px;
  z-index: 1;
  overflow: visible;
}

.orange-shape .inner-circle {
  position: absolute;
  background-color: #e0622e;
  border-radius: 50%;
  z-index: 2;
}

.girl-img {
  position: absolute;
  top: -180px;
  right: 0;
  width: 100%;
  height: 600px;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.text-block h3 {
  color: #FF9800;
  font-weight: bold;
}

.text-block ul {
  list-style: none;
  padding: 0;
}

.text-block li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.text-block li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: white;
  margin-left: 10px;
}

.stat-box {
  background: white;
  color: #4D2872;
  border-radius: 20px;
  padding: 25px 10px;
  text-align: center;
  font-weight: bold;
  user-select: none;
}

.counter {
  font-size: 24px;
  font-weight: bold;
}

.loader {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -45px;
  right: 200px;
  border-left: 4px solid #FF9800;
  border-radius: 50%;
  animation: right5231 0.9s linear infinite;
  z-index: 10;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}

.loader::before {
  width: 80px;
  height: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border-right: 4px solid #660BDD;
  animation: left036 0.9s linear infinite;
}

.loader::after {
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border-top: 4px solid #FF00FF;
  animation: none;
}

.loader-small {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  right: 550px;
  border-left: 3px solid #FF9800;
  border-radius: 50%;
  animation: right5231 0.9s linear infinite;
  z-index: 10;
}

.loader-small::before,
.loader-small::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}

.loader-small::before {
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border-right: 3px solid #660BDD;
  animation: left036 0.9s linear infinite;
}

.loader-small::after {
  width: 45px;
  height: 45px;
  top: calc(50% - 22.5px);
  left: calc(50% - 22.5px);
  border-top: 3px solid #FF00FF;
  animation: none;
}

@keyframes right5231 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes left036 {
  from {
    transform: rotate(720deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.loader-svg {
  position: absolute;
  z-index: 2;
}

.circle1.loader-svg {
  top: 200px;
  right: 60px;
  width: 60px;
  height: 60px;
}

.circle2.loader-svg {
  top: 100px;
  right: 100px;
  width: 40px;
  height: 40px;
}

.pl {
  width: 100%;
  height: 100%;
}

.pl circle {
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.pl__ring1 {
  animation: ring1_ 4s 0s ease-in-out infinite;
}

.pl__ring2 {
  animation: ring2_ 4s 0.04s ease-in-out infinite;
}

.pl__ring3 {
  animation: ring3_ 4s 0.08s ease-in-out infinite;
}

.pl__ring4 {
  animation: ring4_ 4s 0.12s ease-in-out infinite;
}

.pl__ring5 {
  animation: ring5_ 4s 0.16s ease-in-out infinite;
}

.pl__ring6 {
  animation: ring6_ 4s 0.2s ease-in-out infinite;
}

@keyframes ring1_ {
  from {
    stroke-dashoffset: -376.2;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -94.2;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -376.2;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -94.2;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -376.2;
    transform: rotate(4.75turn);
  }
}

@keyframes ring2_ {
  from {
    stroke-dashoffset: -329.2;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -82.4;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -329.2;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -82.4;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -329.2;
    transform: rotate(4.75turn);
  }
}

@keyframes ring3_ {
  from {
    stroke-dashoffset: -288.4;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -72.2;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -288.4;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -72.2;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -288.4;
    transform: rotate(4.75turn);
  }
}

@keyframes ring4_ {
  from {
    stroke-dashoffset: -254;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -63.6;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -254;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -63.6;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -254;
    transform: rotate(4.75turn);
  }
}

@keyframes ring5_ {
  from {
    stroke-dashoffset: -225.8;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -56.5;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -225.8;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -56.5;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -225.8;
    transform: rotate(4.75turn);
  }
}

@keyframes ring6_ {
  from {
    stroke-dashoffset: -203.9;
    transform: rotate(-0.25turn);
    animation-timing-function: ease-in;
  }

  23% {
    stroke-dashoffset: -51;
    transform: rotate(1turn);
    animation-timing-function: ease-out;
  }

  46%,
  50% {
    stroke-dashoffset: -203.9;
    transform: rotate(2.25turn);
    animation-timing-function: ease-in;
  }

  73% {
    stroke-dashoffset: -51;
    transform: rotate(3.5turn);
    animation-timing-function: ease-out;
  }

  96%,
  to {
    stroke-dashoffset: -203.9;
    transform: rotate(4.75turn);
  }
}

/* ==== Reveal Animation ==== */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  60% {
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.text-block h3 {
  position: relative;
  color: #FF9800;
  font-weight: bold;
  cursor: default;
  transition: color 0.3s ease;
}

.text-block h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 3px;
  background: #FF9800;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.text-block h3:hover {
  color: #ffb84d;
  text-shadow:
    0 0 8px #ffb84d,
    0 0 20px #ffb84d,
    0 0 30px #ffb84d;
}

.text-block h3:hover::after {
  width: 100%;
}

.text-block ul li,
.stat-box {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: slideFadeIn;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

.text-block ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.text-block ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.text-block ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.stat-box:nth-child(1) {
  animation-delay: 0.8s;
}

.stat-box:nth-child(2) {
  animation-delay: 1s;
}

.stat-box:nth-child(3) {
  animation-delay: 1.2s;
}

.stat-box:nth-child(4) {
  animation-delay: 1.4s;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.stat-box:hover {
  transform: scale(1.07);
  box-shadow:
    0 8px 20px rgba(255, 152, 0, 0.4),
    0 0 15px rgba(255, 152, 0, 0.6);
}

.stat-box::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #FF9800;
  border-radius: 3px;
  margin: 10px auto 0 auto;
  transition: width 0.4s ease;
}

.stat-box:hover::after {
  width: 60%;
}

/*Page1 about us*/

/*Universiy*/
.card_university {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.card_university:hover {
  transform: rotate(-1deg) scale(1.02);
}

.card_img_top {
  height: 250px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card_body {
  background-color: white;
  padding: 1rem;
  text-align: right;
}

.location {
  font-size: 0.9rem;
  color: #6c757d;
  transition: transform 0.4s ease, color 0.4s ease;
}

.location i {
  margin-right: 5px;
}

.custom-btn {
  margin-top: 30px;
  background-color: transparent;
  border: 2px solid orange;
  color: orange;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s;
  cursor: pointer;
}

.custom-btn:hover {
  background-color: orange;
  color: white;
}

.card-with-shape {
  position: relative;
}

.card-with-shape svg {
  position: absolute;
  right: -82px;
  top: 18px;
  z-index: 0;
  width: 150px;
  height: 320px;
}

.card-with-shape .card {
  position: relative;
  z-index: 1;
}

stop {
  animation: gradientMove 4s ease infinite alternate;
}

@keyframes gradientMove {
  0% {
    stop-color: #FF9800;
  }

  50% {
    stop-color: #888888;
  }

  100% {
    stop-color: #FF9800;
  }
}

.card_title,
.location {
  transition: transform 0.4s ease, color 0.4s ease;
}

.card_university:hover .card_title {
  transform: translateY(-5px);
  color: #FF9800;
}

.card_university:hover .location {
  transform: translateY(-3px);
  color: #555;
}

.card_title span {
  display: inline-block;
  transition: transform 0.3s;
}

.card_university:hover .card_title span:nth-child(odd) {
  transform: translateY(-4px);
}

.card_university:hover .card_title span:nth-child(even) {
  transform: translateY(4px);
}
/*Universiy*/

/*join to us*/
.stars-wrappers {
  width: fit-content;
  height: fit-content;
  transform: scale(0.8);
}

.stars-grids {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  grid-template-rows: repeat(4, 35px);
  gap: 10px 10px;
  max-width: 100vw;
  top: 335px;
  right: 20px;
}

.stars {
  width: 25px;
  height: 25px;
  background-color: #E5E5E5;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
      50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  animation-name: float3D, wave, rotateColor;
  animation-duration: 6s, 3s, 7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal;
  
}

.stars.orange,
.stars.purple {
  animation-name: float3D, wave, rotateColor, glowingPulse;
  animation-duration: 6s, 3s, 7s, 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear, ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal, alternate;
}

.stars.orange {
  background-color: #FF9800;
  filter: drop-shadow(0 0 8px #FF9800);
}

.stars.purple {
  background-color: #6246E5;
  filter: drop-shadow(0 0 8px #6246E5);
}

.stars.hidden {
  visibility: hidden;
  animation: none !important;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: translateY(-10px) rotateX(15deg) rotateY(15deg);
    filter: drop-shadow(0 0 8px rgba(255 255 255 / 0.6));
  }
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.7;
  }
}

@keyframes rotateColor {
  0% {
    transform: rotate(0deg);
    background-color: #E5E5E5;
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: rotate(15deg);
    background-color: #FF9800;
    filter: drop-shadow(0 0 10px #FF9800);
  }

  100% {
    transform: rotate(0deg);
    background-color: #6246E5;
    filter: drop-shadow(0 0 10px #6246E5);
  }
}

@keyframes glowingPulse {

  0%,
  100% {
    box-shadow: 0 0 5px #E5E5E5, 0 0 15px #E5E5E5;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px #FF9800, 0 0 40px #FF9800;
    transform: scale(1.3);
  }
}

.stars-grid>div:nth-child(1) {
  animation-delay: 0s, 0s, 0s, 0s;
}

.stars-grid>div:nth-child(2) {
  animation-delay: 0.15s, 0.15s, 0.15s, 0.15s;
}

.stars-grid>div:nth-child(3) {
  animation-delay: 0.3s, 0.3s, 0.3s, 0.3s;
}

.stars-grid>div:nth-child(4) {
  animation-delay: 0.45s, 0.45s, 0.45s, 0.45s;
}

.stars-grid>div:nth-child(5) {
  animation-delay: 0.6s, 0.6s, 0.6s, 0.6s;
}

.stars-grid>div:nth-child(6) {
  animation-delay: 0.75s, 0.75s, 0.75s, 0.75s;
}

.stars-grid>div:nth-child(7) {
  animation-delay: 0.9s, 0.9s, 0.9s, 0.9s;
}

.stars-grid>div:nth-child(8) {
  animation-delay: 1.05s, 1.05s, 1.05s, 1.05s;
}

.stars-grid>div:nth-child(9) {
  animation-delay: 1.2s, 1.2s, 1.2s, 1.2s;
}

.stars-grid>div:nth-child(10) {
  animation-delay: 1.35s, 1.35s, 1.35s, 1.35s;
}

.stars-grid>div:nth-child(11) {
  animation-delay: 1.5s, 1.5s, 1.5s, 1.5s;
}

.stars-grid>div:nth-child(12) {
  animation-delay: 1.65s, 1.65s, 1.65s, 1.65s;
}

.stars-grid>div:nth-child(13) {
  animation-delay: 1.8s, 1.8s, 1.8s, 1.8s;
}

.stars-grid>div:nth-child(14) {
  animation-delay: 1.95s, 1.95s, 1.95s, 1.95s;
}

.stars-grid>div:nth-child(15) {
  animation-delay: 2.1s, 2.1s, 2.1s, 2.1s;
}

.stars-grid>div:nth-child(16) {
  animation-delay: 2.25s, 2.25s, 2.25s, 2.25s;
}

.stars-grid>div:nth-child(17) {
  animation-delay: 2.4s, 2.4s, 2.4s, 2.4s;
}

.stars-grid>div:nth-child(18) {
  animation-delay: 2.55s, 2.55s, 2.55s, 2.55s;
}

.stars-grid>div:nth-child(19) {
  animation-delay: 2.7s, 2.7s, 2.7s, 2.7s;
}

.stars-grid>div:nth-child(20) {
  animation-delay: 2.85s, 2.85s, 2.85s, 2.85s;
}

/*join to us*/

/*Footer*/
.stars-wrappers1 {
  z-index: 0;
  pointer-events: none;
  width: fit-content;
  height: fit-content;
  transform: scale(0.8);
}

.stars-grids1 {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  grid-template-rows: repeat(4, 35px);
  gap: 10px 10px;
  max-width: 100vw;
  top: 4030px;
    right: 35px;
}

.stars1 {
  width: 25px;
  height: 25px;
  background-color: #E5E5E5;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
      50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  animation-name: float3D, wave, rotateColor;
  animation-duration: 6s, 3s, 7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal;
}

.stars1.orange,
.stars1.purple {
  animation-name: float3D, wave, rotateColor, glowingPulse;
  animation-duration: 6s, 3s, 7s, 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear, ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal, alternate;
}

.stars1.orange {
  background-color: #FF9800;
  filter: drop-shadow(0 0 8px #FF9800);
}

.stars1.purple {
  background-color: #6246E5;
  filter: drop-shadow(0 0 8px #6246E5);
}

.stars1.hidden {
  visibility: hidden;
  animation: none !important;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: translateY(-10px) rotateX(15deg) rotateY(15deg);
    filter: drop-shadow(0 0 8px rgba(255 255 255 / 0.6));
  }
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.7;
  }
}

@keyframes rotateColor {
  0% {
    transform: rotate(0deg);
    background-color: #E5E5E5;
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: rotate(15deg);
    background-color: #FF9800;
    filter: drop-shadow(0 0 10px #FF9800);
  }

  100% {
    transform: rotate(0deg);
    background-color: #6246E5;
    filter: drop-shadow(0 0 10px #6246E5);
  }
}

@keyframes glowingPulse {

  0%,
  100% {
    box-shadow: 0 0 5px #E5E5E5, 0 0 15px #E5E5E5;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px #FF9800, 0 0 40px #FF9800;
    transform: scale(1.3);
  }
}

.stars1-grid>div:nth-child(1) {
  animation-delay: 0s, 0s, 0s, 0s;
}

.stars1-grid>div:nth-child(2) {
  animation-delay: 0.15s, 0.15s, 0.15s, 0.15s;
}

.stars1-grid>div:nth-child(3) {
  animation-delay: 0.3s, 0.3s, 0.3s, 0.3s;
}

.stars1-grid>div:nth-child(4) {
  animation-delay: 0.45s, 0.45s, 0.45s, 0.45s;
}

.stars1-grid>div:nth-child(5) {
  animation-delay: 0.6s, 0.6s, 0.6s, 0.6s;
}

.stars1-grid>div:nth-child(6) {
  animation-delay: 0.75s, 0.75s, 0.75s, 0.75s;
}

.stars1-grid>div:nth-child(7) {
  animation-delay: 0.9s, 0.9s, 0.9s, 0.9s;
}

.stars1-grid>div:nth-child(8) {
  animation-delay: 1.05s, 1.05s, 1.05s, 1.05s;
}

.stars1-grid>div:nth-child(9) {
  animation-delay: 1.2s, 1.2s, 1.2s, 1.2s;
}

.stars1-grid>div:nth-child(10) {
  animation-delay: 1.35s, 1.35s, 1.35s, 1.35s;
}

.stars1-grid>div:nth-child(11) {
  animation-delay: 1.5s, 1.5s, 1.5s, 1.5s;
}

.stars1-grid>div:nth-child(12) {
  animation-delay: 1.65s, 1.65s, 1.65s, 1.65s;
}

.stars1-grid>div:nth-child(13) {
  animation-delay: 1.8s, 1.8s, 1.8s, 1.8s;
}

.stars1-grid>div:nth-child(14) {
  animation-delay: 1.95s, 1.95s, 1.95s, 1.95s;
}

.stars1-grid>div:nth-child(15) {
  animation-delay: 2.1s, 2.1s, 2.1s, 2.1s;
}

.stars1-grid>div:nth-child(16) {
  animation-delay: 2.25s, 2.25s, 2.25s, 2.25s;
}

.stars1-grid>div:nth-child(17) {
  animation-delay: 2.4s, 2.4s, 2.4s, 2.4s;
}

.stars1-grid>div:nth-child(18) {
  animation-delay: 2.55s, 2.55s, 2.55s, 2.55s;
}

.stars1-grid>div:nth-child(19) {
  animation-delay: 2.7s, 2.7s, 2.7s, 2.7s;
}

.stars1-grid>div:nth-child(20) {
  animation-delay: 2.85s, 2.85s, 2.85s, 2.85s;
}
.contact-box {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 55px 30px;
  max-width: 950px;
  margin: 100px auto 50px;
  margin-top: 10px;
  text-align: center;
  border-top-left-radius: 100px;
  overflow: hidden;
  z-index: 2;
}
.circle-container {
  position: absolute;
bottom: -1px;
left: 8px;
width: 210px;
height: auto;
z-index: 1;
}

.circle-container svg g path {
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2.5s ease-out forwards, colorCycle 4s ease-in-out infinite;
  color: #B0B0B0;
}

.circle-container svg g path:nth-child(1) { animation-delay: 0s, 2.5s; }
.circle-container svg g path:nth-child(2) { animation-delay: 0.3s, 2.8s; }
.circle-container svg g path:nth-child(3) { animation-delay: 0.6s, 3.1s; }
.circle-container svg g path:nth-child(4) { animation-delay: 0.9s, 3.4s; }
.circle-container svg g path:nth-child(5) { animation-delay: 1.2s, 3.7s; }
.circle-container svg g path:nth-child(6) { animation-delay: 1.5s, 4s; }

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes colorCycle {
  0% { color: #B0B0B0; }
  50% { color: #FF9800; }
  100% { color: #B0B0B0; }
}

.contact-box h4 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
}

.contact-box h4 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-send {
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-send:hover {
  background-color: #e67e00;
  box-shadow: 0 0 15px 3px rgba(255, 152, 0, 0.7);
  transform: scale(1.05);
}

.btn-send:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.input-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.input-wrapper input {
  border: 2px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  position: relative;
  z-index: 1;
}

.input-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ff9800, #ffa726, #ff9800);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-radius: 8px;
  z-index: 0;
}

.input-wrapper input:focus+ ::before,
.input-wrapper:focus-within::before {
  transform: translateX(0);
}

.footer-icons a {
  display: inline-block;
  background-color: #FF9800;
  color: white;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-icons a:hover {
  animation: bounceScale 0.5s forwards;
}

.footer-icons a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 152, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-icons a:hover::before {
  animation: pulse 1.2s infinite ease-out;
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes bounceScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.25);
  }
}

.footer-icons a:hover svg path,
.footer-icons a:hover svg {
  stroke: #fff !important;
  fill: #fff !important;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
  transition: all 0.3s ease;
}

.form-inline-custom {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 5px 15px;
  width: 100%;
  max-width: 400px;
}

.input-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  background: transparent;
}

.btn-send {
  background-color: #FF9800;
  color: white;
  border: none;
  padding: 10px 50px;
  border-radius: 5px;
  font-weight: bold;
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 50px auto 20px;
  width: 90%;
}

.footer-icons {
  text-align: center;
  margin-bottom: 10px;
}

.footer-icons a {
  display: inline-block;
  background-color: #FF9800;
  color: white;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #eee;
}
.input-wrapper {
position: relative;
display: flex;
align-items: center;
gap: 10px;
background-color: white;
border-radius: 8px;
padding: 5px 15px;
width: 100%;
max-width: 400px;
}

.input-wrapper svg {
transition: transform 0.4s ease, stroke 0.4s ease;
cursor: pointer;
stroke: #39425D;
}

.input-wrapper:hover svg,
.input-wrapper:focus-within svg {
transform: translateX(6px) rotate(15deg);
stroke: #FF9800;
}

@media (max-width: 768px) {
.contact-box{
height: 695px;
margin-top: -10px;
}
}
/*Footer*/


/*************************************Page About***********************************************/
.timeline {
  position: relative;
  width: 100px;
  margin: 0 300px;
}

.item {
  position: relative;
  width: 100px;
  height: 160px;
}

.line-top,
.line-bottom,
.line-bottom2 {
  position: absolute;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  z-index: 0;
}

.line-top {
  top: -8px;
  height: 63px;
}

.line-bottom {
  bottom: -42px;
  height: 80px;
}

.line-bottom.extended {
  height: 103px;
  bottom: -65px;
}

.circle {
  position: absolute;
  top: 60px;
  left: 20%;
  width: 57px;
  height: 57px;
  background: #FF9800;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transform: translateX(-50%) scale(0);
  animation: circleAnim 0.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes circleAnim {
  to {
    transform: translateX(-50%) scale(1);
  }
}

.half-ring {
  position: absolute;
  top: 53px;
  left: 49%;
  width: 71px;
  height: 71px;
  border: 3px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  clip-path: inset(-5px 0 -5px 50%);
  z-index: 1;
}

.arrow {
  position: absolute;
  left: 39%;
  top: 135px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
}

.arrow svg {
  width: 16px;
  height: 16px;
  fill: #FF9800;
}

.title-wrapper {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 2px;
  user-select: none;
}

.letter-r {
  position: relative;
  z-index: 5;
  padding: 0 6px 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  margin-right: 90px;
  margin-top: 29px;
}

.p {
  width: 570px;
  position: relative;
  z-index: 5;
  padding: 5px 90px 55px 22px;
  border-radius: 50%;
  line-height: 1.5;
  margin-right: 440px;
  margin-top: 80px;
  font-size: 20px;
  color: white;
}

.arrow img {
  opacity: 0;
}


.image_white {
  position: absolute;
  top: 35%;
  right: -110px;
  transform: translate(-50%, -50%) scale(1);
  max-width: 450px;
  height: auto;
  z-index: 1;
  opacity: 0;
  animation: zoomIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

.image_pink {
  position: absolute;
  top: 98%;
  right: 10px;
  transform: translate(-50%, -50%) scale(1);
  max-width: 200px;
  height: auto;
  z-index: 1;
  opacity: 0;
  animation: zoomIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

/* ✅ أنيميشن عام للظهور التدريجي للأعلى */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.circle,
.letter-r,
.half-ring,
.line-top,
.line-bottom,
.p,
.arrow {
  opacity: 0;
}

.item:nth-child(1) .circle {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.2s;
}

.item:nth-child(2) .circle {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 3.8s;
}

.item:nth-child(3) .circle {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 7.4s;
}

.item:nth-child(1) .letter-r {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.7s;
}

.item:nth-child(2) .letter-r {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 4.3s;
}

.item:nth-child(3) .letter-r {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 7.9s;
}

.item:nth-child(1) .half-ring {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 1.2s;
}

.item:nth-child(2) .half-ring {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 4.8s;
}

.item:nth-child(3) .half-ring {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 8.4s;
}

.item:nth-child(1) .line-top,
.item:nth-child(1) .line-bottom {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 1.7s;
}

.item:nth-child(2) .line-top,
.item:nth-child(2) .line-bottom {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 5.3s;
}

.item:nth-child(3) .line-top,
.item:nth-child(3) .line-bottom {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 8.9s;
}

.item:nth-child(1) .p {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 2.2s;
}

.item:nth-child(2) .p {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 5.8s;
}

.item:nth-child(3) .p {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 9.4s;
}

.item:nth-child(1) .arrow {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 2.7s;
}

.item:nth-child(2) .arrow {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 6.3s;
}

.item:nth-child(3) .arrow {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 9.9s;
}

@keyframes drawLine {
  0% {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
  }
}

@keyframes revealRing {
  0% {
    clip-path: inset(100% 0 0 50%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 50%);
    opacity: 1;
  }
}

.line-top,
.line-bottom {
  transform-origin: top;
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.half-ring {
  clip-path: inset(100% 0 0 50%);
  opacity: 0;
}

.item:nth-child(1) .line-top,
.item:nth-child(1) .line-bottom {
  animation: drawLine 0.5s ease forwards;
  animation-delay: 1.7s;
}

.item:nth-child(2) .line-top,
.item:nth-child(2) .line-bottom {
  animation: drawLine 0.5s ease forwards;
  animation-delay: 5.3s;
}

.item:nth-child(3) .line-top,
.item:nth-child(3) .line-bottom {
  animation: drawLine 0.5s ease forwards;
  animation-delay: 8.9s;
}

.item:nth-child(1) .half-ring {
  animation: revealRing 0.5s ease forwards;
  animation-delay: 1.2s;
}

.item:nth-child(2) .half-ring {
  animation: revealRing 0.5s ease forwards;
  animation-delay: 4.8s;
}

.item:nth-child(3) .half-ring {
  animation: revealRing 0.5s ease forwards;
  animation-delay: 8.4s;
}

@keyframes dropArrow {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.item:nth-child(1) .arrow img:nth-child(1) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 2.7s;
}

.item:nth-child(1) .arrow img:nth-child(2) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 2.9s;
}

.item:nth-child(1) .arrow img:nth-child(3) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 3.1s;
}

.item:nth-child(1) .arrow img:nth-child(4) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 3.3s;
}

.item:nth-child(1) .arrow img:nth-child(5) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 3.5s;
}

.item:nth-child(2) .arrow img:nth-child(1) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 6.3s;
}

.item:nth-child(2) .arrow img:nth-child(2) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 6.5s;
}

.item:nth-child(2) .arrow img:nth-child(3) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 6.7s;
}

.item:nth-child(2) .arrow img:nth-child(4) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 6.9s;
}

.item:nth-child(2) .arrow img:nth-child(5) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 7.1s;
}

.item:nth-child(3) .arrow img:nth-child(1) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 9.9s;
}

.item:nth-child(3) .arrow img:nth-child(2) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 10.1s;
}

.item:nth-child(3) .arrow img:nth-child(3) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 10.3s;
}

.item:nth-child(3) .arrow img:nth-child(4) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 10.5s;
}

.item:nth-child(3) .arrow img:nth-child(5) {
  animation: dropArrow 0.3s ease forwards;
  animation-delay: 10.7s;
}


@keyframes arrowGlow {
  0% {
    opacity: 0.2;
    filter: drop-shadow(0 0 2px #FF9800);
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 6px #FF9800);
  }

  100% {
    opacity: 0.2;
    filter: drop-shadow(0 0 2px #FF9800);
  }
}

.item .arrow img {
  animation: arrowGlow 1.5s ease-in-out infinite;
  opacity: 0.2;
}

.item .arrow img:nth-child(1) {
  animation-delay: 0s;
}

.item .arrow img:nth-child(2) {
  animation-delay: 0.3s;
}

.item .arrow img:nth-child(3) {
  animation-delay: 0.6s;
}

.item .arrow img:nth-child(4) {
  animation-delay: 0.9s;
}

.item .arrow img:nth-child(5) {
  animation-delay: 1.2s;
}

.circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FF9800;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.item:hover .circle {
  transform: translateX(-50%) scale(1.1);
  transition: transform 0.3s ease;
}

.item:hover .letter-r {
  transform: scale(1.05);
  color: #ffc107;
}

.star_wrapper {
  z-index: 0;
  pointer-events: none;
  width: fit-content;
  height: fit-content;
  transform: scale(0.8);
}

.star_grid {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  grid-template-rows: repeat(4, 35px);
  gap: 10px 10px;
  max-width: 100vw;
  top: 700px;
  right: 1300px;
}

.star_section {
  width: 15px;
  height: 15px;
  background-color: #E5E5E5;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
      50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  animation-name: float3D, wave, rotateColor;
  animation-duration: 6s, 3s, 7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal;

}

.star_orange,
.star_purple {
  animation-name: float3D, wave, rotateColor, glowingPulse;
  animation-duration: 6s, 3s, 7s, 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out, ease-in-out, linear, ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate, alternate, normal, alternate;
}

.star_orange {
  background-color: #FF9800;
  filter: drop-shadow(0 0 8px #FF9800);
}

.star_purple {
  background-color: #6246E5;
  filter: drop-shadow(0 0 8px #6246E5);
}

.star_hidden {
  visibility: hidden;
  animation: none !important;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: translateY(-10px) rotateX(15deg) rotateY(15deg);
    filter: drop-shadow(0 0 8px rgba(255 255 255 / 0.6));
  }
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.7;
  }
}

@keyframes rotateColor {
  0% {
    transform: rotate(0deg);
    background-color: #E5E5E5;
    filter: drop-shadow(0 0 4px rgba(255 255 255 / 0.3));
  }

  50% {
    transform: rotate(15deg);
    background-color: #FF9800;
    filter: drop-shadow(0 0 10px #FF9800);
  }

  100% {
    transform: rotate(0deg);
    background-color: #6246E5;
    filter: drop-shadow(0 0 10px #6246E5);
  }
}

@keyframes glowingPulse {

  0%,
  100% {
    box-shadow: 0 0 5px #E5E5E5, 0 0 15px #E5E5E5;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px #FF9800, 0 0 40px #FF9800;
    transform: scale(1.3);
  }
}

.star_section-grid>div:nth-child(1) {
  animation-delay: 0s, 0s, 0s, 0s;
}

.star_section-grid>div:nth-child(2) {
  animation-delay: 0.15s, 0.15s, 0.15s, 0.15s;
}

.star_section-grid>div:nth-child(3) {
  animation-delay: 0.3s, 0.3s, 0.3s, 0.3s;
}

.star_section-grid>div:nth-child(4) {
  animation-delay: 0.45s, 0.45s, 0.45s, 0.45s;
}

.star_section-grid>div:nth-child(5) {
  animation-delay: 0.6s, 0.6s, 0.6s, 0.6s;
}

.star_section-grid>div:nth-child(6) {
  animation-delay: 0.75s, 0.75s, 0.75s, 0.75s;
}

.star_section-grid>div:nth-child(7) {
  animation-delay: 0.9s, 0.9s, 0.9s, 0.9s;
}

.star_section-grid>div:nth-child(8) {
  animation-delay: 1.05s, 1.05s, 1.05s, 1.05s;
}

.star_section-grid>div:nth-child(9) {
  animation-delay: 1.2s, 1.2s, 1.2s, 1.2s;
}

.star_section-grid>div:nth-child(10) {
  animation-delay: 1.35s, 1.35s, 1.35s, 1.35s;
}

.star_section-grid>div:nth-child(11) {
  animation-delay: 1.5s, 1.5s, 1.5s, 1.5s;
}

.star_section-grid>div:nth-child(12) {
  animation-delay: 1.65s, 1.65s, 1.65s, 1.65s;
}

.star_section-grid>div:nth-child(13) {
  animation-delay: 1.8s, 1.8s, 1.8s, 1.8s;
}

.star_section-grid>div:nth-child(14) {
  animation-delay: 1.95s, 1.95s, 1.95s, 1.95s;
}

.star_section-grid>div:nth-child(15) {
  animation-delay: 2.1s, 2.1s, 2.1s, 2.1s;
}

.star_section-grid>div:nth-child(16) {
  animation-delay: 2.25s, 2.25s, 2.25s, 2.25s;
}

.star_section-grid>div:nth-child(17) {
  animation-delay: 2.4s, 2.4s, 2.4s, 2.4s;
}

.star_section-grid>div:nth-child(18) {
  animation-delay: 2.55s, 2.55s, 2.55s, 2.55s;
}

.star_section-grid>div:nth-child(19) {
  animation-delay: 2.7s, 2.7s, 2.7s, 2.7s;
}

.star_section-grid>div:nth-child(20) {
  animation-delay: 2.85s, 2.85s, 2.85s, 2.85s;
}

.nav_icon {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav_link:hover .nav_icon {
  filter: none;
}
/*************************************End Page About*******************************************/

/*******************************************Page Cards**********************************************/
.dropdown-toggle {
  background-color: #4D2872;
  border: solid 1px #FF9800;
  color: #FF9800;
  border-radius: 25px;
  padding: 5px 20px;
}

.search-input {
  background-color: #4D2872;
  border: solid 1px #FF9800;
  color: #FF9800 !important;
  border-radius: 25px;
  padding: 5px 20px;
  width: 200px;
}

.search-input::placeholder {
  color: #FF9800 !important;
  opacity: 1;
}

.card-custom {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-size: .8rem;
  margin-bottom: 0.25rem;
}

.dropdown-toggle::after {
  display: none !important;
}

.card-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-custom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.card-custom:hover {
  transform: scale(1.05) rotateZ(-2deg) translateY(-8px);
  box-shadow: 0 20px 30px rgba(44, 62, 145, 0.4);
  cursor: pointer;
  box-shadow: 0 25px 40px rgba(44, 62, 145, 0.6);
}

.card-custom {
  position: relative;
  overflow: hidden;
}

.card-custom::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 1s ease;
  pointer-events: none;
}

.card-custom:hover::before {
  transform: rotate(25deg) translateX(200%);
}

@keyframes shimmerIntermittent {

  0%,
  80%,
  100% {
    transform: rotate(25deg) translateX(-100%);
  }

  40% {
    transform: rotate(25deg) translateX(200%);
  }
}

.card-custom::before {
  transition: none;
  animation: shimmerIntermittent 3s ease infinite;
}

.card-custom:hover::before {
  animation-play-state: paused;
}

.card-body>* {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-custom:hover .card-body>* {
  opacity: 1;
  transform: translateY(-5px);
}

.card-custom:hover .card-title {
  transform: scale(1.1);
  color: #FF9800;
  transition: transform 0.3s ease, color 0.3s ease;
}
/******************************************End Page Cards*******************************************/

/******************************************Page Univ_guide**********************************************/
.circle_guide {
  position: relative;
  width: 300px;
  height: 300px;
  top: 90px;
  left: 495px;
  border-radius: 50%;
  animation: spin-clockwise 30s linear infinite;
  z-index: 40;
}

.inner-circle-middle {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 49.5%;
  left: 51.3%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: spin-counter 40s linear infinite;
  z-index: 30;
}

.inner_circle {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: spin-clockwise 50s linear infinite;
  z-index: 20;
}

.inner-circle-2 {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: spin-counter 60s linear infinite;
  z-index: 10;
}

.plus,
.inner-plus,
.inner-plus-mid,
.inner-plus-2 {
  position: absolute;
  left: 50%;
  top: 45%;
  transform-origin: center center;
  color: #FF9800;
  animation: glow 2s ease-in-out infinite alternate;
}

.plus {
  font-size: 24px;
  z-index: 41;
  animation: colorShift 4s ease-in-out infinite;
}

.inner-plus-mid {
  font-size: 20px;
  z-index: 31;
}

.inner-plus {
  font-size: 16px;
  z-index: 21;
  animation: colorShift 4s ease-in-out infinite;
}

.inner-plus-2 {
  font-size: 12px;
  z-index: 11;
}

.plus:nth-child(1) {
  transform: rotate(0deg) translate(0, -130px) rotate(0deg);
}

.plus:nth-child(2) {
  transform: rotate(30deg) translate(0, -130px) rotate(-30deg);
}

.plus:nth-child(3) {
  transform: rotate(60deg) translate(0, -130px) rotate(-60deg);
}

.plus:nth-child(4) {
  transform: rotate(90deg) translate(0, -130px) rotate(-90deg);
}

.plus:nth-child(5) {
  transform: rotate(120deg) translate(0, -130px) rotate(-120deg);
}

.plus:nth-child(6) {
  transform: rotate(150deg) translate(0, -130px) rotate(-150deg);
}

.plus:nth-child(7) {
  transform: rotate(180deg) translate(0, -130px) rotate(-180deg);
}

.plus:nth-child(8) {
  transform: rotate(210deg) translate(0, -130px) rotate(-210deg);
}

.plus:nth-child(9) {
  transform: rotate(240deg) translate(0, -130px) rotate(-240deg);
}

.plus:nth-child(10) {
  transform: rotate(270deg) translate(0, -130px) rotate(-270deg);
}

.plus:nth-child(11) {
  transform: rotate(300deg) translate(0, -130px) rotate(-300deg);
}

.plus:nth-child(12) {
  transform: rotate(330deg) translate(0, -130px) rotate(-330deg);
}

.inner-plus-mid:nth-child(1) {
  transform: rotate(0deg) translate(0, -105px) rotate(0deg);
}

.inner-plus-mid:nth-child(2) {
  transform: rotate(45deg) translate(0, -105px) rotate(-45deg);
}

.inner-plus-mid:nth-child(3) {
  transform: rotate(90deg) translate(0, -105px) rotate(-90deg);
}

.inner-plus-mid:nth-child(4) {
  transform: rotate(135deg) translate(0, -105px) rotate(-135deg);
}

.inner-plus-mid:nth-child(5) {
  transform: rotate(180deg) translate(0, -105px) rotate(-180deg);
}

.inner-plus-mid:nth-child(6) {
  transform: rotate(225deg) translate(0, -105px) rotate(-225deg);
}

.inner-plus-mid:nth-child(7) {
  transform: rotate(270deg) translate(0, -105px) rotate(-270deg);
}

.inner-plus-mid:nth-child(8) {
  transform: rotate(315deg) translate(0, -105px) rotate(-315deg);
}

.inner-plus:nth-child(1) {
  transform: rotate(0deg) translate(0, -70px) rotate(0deg);
}

.inner-plus:nth-child(2) {
  transform: rotate(60deg) translate(0, -70px) rotate(-60deg);
}

.inner-plus:nth-child(3) {
  transform: rotate(120deg) translate(0, -70px) rotate(-120deg);
}

.inner-plus:nth-child(4) {
  transform: rotate(180deg) translate(0, -70px) rotate(-180deg);
}

.inner-plus:nth-child(5) {
  transform: rotate(240deg) translate(0, -70px) rotate(-240deg);
}

.inner-plus:nth-child(6) {
  transform: rotate(300deg) translate(0, -70px) rotate(-300deg);
}

.inner-plus-2:nth-child(1) {
  transform: rotate(0deg) translate(0, -45px) rotate(0deg);
}

.inner-plus-2:nth-child(2) {
  transform: rotate(90deg) translate(0, -45px) rotate(-90deg);
}

.inner-plus-2:nth-child(3) {
  transform: rotate(180deg) translate(0, -45px) rotate(-180deg);
}

.inner-plus-2:nth-child(4) {
  transform: rotate(270deg) translate(0, -45px) rotate(-270deg);
}

/* أنيميشن التوهج */
@keyframes glow {
  0% {
      opacity: 0.4;
      text-shadow: 0 0 3px #FF9800;
      color: #FFC107;
  }

  100% {
      opacity: 1;
      text-shadow: 0 0 8px #FFD54F;
      color: #FFEB3B;
  }
}

/* تغير اللون */
@keyframes colorShift {
  0% {
      color: #FF9800;
      text-shadow: 0 0 5px #FF9800;
  }

  50% {
      color: #FFD700;
      text-shadow: 0 0 15px #FFD700;
  }

  100% {
      color: #FF9800;
      text-shadow: 0 0 5px #FF9800;
  }
}

/* دوران */
@keyframes spin-clockwise {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-counter {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
      transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.orange_circle_container {
  position: absolute;
  top: -95px;
  left: 85%;
  transform: translateX(-50%);
  width: 202px;
  height: 202px;
  animation: rotateCircle 12s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.ray {
  position: absolute;
  width: 6px;
  height: 20px;
  top: 0;
  left: 50%;
  transform-origin: center 101px;
  opacity: 0.85;
  border-radius: 3px;
  animation: pulse 2.2s ease-in-out infinite alternate, colorCycle 9s linear infinite;
}

@keyframes rotateCircle {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1) rotate(var(--angle));
      opacity: 0.6;
  }

  100% {
      transform: scale(1.2) rotate(var(--angle));
      opacity: 1;
  }
}

@keyframes colorCycle {

  0%,
  10% {
      background-color: #FF6D00;
      filter: drop-shadow(0 0 3px #FF6D0088);
  }

  20%,
  30% {
      background-color: #FFA726;
      filter: drop-shadow(0 0 3px #FFA72688);
  }

  40%,
  50% {
      background-color: #FFD54F;
      filter: drop-shadow(0 0 3px #FFD54F88);
  }

  60%,
  70% {
      background-color: #B87333;
      filter: drop-shadow(0 0 6px #B87333cc);
  }

  80%,
  90% {
      background-color: #F5E1A4;
      filter: drop-shadow(0 0 6px #F5E1A4cc);
  }

  100% {
      background-color: #FF6D00;
      filter: drop-shadow(0 0 6px #FF6D00cc);
  }
}

.custom-card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
}
.card.custom-card {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card.custom-card:hover {
  transform: rotate(-5deg) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-large {
  height: 300px;
}

.card-small {
  height: 220px;
}

.overlap-up {
  margin-top: -80px;
  z-index: 2;
  position: relative;
}

.border-white {
  border: 6px solid white;
}

.card .card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-purple h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

.section-purple ul {
  padding-right: 1rem;
}

.section-purple ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.section_cards {
  margin-top: 150px;
}

.contact_box {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 35px 15px;
  max-width: 950px;
  margin: 20px auto 50px;
  text-align: center;
  border-top-left-radius: 100px;
  overflow: hidden;
  z-index: 2;
}
[data-shine] {
  position: relative;
  display: block;
  color: inherit;
  overflow: hidden;
}

/* طبقة الضوء */
[data-shine]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: shine-slide 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

/* الحركة */
@keyframes shine-slide {
  0% {
    left: -75%;
    opacity: 0.3;
  }
  50% {
    left: 50%;
    opacity: 0.6;
  }
  100% {
    left: 125%;
    opacity: 0.3;
  }
}
[data_type] {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  display: block;
  animation: typing 3s steps(60, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/******************************************End Page Univ_guide*******************************************/


/************************************************Page Contact*******************************************/
.form_inline_custom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: right;
}

.form_inline_custom>* {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease forwards;
}

.form_inline_custom>*:nth-child(1) {
  animation-delay: 0.2s;
}

.form_inline_custom>*:nth-child(2) {
  animation-delay: 0.4s;
}

.form_inline_custom>*:nth-child(3) {
  animation-delay: 0.6s;
}

.form_inline_custom>*:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeSlideUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.img-far-left {
  position: relative;
  bottom: 90px;
  left: calc(-84vw + 100%);
  max-width: 75%;
  height: auto;
}
.plus_contact,
.inner-plus_contact,
.inner-plus-mid_contact,
.inner-plus-2_contact {
  position: absolute;
  left: 50%;
  top: 45%;
  transform-origin: center center;
  color: #FF9800;
  animation: glow 2s ease-in-out infinite alternate;
}

.plus_contact {
  font-size: 24px;
  z-index: 41;
  animation: colorShift 4s ease-in-out infinite;
}

.inner-plus-mid_contact {
  font-size: 20px;
  z-index: 31;
}

.inner-plus_contact {
  font-size: 16px;
  z-index: 21;
  animation: colorShift 4s ease-in-out infinite;
}

.inner-plus-2_contact {
  font-size: 12px;
  z-index: 11;
}

.plus_contact:nth-child(1) {
  transform: rotate(0deg) translate(0, -130px) rotate(0deg);
}

.plus_contact:nth-child(2) {
  transform: rotate(30deg) translate(0, -130px) rotate(-30deg);
}

.plus_contact:nth-child(3) {
  transform: rotate(60deg) translate(0, -130px) rotate(-60deg);
}

.plus_contact:nth-child(4) {
  transform: rotate(90deg) translate(0, -130px) rotate(-90deg);
}

.plus_contact:nth-child(5) {
  transform: rotate(120deg) translate(0, -130px) rotate(-120deg);
}

.plus_contact:nth-child(6) {
  transform: rotate(150deg) translate(0, -130px) rotate(-150deg);
}

.plus_contact:nth-child(7) {
  transform: rotate(180deg) translate(0, -130px) rotate(-180deg);
}

.plus_contact:nth-child(8) {
  transform: rotate(210deg) translate(0, -130px) rotate(-210deg);
}

.plus_contact:nth-child(9) {
  transform: rotate(240deg) translate(0, -130px) rotate(-240deg);
}

.plus_contact:nth-child(10) {
  transform: rotate(270deg) translate(0, -130px) rotate(-270deg);
}

.plus_contact:nth-child(11) {
  transform: rotate(300deg) translate(0, -130px) rotate(-300deg);
}

.plus_contact:nth-child(12) {
  transform: rotate(330deg) translate(0, -130px) rotate(-330deg);
}

.inner-plus-mid_contact:nth-child(1) {
  transform: rotate(0deg) translate(0, -105px) rotate(0deg);
}

.inner-plus-mid_contact:nth-child(2) {
  transform: rotate(45deg) translate(0, -105px) rotate(-45deg);
}

.inner-plus-mid_contact:nth-child(3) {
  transform: rotate(90deg) translate(0, -105px) rotate(-90deg);
}

.inner-plus-mid_contact:nth-child(4) {
  transform: rotate(135deg) translate(0, -105px) rotate(-135deg);
}

.inner-plus-mid_contact:nth-child(5) {
  transform: rotate(180deg) translate(0, -105px) rotate(-180deg);
}

.inner-plus-mid_contact:nth-child(6) {
  transform: rotate(225deg) translate(0, -105px) rotate(-225deg);
}

.inner-plus-mid_contact:nth-child(7) {
  transform: rotate(270deg) translate(0, -105px) rotate(-270deg);
}

.inner-plus-mid_contact:nth-child(8) {
  transform: rotate(315deg) translate(0, -105px) rotate(-315deg);
}

.inner-plus_contact:nth-child(1) {
  transform: rotate(0deg) translate(0, -70px) rotate(0deg);
}

.inner-plus_contact:nth-child(2) {
  transform: rotate(60deg) translate(0, -70px) rotate(-60deg);
}

.inner-plus_contact:nth-child(3) {
  transform: rotate(120deg) translate(0, -70px) rotate(-120deg);
}

.inner-plus_contact:nth-child(4) {
  transform: rotate(180deg) translate(0, -70px) rotate(-180deg);
}

.inner-plus_contact:nth-child(5) {
  transform: rotate(240deg) translate(0, -70px) rotate(-240deg);
}

.inner-plus_contact:nth-child(6) {
  transform: rotate(300deg) translate(0, -70px) rotate(-300deg);
}

.inner-plus-2_contact:nth-child(1) {
  transform: rotate(0deg) translate(0, -45px) rotate(0deg);
}

.inner-plus-2_contact:nth-child(2) {
  transform: rotate(90deg) translate(0, -45px) rotate(-90deg);
}

.inner-plus-2_contact:nth-child(3) {
  transform: rotate(180deg) translate(0, -45px) rotate(-180deg);
}

.inner-plus-2_contact:nth-child(4) {
  transform: rotate(270deg) translate(0, -45px) rotate(-270deg);
}

/* أنيميشن التوهج */
@keyframes glow {
  0% {
      opacity: 0.4;
      text-shadow: 0 0 3px #FF9800;
      color: #FFC107;
  }

  100% {
      opacity: 1;
      text-shadow: 0 0 8px #FFD54F;
      color: #FFEB3B;
  }
}

/* تغير اللون */
@keyframes colorShift {
  0% {
      color: #FF9800;
      text-shadow: 0 0 5px #FF9800;
  }

  50% {
      color: #FFD700;
      text-shadow: 0 0 15px #FFD700;
  }

  100% {
      color: #FF9800;
      text-shadow: 0 0 5px #FF9800;
  }
}

/* دوران */
@keyframes spin-clockwise {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-counter {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
      transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/*map*/
#map {
  height: 420px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leaflet-control.legend {
  background: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  direction: rtl;
}

.legend span {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border-radius: 4px;
}


/******************************************End Page Contact*******************************************/