.custom-shape-divider-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 61px;
}

.custom-shape-divider-top .shape-fill {
    fill: #FFFFFF;
}

.greyer .shape-fill{
    fill:#e9e9e9;
}

#about-me,#education-div{
    background-color: #e9e9e9;
  }

.about-me-desc {
    margin-top: 50px;
    font-size: 45px;
    line-height: 180%;
}

.about-me-desc span {
    font-size: 70px;
    font-weight: 700;
    color:#ffa436;
}

#about-me a {
    text-decoration: none;
    position: relative;
    color: #000; /* Set the default text color */
    transition: color 0.3s; /* Add transition for color change */
  }

  /* Define the underline styles */
  #about-me a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #ffa436;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s; /* Add transition for width change */
  }

  /* Expand the underline on hover */
  #about-me a:hover::after {
    width: 100%;
  }