.services-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px;
    position: relative;
    padding: 40px 80px 120px; 
    min-height: 100vh;
  }
  
  .sticky-content {
    position: sticky;
    top: 100px;
    flex: 1;
    max-width: 400px;
    height: fit-content;
  }
  .images-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: 100px;
    width: 700px;
    padding-bottom: 60px; 
  }
  .service-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
  }
  
  .service-image img {
    width: 100%;
    display: block;
  }
  
  .service-image .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0); 
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .service-image:hover .overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .service-image h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: auto;
  }
  
  /* read more */
  .read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: white;
    transition: color 0.3s ease;
  }
  .section-label5 {
    display: inline-block;
    background-color: #f4cc28;
    color: #1d1d1f;
    font-size: 11px;
    padding: 4px 12px;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: monospace;
    margin-top: -25px;
  }
  
  .services-title5 {
    font-size: 43px;
    font-weight: 400;
    line-height: 1.3;
    color: #1d1d1f;
    font-family: 'Inter', sans-serif;
    margin-bottom: 30px;
  }
  
  .services-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #4f4f4f;
    margin-top: -20px;
    max-width: 450px;
  }
  
  .view-btn {
    background-color: #003865;
    color: white;
    padding: 14px 24px;
    font-weight: 100;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    margin-top: -20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    text-decoration: none;
  }
  
  .view-btn:hover {
    background-color: #001f3f;
  }
  
  .arrow-circle {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .arrow-icon {
    font-size: 14px;
    color: white;
    transition: color 0.3s ease;
  }
  
  /* hover effect */
  .service-image:hover .read-more {
    color: #FFD700;
  }
  
  .service-image:hover .arrow-icon {
    color: #FFD700;
  }
  
  .service-image:hover .arrow-circle {
    background-color: rgba(255, 255, 255, 0.1);
  }
   
  
  .section-label {
    display: inline-block;
    background: #f4cc28;
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  
  .view-btn {
    background-color: #003865;
    color: white;
    padding: 14px 24px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
  }
  
  .view-btn:hover {
    background-color: #001f3f;
  }
  
  .bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    transition: transform 1s ease, opacity 1s ease;
  }
  
.bg-circle.solid {
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 120px;
    left: -140px;
    z-index: -1;
    border-radius: 50%;
    background: none;
  }
  
  .outer-circle5 {
    position: absolute;
    top: 20px;         
    left: -220px;      
    width: 600px;
    height: 600px;
    z-index: -2;
    pointer-events: none;
  }
  
  .fade-up {
    opacity: 1;
    transform: translateY(0);
    font-weight: 100;
  }
  
  
  .fade-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  .sticky-content {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
  /* Responsive: سكشن الخدمات الثالث */
@media (max-width: 768px) {
    .services-section {
      flex-direction: column;
      padding: 60px 20px;
      align-items: center;
    }
  
    .sticky-content {
      position: relative;
      top: auto;
      max-width: 100%;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .services-title5 {
      font-size: 28px;
      line-height: 1.4;
    }
  
    .services-desc {
      font-size: 14px;
      margin-top: 10px;
      max-width: 100%;
    }
  
    .view-btn {
      margin-top: 20px;
    }
  
    .images-wrapper {
      width: 100%;
      margin-left: 0;
      gap: 20px;
      padding: 0;
    }
  
    .service-image {
      width: 100%;
    }
  
    .service-image img {
      height: auto;
    }
  
    .service-image .overlay h3 {
      font-size: 18px;
    }
  
    .read-more {
      font-size: 11px;
    }
  
    .outer-circle5,
    .bg-circle {
      display: none;
    }
  }