.wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    margin-top: -70px;
  }

  .circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

.circle {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none; 
  }
  
  .circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    z-index: 3;
  }
  
  .circle-text .tagline {
    background-color: #fdd835;
    color: #1d1d1f;
    font-size: 17px;
    font-family: monospace;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .circle-text h1 {
    font-size:40px;
    font-family:cursive;
    color: #1d1d1f;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .circle-text p {
    color: #4f4f4f;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .discover-button {
    background-color: #002d5b;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 15px;
    margin-top: 20px;
    font-family:cursive;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .discover-button:hover {
    background-color: #001f3f;
  }
  
  .half-arc-left {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 700px;
    border: 3px solid rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    border-right: none;
    transform: translateY(-50%);
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 30%, 
                       0% 70%, 100% 70%, 100% 100%, 0% 100%);
  }

  .half-arc-right {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 400px;
    height: 700px;
    border: 3px solid rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    border-left: none;
    transform: translateY(-50%);
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 30%, 
                       0% 70%, 100% 70%, 100% 100%, 0% 100%);
  }
  
  .image {
    position: absolute;
    width: 250px;
    height: 170px;
    transition: transform 0.3s ease;
    z-index: 3;
  }
  
  .left.left1 {
    top: 30px;
    left: 30px;
  }
  
  .left.left2 {
    bottom: 30px;
    left: 30px;
  }
  
  .right.right1 {
    bottom: 30px;
    right: 30px;
  }
.outer-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
  }
  .circle-gap {
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: white;
    z-index: 2;
  }
  
  .circle-gap.top-left {
    top: 20px;
    left: 20px;
  }
  
  .circle-gap.bottom-left {
    bottom: 20px;
    left: 20px;
  }
  
  .circle-gap.bottom-right {
    bottom: 20px;
    right: 20px;
  }
  /* السكشن الثاني */
@media (max-width: 768px) {
    .image:last-of-type {
      display: none !important;
    }
    .wrapper {
      height: auto;
      padding: 60px 20px;
      overflow: visible;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .circle {
      width: 280px;
      height: 280px;
      display: none !important;
    }
  
    .outer-circle {
      width: 400px;
      height: 400px;
      display: none !important;
    }
  
    .image {
      position: relative;
      width: 100%;
      height: auto;
      margin: 10px 0;
    }
  
    .left.left1,
    .left.left2,
    .right.right1 {
      position: static;
      transform: none;
    }
  
    .circle-text {
      position: relative;
      transform: none;
      top: auto;
      left: auto;
      padding: 10px;
    }
  
    .circle-text h1 {
      font-size: 26px;
    }
  
    .circle-text p {
      font-size: 14px;
    }
  
    .half-arc-left,
    .half-arc-right,
    .circle-gap {
      display: none;
    }
  }