.about-main-section{
    flex-grow: 1;
    display: flex;
    padding: 90px 100px;
    
}
.about-all-content{
  display: flex;
    flex-direction: row;
  flex-wrap: nowrap;
    gap: 40px;
    align-items: stretch;
}
.image-wrapper {
  position: relative;
  perspective: 1000px;
  width: fit-content;
  display: inline-block;
}


.image-section{
  display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-wrapper.loaded::before {
    opacity: 0;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
img.benet-image {
  position: relative;
  z-index: 1; /* Base image at the back */
  display: block;
  height: 300px;
}
.detail-section{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}
.det{
    line-height: 1.5;

}
.about-social-links{
        margin-top: 60px;
    display: flex
;
    flex-direction: row;
    align-items: baseline;
    gap: 60px;
    padding: 10px 20px;
}
.link-section{
    display: flex;
    flex-direction: column;
    line-height: 2;
}


.subtitle {
    color: #75B114;
}
.scroll-hint-container{
  display: none;
}

@media screen and (max-width: 1024px) {
  .about-main-section {
    padding: 0px 10px;
    align-items: center;    
  }
  .about-all-content{
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0px;

  }
    .about-all-content::-webkit-scrollbar{
      display: none;
    }

  .image-section,
  .detail-section,
  .resume-section {
    flex: 0 0 auto;
    max-width: 350px;
  }
  .scroll-hint-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: baseline;
    color: #75B114;
  }
}
