@charset "UTF-8";
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 50px;
  height: 80px;
  z-index: 3;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}
#header .header-content::before {
  content: "";
  position: absolute;
  background-color: rgba(221, 221, 221, 0.5254901961);
  width: 100%;
  height: 1px;
  left: 0;
  top: 100%;
  transition: 0.2s;
}
#header.scrolled {
  background-color: #073942;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1764705882);
}
#header.scrolled .header-content::before {
  background-color: transparent;
}
#header .logo {
  display: flex;
  align-items: center;
  width: 180px;
  aspect-ratio: 2.5/1;
}
#header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header .nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
#header .nav ul li {
  position: relative;
}
#header .nav ul li a {
  font-weight: 400;
  color: #fff;
  position: relative;
}
#header .nav ul li a::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgba(221, 221, 221, 0.5019607843);
  transition: 0.2s;
}
#header .nav ul li a:hover::before, #header .nav ul li a.active::before {
  width: 100%;
}
#header .nav ul li a i {
  transition: 0.2s;
}
#header .nav ul li a.dropdown-toggle.active i {
  rotate: 180deg;
}
#header .nav ul li .dropdown {
  position: absolute;
  top: calc(100% + 35px);
  left: 0;
  padding: 0;
  width: fit-content;
  min-width: 200px;
  overflow: hidden;
  background-color: transparent;
  opacity: 0;
  display: none;
  transition: 0.2s;
}
#header .nav ul li .dropdown.show {
  display: block;
  opacity: 1;
}
#header .nav ul li .dropdown ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
#header .nav ul li .dropdown ul li {
  width: 100%;
}
#header .nav ul li .dropdown ul li a {
  width: fit-content;
  padding: 5px 10px;
  white-space: nowrap;
  text-align: start;
  background-color: #073942;
  width: 100%;
}
#header .nav ul li .dropdown ul li a:hover, #header .nav ul li .dropdown ul li a.active {
  background-color: #4abac7;
}
#header .nav ul li .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(221, 221, 221, 0.1843137255);
}
#header .end {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .end .language-box {
  position: relative;
}
#header .end .language-box .language-btn {
  border-radius: 30px;
  padding: 5px 10px;
  border-radius: 30px;
  border-color: rgba(221, 221, 221, 0.5137254902);
}
#header .end .language-box .language-btn .image {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}
#header .end .language-box .language-btn .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header .end .language-box .language-btn i {
  color: #fff;
  transition: 0.2s;
}
#header .end .language-box .language-btn.active {
  background-color: #fff;
}
#header .end .language-box .language-btn.active i {
  color: #000;
  rotate: 180deg;
}
#header .end .language-box .language-btn:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.2941176471);
}
#header .end .language-box .language-dropdown {
  top: calc(100% + 35px);
  opacity: 0;
  transition: 0.2s;
  display: none;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}
#header .end .language-box .language-dropdown.show {
  display: block;
  opacity: 1;
}
#header .end .language-box .language-dropdown ul li a {
  min-width: 150px;
  padding: 5px 10px;
  color: #fff;
  background-color: #073942;
}
#header .end .language-box .language-dropdown ul li a.active {
  background-color: #4abac7;
}
#header .end .language-box .language-dropdown ul li a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
#header .end .language-box .language-dropdown ul li a:hover {
  background-color: #4abac7;
}
#header .end .menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-color: transparent;
  border-radius: 4px;
  display: none;
  gap: 5px;
}
#header .end .menu-btn .bar {
  transition: 0.2s;
  width: 25px;
  height: 3px;
  border-radius: 30px;
  background-color: #fff;
}

#rtl #header .language-box .language-dropdown {
  right: unset;
  left: 0;
}
#rtl #header .nav ul li a::before {
  left: unset;
  right: 0;
}

@media (max-width: 1200px) {
  #header {
    width: 100vw;
    left: 0;
    padding: 0 10px;
  }
  #header .logo {
    width: 140px;
  }
}
@media (max-width: 1000px) {
  #header .nav {
    position: absolute;
    overflow: hidden;
    width: calc(100% - 20px);
    left: 50%;
    translate: -50%;
    top: calc(100% + 10px);
    border-radius: 4px;
    max-width: 500px;
    display: none;
    animation: showupNav 0.3s forwards;
  }
  @keyframes showupNav {
    0% {
      opacity: 0;
      translate: -50% 10px;
    }
    100% {
      opacity: 1;
      translate: -50% 0;
    }
  }
  #header .nav.active {
    display: block;
  }
  #header .nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #header .nav ul li {
    width: 100%;
  }
  #header .nav ul li a {
    padding: 5px 10px;
    background-color: #073942;
  }
  #header .nav ul li a:hover {
    background-color: #4abac7;
  }
  #header .nav ul li:not(:last-of-type) a {
    border-bottom: 1px solid rgba(221, 221, 221, 0.1843137255);
  }
  #header .nav ul li.dropdown-group > a {
    justify-content: space-between;
  }
  #header .nav ul li.dropdown-group .dropdown {
    width: 100%;
    position: static;
    border-radius: 0;
    animation: none;
  }
  #header .end .menu-btn {
    display: flex;
    transition: 0.7s;
  }
  #header .end .menu-btn.active {
    transform: rotate(360deg);
  }
  #header .end .menu-btn.active .bar {
    width: 0;
  }
  #header .end .menu-btn.active .bar:first-child {
    width: 25px;
    rotate: 45deg;
    translate: 0 8px;
  }
  #header .end .menu-btn.active .bar:last-child {
    width: 25px;
    rotate: -45deg;
    translate: 0 -8px;
  }
}
@media (max-width: 480px) {
  #header {
    height: 60px;
  }
  #header .header-content {
    padding: 0;
  }
}
#footer {
  background-color: #416063;
  color: #fff;
  padding: 50px;
  z-index: 2;
}
#footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#footer a {
  color: #fff;
}
#footer .start-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#footer .start-side .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.5/1;
  max-width: 280px;
}
#footer .start-side .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer .start-side .description {
  font-weight: 700;
}
#footer .top {
  display: flex;
}
#footer .top aside {
  flex: 1;
  padding: 0 30px;
}
#footer .top aside:first-child {
  padding-left: 0;
}
#footer .top aside:not(:last-child) {
  border-right: 1px solid rgba(221, 221, 221, 0.3960784314);
}
#footer .top .quick-links ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 200px;
}
#footer .top .quick-links ul li a {
  padding: 5px 0;
  font-size: 14px;
}
#footer .top .quick-links ul li a:hover {
  translate: -5px 0;
}
#footer .top .contact-side {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#footer .top .contact-side .contact-item {
  position: relative;
  min-width: 150px;
  flex-shrink: 0;
}
#footer .top .contact-side .contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: #4abac7;
}
#footer .top .contact-side .contact-item .title {
  font-size: 18px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
