* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #0b0f1a 0%, #1a1f3a 50%, #0d1220 100%);
  color: #eaeaf0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1rem;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1.5px solid rgba(108, 99, 255, 0.2);
  z-index: 1000;
  animation: slideDown 0.5s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #00d4ff;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.3), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  blur: 40px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  blur: 40px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #9aa3ff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
  line-height: 1.1;
}

.hero h2 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  font-size: 1.15rem;
  color: #d0d5e8;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.9;
  font-weight: 400;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 212, 255, 0.02));
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

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

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
  flex-wrap: wrap;
}

.btn {
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: left 0.3s ease;
  z-index: -1;
}

.primary {
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  color: white;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
}

.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(108, 99, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.secondary {
  border: 2.5px solid #6c63ff;
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.05);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
}

.secondary:hover {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(108, 99, 255, 0.4);
  border-color: #00d4ff;
  color: #00d4ff;
}

.section {
  position: relative;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
}

.section h3 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  width: 60px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease 0.5s both;
}

/* ABOUT SECTION */
#about {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.03), rgba(0, 212, 255, 0.01));
  border-radius: 20px;
  border: 1px solid rgba(108, 99, 255, 0.15);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

#about > * {
  position: relative;
  z-index: 2;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #c2c3ff;
  margin-bottom: 2rem;
  max-width: 850px;
  background: rgba(108, 99, 255, 0.05);
  padding: 1.5rem;
  border-left: 3px solid #00d4ff;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease both;
}

#about p strong {
  color: #00d4ff;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#about p:nth-of-type(2) {
  animation-delay: 0.1s;
}

.stack {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.stack li {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 212, 255, 0.08));
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e0e4ff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
}

.stack li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.stack li::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1.5px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff, #6c63ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stack li:hover::after {
  opacity: 1;
}

.stack li:hover {
  border-color: #00d4ff;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.3), inset 0 0 15px rgba(0, 212, 255, 0.1);
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.15));
  color: #ffffff;
}

.stack li:hover::before {
  left: 100%;
}

.stack li:nth-child(1) {
  animation-delay: 0.25s;
}

.stack li:nth-child(2) {
  animation-delay: 0.3s;
}

.stack li:nth-child(3) {
  animation-delay: 0.35s;
}

.stack li:nth-child(4) {
  animation-delay: 0.4s;
}

.stack li:nth-child(5) {
  animation-delay: 0.45s;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #6c63ff, #00d4ff, transparent);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease both;
  position: relative;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.timeline-item::before {
  content: '';
  min-width: 20px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  border-radius: 50%;
  margin-top: 5px;
  margin-left: -11px;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5), 0 0 0 0 rgba(108, 99, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.7), 0 0 10px 10px rgba(108, 99, 255, 0);
  }
}

.experience-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 212, 255, 0.08));
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  padding: 2.5rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.experience-card:hover::before {
  left: 100%;
}

.experience-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  opacity: 0;
}

.experience-card:hover::after {
  right: -100px;
  top: -100px;
  opacity: 1;
}

.experience-card:hover {
  transform: translateY(-15px) translateX(5px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 30px 80px rgba(108, 99, 255, 0.35), inset 0 0 25px rgba(0, 212, 255, 0.08);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.exp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.exp-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ffffff, #9aa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.duration {
  background: rgba(108, 99, 255, 0.2);
  color: #6c63ff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.location {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.exp-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 212, 255, 0.1));
  color: #00d4ff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  cursor: default;
}

.tag:hover {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.3), rgba(0, 212, 255, 0.2));
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.exp-points {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.exp-points li {
  color: #b0b5cc;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.exp-points li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.exp-points li:hover {
  color: #ffffff;
  padding-left: 2.5rem;
  background: rgba(0, 212, 255, 0.05);
  padding: 0.5rem;
  border-radius: 8px;
}

.exp-highlight {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
  border-left: 4px solid #00d4ff;
  padding: 1rem;
  border-radius: 8px;
  color: #00d4ff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.exp-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.date {
  color: #00d4ff;
  font-weight: bold;
  min-width: 60px;
}

.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}

