.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.02)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>'); */
  background-size: cover;
  opacity: 0.1;
}

.about-container {
  display: flex;
  max-width: 1200px;
  align-items: center;
  position: relative;
  z-index: 2;
  column-gap: 60px;
  margin-bottom: -35px;
}

.profile-visual {
  flex: 0 0 400px;
  position: relative;
}

.profile-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
}

.profile-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
  border-color: rgba(186, 201, 100, 0.5);
}

.profile-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.profile-image-container:hover .profile-image {
  filter: grayscale(0%);
}

.tech-icons {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #1a1a1a;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.icon:hover::after {
  opacity: 1;
}

.current-role-badge {
  background: rgba(186, 201, 100, 0.2);
  border: 1px solid rgba(186, 201, 100, 0.5);
  border-radius: 10px;
  padding: 15px;
  margin-top: 40px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.current-role-badge span {
  display: block;
  font-weight: 600;
}

.current-role-badge span:first-child {
  font-size: 1.2rem;
  color: #00c6ff;
  margin-bottom: 5px;
}

.current-role-badge span:last-child {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-content {
  flex: 1;
  margin-top: -50px !important;
}

.section-header_AboutMe {
  margin-bottom: 40px;
}

.section-title_AboutMe {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.title-gradient {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.intro_About {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: -30px;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-name_About {
  color: #00c6ff;
  font-weight: 700;
}

.about-card_About {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-background-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.about-card_About:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 198, 255, 0.3);
}

.card-content_About {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 1);
}

.card-content_About b {
  color: #00c6ff;
  font-weight: 600;
}

.research-interests_About {
    text-align: center;
    padding-top: 0px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.interests-title_About {
  font-size: 1.2rem;
  color: #00c6ff;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interest-tags_About {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(186, 201, 100, 0.15);
  color: #00c6ff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(0, 198, 255, 0.3);
  transform: translateY(-2px);
}

.mission-statement {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 40px 0;
  position: relative;
  padding-left: 30px;
}

.mission-statement::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #00c6ff, #0072ff);
  border-radius: 2px;
}

.action-buttons_About {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn_About {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-resume_About {
  background: #00c6ff;
  color: #1a1a1a;
}

.btn-resume_About:hover {
  background: #a3b34f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
  color: #1a1a1a;
}

.btn-contact_About {
  background: transparent;
  color: #00c6ff;
  border: 2px solid #00c6ff;
}

.btn-contact_About:hover {
  background: rgba(240, 243, 223, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(186, 201, 100, 0.2);
  color: #ccc;
}

@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .profile-visual {
    flex: 1;
    width: 100%;
    max-width: 500px;
  }

  .profile-image-container {
    transform: perspective(1000px) rotateY(0deg);
  }
}

@media screen and (max-width: 768px) {
  .section-title_AboutMe {
    font-size: 2.5rem;
  }

  .interest-tags {
    justify-content: center;
  }

  .action-buttons_About {
    flex-direction: column;
    gap: 15px;
  }

  .btn_About {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .about-section {
    padding: 80px 0;
  }

  .section-title_AboutMe {
    font-size: 2rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  .about-card {
    padding: 20px;
  }

  .tech-icons {
    gap: 10px;
  }

  .icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}