  @font-face {
      font-family: Tajawal;
      src: url(../Tajawal-Regular.ttf);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Tajawal', sans-serif;

      direction: rtl;
  }

  .profile,
  .profile:hover {
      color: #212529;
      text-decoration: none;
  }


  .content {
      height: calc(100vh - 56px);
  }

  .card1 {
      background-color: #fff;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      position: relative;
  }

  .left {
      flex: 1;
      padding: 60px;
  }

  .left h1 {
      font-size: 48px;
      color: #feca00;
  }

  .left h2 {
      font-size: 48px;
      color: #64acdf;
      margin-top: 10px;
  }

  .left p {
      margin-top: 20px;
      color: #666;
      line-height: 1.6;
      font-size: 30px;
  }

  .left .btn {
      margin-top: 30px;
      background-color: #00c3aa;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-size: 16px;
  }

  .right {
      flex: 1;
      display: flex;
      gap: 20px;
      padding: 20px;
      justify-content: center;
      align-items: center;
  }

  .slice {
      flex: 1;
      background-image: url('../image/sun.jpg');
      /* استبدل بمسار الصورة الصحيح */
      background-size: cover;
      background-position: center;
      border-radius: 75px;
      height: 185%;
      transform: rotate(-45deg);
      margin-right: 62px;
  }

  .slice:first-child {
      height: 100%;
  }

  .slice:nth-child(2) {
      height: 100%;
  }

  .slice:last-child {
      margin-left: 0;
  }



  .shape-overlay {
      position: absolute;

      bottom: 0;
      left: 0;
      width: 27%;
      height: 47%;
      background: linear-gradient(135deg, transparent 60%, #64acdf 60%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      mix-blend-mode: multiply;
      transform: rotateY(180deg);
  }

  .icon {
      /* border: 1px solid #6c6c70; */
      /* border-radius: 50%; */
      padding: 10px;
      font-size: 14px;
      color: #6c6c70;
  }

  .box-font {
      margin-top: 130px;
      display: flex;
      justify-content: space-between;

  }