@import "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap";
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease-in-out;
}
.header-scrolled {
  background: #0f172a99;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px #0000004d;
  top: 1.5%;
  width: 90%;
  left: 5%;
  border-radius: 10px;
}
[dir="rtl"] .header-scrolled {
  left: auto;
  right: 5%;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  flex-shrink: 0;
}
.logo-image {
  width: 60px;
  height: auto;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.desktop-nav a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.header-scrolled .desktop-nav a {
  color: var(--light-gray);
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}
[dir="rtl"] .desktop-nav a:after {
  left: auto;
  right: 0;
}
.desktop-nav a:hover {
  color: var(--primary-blue);
}
.desktop-nav a:hover:after {
  width: 100%;
}
.language-selector {
  position: relative;
  margin-left: 2.5rem;
}
[dir="rtl"] .language-selector {
  margin-left: 0;
  margin-right: 2.5rem;
}
.language-button {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--dark-gray);
  color: var(--dark-gray);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-scrolled .language-button {
  border-color: var(--light-gray);
  color: var(--light-gray);
}
.language-button:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}
.language-button span {
  font-size: 0.9rem;
}
.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border-radius: 4px;
  margin-top: 0.5rem;
  box-shadow: 0 2px 10px #0000004d;
  z-index: 1000;
  min-width: 120px;
  overflow: hidden;
}
[dir="rtl"] .language-dropdown {
  left: auto;
  right: 0;
}
.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 0.9rem;
}
[dir="rtl"] .language-option {
  text-align: right;
}
.language-option:hover {
  background: #4c9eff1a;
  color: var(--primary-blue);
}
.language-option.active {
  color: var(--primary-blue);
  background: #4c9eff0d;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--dark-gray);
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: var(--surface);
  padding: 6rem 2rem 2rem;
  box-shadow: -2px 0 10px #0000004d;
}
[dir="rtl"] .mobile-menu {
  right: auto;
  left: 0;
  box-shadow: 2px 0 10px #0000004d;
}
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-language-selector {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}
.mobile-language-selector .language-option {
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--dark-gray);
}
@media (max-width: 968px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .header-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }
  .logo-placeholder {
    font-size: 1.25rem;
  }
  .mobile-menu {
    max-width: 100%;
  }
}
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  perspective: 1000px;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://alsoquor.com/wp-content/uploads/2025/01/gallery8.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 10%;
  max-width: 800px;
}
.hero-content.rtl {
  margin-left: auto;
  text-align: right;
}
.hero-title {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: var(--font-bold);
  transform-origin: center;
}
.hero-subtitle {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
  transform-origin: center;
}
.hero-description {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
  transform-origin: center;
}
.hero-content.rtl .hero-description {
  margin-left: auto;
}
@media screen and (max-width: 968px) {
  .hero-content {
    padding: 0 8%;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-content {
    padding: 0 6%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.75rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}
.about {
  padding: 6rem 2rem;
  background-color: var(--light-blue);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-header {
  margin-bottom: 4rem;
}
.about.rtl .about-header {
  text-align: right;
}
.about-header h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}
.about-header .subtitle {
  font-size: 1.5rem;
  color: var(--medium-gray);
  max-width: 600px;
}
.about.rtl .about-header .subtitle {
  margin-left: auto;
  margin-right: 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}
.about.rtl .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}
.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon {
  color: #fff;
  width: 24px;
  height: 24px;
}
.feature-item p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-gray);
}
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px #0000001a;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 968px) {
  .about {
    padding: 4rem 1.5rem;
  }
  .about-header h2 {
    font-size: 2.8rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    order: -1;
  }
}
@media screen and (max-width: 480px) {
  .about {
    padding: 3rem 1rem;
  }
  .about-header h2 {
    font-size: 2.2rem;
  }
  .about-header .subtitle {
    font-size: 1.2rem;
  }
  .feature-item {
    gap: 1rem;
  }
  .icon-box {
    width: 40px;
    height: 40px;
  }
  .icon {
    width: 20px;
    height: 20px;
  }
}
.services {
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 100%
  );
  overflow: hidden;
}
.services.rtl {
  direction: rtl;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.service-image {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.services-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.services-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem;
  padding: 1rem;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--background);
  box-shadow: 0 10px 30px #0000001a;
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0003;
}
.card-content {
  position: relative;
  padding: 2rem;
}
.image-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  position: relative;
}
.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
.service-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-blue);
  transition: width 0.4s ease;
}
.rtl .service-card h3:after {
  left: auto;
  right: 0;
}
.service-card:hover h3:after {
  width: 60px;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .services {
    padding: 6rem 1.5rem;
  }
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
  }
  .services-header h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .services {
    padding: 4rem 1rem;
  }
  .home-services-grid {
    grid-template-columns: 1fr !important;
    max-width: 500px;
    margin: 0 auto;
  }
  .services-header {
    margin-bottom: 3rem;
  }
  .services-header h2 {
    font-size: 2rem;
  }
  .image-container {
    height: 180px;
  }
}
@media screen and (max-width: 480px) {
  .services-header h2 {
    font-size: 1.8rem;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
  .image-container {
    height: 160px;
  }
}
.yarl__fullsize {
  height: 100%;
  width: 100%;
}
.yarl__relative {
  position: relative;
}
.yarl__portal {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity var(--yarl__fade_animation_duration, 0.25s)
    var(--yarl__fade_animation_timing_function, ease);
  z-index: var(--yarl__portal_zindex, 9999);
}
.yarl__portal_open {
  opacity: 1;
}
.yarl__container {
  background-color: var(
    --yarl__container_background_color,
    var(--yarl__color_backdrop, #000)
  );
  bottom: 0;
  left: 0;
  outline: none;
  overflow: hidden;
  overscroll-behavior: var(--yarl__controller_overscroll_behavior, contain);
  position: absolute;
  right: 0;
  top: 0;
  touch-action: var(--yarl__controller_touch_action, none);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.yarl__carousel {
  align-content: center;
  align-items: stretch;
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  justify-content: center;
  opacity: var(--yarl__pull_opacity, 1);
  transform: translate(
    var(--yarl__swipe_offset, 0),
    var(--yarl__pull_offset, 0)
  );
  width: calc(
    100% + (var(--yarl__carousel_slides_count) - 1) *
      (
        100% + var(--yarl__carousel_spacing_px, 0) * 1px +
          var(--yarl__carousel_spacing_percent, 0) * 1%
      )
  );
}
.yarl__carousel_with_slides {
  -moz-column-gap: calc(
    var(--yarl__carousel_spacing_px, 0) * 1px + 100 /
      (
        var(--yarl__carousel_slides_count) * 100 +
          (var(--yarl__carousel_slides_count) - 1) *
          var(--yarl__carousel_spacing_percent, 0)
      ) * var(--yarl__carousel_spacing_percent, 0) * 1%
  );
  column-gap: calc(
    var(--yarl__carousel_spacing_px, 0) * 1px + 100 /
      (
        var(--yarl__carousel_slides_count) * 100 +
          (var(--yarl__carousel_slides_count) - 1) *
          var(--yarl__carousel_spacing_percent, 0)
      ) * var(--yarl__carousel_spacing_percent, 0) * 1%
  );
}
.yarl__flex_center {
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.yarl__slide {
  flex: 1;
  overflow: hidden;
  padding: calc(
    var(--yarl__carousel_padding_px, 0) * 1px + 100 /
      (
        var(--yarl__carousel_slides_count) * 100 +
          (var(--yarl__carousel_slides_count) - 1) *
          var(--yarl__carousel_spacing_percent, 0)
      ) * var(--yarl__carousel_padding_percent, 0) * 1%
  );
  position: relative;
}
[dir="rtl"] .yarl__slide {
  --yarl__direction: -1;
}
.yarl__slide_image {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  touch-action: var(--yarl__controller_touch_action, none);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.yarl__slide_image_cover {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.yarl__slide_image_loading {
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .yarl__slide_wrapper:not(.yarl__slide_wrapper_interactive)
    .yarl__slide_image {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
  }
}
.yarl__slide_placeholder {
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%) translateY(-50%);
}
.yarl__slide_loading {
  animation: yarl__delayed_fadein 1s linear;
  color: var(
    --yarl__slide_icon_loading_color,
    var(--yarl__color_button, hsla(0, 0%, 100%, 0.8))
  );
}
.yarl__slide_loading line {
  animation: yarl__stroke_opacity 1s linear infinite;
}
.yarl__slide_loading line:first-of-type {
  animation-delay: -1.875s;
}
.yarl__slide_loading line:nth-of-type(2) {
  animation-delay: -1.75s;
}
.yarl__slide_loading line:nth-of-type(3) {
  animation-delay: -1.625s;
}
.yarl__slide_loading line:nth-of-type(4) {
  animation-delay: -1.5s;
}
.yarl__slide_loading line:nth-of-type(5) {
  animation-delay: -1.375s;
}
.yarl__slide_loading line:nth-of-type(6) {
  animation-delay: -1.25s;
}
.yarl__slide_loading line:nth-of-type(7) {
  animation-delay: -1.125s;
}
.yarl__slide_loading line:nth-of-type(8) {
  animation-delay: -1s;
}
.yarl__slide_error {
  color: var(--yarl__slide_icon_error_color, red);
  height: var(--yarl__slide_icon_error_size, 48px);
  width: var(--yarl__slide_icon_error_size, 48px);
}
@media (prefers-reduced-motion) {
  .yarl__portal,
  .yarl__slide {
    transition: unset;
  }
  .yarl__slide_loading,
  .yarl__slide_loading line {
    animation: unset;
  }
}
.yarl__toolbar {
  bottom: auto;
  display: flex;
  justify-content: flex-end;
  left: auto;
  padding: var(--yarl__toolbar_padding, 8px);
  position: absolute;
  right: 0;
  top: 0;
}
[dir="rtl"] .yarl__toolbar {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
}
.yarl__icon {
  height: var(--yarl__icon_size, 32px);
  width: var(--yarl__icon_size, 32px);
}
.yarl__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--yarl__button_background_color, transparent);
  border: var(--yarl__button_border, 0);
  color: var(--yarl__color_button, hsla(0, 0%, 100%, 0.8));
  cursor: pointer;
  filter: var(
    --yarl__button_filter,
    drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8))
  );
  line-height: 0;
  margin: var(--yarl__button_margin, 0);
  outline: none;
  padding: var(--yarl__button_padding, 8px);
  -webkit-tap-highlight-color: transparent;
}
.yarl__button:focus {
  color: var(--yarl__color_button_active, #fff);
}
.yarl__button:focus:not(:focus-visible) {
  color: var(--yarl__color_button, hsla(0, 0%, 100%, 0.8));
}
.yarl__button:focus-visible {
  color: var(--yarl__color_button_active, #fff);
}
@media (hover: hover) {
  .yarl__button:focus-visible:hover,
  .yarl__button:focus:hover,
  .yarl__button:hover {
    color: var(--yarl__color_button_active, #fff);
  }
}
.yarl__button:disabled {
  color: var(--yarl__color_button_disabled, hsla(0, 0%, 100%, 0.4));
  cursor: default;
}
.yarl__navigation_next,
.yarl__navigation_prev {
  padding: var(--yarl__navigation_button_padding, 24px 16px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.yarl__navigation_prev {
  left: 0;
}
[dir="rtl"] .yarl__navigation_prev {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.yarl__navigation_next {
  right: 0;
}
[dir="rtl"] .yarl__navigation_next {
  left: 0;
  right: unset;
  transform: translateY(-50%) rotate(180deg);
}
.yarl__no_scroll {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
@keyframes yarl__delayed_fadein {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes yarl__stroke_opacity {
  0% {
    stroke-opacity: 1;
  }
  to {
    stroke-opacity: 0.125;
  }
}
.gallery {
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 100%
  );
  overflow: hidden;
}
.gallery.rtl {
  direction: rtl;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.gallery-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .gallery {
    padding: 6rem 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .gallery-header h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 4rem 1rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-header {
    margin-bottom: 3rem;
  }
  .gallery-header h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .gallery-header h2 {
    font-size: 1.8rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
.cta {
  position: relative;
  padding: 8rem 2rem;
  background: var(--dark-blue);
  overflow: hidden;
}
.cta-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(76, 158, 255, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.rtl .cta-gradient {
  background: radial-gradient(
    circle at top left,
    rgba(76, 158, 255, 0.15),
    transparent 60%
  );
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta h2 {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.cta-subtitle {
  color: var(--light-gray);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-blue);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  transition: all 0.3s ease;
}
.rtl .cta-button {
  flex-direction: row-reverse;
}
.cta-button:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0003;
  color: var(--primary-dark);
}
@media screen and (max-width: 1024px) {
  .cta {
    padding: 6rem 1.5rem;
  }
  .cta h2 {
    font-size: 3rem;
  }
  .cta-subtitle {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 5rem 1rem;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
  .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .cta {
    padding: 4rem 1rem;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1.1rem;
  }
}
.footer {
  position: relative;
  background-color: var(--surface);
  color: var(--dark-gray);
  overflow: hidden;
  min-height: 400px;
  width: 100%;
  display: block;
}
.footer-blue,
.footer-blue:hover {
  color: #151c6c;
}
.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(76, 158, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.rtl .footer-gradient {
  background: radial-gradient(
    circle at top left,
    rgba(76, 158, 255, 0.1),
    transparent 60%
  );
}
.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo {
  display: block;
  width: 150px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--dark-gray);
}
.rtl .contact-item {
  text-align: right;
}
.contact-item span {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer h3 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.rtl .footer-links a {
  text-align: right;
}
.footer-links a:hover {
  color: var(--primary-blue);
  transform: translate(5px);
}
.rtl .footer-links a:hover {
  transform: translate(-5px);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.rtl .social-links {
  flex-direction: row-reverse !important;
  justify-content: flex-end;
}
.social-links a {
  color: var(--dark-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4c9eff1a;
}
.social-links a:hover {
  color: var(--primary-blue);
  background: #4c9eff33;
  transform: translateY(-3px);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--dark-gray);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }
  .social-links {
    justify-content: center;
  }
}
.about-section {
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 100%
  );
  overflow: hidden;
}
.about-section.rtl {
  direction: rtl;
}
.about-section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-section-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.slogan {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.5px;
}
.title {
  color: var(--dark-blue);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: var(--font-black);
}
.services-list {
  margin: 2rem 0;
  background: #4c9eff0d;
  padding: 2rem;
  border-radius: 15px;
}
.services-title {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.services-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-item {
  position: relative;
  padding-left: 1.5rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}
.rtl .service-item {
  padding-left: 0;
  padding-right: 1.5rem;
}
.service-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}
.rtl .service-item:before {
  left: auto;
  right: 0;
}
.subtitle {
  color: var(--dark-blue);
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: var(--font-bold);
}
.vision {
  color: var(--dark-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.about-section-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px #0000001a;
  aspect-ratio: 4/3;
}
.about-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-section-image:hover img {
  transform: scale(1.05);
}
.about-section-description {
  margin-top: 6rem;
  padding: 3rem;
  background: #4c9eff0d;
  border-radius: 20px;
  border: 1px solid rgba(76, 158, 255, 0.1);
  margin-bottom: 4rem;
}
.about-section-description p {
  color: var(--dark-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
.partners-section {
  text-align: center;
  margin-bottom: 3rem;
}
.partners-title {
  color: var(--dark-blue);
  font-size: 2.25rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}
.partners-subtitle {
  color: var(--medium-gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.partner-companies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.company-box {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 10px 30px #0000001a;
  transition: all 0.3s ease;
}
.company-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px #00000026;
}
.company-name {
  color: var(--dark-blue);
  font-weight: var(--font-bold);
  font-size: 1rem;
  text-align: center;
}
.company-logo {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .about-section-container {
    margin-top: 4rem;
  }
  @media screen and (max-width: 1024px) {
    .clients-container {
      margin-top: 6rem;
    }
  }
  .about-section {
    padding: 5rem 1.5rem;
  }
  .about-section-content {
    gap: 3rem;
  }
  .title {
    font-size: 2.5rem;
  }
  .services-title {
    font-size: 1.8rem;
  }
  .subtitle,
  .partners-title {
    font-size: 2rem;
  }
  .partner-companies {
    gap: 1.5rem;
  }
  .about-section-description {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .about-section {
    padding: 4rem 1.25rem;
  }
  .about-section-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-section-image {
    order: -1;
  }
  .title {
    font-size: 2.25rem;
  }
  .services-title {
    font-size: 1.6rem;
  }
  .subtitle {
    font-size: 1.75rem;
  }
  .services-list {
    padding: 1.5rem;
  }
  .about-section-description {
    margin-top: 4rem;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .partners-title {
    font-size: 1.75rem;
  }
  .partners-subtitle {
    font-size: 1rem;
  }
  .partner-companies {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-section-description p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about-section {
    padding: 3rem 1rem;
  }
  .slogan {
    font-size: 1.1rem;
  }
  .title {
    font-size: 2rem;
  }
  .services-title {
    font-size: 1.4rem;
  }
  .subtitle {
    font-size: 1.5rem;
  }
  .service-item,
  .vision {
    font-size: 1rem;
  }
  .about-section-description {
    margin-top: 3rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .partners-title {
    font-size: 1.5rem;
  }
  .company-box {
    padding: 1.5rem;
  }
  .company-name {
    font-size: 0.9rem;
  }
  .company-logo {
    height: 60px;
  }
}
.contact-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  min-height: 100vh;
}
.contact-section.rtl {
  direction: rtl;
}
.background-elements {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.gradient-sphere {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(76, 158, 255, 0.1) 0%,
    rgba(76, 158, 255, 0.05) 30%,
    transparent 70%
  );
  filter: blur(60px);
  animation: sphereFloat 20s ease-in-out infinite;
  opacity: 0.5;
  top: -20%;
  right: -20%;
}
.gradient-sphere.secondary {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(255, 183, 0, 0.1) 0%,
    rgba(255, 183, 0, 0.05) 30%,
    transparent 70%
  );
  animation: sphereFloat 15s ease-in-out infinite reverse;
  bottom: -20%;
  left: -20%;
  top: auto;
  right: auto;
}
.grid-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(var(--light-gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--light-gray) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}
.contact-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.contact-header .subtitle {
  color: var(--medium-gray);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px #0000001a;
}
.rtl .info-card {
  text-align: right;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px #00000026;
}
.icon-wrapper {
  background: var(--primary-blue);
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.info-card:hover .icon-wrapper {
  background: var(--accent-gold);
  transform: scale(1.1);
}
.info-text h3 {
  color: var(--dark-blue);
  margin: 0;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
}
.info-text p {
  color: var(--medium-gray);
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px #0000001a;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}
.form-group {
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  color: var(--dark-gray);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.rtl .form-group input,
.rtl .form-group textarea {
  text-align: right;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px #4c9eff1a;
}
.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: var(--font-bold);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rtl .submit-button {
  flex-direction: row-reverse;
}
.submit-button:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #4c9eff33;
}
.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.spin {
  animation: spin 1s linear infinite;
}
.status-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
}
.status-message.success {
  background: #48bb781a;
  color: #48bb78;
}
.status-message.error {
  background: #f565651a;
  color: #f56565;
}
.map-container {
  height: 50vh;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px #0000001a;
}
@keyframes sphereFloat {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(-50px, 50px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1024px) {
  .contact-section {
    padding: 6rem 1.5rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-header h2 {
    font-size: 2.4rem;
  }
  .map-container {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  .contact-container {
    margin-top: 4rem;
  }
  .contact-section {
    padding: 4rem 1rem;
  }
  .contact-header {
    margin-bottom: 3rem;
  }
  .contact-header h2 {
    font-size: 2rem;
  }
  .info-card {
    padding: 1.25rem;
    gap: 1rem;
  }
  .icon-wrapper {
    min-width: 45px;
    height: 45px;
  }
  .contact-form {
    padding: 1.5rem;
    gap: 1rem;
  }
  .form-group input,
  .form-group textarea,
  .submit-button {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-header h2 {
    font-size: 1.8rem;
  }
  .contact-header .subtitle {
    font-size: 1rem;
  }
  .info-card {
    padding: 1rem;
  }
  .icon-wrapper {
    min-width: 40px;
    height: 40px;
  }
  .info-text h3 {
    font-size: 1rem;
  }
  .info-text p {
    font-size: 0.9rem;
  }
}
.projects {
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 100%
  );
  overflow: hidden;
}
.projects.rtl {
  direction: rtl;
}
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}
.projects-header {
  text-align: center;
  margin-bottom: 5rem;
}
.projects-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.project-card {
  background: var(--background);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px #0000001a;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card h3 {
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: var(--font-bold);
}
.project-main-images {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
}
.project-main-images:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0003;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-main-images:hover:after {
  opacity: 1;
}
.project-main-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-main-images:hover img {
  transform: scale(1.05);
}
.carousel-container {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  cursor: pointer;
}
.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.carousel-container:hover img {
  transform: scale(1.05);
}
.carousel-container:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0003;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-container:hover:after {
  opacity: 1;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00000080;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.carousel-btn:hover {
  background: #000c;
}
.carousel-btn.prev {
  left: 1rem;
}
.carousel-btn.next {
  right: 1rem;
}
.rtl .carousel-btn.prev {
  left: auto;
  right: 1rem;
}
.rtl .carousel-btn.next {
  right: auto;
  left: 1rem;
}
.project-documents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.view-project-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary-blue);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  transition: all 0.3s ease;
  text-decoration: none;
}
.rtl .view-project-btn {
  flex-direction: row-reverse;
}
.view-project-btn:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}
:root {
  --yarl__color_backdrop: rgba(0, 0, 0, 0.9);
  --yarl__slide_title_color: var(--light-gray);
  --yarl__button_color: var(--light-gray);
  --yarl__button_hover_color: var(--primary-blue);
}
.yarl__container {
  z-index: 2000;
}
@media screen and (max-width: 1200px) {
  .projects-grid {
    gap: 2rem;
  }
  .project-card {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .projects {
    padding: 6rem 1.5rem;
  }
  .projects-header h2 {
    font-size: 2.4rem;
  }
  .project-card h3 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .projects-container {
    margin-top: 4rem;
  }
  .projects {
    padding: 4rem 1rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-header {
    margin-bottom: 3rem;
  }
  .projects-header h2 {
    font-size: 2rem;
  }
  .project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .project-main-images,
  .carousel-container {
    margin-bottom: 1.5rem;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 480px) {
  .projects {
    padding: 3rem 1rem;
  }
  .projects-header h2 {
    font-size: 1.8rem;
  }
  .project-card {
    padding: 1rem;
  }
  .project-card h3 {
    font-size: 1.2rem;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  .view-project-btn {
    font-size: 0.9rem;
    padding: 0.875rem;
  }
}
.clients {
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 100%
  );
  overflow: hidden;
}
.clients.rtl {
  direction: rtl;
}
.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}
.clients-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.clients-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-weight: var(--font-bold);
}
.clients-header .subtitle {
  color: var(--medium-gray);
  font-size: 1.2rem;
}
.header-line {
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  margin: 0 auto;
  position: relative;
}
.header-line:before,
.header-line:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 4px;
  background: var(--accent-gold);
  transform: translateY(-50%);
}
.header-line:before {
  left: -50px;
}
.header-line:after {
  right: -50px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem;
}
.client-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #00000026;
}
.client-logo {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-card:hover .client-logo img {
  transform: scale(1.1);
}
.client-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.client-details h3 {
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: var(--font-bold);
}
.client-details p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.rtl .client-details {
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 968px) {
  .clients {
    padding: 6rem 1.5rem;
  }
  .clients-header h2 {
    font-size: 2.4rem;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .clients-container {
    margin-top: 4rem;
  }
  .clients {
    padding: 4rem 1rem;
  }
  .clients-header {
    margin-bottom: 3rem;
  }
  .clients-header h2 {
    font-size: 2rem;
  }
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .client-logo {
    width: 120px;
    height: 80px;
  }
  .client-details h3 {
    font-size: 1.1rem;
  }
  .client-details p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .clients {
    padding: 3rem 0.5rem;
  }
  .clients-header h2 {
    font-size: 1.8rem;
  }
  .client-logo {
    width: 100px;
    height: 70px;
  }
  .client-details h3 {
    font-size: 1rem;
  }
  .client-details p {
    font-size: 0.85rem;
  }
}
:root {
  --primary-blue: #4c9eff;
  --dark-blue: #1a365d;
  --light-blue: #f8fafc;
  --dark-gray: #1e293b;
  --medium-gray: #64748b;
  --light-gray: #e2e8f0;
  --accent-gold: #ffb700;
  --background: #f8fafc;
  --surface: #f8fafc;
  --font-thin: 100;
  --font-light: 300;
  --font-regular: 400;
  --font-bold: 700;
  --font-black: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Lato, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--background);
  font-weight: var(--font-regular);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-weight: var(--font-bold);
}
a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: var(--font-regular);
}
a:hover {
  color: var(--accent-gold);
}
button {
  font-family: Lato, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  font-weight: var(--font-bold);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
}
