[data-reveal] {
  transition: 0.5s ease !important;
  opacity: 0 !important;
}

.reveal {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.move-right {
  transform: translateX(100px);
}

.move-left {
  transform: translateX(-100px);
}

.move-top {
  transform: translateY(-100px);
}

.move-bottom {
  transform: translateY(100px);
}

.delay-01 {
  transition-delay: 0.1s !important;
}

.delay-02 {
  transition-delay: 0.2s !important;
}

.delay-03 {
  transition-delay: 0.3s !important;
}

.delay-04 {
  transition-delay: 0.4s !important;
}

.delay-05 {
  transition-delay: 0.5s !important;
}

.delay-06 {
  transition-delay: 0.6s !important;
}

.delay-07 {
  transition-delay: 0.7s !important;
}

.delay-08 {
  transition-delay: 0.8s !important;
}

.delay-09 {
  transition-delay: 0.9s !important;
}

@keyframes snake {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Define the color changing animation */
@keyframes colorChange {
  0% {
    color: #cec3de; /* Yellow */
  }
  25% {
    color: #f97316; /* Orange */
  }
  50% {
    color: #ef4444; /* Red */
  }
  75% {
    color: #22c55e; /* Green */
  }
  100% {
    color: #3b82f6; /* Blue */
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
}

body {
  direction: rtl;
}

li {
  list-style: none;
}

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

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

h1, h2, h3, h4 {
  margin-bottom: 0.5em;
}

:root {
  --main-clr: #0f227c;
  --secondary-clr: #FFFF00;
  --soft-secondary-clr: #252525;
  --sec-padding: 4rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.sec {
  padding: var(--sec-padding) 0;
  overflow: hidden;
}

.main-heading {
  position: relative;
  width: fit-content;
  margin: 1.5rem auto;
  font-size: 2rem;
  font-weight: 900;
}
.main-heading::after, .main-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(100px, 10vw);
  height: 2px;
  border-radius: 5px;
  background-color: var(--main-clr);
}
.main-heading::before {
  left: calc(100% + 20px);
}
.main-heading::after {
  right: calc(100% + 20px);
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background-color: var(--main-clr);
  transition: 0.5s ease;
}
.loading.hide {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: 0.5s ease, z-index 0.1s 0.7s;
}
.loading span {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 5px var(--secondary-clr);
  border-left-color: transparent;
  animation: rotate infinite 1.5s linear;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--secondary-clr);
  transition: 0.3s ease;
  color: #000;
}
@media (max-width: 767px) {
  .header {
    padding-block: 7px;
    color: #000;
  }
}
.header.scrolled {
  background-color: var(--main-clr);
  color: #fff;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav__logo {
  font-size: 1.5rem;
  max-width: 3.5rem;
}
.header .nav__mobile-icon {
  position: relative;
  width: 35px;
  height: 27px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header .nav__mobile-icon {
    display: none;
  }
}
.header .nav__mobile-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #000;
  transition: 0.4s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  pointer-events: none;
}
.header .nav__mobile-icon span:nth-child(1) {
  top: 0;
}
.header .nav__mobile-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .nav__mobile-icon span:nth-child(3) {
  bottom: 0;
}
.header .nav__mobile-icon.animate span:nth-child(1) {
  left: -5px;
  transform: rotate(-45deg);
  transform-origin: right top;
}
.header .nav__mobile-icon.animate span:nth-child(2) {
  opacity: 0;
}
.header .nav__mobile-icon.animate span:nth-child(3) {
  left: -5px;
  transform: rotate(45deg);
  transform-origin: right bottom;
}
@media (max-width: 767px) {
  .header.scrolled .nav__mobile-icon span {
    background-color: #fff;
  }
}
.header .nav__ul {
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 200;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 50vw;
  height: 100%;
  background-color: var(--main-clr);
  color: #fff;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .header .nav__ul {
    all: unset;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.header .nav__ul.show {
  right: 0;
}
.header .nav__ul li {
  display: block;
}
.header .nav__ul a {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  text-align: center;
  transition: 0.3s ease;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header .nav__ul a {
    font-size: 1.125rem;
  }
}
.header .nav__ul a.active, .header .nav__ul a:hover {
  background-color: var(--main-clr);
  color: #fff;
}
@media (max-width: 767px) {
  .header .nav__ul a.active, .header .nav__ul a:hover {
    background-color: var(--secondary-clr);
    color: #000;
  }
}
.header.scrolled .nav__ul a.active, .header.scrolled .nav__ul a:hover {
  background-color: var(--secondary-clr);
  color: #000;
}

.home {
  position: relative;
  height: 100vh;
  background-color: var(--secondary-clr);
  background-size: cover;
  background-attachment: fixed;
}
.home .container {
  height: 100%;
  display: grid;
  align-items: center;
}
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.home .content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.home__title {
  margin-bottom: 0;
}
.home__company_name {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 5px;
  font-size: clamp(1rem, 1rem + 3vw, 2.5rem);
  color: var(--main-clr);
  font-weight: 900;
  line-height: 50px;
  margin-bottom: 1rem;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .home__company_name .br-brasses {
    display: none;
  }
}
.home__company_name .green-text {
  color: #21b324;
}
.home__schools {
  display: block;
  font-size: clamp(19px, 0.75rem + 1.5vw, 1.5rem);
  color: var(--main-clr);
  font-weight: 900;
  margin-top: 1.7rem;
}
.home__schools > *:not(br) {
  display: inline-block;
  color: var(--main-clr);
  margin-bottom: 0.2rem;
}
.home__desc {
  font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}
.home__btn {
  background-color: transparent;
  color: inherit;
  border: solid var(--main-clr) 2px;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.4s ease;
  cursor: pointer;
}
.home__btn:hover {
  background-color: var(--main-clr);
  border-color: var(--main-clr);
  color: white;
}

.about__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .about__box {
    flex-direction: row;
  }
}
.about__box > * {
  flex-basis: 50%;
}
.about .content {
  text-align: center;
}
@media (min-width: 992px) {
  .about .content {
    text-align: right;
  }
}
.about .content li {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
}
.about .content li i {
  color: var(--main-clr);
}
.about__content {
  font-size: 1.1rem;
  line-height: 35px;
}
.about__img img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__img img {
    max-width: 85%;
  }
}

