body {
    font-family: 'Almarai', sans-serif;
    background-color: #32820021!important;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Decorative Semi-circles */
.semi-circle {
    position: absolute;
    width: 300px;
    height: 150px;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    opacity: 0.2;
}

.semi-circle.green {
    background: #0035ff;
}

.semi-circle.blue {
    background: #4a90e2;
}

.semi-circle.purple {
    background: #318200;
}

.semi-circle.orange {
    background: #f5a623;
}

/* Hero Section Photos */
.hero-photo {
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Cards */
.info-card {
    background: #fcfcfd;
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f1f1;
}

/* تأثير اللون الأرجواني الخفيف عند التحويم أو في حالة البطاقات الثانوية */


.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    background: #ffffff;
}

/* --- Slider Animation --- */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

      .slider-container {
          direction: ltr;
          overflow: hidden;
          padding: 80px 0;
          position: relative;
          background: white;
      }

      /* Fog Effects (Left & Right) */
      .slider-container::before,
      .slider-container::after {
          content: "";
          position: absolute;
          top: 0;
          width: 200px;
          height: 100%;
          z-index: 2;
          pointer-events: none;
      }

      .slider-container::before {
          left: 0;
          background: linear-gradient(to right, white, transparent);
      }

      .slider-container::after {
          right: 0;
          background: linear-gradient(to left, white, transparent);
      }

      .slider-track {
          display: flex;
           width: 200%;
          animation: scroll-infinite 60s linear infinite;
      }

      .logo-item {
          padding: 0 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: transform 0.3s ease;
      }

      .logo-item img {
          height: 140px;
          width: auto;
          object-fit: contain;
          filter: grayscale(1);
          transition: filter 0.4s ease, transform 0.4s ease;
          opacity: 0.7;
      }

      .logo-item:hover img {
          filter: grayscale(0);
          opacity: 1;
      }

      .slider-container:hover .slider-track {
          animation-play-state: paused;
      }

      /* Values Sections Decoration */
      .value-decor {
          width: 45px;
          height: 22px;
          border-radius: 0 0 45px 45px;
          display: inline-block;
          margin-left: 15px;
          vertical-align: middle;
      }

      .team-cta-btn {
          display: inline-block;
          padding: 16px 48px;
          border-radius: 9999px;
          border: 2px solid #318200;
          color: #318200;
          font-weight: 800;
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .team-cta-btn:hover {
          background: #318200;
          color: white;
          box-shadow: 0 10px 20px rgba(76, 36, 110, 0.2);
      }

      /* Back to Top Floating Button */

    