/* About Section - Comprehensive Redesign */
.about-section {
  width: 100%;
  min-height: auto;
  height: auto;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem 2rem;
  position: relative;
  overflow: visible;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 105, 180, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 20, 147, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease-out;
  width: 100%;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.about-title .gradient-text {
  font-weight: 600;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1rem;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Main Content Grid */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 4rem auto;
  width: 100%;
  max-width: 100%;
}

/* Personal Section */
.about-personal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.personal-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInLeft 0.8s ease-out 0.2s backwards;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.personal-card h3 {
  font-size: 1.5rem;
  color: #ff69b4;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.personal-card i {
  font-size: 1.2rem;
}

.personal-text {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;

  color: #ccc;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.interest-tag {
  font-size: 0.85rem;
  background: rgba(255, 105, 180, 0.15);
  color: #ff69b4;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 105, 180, 0.4);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.interest-tag:hover {
  background: rgba(255, 105, 180, 0.25);
  border-color: rgba(255, 105, 180, 0.6);
  transform: translateY(-2px);
}

/* Profile Image Section */
.about-image {
  display: none;
}

/* Education Section */
.about-education {
  margin: 0 auto 4rem auto;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  width: 100%;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  color: #ff69b4;
}

.education-timeline {
  position: relative;
  padding: 0;
  margin: 0 auto;
}

.education-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff69b4, #ff1493, transparent);
}

.education-item {
  margin-bottom: 2rem;
  margin-left: 80px;
  padding: 1.5rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
}

.education-item::before {
  content: "";
  position: absolute;
  left: -62px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: #ff69b4;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
  transition: all 0.3s ease;
}

.education-item:hover {
  border-color: rgba(255, 105, 180, 0.5);
  transform: translateX(10px);
}

.education-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.education-degree {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

.education-period {
  font-size: 0.85rem;
  color: #ff69b4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.education-institution {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.education-details {
  font-size: 0.9rem;
  color: #ccc;
}

/* Work Experience Section */
.about-experience {
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  width: 100%;
}

.experience-timeline {
  position: relative;
  padding: 0;
  margin: 0 auto;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff1493, #ff69b4, transparent);
}

.experience-item {
  margin-bottom: 2rem;
  margin-left: 80px;
  padding: 1.5rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s ease;
}

.experience-item::before {
  content: "";
  position: absolute;
  left: -62px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: #ff1493;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
  transition: all 0.3s ease;
}

.experience-item:hover {
  border-color: rgba(255, 105, 180, 0.5);
  transform: translateX(10px);
}

.experience-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.experience-title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

.experience-period {
  font-size: 0.85rem;
  color: #ff69b4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.experience-company {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
  margin-left: 1.5rem;
  list-style: disc;
}

.experience-description li {
  margin-bottom: 0.5rem;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  font-size: 0.8rem;
  background: rgba(255, 105, 180, 0.1);
  color: #ff69b4;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 20px;
  font-weight: 500;
}

/* CTA Section */
.about-cta {
  text-align: center;
  margin: 4rem auto 0 auto;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
  width: 100%;
}

.resume-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resume-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3);
}

.resume-download-btn:active {
  transform: translateY(-1px);
}

.resume-download-btn i {
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-wrapper {
    align-items: center;
  }

  .about-content {
    gap: 2rem;
    align-items: center;
  }

  .about-personal {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .about-image {
    justify-content: center;
  }

  .education-timeline::before {
    left: 20px;
  }

  .education-item {
    margin-left: 60px;
  }

  .education-item::before {
    left: -48px;
  }

  .experience-timeline::before {
    left: 20px;
  }

  .experience-item {
    margin-left: 60px;
  }

  .experience-item::before {
    left: -48px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-wrapper {
    align-items: center;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-header {
    margin-bottom: 2.5rem;
  }

  .about-content {
    gap: 2rem;
    align-items: center;
  }

  .about-personal {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .personal-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
  }

  .image-wrapper {
    width: 250px;
    height: 300px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-timeline::before {
    left: 15px;
  }

  .education-item {
    margin-left: 50px;
    padding: 1rem;
  }

  .education-item::before {
    left: -40px;
    width: 14px;
    height: 14px;
  }

  .education-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .education-period {
    align-self: flex-start;
  }

  .personal-card {
    padding: 1.5rem;
  }

  .experience-timeline::before {
    left: 15px;
  }

  .experience-item {
    margin-left: 50px;
    padding: 1rem;
  }

  .experience-item::before {
    left: -40px;
    width: 14px;
    height: 14px;
  }

  .experience-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .experience-period {
    align-self: flex-start;
  }

  .resume-download-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 1.5rem 1rem;
  }

  .about-wrapper {
    align-items: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 0.85rem;
  }

  .about-content {
    gap: 1.5rem;
    align-items: center;
  }

  .about-personal {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .personal-card {
    width: 100%;
    padding: 1rem;
  }

  .personal-card h3 {
    font-size: 1.2rem;
  }

  .personal-text {
    font-size: 0.9rem;
  }

  .image-wrapper {
    width: 200px;
    height: 250px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-card {
    padding: 1rem;
  }

  .education-timeline::before {
    left: 10px;
  }

  .education-item {
    margin-left: 40px;
    padding: 0.8rem;
  }

  .education-item::before {
    left: -30px;
    width: 12px;
    height: 12px;
  }

  .education-degree {
    font-size: 1rem;
  }

  .experience-timeline::before {
    left: 10px;
  }

  .experience-item {
    margin-left: 40px;
    padding: 0.8rem;
  }

  .experience-item::before {
    left: -30px;
    width: 12px;
    height: 12px;
  }

  .experience-title {
    font-size: 1rem;
  }

  .experience-description {
    font-size: 0.85rem;
  }

  .skill-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .resume-download-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

@media (max-width: 425px) {
  .about-section {
    padding: 1.25rem 0.75rem;
  }

  .about-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .about-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .about-header {
    margin-bottom: 1.5rem;
  }

  .personal-card {
    padding: 0.8rem;
  }

  .personal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .personal-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .image-wrapper {
    width: 170px;
    height: 220px;
  }

  .section-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .education-item,
  .experience-item {
    margin-left: 35px;
    padding: 0.6rem;
  }

  .education-item::before,
  .experience-item::before {
    width: 10px;
    height: 10px;
    left: -33px;
  }

  .education-degree,
  .experience-title {
    font-size: 0.9rem;
  }

  .education-institution,
  .experience-company {
    font-size: 0.85rem;
  }

  .education-details,
  .experience-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .skill-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .resume-download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
}
