/* ================= ABOUT PAGE ================= */

.about-page-wrapper{
  border-top: 1px solid white;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 120px 100px 50px;
}

/* PROFILE IMAGE */
.anjad-photo{
  height: 320px;
  box-shadow: 0px 0px 50px #39FF14;
  border-radius: 180px;
  padding: 10px;
  opacity: 0.85;
  cursor: pointer;
  margin-left: 50px;
  transition: all 0.3s ease;
}

.anjad-photo:hover{
  opacity: 1;
  transform: scale(1.03);
}

/* ABOUT SECTION */
.div-about{
  margin-right: 100px;
  width: 550px;
}

/* TITLE */
.title-2 , .title-3{
  margin: -20px 0px 40px -30px;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* ROLE TEXT */
.ability{
  color: white;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
}

/* SCROLLABLE CONTENT */
.about-content{
  max-height: 220px;
  overflow-y: auto;
  padding-right: 10px;
}

/* SCROLLBAR STYLE */
.about-content::-webkit-scrollbar{
  width: 6px;
}

.about-content::-webkit-scrollbar-track{
  background: transparent;
}

.about-content::-webkit-scrollbar-thumb{
  background: #39FF14;
  border-radius: 10px;
}

/* TEXT */
.about-content p{
  line-height: 28px;
  color: rgba(243, 238, 238, 0.8);
  margin-bottom: 12px;
}

/* REMOVE BUTTON */
.btn-readmore{
  display: none;
}

/* ================= MORE ABOUT ================= */

.more-about-me{
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 50px 100px;
}

/* CARDS */
.education,.experience{
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 5px 0px 10px rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  height: 300px;
  width: 450px;
  padding: 20px 20px 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.education:hover,.experience:hover{
  transform: translateY(-5px);
}

/* ITEMS */
.education-details>div,.experience-details>div{
  text-align: center;
  width: 300px;
  padding: 10px;
  border: 1px solid rgb(32, 176, 7);
  margin: 8px 0px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.education-details>div:hover,.experience-details>div:hover{
  color: black;
  background-color: rgb(32, 176, 7);
  border: none;
  transform: translateY(-8px);
}

/* SUBTEXT */
.education-details span , .experience-details span{
  font-size: 12px;
  color: rgba(209, 205, 205, 0.6);
}

/* HEADINGS */
.heading-about{
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.heading-about>span{
  color: #39FF14;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 800px){

  *{
    transition: all 0.2s ease;
  }

  .about-page-wrapper{
    padding: 120px 50px;
  }

  .div-about{
    margin-right: 50px;
    width: 300px;
  }

  .ability{
    font-size: 16px;
  }

  .about-content{
    max-height: 200px;
  }

  .about-content p{
    line-height: 24px;
  }

  .div-tools{
    width: 300px;
  }

  .tools-iknow li{
    padding: 8px 3px;
  }
}

/* MOBILE */
@media screen and (max-width: 700px){

  *{
    transition: all 0.2s ease;
  }

  .about-page-wrapper{
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }

  .anjad-photo{
    margin-left: 0;
  }

  .div-about{
    width: 100%;
    margin-right: 0;
  }

  .more-about-me{
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .education,.experience{
    height: 250px;
    width: 340px;
    padding: 20px 0px 40px;
  }

  .education-details>div,.experience-details>div{
    width: 260px;
    padding: 6px;
    font-size: 14px;
  }

  .education-details span , .experience-details span{
    font-size: 10px;
  }
}