#footer .top .contact-side .contact-item .title i {
  font-size: 14px;
}
#footer .top .contact-side .contact-item .value {
  font-size: 13px;
  white-space: nowrap;
}
#footer .top .contact-side .social-media-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer .top .contact-side .social-media-list .social-media-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid transparent;
}
#footer .top .contact-side .social-media-list .social-media-icon:hover {
  border-color: #fff;
}
#footer .top .contact-side .social-media-list .social-media-icon i {
  font-size: 20px;
}
#footer .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(221, 221, 221, 0.3960784314);
  padding-top: 20px;
}
#footer .bottom .copyright {
  text-align: center;
}

#rtl #footer .top aside:first-child {
  padding-left: 30px;
  padding-right: 0;
}
#rtl #footer .top aside:not(:last-child) {
  border-right: none;
  border-left: 1px solid rgba(221, 221, 221, 0.3960784314);
}
#rtl #footer .top .quick-links ul li a i {
  rotate: 180deg;
}

@media (max-width: 1000px) {
  #footer .top {
    flex-direction: column;
    gap: 20px;
  }
  #footer .top aside {
    border: none !important;
    padding: 0;
  }
  #footer .top aside:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(221, 221, 221, 0.3960784314) !important;
  }
}
@media (max-width: 480px) {
  #footer {
    padding: 20px;
  }
  #footer .top aside {
    text-align: center;
  }
  #footer .top .start-side {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px !important;
  }
  #footer .top .quick-links ul li {
    width: 50%;
  }
  #footer .top .contact-side {
    flex-direction: column;
  }
  #footer .top .contact-side .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer .top .contact-side .contact-item::before {
    width: 50%;
    left: 50%;
    translate: -50% 0;
  }
}
.slider {
  position: relative;
  width: 100%; /* ياخد 90% من عرض الصفحة أو الكونتينر */
  aspect-ratio: 16/6; /* يحافظ على نسبة العرض/الارتفاع */
  overflow: hidden;
  border-radius: 4px;
  min-height: 500px;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 100%; /* كل صورة تاخد 100% من عرض السلايدر */
  height: 100%;
  object-fit: cover;
  flex-shrink: 0; /* متضغطش */
}

.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots button {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s;
}

.dots button.active {
  background: #4abac7;
}