.filter {
  background: transparent;
  border: 2px solid #555;
  color: #ccc;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter:hover {
  border-color: #6c63ff;
  color: #6c63ff;
}

.filter.active {
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.projects-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 2rem;
}

.project {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 212, 255, 0.08));
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 1s ease both;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff, #6c63ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15), transparent);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.project:hover::before {
  transform: scaleX(1);
}

.project:hover::after {
  right: -100px;
  top: -100px;
  opacity: 0.6;
}

.project:hover {
  transform: translateY(-18px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 30px 80px rgba(108, 99, 255, 0.35), inset 0 0 25px rgba(0, 212, 255, 0.08);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.project-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.project-icon:nth-child(1) {
  animation-delay: 0s;
}

.project h4 {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #ffffff, #9aa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  font-weight: 700;
}

.project p {
  color: #b0b5cc;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.feature {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(108, 99, 255, 0.1));
  color: #00d4ff;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(108, 99, 255, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.tech-list {
  list-style: none;
  margin-bottom: 0.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-height: 1.8em;
  overflow: hidden;
}

.tech-list li {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 212, 255, 0.1));
  color: #00d4ff;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.tech-list li:hover {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.25), rgba(0, 212, 255, 0.15));
  transform: scale(1.05);
}

.project span {
  display: inline-block;
  color: #6c63ff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: rgba(108, 99, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  transition: all 0.3s ease;
}

.project span:hover {
  background: rgba(108, 99, 255, 0.25);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.links a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 8px;
}

.links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  transition: width 0.3s ease;
}

.links a:hover {
  background: rgba(108, 99, 255, 0.1);
  border-color: #00d4ff;
  color: #00d4ff;
}

.links a:hover::after {
  width: 100%;
}

.links {
  display: flex;
  gap: 1rem;
}

.links a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  transition: width 0.3s ease;
}

.links a:hover::after {
  width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.skills-grid ul {
  list-style: none;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 212, 255, 0.08));
  padding: 2.5rem;
  border-radius: 15px;
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 1s ease both;
  position: relative;
  overflow: hidden;
}

.skills-grid ul::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  opacity: 0;
}

.skills-grid ul:hover::before {
  right: -30%;
  top: -30%;
  opacity: 1;
}

.skills-grid ul:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 25px 60px rgba(108, 99, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.05);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.skills-grid li {
  color: #b0b5cc;
  margin-bottom: 1.2rem;
  padding-left: 1.8rem;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.skills-grid li:hover {
  color: #00d4ff;
  padding-left: 2.2rem;
}

.skills-grid li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #6c63ff;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.skills-grid li:hover::before {
  color: #00d4ff;
  transform: scale(1.3);
}

#contact {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(0, 212, 255, 0.05));
  border-radius: 20px;
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 700px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
}

input, textarea {
  padding: 1.2rem;
  border-radius: 12px;
  border: 1.5px solid rgba(108, 99, 255, 0.2);
  background: rgba(108, 99, 255, 0.05);
  color: #eaeaf0;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: inherit;
  position: relative;
}

input::placeholder, textarea::placeholder {
  color: #888;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.05);
  transform: translateY(-2px);
}

.contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeInUp 1s ease 0.2s both;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-links a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border: 2.5px solid #6c63ff;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.contact-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-links a:hover {
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  color: white;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
  transform: translateY(-5px) scale(1.05);
  border-color: transparent;
}

.contact-email,
.contact-phone {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 700;
}

.contact-email:hover,
.contact-phone:hover {
  color: #00d4ff;
}

#form-status {
  text-align: center;
  color: #00d4ff;
  font-weight: 600;
  min-height: 20px;
}

.footer {
  text-align: center;
  padding: 4rem 2rem;
  color: #888;
  border-top: 1.5px solid rgba(108, 99, 255, 0.25);
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.8), rgba(11, 15, 26, 0.95));
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
}

.footer p {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.footer p:hover {
  color: #00d4ff;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .timeline-item {
    gap: 1rem;
  }
}
