* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.gradient-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 234, 255, 0.15), transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(255, 0, 128, 0.1), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ======== About Hero Section ======== */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  margin-top: 100px;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.image-frame {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid rgba(0, 234, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 234, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(138, 43, 226, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}

.image-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 234, 255, 0.3);
  border-color: rgba(0, 234, 255, 0.6);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder for image */
.image-placeholder {
  font-size: 8rem;
  opacity: 0.99;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  padding: 15px 25px;
  border-radius: 20px;
  border: 1px solid rgba(0, 234, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-badge span {
  font-size: 2rem;
  margin-right: 10px;
}

.floating-badge strong {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content {
  padding: 20px 0;
}

.about-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #00eaff;
}

.about-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff, #00eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content .tagline {
  font-size: 1.4rem;
  color: #8a2be2;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-content p {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.9;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.social-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.4rem;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 234, 255, 0.4);
}

/* ======== Skills Section ======== */
.skills-section {
  padding: 80px 6%;
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #8a2be2;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 234, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 234, 255, 0.1);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.skill-icon {
  font-size: 2.5rem;
}

.skill-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  padding: 8px 16px;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  color: #00eaff;
  transition: 0.3s;
}

.skill-tag:hover {
  background: rgba(0, 234, 255, 0.2);
  border-color: rgba(0, 234, 255, 0.4);
}

/* ======== Journey Section ======== */
.journey-section {
  padding: 80px 6%;
}

.journey-content {
  max-width: 900px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00eaff, #8a2be2, #ff0080);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-dot {
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #00eaff;
}

.timeline-content .year {
  font-size: 0.9rem;
  color: #8a2be2;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-content p {
  color: #aaa;
  line-height: 1.7;
}

/* ======== Footer ======== */
footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 6% 30px;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p {
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-section a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #00eaff;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .image-wrapper {
    max-width: 350px;
  }

  .about-content h1 {
    font-size: 2.5rem;
  }

  .about-content .tagline {
    font-size: 1.2rem;
  }

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

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

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

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-dot {
    left: 10px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 100px 5% 60px;
  }

  .image-wrapper {
    max-width: 280px;
  }

  .image-placeholder {
    font-size: 5rem;
  }

  .floating-badge {
    padding: 10px 15px;
    bottom: 10px;
    right: 10px;
  }

  .floating-badge span {
    font-size: 1.5rem;
  }

  .floating-badge strong {
    font-size: 0.9rem;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content .tagline {
    font-size: 1.1rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .skills-section {
    padding: 60px 5%;
  }

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

  .skill-card {
    padding: 20px;
  }

  .journey-section {
    padding: 60px 5%;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .about-content h1 {
    font-size: 1.7rem;
  }

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