.home-page {
  position: relative;
}
.home-page .page-content {
  position: relative;
  z-index: 2;
}
.home-page #home-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #222;
  padding: 50px;
}
.home-page #home-slider .slider-content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page #home-slider .slider-content .side {
  display: flex;
  align-items: center;
}
.home-page #home-slider .slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: 0.2s;
  display: none;
  align-items: center;
  padding: 0 100px;
}
.home-page #home-slider .slide .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s linear;
  align-items: center;
  animation: showBg 1s forwards;
}
@keyframes showBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-page #home-slider .slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  scale: 1.1;
  filter: brightness(0.7);
}
.home-page #home-slider .slide .content {
  transition: 0.4s;
  z-index: 2;
  color: #fff;
}
.home-page #home-slider .slide .content .title {
  max-width: 500px;
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 50px;
  transition: 0.3s;
  opacity: 0;
}
.home-page #home-slider .slide .content .description {
  max-width: 500px;
  transition: 0.3s;
  opacity: 0;
}
.home-page #home-slider .slide.active {
  display: flex;
}
.home-page #home-slider .slide.active .bg img {
  animation: animateSlideImage 5s alternate forwards;
}
@keyframes animateSlideImage {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
.home-page #home-slider .slide.active .content .title {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.3s ease forwards;
}
.home-page #home-slider .slide.active .content .description {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.6s ease forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-page #home-slider .slide.slide-end .bg {
  filter: brightness(0);
}
.home-page #home-slider .slide.slide-end .content {
  opacity: 0;
  scale: 0.9;
}
.home-page #home-slider .nav-list .nav-item {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4235294118);
}
.home-page #home-slider .nav-list .nav-item:not(.active) {
  color: #fff;
}
.home-page #home-slider .social-media {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home-page #home-slider .social-media .social-media-icon {
  position: relative;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4235294118);
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page #home-slider .social-media .social-media-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 30px;
  aspect-ratio: 1/1;
  border: 2px solid #4abac7;
  transform: rotate(45deg);
  border-radius: 4px;
  scale: 0;
  transition: 0.3s;
}
.home-page #home-slider .social-media .social-media-icon:hover {
  color: #4abac7;
}
.home-page #home-slider .social-media .social-media-icon:hover::before {
  rotate: 360deg;
  scale: 1;
}
.home-page #home-slider .highlighted-info-list {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #eee;
  display: flex;
  gap: 1px;
  z-index: 2;
}
.home-page #home-slider .highlighted-info-list .highlighted-info-item {
  padding: 20px;
  background-color: #fff;
  min-width: 220px;
  cursor: pointer;
}
.home-page #home-slider .highlighted-info-list .highlighted-info-item .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.home-page #home-slider .highlighted-info-list .highlighted-info-item .value {
  margin-bottom: 10px;
  font-weight: 700;
}
.home-page #home-slider .highlighted-info-list .highlighted-info-item.active .title {
  color: #4abac7;
}
.home-page .about-section {
  position: relative;
}
.home-page .about-section .section-content {
  display: flex;
  gap: 50px;
}
.home-page .about-section .section-content .sides {
  display: flex;
  align-items: center;
  gap: 100px;
}
.home-page .about-section .section-content .sides .side {
  flex: 1;
}
.home-page .about-section .section-content .sides .text-side {
  transition: 0.5s;
}
.home-page .about-section .section-content .sides .text-side .section-title {
  width: fit-content;
  transition: 0.3s;
  font-size: 30px;
}
.home-page .about-section .section-content .sides .text-side .section-description {
  transition: 0.3s;
}
.home-page .about-section .section-content .sides .text-side .link-btn {
  margin-top: 50px;
}
.home-page .about-section .section-content .sides .image-side {
  position: relative;
  aspect-ratio: 1/1;
}
.home-page .about-section .section-content .sides .image-side .image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  transition: 0.5s;
}
.home-page .about-section .section-content .sides .image-side .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .about-section .section-content .sides .image-side .logo {
  width: 200px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 100%;
  right: 100%;
  translate: 80% -80%;
}
.home-page .services-section {
  position: relative;
}
.home-page .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.home-page .services-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg-2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.home-page .services-section .section-content {
  display: flex;
  gap: 50px;
}
.home-page .services-section .section-content .slides-side .slide {
  display: flex;
  gap: 50px;
  display: none;
  transition: 0.3s;
  min-height: 400px;
}
.home-page .services-section .section-content .slides-side .slide.active {
  display: flex;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item::before {
  animation: showServiceCircle 1s 0.5s forwards;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item .card {
  animation: showServiceCard 1s forwards;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item:nth-child(2)::before {
  animation: showServiceCircle 1s 1s forwards;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item:nth-child(2) .card {
  animation: showServiceCard 1s 0.5s forwards;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item:nth-child(3)::before {
  animation: showServiceCircle 1s 1.5s forwards;
}
.home-page .services-section .section-content .slides-side .slide.active .service-item:nth-child(3) .card {
  animation: showServiceCard 1s 1s forwards;
}
@keyframes showServiceCard {
  0% {
    translate: 0 100px;
    opacity: 0;
    scale: 0.95;
  }
  50% {
    translate: 0 30px;
    opacity: 1;
    scale: 1.1;
  }
  100% {
    translate: 0 0;
    opacity: 1;
    scale: 1;
  }
}
@keyframes showServiceCircle {
  0% {
    opacity: 0;
    scale: 0.8;
  }
  100% {
    opacity: 0.5;
    scale: 1;
  }
}
.home-page .services-section .section-content .slides-side .slide.slide-end {
  opacity: 0 !important;
  scale: 0.95;
}
.home-page .services-section .section-content .slides-side .slide .service-item {
  position: relative;
  flex: 1;
}
.home-page .services-section .section-content .slides-side .slide .service-item .card {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #eee;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1254901961);
  padding: 20px;
  border-bottom: 15px solid #416063;
  z-index: 2;
  translate: 0 30px;
  opacity: 0;
  transition: 0.2s;
}
.home-page .services-section .section-content .slides-side .slide .service-item .card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.0823529412);
}
.home-page .services-section .section-content .slides-side .slide .service-item .card:hover .icon i {
  scale: 1.2;
}
.home-page .services-section .section-content .slides-side .slide .service-item::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  translate: -50% 0;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  opacity: 0.5;
  opacity: 0;
  background-color: #4abac7;
}
.home-page .services-section .section-content .slides-side .slide .service-item .icon {
  position: relative;
  color: #4abac7;
  font-size: 50px;
  width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.home-page .services-section .section-content .slides-side .slide .service-item .icon i {
  position: relative;
  transition: 0.5s;
}
.home-page .services-section .section-content .slides-side .slide .service-item .icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -10px;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  opacity: 0.1;
  background-color: #4abac7;
}
.home-page .services-section .section-content .slides-side .slide .service-item:nth-child(2) .card {
  border-bottom-color: #4abac7;
}
.home-page .services-section .section-content .slides-side .slide .service-item:nth-child(2) .card .icon {
  color: #416063;
}
.home-page .services-section .section-content .slides-side .slide .service-item:nth-child(2)::before {
  bottom: unset;
  top: -10%;
}
.home-page .services-section .section-content .slides-side .slide .service-item .title {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 700;
}
.home-page .services-section .section-content .slides-side .slide .service-item .description {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 30px;
}
.home-page .services-section .section-content .slides-side .slide .service-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  margin-top: auto;
}
.home-page .projects-section .section-content {
  display: flex;
  gap: 50px;
}
.home-page .projects-section .section-content .sides {
  display: flex;
  gap: 50px;
}
.home-page .projects-section .section-content .text-side {
  padding: 50px 0;
  width: 50%;
}
.home-page .projects-section .section-content .text-side a {
  margin-top: 50px;
}
.home-page .projects-section .section-content .slides-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.home-page .projects-section .section-content .slides-side .slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}
.home-page .projects-section .section-content .slides-side .slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}
.home-page .projects-section .section-content .slides-side .slides .slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}
.home-page .projects-section .section-content .slides-side .slides .slide.slide-left {
  transform: translateX(-100%);
}
.home-page .projects-section .section-content .slides-side .slides .slide.slide-right {
  transform: translateX(100%);
}
.home-page .projects-section .section-content .slides-side .slides .slide .slide-title {
  margin-bottom: 20px;
  font-size: 16px;
  color: #777;
}
.home-page .projects-section .section-content .slides-side .slides .slide .image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .projects-section .section-content .slides-side .slides .slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .projects-section .section-content .slides-side .slides .slide .image.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.home-page .projects-section .section-content .slides-side .arrows {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-page .projects-section .section-content .slides-side .arrows .arrow-btn {
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: 0.2s;
}
.home-page .projects-section .section-content .slides-side .arrows .arrow-btn:hover {
  background-color: #eee;
}
.home-page .projects-section .section-content .slides-side .arrows .arrow-btn i {
  font-size: 20px;
}
.home-page .news-section {
  position: relative;
}
.home-page .news-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: 0;
  height: 80%;
  aspect-ratio: 1/2;
  background: url("./media/images/section-bg-3.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.home-page .news-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  height: 80%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg-2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.home-page .news-section .section-content {
  display: flex;
  gap: 50px;
}
.home-page .news-section .section-content .slides-side {
  flex: 1;
}
.home-page .news-section .section-content .slides-side .slide {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  display: none;
  transition: 0.3s;
  margin-top: 0;
}
.home-page .news-section .section-content .slides-side .slide .news-item {
  opacity: 0;
  translate: 40px 0;
}
.home-page .news-section .section-content .slides-side .slide .news-item .image,
.home-page .news-section .section-content .slides-side .slide .news-item .details,
.home-page .news-section .section-content .slides-side .slide .news-item .highlight-box {
  transition: 0.3s;
}
.home-page .news-section .section-content .slides-side .slide.active {
  display: grid;
}
.home-page .news-section .section-content .slides-side .slide.active .news-item {
  animation: showNewsItem 1s forwards;
}
.home-page .news-section .section-content .slides-side .slide.active .news-item:nth-child(2) {
  animation: showNewsItem 1s 0.4s forwards;
}
.home-page .news-section .section-content .slides-side .slide.active .news-item:nth-child(3) {
  animation: showNewsItem 1s 0.8s forwards;
}
@keyframes showNewsItem {
  0% {
    opacity: 0;
    translate: 40px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.home-page .news-section .section-content .slides-side .slide.slide-end {
  opacity: 0 !important;
}
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item .image,
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item .details,
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item .highlight-box {
  opacity: 0;
  translate: 0 20px;
}
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item:nth-child(2) .image,
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item:nth-child(2) .details,
.home-page .news-section .section-content .slides-side .slide.slide-end .news-item:nth-child(2) .highlight-box {
  translate: 0 -20px;
}
.home-page .partners-section {
  position: relative;
}
.home-page .partners-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.home-page .partners-section .section-content {
  display: flex;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.home-page .partners-section .section-content .slides-side {
  flex: 1;
}
.home-page .partners-section .section-content .slides-side .slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  display: none;
  transition: 0.3s;
  overflow: hidden;
  padding: 20px;
}
.home-page .partners-section .section-content .slides-side .slide.active {
  display: grid;
}
.home-page .partners-section .section-content .slides-side .slide.active .partner-item {
  opacity: 0;
  animation: showPartner 1s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.active .partner-item:nth-child(2) {
  animation: showPartner 1s 0.2s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.active .partner-item:nth-child(3) {
  animation: showPartner 1s 0.4s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.active .partner-item:nth-child(4) {
  animation: showPartner 1s 0.6s forwards;
}
@keyframes showPartner {
  0% {
    translate: 300px 0;
    scale: 0.8;
    opacity: 0;
    filter: saturate(0) brightness(1.2);
  }
  50% {
    translate: 0 0;
    scale: 1.2;
    opacity: 1;
    filter: saturate(0) brightness(1.2);
  }
  100% {
    translate: 0 0;
    scale: 1;
    opacity: 1;
    filter: saturate(1) brightness(1);
  }
}
.home-page .partners-section .section-content .slides-side .slide.slide-end {
  display: grid;
  opacity: 0 !important;
}
.home-page .partners-section .section-content .slides-side .slide.slide-end .partner-item .image {
  animation: hidePartner 0.2s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.slide-end .partner-item:nth-child(2) .image {
  animation: hidePartner 0.2s 0.1s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.slide-end .partner-item:nth-child(3) .image {
  animation: hidePartner 0.2s 0.2s forwards;
}
.home-page .partners-section .section-content .slides-side .slide.slide-end .partner-item:nth-child(4) .image {
  animation: hidePartner 0.2s 0.3s forwards;
}
@keyframes hidePartner {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0;
    opacity: 0;
  }
}
.home-page .partners-section .section-content .slides-side .slide .partner-item {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #fff;
}
.home-page .partners-section .section-content .slides-side .slide .partner-item:hover {
  border-color: #ddd;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1450980392);
}
.home-page .partners-section .section-content .slides-side .slide .partner-item:hover .image img {
  scale: 0.9;
}
.home-page .partners-section .section-content .slides-side .slide .partner-item .image {
  width: 100%;
  aspect-ratio: 2/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .partners-section .section-content .slides-side .slide .partner-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.2s;
}

#rtl .home-page #home-slider .social-media {
  right: unset;
  left: 100px;
}
#rtl .home-page #home-slider .highlighted-info-list {
  right: unset;
  left: 0;
}
#rtl .home-page .about-section .section-content .sides .image-side .logo {
  right: unset;
  left: 100%;
  translate: -80% -80%;
}
#rtl .home-page .about-section .section-content .sides .text-side .section-title::after {
  right: unset;
  left: 0;
}
#rtl .home-page .about-section .section-content .sides .text-side .link-btn i {
  rotate: 180deg;
}
#rtl .home-page .services-section .section-content .slides-side .slide .service-item a i {
  rotate: 180deg;
}
#rtl .home-page .projects-section .section-content .text-side a i {
  rotate: 180deg;
}
#rtl .home-page .projects-section .section-content .slides-side .arrows {
  flex-direction: row-reverse;
}
#rtl .home-page .partners-section .section-content .link-btn i {
  rotate: 180deg;
}