.addresses__box {
  display: grid;
  grid-template-columns: repeat(auto-fill, min(100%, 500px));
  gap: 1rem;
  justify-content: center;
}
.addresses .card {
  padding: 1.75rem;
  text-align: right;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.addresses .card__images {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  transition: 0.3s ease;
  overflow: hidden;
}
.addresses .card__images img {
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}
.addresses .card__images iframe {
  position: relative;
  z-index: 2;
}
.addresses .card__images:hover img {
  transform: rotate(2deg) scale(1.2);
}
.addresses .card__location {
  border: 2px solid #eeeeee;
  width: 100%;
  height: 250px;
}
.addresses .card h3 {
  text-align: center;
  margin-top: 1rem;
  font-weight: 900;
}
.addresses .card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.addresses .card:hover .card__images {
  opacity: 1;
  border-color: #d8d7d7;
}
.addresses .card li {
  font-weight: 500;
}
.addresses .card li:nth-child(2) {
  margin-bottom: 0.5rem;
}
.addresses .card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.75rem;
  border: solid 1px #eee;
  color: var(--main-clr);
  transition: 0.4s ease;
}
.addresses .card a:hover {
  background-color: var(--main-clr);
  border: solid 1px var(--main-clr);
  color: white;
}

.contact__box {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(auto-fill, min(100%, 350px));
  justify-content: center;
  gap: 1.5rem;
}
.contact .item {
  display: flex;
  justify-self: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  padding: 1.25rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact .item p {
  margin-bottom: 10px;
  color: #888;
  font-weight: 600;
}
.contact .item .icon {
  display: grid;
  place-items: center;
  height: 50px;
  width: 50px;
  font-size: 1.5rem;
  margin: 0 auto;
  border: dotted 2px var(--main-clr);
  color: var(--main-clr);
  border-radius: 50%;
}
.contact__phone_lits li {
  display: flex;
  gap: 5px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.contact__phone_title {
  color: #888;
  font-weight: 600;
  font-size: 15px;
}
.contact__phone {
  color: #4d81ff;
}
.contact .social {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  margin: auto;
}
.contact .social > * {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact .social i {
  transition: 0.5s ease;
}
.contact .social .fa-whatsapp:hover {
  color: #25D366;
}
.contact .social .fa-telegram:hover {
  color: #0088CC;
}
.contact .social .fa-facebook:hover {
  color: #1877F2;
}
.contact .social .fa-instagram:hover {
  color: #C13584;
}
.contact .social .fa-youtube:hover {
  color: #FF0000;
}
.contact .social .fa-tiktok:hover {
  color: #69C9D0;
}

.footer {
  direction: ltr;
  background-color: var(--secondary-clr);
  color: #222222;
  text-align: center;
}
.footer__pq {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer__pq::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), #000000, rgba(0, 0, 0, 0.1));
}
.footer__pq a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}
.footer__pq a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--main-clr);
  border-radius: 5px;
  animation: snake 2s ease-in-out infinite;
}

/*# sourceMappingURL=main.css.map */
