.about-me {
    padding-top: 100px;
    padding-bottom: 50px;
}

.about-me .about-me-container {
    position: relative;
}

.about-me .about-me-container .about-me-title {
    font-size: 55px;
    color: #AC3B61;
    font-weight: 700;
}

@media (max-width: 500px) {
    .about-me .about-me-container .about-me-title {
        font-size: 30px;
    }
}

.about-me-flex-container {
    display: flex;
    justify-content: space-between;
    margin-top: -25px;
    margin-left: 150px;
    left: 100px;
}

@media (max-width: 960px) {
    .about-me-flex-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0px;
        gap: 50px;
    }
}

@media (max-width: 500px) {
    .about-me-flex-container {
        margin-top: -10px;
    }
}

.about-me-flex-container .about-me-image {
    position: relative;
    width: 400px;
    height: 400px;
}

@media (max-width: 500px) {
    .about-me-flex-container .about-me-image {
        width: 300px;
        height: 300px;
    }
}

.about-me-flex-container .about-me-image .back-div {
    position: absolute;
    bottom: 10px; /* Adjusted to match the reference image */
    left: -20px; /* Adjusted to match the reference image */
    z-index: -3;
    background-color: #00425A; /* Dark teal background */
    width: 100%;
    height: 100%;
}

.about-me-flex-container .about-me-image .black-image {
    z-index: -2;
    position: absolute;
    top: 10px; /* Adjusted to match the reference image */
    left: -10px; /* Adjusted to match the reference image */
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    filter: grayscale(100%);
    object-fit: cover;
}

.about-me-flex-container .about-me-image .black-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.about-me-flex-container .about-me-image .main-image {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 83px;
    width: 70%;
    height: 82%;
    overflow: hidden;
    box-shadow: rgb(0, 0, 0) 0px 7px 50px 0px;
    transition: all 0.2s ease-out;
}

.about-me-flex-container .about-me-image .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-out;
}

.about-me-flex-container .about-me-image .main-image:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

.about-me-flex-container .about-me-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    flex: 0 0 40%;
}

@media (max-width: 960px) {
    .about-me-flex-container .about-me-content {
        flex-direction: row-reverse;
    }
}

.about-me-flex-container .about-me-content .logo {
    max-width: 200px;
}

.about-me-flex-container .about-me-content .logo img {
    filter: drop-shadow(0 0 25px rgb(0, 0, 0));
}

@media (max-width: 500px) {
    .about-me-flex-container .about-me-content .logo img {
        transform: rotateZ(90deg);
    }
}

@media (max-width: 500px) {
    .about-me-flex-container .about-me-content .text {
        font-size: 16px;
    }
}

.mail-button { 
    display: flex;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    padding: 15px;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-out;
  }
  .mail-button a {
    display: flex;
  }
  .mail-button img {
    -o-object-fit: contain;
       object-fit: contain;
    transition: all 0.2s ease-out;
  }


  .mail-button2 {
    background-color: #001925;
    position: absolute;
    bottom: -69px;
    left: 0;
    border: 10px solid #001925;
  }
  .mail-button2 img {
    filter: invert(56%) sepia(42%) saturate(4795%) hue-rotate(360deg) brightness(103%) contrast(105%);
  }
  .mail-button2:hover {
    background-color: #E9D4C8;
    border: 10px solid #E9D4C8;
  }
  .mail-button2:hover img {
    filter: unset;
    transform: scale(1.5);
  }

  .portfolio-link {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .portfolio-link a{
    text-decoration: none;
    color: white;

    padding: 10px;
    margin: 10px;
    border-radius: 5px;
  }

  .iconStyle{
    background-color:var(--white);
                  font-size: 20px;
                  font-weight: 800;
                  color: var(--green);
                  border: 2px solid var(--green);
                  border-radius:50%;
                  margin:0 1px;
                  padding:7px
  }