@media (max-width: 1000px) {
  .home-page .about-section .section-content .sides {
    flex-direction: column;
  }
  .home-page .services-section .section-content .slides-side .slide {
    flex-wrap: wrap;
  }
  .home-page .services-section .section-content .slides-side .slide .service-item {
    min-width: 250px;
  }
  .home-page .projects-section .section-content .sides {
    flex-direction: column;
  }
  .home-page .projects-section .section-content .sides .text-side,
  .home-page .projects-section .section-content .sides .slides-side {
    width: 100%;
  }
  .home-page .projects-section .section-content .sides .text-side {
    padding: 0;
  }
}
@media (max-width: 800px) {
  .home-page #home-slider {
    padding: 20px;
  }
  .home-page #home-slider .slider-content .side {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }
  .home-page #home-slider .slider-content .side .slide {
    padding: 0;
  }
  .home-page #home-slider .slider-content .side .slide .content .title {
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 50px;
  }
  .home-page #home-slider .slider-content .social-media-side {
    display: none;
  }
  .home-page .highlighted-info-list {
    width: 100%;
  }
  .home-page .highlighted-info-list .highlighted-info-item {
    padding: 10px !important;
    flex: 1;
    min-width: unset !important;
  }
  .home-page .highlighted-info-list .highlighted-info-item .value {
    font-size: 12px !important;
  }
  .home-page .partners-section .section-content .slide {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 550px) {
  .home-page .news-section .section-content .slides-side .slide {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}
@media (max-width: 480px) {
  .home-page .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .home-page .section .section-content {
    gap: 20px;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .home-page .about-section .section-content .sides {
    gap: 50px;
  }
  .home-page .about-section .section-content .sides .image-side .logo {
    display: none;
  }
  .home-page .services-section .section-content .slides-side .slide {
    gap: 20px;
  }
  .home-page .services-section .section-content .slides-side .slide .service-item:nth-child(2)::before {
    top: unset;
    bottom: -10%;
  }
  .home-page .projects-section .section-content .sides .text-side a {
    margin-top: 20px;
  }
  .home-page .projects-section .section-content .sides .slides-side {
    gap: 20px;
  }
  .home-page .projects-section .section-content .sides .slides-side .arrows {
    justify-content: flex-end;
    gap: 15px;
  }
  .home-page .projects-section .section-content .sides .slides-side .arrows .arrow-btn {
    width: 35px;
  }
  .home-page .projects-section .section-content .sides .slides-side .arrows .arrow-btn i {
    font-size: 15px;
  }
  .home-page .partners-section .section-content .slides-side .slide {
    padding: 10px;
    gap: 20px;
  }
}
.partners-page .partners-list {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.partners-page .partners-list .partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-page .partners-list .partner-item .image {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}
.partners-page .partners-list .partner-item .image::before {
  position: absolute;
  content: "";
  z-index: -1;
  rotate: 20deg;
  top: 20%;
  translate: 0 -50%;
  left: -150%;
  width: 100%;
  height: 150%;
  background-color: #4abac7;
  transition: 0.2s;
}
.partners-page .partners-list .partner-item .image:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.137254902);
}
.partners-page .partners-list .partner-item .image:hover::before {
  left: -50%;
}
.partners-page .partners-list .partner-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners-page .partners-list .partner-item .partner-name {
  text-align: center;
}

@media (max-width: 480px) {
  .partners-page .partners-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .partners-page .partners-list .partner-item .image {
    margin-bottom: 10px;
  }
  .partners-page .partners-list .partner-item .partner-name {
    font-size: 12px;
  }
}
.about-page .about-section .section-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.about-page .about-section .section-content .start {
  flex: 1;
}
.about-page .about-section .section-content .start .names {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.about-page .about-section .section-content .end {
  position: relative;
  flex: 1;
  aspect-ratio: 1/1;
  width: 50%;
}
.about-page .about-section .section-content .end .image {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-page .about-section .section-content .end .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-section .section-content .end .image.image-1 {
  width: 63%;
  top: 0;
  left: 0;
  aspect-ratio: 1/1;
}
.about-page .about-section .section-content .end .image.image-2 {
  width: 65%;
  bottom: 0;
  right: 0;
  aspect-ratio: 2/1.5;
}
.about-page .about-section .section-content .end .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 30%;
  aspect-ratio: 1/1;
}
.about-page .chairman-section {
  background-color: #49949d;
}
.about-page .chairman-section .section-content {
  display: flex;
  gap: 50px;
}
.about-page .chairman-section .section-content aside {
  width: 50%;
  color: #fff;
}
.about-page .chairman-section .section-content .end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-page .chairman-section .section-content .end .image {
  margin: 0 auto;
  max-width: 400px;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border: 8px solid #073942;
  border-radius: 15px;
}
.about-page .chairman-section .section-content .end .image img {
  width: 100%;
  object-fit: contain;
}
.about-page .chairman-section .section-content .end p {
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
}
.about-page .directors-section {
  position: relative;
}
.about-page .directors-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  height: 80%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.about-page .directors-section .directors-list {
  display: flex;
  gap: 50px;
}
.about-page .directors-section .directors-list .director-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}
.about-page .directors-section .directors-list .director-card .image {
  background-color: #49949d;
  width: 100%;
  aspect-ratio: 1/1.1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about-page .directors-section .directors-list .director-card .image img {
  height: 100%;
  object-fit: contain;
}
.about-page .directors-section .directors-list .director-card .details {
  background-color: #fff;
  padding: 20px;
}
.about-page .directors-section .directors-list .director-card .details .title {
  position: relative;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-page .directors-section .directors-list .director-card .details .title::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  width: 70px;
  height: 3px;
  border-radius: 30px;
  background-color: #4abac7;
}
.about-page .directors-section .directors-list .director-card .details .job-title {
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 700;
}
.about-page .directors-section .directors-list .director-card .details .description {
  opacity: 0.5;
  font-size: 13px;
}
.about-page .organizational-structure-section {
  border-top: 1px solid #ddd;
}
.about-page .organizational-structure-section img {
  width: 100%;
}

#rtl .about-page .directors-section .directors-list .director-card .title::before {
  left: unset;
  right: 0;
}

@media (max-width: 800px) {
  .about-page .about-section .section-content,
  .about-page .chairman-section .section-content {
    flex-direction: column;
  }
  .about-page .about-section .section-content aside,
  .about-page .chairman-section .section-content aside {
    width: 100% !important;
  }
  .about-page .about-section .section-content {
    gap: 20px;
  }
  .about-page .chairman-section .section-content {
    gap: 20px;
  }
  .about-page .chairman-section .section-content aside {
    flex: unset;
  }
  .about-page .directors-section .directors-list {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .about-page .directors-section .directors-list {
    gap: 20px;
  }
}
.certificates-page .certificates-section .certificates-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.certificates-page .certificates-section .certificates-box .certificates-list {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.certificates-page .certificates-section .certificates-box .certificates-list .certificate-item {
  border: 1px solid #4abac7;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4abac7;
  padding: 5px 10px;
}
.certificates-page .certificates-section .certificates-box .certificates-list .certificate-item.active, .certificates-page .certificates-section .certificates-box .certificates-list .certificate-item:hover {
  background-color: #4abac7;
  color: #fff;
}
.certificates-page .certificates-section .certificates-box .certificate-preview {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.certificates-page .certificates-section .certificates-box .certificate-preview img {
  width: 100%;
  display: none;
}
.certificates-page .certificates-section .certificates-box .certificate-preview img.show {
  display: block;
}

@media (max-width: 850px) {
  .certificates-page .certificates-section .certificates-box {
    margin-top: 20px;
    gap: 20px;
  }
  .certificates-page .certificates-section .certificates-box .certificates-list {
    gap: 10px;
  }
  .certificates-page .certificates-section .certificates-box .certificates-list .certificate-item {
    width: fit-content;
    padding: 3px 7px;
    font-size: 12px;
    border-width: 1px;
  }
}
.financial-reports-page .financial-reports-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 480px) {
  .financial-reports-page .financial-reports-section .section-content {
    gap: 30px;
  }
}
.services-page .services-section {
  position: relative;
}
.services-page .services-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  height: 50%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.services-page .services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20%;
  height: 50%;
  aspect-ratio: 1/1;
  background: url("./media/images/section-bg-3.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
.services-page .services-section .section-content .services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.services-page .services-section .section-content .services-list .service-card {
  border-bottom: 5px solid #4abac7;
  min-height: 400px;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
}
.services-page .services-section .section-content .services-list .service-card .image {
  aspect-ratio: 2/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-page .services-section .section-content .services-list .service-card .details {
  padding: 20px;
}
.services-page .services-section .section-content .services-list .service-card .details .title {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.services-page .services-section .section-content .services-list .service-card .details .title h1 {
  font-size: 16px;
  font-weight: 700;
}
.services-page .services-section .section-content .services-list .service-card .details .title i {
  font-size: 20px;
  padding-top: 5px;
  color: #4abac7;
}
.services-page .services-section .section-content .services-list .service-card .details .description {
  font-size: 12px;
}

.projects-page .projects-section .projects-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.projects-page .projects-section .projects-box .projects-categories {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.projects-page .projects-section .projects-box .projects-categories .project-category {
  border: 1px solid #4abac7;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4abac7;
  padding: 5px 10px;
  font-weight: 500;
}
.projects-page .projects-section .projects-box .projects-categories .project-category.active, .projects-page .projects-section .projects-box .projects-categories .project-category:hover {
  background-color: #4abac7;
  color: #fff;
}
.projects-page .projects-section .projects-box .projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.projects-page .projects-section .projects-box .projects-list .project-item {
  position: relative;
  aspect-ratio: 1/1.1;
  overflow: hidden;
  border-radius: 4px;
}
.projects-page .projects-section .projects-box .projects-list .project-item:hover img {
  scale: 1.03;
  filter: brightness(1.3);
}
.projects-page .projects-section .projects-box .projects-list .project-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.projects-page .projects-section .projects-box .projects-list .project-item .shadow {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  box-shadow: 0 -150px 150px rgba(0, 0, 0, 0.8784313725) inset;
}
.projects-page .projects-section .projects-box .projects-list .project-item .details {
  position: relative;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
}
.projects-page .projects-section .projects-box .projects-list .project-item .details .category {
  color: #4abac7;
  font-size: 13px;
}
.projects-page .projects-section .projects-box .projects-list .project-item .details .title {
  font-size: 16px;
  font-weight: 700;
}
.projects-page .projects-section .projects-box .projects-list .project-item .details .city {
  font-size: 12px;
}

@media (max-width: 480px) {
  .projects-page .projects-section .projects-box {
    margin-top: 20px;
    gap: 20px;
  }
  .projects-page .projects-section .projects-box .projects-list {
    gap: 20px;
  }
}
.project-page .project-section .slider {
  margin-bottom: 50px;
}
.project-page .project-section .project-details-box {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
.project-page .project-section .project-details-box .start {
  flex: 2;
}
.project-page .project-section .project-details-box .start .title {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 700;
}
.project-page .project-section .project-details-box .end {
  flex: 1;
  background-color: #073942;
  border-radius: 4px;
  padding: 20px 30px;
  color: #fff;
  height: fit-content;
  max-width: 400px;
}
.project-page .project-section .project-details-box .end > .title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.project-page .project-section .project-details-box .end .info-box {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}
.project-page .project-section .project-details-box .end .info-box:not(:last-child) {
  border-bottom: 1px solid rgba(221, 221, 221, 0.3764705882);
}
.project-page .project-section .project-details-box .end .info-box:last-child {
  padding-bottom: 0 !important;
}
.project-page .project-section .project-details-box .end .info-box .title {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  min-width: 130px;
}
.project-page .project-section .project-details-box .end .info-box .value {
  font-size: 13px;
  padding-top: 3px;
}
.project-page .project-section .project-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.project-page .project-section .project-links-list a {
  color: #4abac7;
}

#rtl .project-page .project-section .project-details-box .end .info-box .title {
  min-width: 100px;
}

@media (max-width: 1000px) {
  .project-page .project-section .project-details-box {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .project-page .project-section .slider {
    margin-bottom: 20px;
  }
  .project-page .project-section .project-details-box {
    gap: 20px;
    margin-bottom: 20px;
  }
  .project-page .project-section .project-details-box .end {
    padding: 20px;
  }
  .project-page .project-section .project-details-box .end > .title {
    margin-bottom: 0;
  }
  .project-page .project-section .project-links-list {
    gap: 20px;
  }
}
.news-section .section-content .news-list,
.news-section .section-content .slide,
.related-news-section .section-content .news-list,
.related-news-section .section-content .slide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.news-section .section-content .news-list .news-item,
.news-section .section-content .slide .news-item,
.related-news-section .section-content .news-list .news-item,
.related-news-section .section-content .slide .news-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 5px solid #4abac7;
  transition: 0.2s;
}
.news-section .section-content .news-list .news-item:hover,
.news-section .section-content .slide .news-item:hover,
.related-news-section .section-content .news-list .news-item:hover,
.related-news-section .section-content .slide .news-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.137254902);
}
.news-section .section-content .news-list .news-item:hover .image img,
.news-section .section-content .slide .news-item:hover .image img,
.related-news-section .section-content .news-list .news-item:hover .image img,
.related-news-section .section-content .slide .news-item:hover .image img {
  filter: brightness(1.2) saturate(1.2);
}
.news-section .section-content .news-list .news-item .image,
.news-section .section-content .slide .news-item .image,
.related-news-section .section-content .news-list .news-item .image,
.related-news-section .section-content .slide .news-item .image {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-section .section-content .news-list .news-item .image img,
.news-section .section-content .slide .news-item .image img,
.related-news-section .section-content .news-list .news-item .image img,
.related-news-section .section-content .slide .news-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.news-section .section-content .news-list .news-item .details,
.news-section .section-content .slide .news-item .details,
.related-news-section .section-content .news-list .news-item .details,
.related-news-section .section-content .slide .news-item .details {
  padding: 15px;
}
.news-section .section-content .news-list .news-item .details .date,
.news-section .section-content .slide .news-item .details .date,
.related-news-section .section-content .news-list .news-item .details .date,
.related-news-section .section-content .slide .news-item .details .date {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.news-section .section-content .news-list .news-item .details .date span,
.news-section .section-content .slide .news-item .details .date span,
.related-news-section .section-content .news-list .news-item .details .date span,
.related-news-section .section-content .slide .news-item .details .date span {
  font-weight: 500;
}
.news-section .section-content .news-list .news-item .details .date i,
.news-section .section-content .slide .news-item .details .date i,
.related-news-section .section-content .news-list .news-item .details .date i,
.related-news-section .section-content .slide .news-item .details .date i {
  font-size: 16px;
  color: #4abac7;
}
.news-section .section-content .news-list .news-item .details .title,
.news-section .section-content .slide .news-item .details .title,
.related-news-section .section-content .news-list .news-item .details .title,
.related-news-section .section-content .slide .news-item .details .title {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  font-weight: 700;
}
.news-section .section-content .news-list .news-item .details .description,
.news-section .section-content .slide .news-item .details .description,
.related-news-section .section-content .news-list .news-item .details .description,
.related-news-section .section-content .slide .news-item .details .description {
  font-size: 13px;
  opacity: 0.7;
}
.news-section .section-content .news-list .news-item .details a,
.news-section .section-content .slide .news-item .details a,
.related-news-section .section-content .news-list .news-item .details a,
.related-news-section .section-content .slide .news-item .details a {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 700;
}
.news-section .section-content .news-list .highlight-box,
.news-section .section-content .slide .highlight-box,
.related-news-section .section-content .news-list .highlight-box,
.related-news-section .section-content .slide .highlight-box {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 15px;
  background-color: #4abac7;
  border-bottom-right-radius: 10px;
  min-width: 100px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

#rtl .news-section .section-content .news-list .news-item .details a i,
#rtl .news-section .section-content .slide .news-item .details a i,
#rtl .related-news-section .section-content .news-list .news-item .details a i,
#rtl .related-news-section .section-content .slide .news-item .details a i {
  rotate: 180deg;
}
#rtl .news-section .section-content .news-list .news-item .highlight-box,
#rtl .news-section .section-content .slide .news-item .highlight-box,
#rtl .related-news-section .section-content .news-list .news-item .highlight-box,
#rtl .related-news-section .section-content .slide .news-item .highlight-box {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 10px !important;
}

@media (max-width: 480px) {
  .news-section .section-content .news-list,
  .news-section .section-content .slide,
  .related-news-section .section-content .news-list,
  .related-news-section .section-content .slide {
    margin-top: 20px;
    gap: 20px;
  }
}
.news-item-page .news-item-section {
  padding-bottom: 0;
}
.news-item-page .news-item-section .section-content .image {
  width: 100%;
  aspect-ratio: 2.5/1;
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
}
.news-item-page .news-item-section .section-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item-page .news-item-section .section-content .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4abac7;
  margin: 30px 0;
}
.news-item-page .news-item-section .section-content .date span {
  font-weight: 700;
}
.news-item-page .news-item-section .section-content .date i {
  font-size: 25px;
}

@media (max-width: 480px) {
  .news-item-page .news-item-section .section-content .date {
    margin: 20px 0;
  }
  .news-item-page .related-news-section .top {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-item-page .related-news-section .top .dots-list {
    height: fit-content;
  }
}
.committees-page .committees-section .committees-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.committees-page .committees-section .committees-box .committees-list {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.committees-page .committees-section .committees-box .committees-list .committee-item {
  border: 1px solid #4abac7;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4abac7;
  font-weight: 500;
  padding: 5px 10px;
}
.committees-page .committees-section .committees-box .committees-list .committee-item.active, .committees-page .committees-section .committees-box .committees-list .committee-item:hover {
  background-color: #4abac7;
  color: #fff;
}
.committees-page .committees-section .committees-box .committee-preview {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.committees-page .committees-section .committees-box .committee-preview img {
  width: 100%;
  display: none;
}
.committees-page .committees-section .committees-box .committee-preview img.show {
  display: block;
}
.committees-page .memorandum-of-association-section {
  padding-top: 0;
}

@media (max-width: 850px) {
  .committees-page .committees-section .committees-box {
    margin-top: 20px;
    gap: 20px;
  }
  .committees-page .committees-section .committees-box .committees-list {
    gap: 10px;
  }
  .committees-page .committees-section .committees-box .committees-list .committee-item {
    width: fit-content;
    padding: 3px 7px;
    font-size: 12px;
    border-width: 1px;
  }
}
.guidelines-page .guidelines-section .guidelines-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.guidelines-page .guidelines-section .guidelines-box .guidelines-list {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.guidelines-page .guidelines-section .guidelines-box .guidelines-list .guideline-item {
  border: 1px solid #4abac7;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4abac7;
  font-weight: 500;
  padding: 5px 10px;
}
.guidelines-page .guidelines-section .guidelines-box .guidelines-list .guideline-item.active, .guidelines-page .guidelines-section .guidelines-box .guidelines-list .guideline-item:hover {
  background-color: #4abac7;
  color: #fff;
}
.guidelines-page .guidelines-section .guidelines-box .guideline-preview {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.guidelines-page .guidelines-section .guidelines-box .guideline-preview img {
  width: 100%;
  display: none;
}
.guidelines-page .guidelines-section .guidelines-box .guideline-preview img.show {
  display: block;
}
.guidelines-page .memorandum-of-association-section {
  padding-top: 0;
}

@media (max-width: 850px) {
  .guidelines-page .guidelines-section .guidelines-box {
    margin-top: 20px;
    gap: 20px;
  }
  .guidelines-page .guidelines-section .guidelines-box .guidelines-list {
    gap: 10px;
  }
  .guidelines-page .guidelines-section .guidelines-box .guidelines-list .guideline-item {
    width: fit-content;
    padding: 3px 7px;
    font-size: 12px;
    border-width: 1px;
  }
}
.contact-page .contact-section .section-content {
  display: flex;
  padding: 50px;
  gap: 100px;
  border: 1px solid #f2e9e9;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.062745098);
  max-width: 1000px;
}
.contact-page .contact-section .section-content .side {
  max-width: 600px;
}
.contact-page .contact-section .section-content .form-side {
  flex: 3;
}
.contact-page .contact-section .section-content .form-side #contact-form .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-page .contact-section .section-content .form-side #contact-form .description {
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 40px;
}
.contact-page .contact-section .section-content .form-side #contact-form .submit-btn {
  width: 100%;
  height: 40px;
  color: #fff;
  border-radius: 4px;
  border: none;
  background-color: #4abac7;
  margin-top: 40px;
}
.contact-page .contact-section .section-content .form-side #contact-form .submit-btn .text {
  font-weight: 500;
}
.contact-page .contact-section .section-content .form-side #contact-form .submit-btn:hover {
  filter: brightness(1.1);
}
.contact-page .contact-section .section-content .info-side {
  flex: 2;
}
.contact-page .contact-section .section-content .info-side .logo {
  width: 100%;
  aspect-ratio: 2.5/1;
}
.contact-page .contact-section .section-content .info-side .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-page .contact-section .section-content .info-side .map-box {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.contact-page .contact-section .section-content .info-side .map-box iframe {
  width: 100%;
  height: 100%;
}
.contact-page .contact-section .section-content .info-side .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.contact-page .contact-section .section-content .info-side .info-item .icon {
  width: 30px;
  aspect-ratio: 1/1;
  border: 1px solid #4abac7;
  color: #4abac7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .contact-section .section-content .info-side .info-item .text {
  font-size: 14px;
}
.contact-page .contact-section .section-content .info-side .social-media-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.contact-page .contact-section .section-content .info-side .social-media-list .social-media-icon {
  font-size: 40px;
}
.contact-page .contact-section .section-content .info-side .social-media-list .social-media-icon:hover {
  color: #49949d;
}

@media (max-width: 1000px) {
  .contact-page .contact-section .section-content {
    flex-direction: column;
  }
  .contact-page .contact-section .section-content .side {
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .contact-page .contact-section {
    padding: 10px;
  }
  .contact-page .contact-section .section-content {
    padding: 30px;
  }
}
@font-face {
  font-family: "Janna Bold";
  src: url("assets/fonts/Janna LT Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Janna LT";
  src: url("assets/fonts/Janna LT Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  font-family: "Janna LT", Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  outline: none;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.modern-spinner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 5px;
}
.modern-spinner-box .modern-spinner {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: visible;
  animation: rotateModernSpinner 1.2s linear infinite;
}
@keyframes rotateModernSpinner {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.modern-spinner-box .modern-spinner circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 3;
  stroke: #416063;
  stroke-linecap: round;
  stroke-dasharray: 59px;
  stroke-dashoffset: 59px;
  animation: animateCircle 3s linear infinite;
}
@keyframes animateCircle {
  0%, 100% {
    stroke-dashoffset: 59px;
  }
  50% {
    stroke-dashoffset: 0;
  }
  50.1% {
    stroke-dashoffset: 118px;
  }
}

#main {
  flex: 1;
}
#main .page-top {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
#main .page-top .nav {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
#main .page-top .nav a {
  color: #fff;
}
#main .page-top .nav i {
  font-size: 14px;
}
#main .page-top .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: -1;
}
#main .page-top .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: showPageTopBg 1.2s forwards;
}
@keyframes showPageTopBg {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.06;
  }
}
#main .page-top .content {
  z-index: 2;
  text-align: center;
}
#main .page-top .content .nav {
  color: #4abac7;
  font-weight: 700;
}
#main .page-top .content .nav a {
  font-weight: 700;
  color: #4abac7;
}
#main .page-top .content .nav p {
  font-weight: 700;
}
#main .page-top .content .page-title {
  color: #fff;
  font-size: 30px;
  max-width: 700px;
  padding: 0 20px;
  font-weight: 700;
}
#main .page-content {
  background-color: #fff;
  overflow: hidden;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #4abac7;
  transition: 0.2s;
  cursor: pointer;
}

.two-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
  word-break: break-word;
}

.dropdown {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hide {
  display: none;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #073942;
  border-radius: 50%;
  border: none;
  color: #fff;
  border: 1px solid rgba(221, 221, 221, 0.5254901961);
  opacity: 0;
  scale: 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1294117647);
  transition: 0.2s;
  z-index: 2;
}
.scroll-to-top-btn i {
  font-size: 20px;
}
.scroll-to-top-btn:hover {
  background-color: #49949d;
}
.scroll-to-top-btn.scrolled {
  opacity: 1;
  scale: 1;
}

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: rgba(136, 136, 136, 0.1921568627);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: #416063;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.input-box {
  margin-bottom: 20px;
}
.input-box .input {
  display: flex;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}
.input-box .input .icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d7d7d7;
}
.input-box .input input,
.input-box .input textarea {
  border: none;
  outline: none;
  flex: 1;
  padding: 6px;
  border-radius: 4px;
}
.input-box .input input::placeholder,
.input-box .input textarea::placeholder {
  color: #d7d7d7;
}
.input-box .input input {
  height: 40px;
}
.input-box .input textarea {
  height: 150px;
  resize: vertical;
  max-height: 250px;
  min-height: 40px;
}

.input-message {
  color: rgb(255, 79, 79);
  font-size: 13px;
}

.hr {
  opacity: 0.4;
  margin: 20px 0;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.showup {
  opacity: 0;
  animation: showup 0.3s forwards;
}
@keyframes showup {
  0% {
    opacity: 0;
    translate: 0 10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

.pagination-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.pagination-box .pagination-btns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination-box .pagination-btns-list .pagination-btn {
  width: 35px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 16px;
  border: 1px solid transparent;
}
.pagination-box .pagination-btns-list .pagination-btn:not(.gap-btn):not(.active):hover {
  background-color: #ececec;
}
.pagination-box .pagination-btns-list .pagination-btn.active {
  border-color: #4abac7;
}

.nav-list {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-list .nav-item {
  position: relative;
  color: #000;
  border: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
  height: 25px;
}
.nav-list .nav-item::before {
  position: absolute;
  content: "";
  left: 50%;
  top: calc(100% + 5px);
  height: 0;
  width: 2px;
  translate: -50% 0;
  transition: 0.5s;
  border-radius: 20px;
  background-color: #ddd;
}
.nav-list .nav-item.active {
  color: #4abac7;
  margin-bottom: 80px;
  font-weight: 700;
}
.nav-list .nav-item.active::before {
  height: 80px;
}
.nav-list .nav-item:hover {
  color: #4abac7;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #073942;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .center {
  position: relative;
  width: 200px;
  aspect-ratio: 1/1;
}
#loader .center img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#loader .center .spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #ddd;
  border-radius: 50%;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotateLoader 0.7s linear infinite;
}
@keyframes rotateLoader {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

.report-item,
.file-item {
  width: 100%;
}
.report-item .report-box,
.report-item .file-box,
.file-item .report-box,
.file-item .file-box {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 20px;
}
.report-item .report-box .start,
.report-item .file-box .start,
.file-item .report-box .start,
.file-item .file-box .start {
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-item .report-box .start a,
.report-item .file-box .start a,
.file-item .report-box .start a,
.file-item .file-box .start a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}
.report-item .report-box .start a:hover,
.report-item .file-box .start a:hover,
.file-item .report-box .start a:hover,
.file-item .file-box .start a:hover {
  color: #27707f;
}
.report-item .report-box .start img,
.report-item .file-box .start img,
.file-item .report-box .start img,
.file-item .file-box .start img {
  width: 40px;
}
.report-item .report-box .end .download-btn,
.report-item .file-box .end .download-btn,
.file-item .report-box .end .download-btn,
.file-item .file-box .end .download-btn {
  background-color: #27707f;
  color: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: 500;
}
.report-item .report-box .end .download-btn i,
.report-item .file-box .end .download-btn i,
.file-item .report-box .end .download-btn i,
.file-item .file-box .end .download-btn i {
  transition: 0.2s;
}
.report-item .report-box .end .download-btn:hover,
.report-item .file-box .end .download-btn:hover,
.file-item .report-box .end .download-btn:hover,
.file-item .file-box .end .download-btn:hover {
  filter: brightness(1.2);
}

pre {
  white-space: pre-wrap; /* يخلي النص يلف */
  word-wrap: break-word; /* يكسر الكلمات الطويلة */
  max-width: 100%; /* مايتعداش عرض الحاوية */
}

.section {
  padding: 100px 50px;
  scroll-margin-top: 80px;
}
.section .section-content {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  z-index: 2;
}
.section .top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section .top .dots-list {
  height: 65px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section .top .dots-list .dot {
  display: flex;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
  transition: 0.3s;
}
.section .top .dots-list .dot:hover {
  background-color: #ccc;
}
.section .top .dots-list .dot.active {
  background-color: #4abac7;
}

.section-small-title {
  font-size: 14px;
  color: #4abac7;
}

.link-btn {
  padding: 5px 15px;
  background-color: #4abac7;
  color: #fff;
  border-radius: 4px;
  width: fit-content;
}
.link-btn:hover {
  filter: brightness(1.1);
}

.section-title {
  position: relative;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 60px;
  font-weight: 700;
}
.section-title::before {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "";
  width: 70px;
  height: 3px;
  border-radius: 30px;
  background-color: #4abac7;
}

.show-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.show-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.in-development-box {
  text-align: center;
  padding: 20px;
  font-size: 25px;
}

#rtl {
  direction: rtl;
}
#rtl #main .page-top .content .nav i {
  rotate: 180deg;
}
#rtl .input-box input {
  direction: rtl;
}
#rtl .section-title::before {
  left: unset;
  right: 0;
}

@media (max-width: 800px) {
  .section::before, .section::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 20px;
    scroll-margin-top: 60px;
  }
  .section .top {
    flex-direction: column;
    gap: 0;
  }
  .section .top .dots-list {
    height: fit-content;
    margin-bottom: 20px;
  }
  .section .section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .section .section-title::before {
    bottom: -10px;
  }
  .section .section-description {
    font-size: 14px;
  }
  .pagination-box {
    margin-top: 20px;
  }
  .report-item .report-box {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .report-item .report-box .start {
    gap: 8px;
  }
  .report-item .report-box .start img {
    width: 30px;
  }
  #main .page-top {
    padding-top: 60px;
    height: 300px;
  }
  #main .page-top .bg {
    height: 300px;
  }
  #main .page-top .content .page-title {
    font-size: 22px;
  }
}

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