@charset "UTF-8";
/* Import all partials */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  line-height: 1.6;
  color: #abb2bf;
  background: #282c34;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(97, 175, 239, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(198, 120, 221, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(86, 182, 194, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
}

a {
  color: #61afef;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #c678dd;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #282c34;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #61afef, #c678dd);
  border-radius: 4px;
  border: 2px solid #282c34;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #70b7f0, #cf88e4);
}

::selection {
  background: rgba(97, 175, 239, 0.3);
  color: #e6e6e6;
}

::-moz-selection {
  background: rgba(97, 175, 239, 0.3);
  color: #e6e6e6;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(97, 175, 239, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: move-grid 20s linear infinite;
  opacity: 0.3;
}

@keyframes move-grid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  background: rgba(44, 49, 60, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px;
  border: 1px solid rgba(62, 68, 81, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.profile-image {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.profile-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(#282c34, #282c34) padding-box, linear-gradient(135deg, #61afef 0%, #c678dd 100%) border-box;
  box-shadow: 0 0 20px rgba(97, 175, 239, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.profile-image img:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 20px rgba(97, 175, 239, 0.3), 0 0 30px rgba(97, 175, 239, 0.4);
}
.profile-image::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}
.name {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #e6e6e6;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #61afef, #c678dd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.title {
  font-size: 1.3rem;
  color: #56b6c2;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.description {
  font-size: 1.1rem;
  color: #abb2bf;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(44, 49, 60, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(62, 68, 81, 0.3);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.social-link:hover {
  background: rgba(97, 175, 239, 0.2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 20px rgba(97, 175, 239, 0.3);
  border-color: #61afef;
}

section {
  margin: 40px 0;
  padding: 60px 40px;
  background: rgba(44, 49, 60, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(62, 68, 81, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 600px 800px at 90% 0%, rgba(198, 120, 221, 0.05) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0.8;
}
section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  color: #e6e6e6;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  border-radius: 2px;
}
section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  border-radius: 4px;
}

.about-content p {
  font-size: 1.1rem;
  color: #abb2bf;
  margin-bottom: 30px;
  line-height: 1.8;
}

.skills h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 15px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skill-tag {
  background: rgba(97, 175, 239, 0.1);
  color: #61afef;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid rgba(97, 175, 239, 0.3);
  position: relative;
  overflow: hidden;
}
.skill-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(97, 175, 239, 0.2), transparent);
  transition: left 0.5s ease;
}
.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(97, 175, 239, 0.3);
  background: rgba(97, 175, 239, 0.2);
}
.skill-tag:hover::before {
  left: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  background: rgba(44, 49, 60, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(62, 68, 81, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.project-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(97, 175, 239, 0.08) 0%, transparent 60%);
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.project-card p {
  color: #abb2bf;
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-card:hover {
  background: rgba(44, 49, 60, 0.6);
  border-color: rgba(97, 175, 239, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(97, 175, 239, 0.3);
}
.project-card:hover::before {
  opacity: 1;
}

.project-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(97, 175, 239, 0.2), rgba(198, 120, 221, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #61afef;
  font-size: 1.5rem;
  border: 1px solid rgba(97, 175, 239, 0.3);
  position: relative;
}
.project-image::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 12px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.project-card:hover .project-image::after {
  opacity: 0.3;
}

.project-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.project-header-content h3 {
  margin-bottom: 0;
  flex: 1;
}

.current-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #98c379, #7cb05d);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 15px;
}
.current-badge i {
  font-size: 0.6rem;
}

.current-job {
  border: 2px solid #98c379;
  box-shadow: 0 5px 20px rgba(152, 195, 121, 0.2);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.project-highlights {
  margin-top: 20px;
  margin-bottom: 20px;
}
.project-highlights h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 15px;
}
.project-highlights ul {
  list-style: none;
  padding: 0;
}
.project-highlights ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #abb2bf;
  font-size: 0.875rem;
}
.project-highlights ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #61afef;
  font-weight: 700;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #61afef;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.project-link:hover {
  color: #c678dd;
}

.personal-projects {
  padding: 60px 0;
  background: rgba(44, 49, 60, 0.2);
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}
.personal-projects::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 600px 800px at 90% 0%, rgba(97, 175, 239, 0.05) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0.8;
}
.personal-projects h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  color: #e6e6e6;
  position: relative;
}
.personal-projects h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  border-radius: 2px;
}

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

.personal-project-card {
  background: rgba(44, 49, 60, 0.4);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(62, 68, 81, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.personal-project-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(198, 120, 221, 0.08) 0%, transparent 60%);
  transition: all 0.5s ease;
  opacity: 0;
}
.personal-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(97, 175, 239, 0.3);
  border-color: rgba(97, 175, 239, 0.3);
  background: rgba(44, 49, 60, 0.6);
}
.personal-project-card:hover::before {
  opacity: 1;
}

.personal-project-header {
  margin-bottom: 15px;
}
.personal-project-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 15px;
  margin-bottom: 5px;
  color: #61afef;
}

.personal-project-subtitle {
  font-size: 0.875rem;
  color: #abb2bf;
  margin-bottom: 10px;
}

.personal-project-description {
  color: #abb2bf;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.personal-project-demo {
  margin-bottom: 20px;
}
.personal-project-demo .demo-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
}
.personal-project-demo .demo-images img {
  height: auto;
  display: block;
}
.personal-project-demo .demo-images img.demo-desktop {
  flex: 1 1 70%;
  max-width: 70%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.personal-project-demo .demo-images img.demo-mobile {
  flex: 0 0 25%;
  max-width: 25%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.personal-project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.personal-project-tech .tech-tag {
  background: linear-gradient(135deg, rgba(97, 175, 239, 0.1), rgba(198, 120, 221, 0.1));
  color: #61afef;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(97, 175, 239, 0.2);
}

.personal-project-highlights {
  margin-bottom: 20px;
}
.personal-project-highlights ul {
  list-style: none;
  padding: 0;
}
.personal-project-highlights ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #abb2bf;
  font-size: 0.875rem;
}
.personal-project-highlights ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c678dd;
  font-weight: 700;
}

.personal-project-links {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.personal-project-links .btn {
  flex: 1;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.personal-project-links .btn.btn-primary {
  background: linear-gradient(135deg, #61afef, #c678dd);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.personal-project-links .btn.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.personal-project-links .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(97, 175, 239, 0.4);
}
.personal-project-links .btn.btn-primary:hover::before {
  left: 100%;
}
.personal-project-links .btn.btn-secondary {
  background: rgba(44, 49, 60, 0.5);
  color: #56b6c2;
  border: 1px solid rgba(86, 182, 194, 0.5);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.personal-project-links .btn.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(86, 182, 194, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.personal-project-links .btn.btn-secondary:hover {
  background: rgba(86, 182, 194, 0.1);
  border-color: #56b6c2;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(86, 182, 194, 0.3);
}
.personal-project-links .btn.btn-secondary:hover::after {
  opacity: 1;
}

.personal-project-period {
  text-align: right;
  font-size: 0.75rem;
  color: #5c6370;
  margin-top: auto;
}
.personal-project-period i {
  margin-right: 5px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #61afef 10%, #c678dd 50%, #61afef 90%, transparent);
  opacity: 0.5;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  border-radius: 50%;
  border: 4px solid #282c34;
  box-shadow: 0 0 0 4px rgba(97, 175, 239, 0.2);
}
.timeline-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 175, 239, 0.4), transparent);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
  background: rgba(44, 49, 60, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(62, 68, 81, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(86, 182, 194, 0.06) 0%, transparent 60%);
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 15px;
  margin-bottom: 5px;
  color: #e6e6e6;
}
.timeline-content p {
  color: #abb2bf;
  line-height: 1.6;
}
.timeline-content:hover {
  background: rgba(44, 49, 60, 0.5);
  border-color: rgba(97, 175, 239, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.timeline-content:hover::before {
  opacity: 1;
}

.experience-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-right: 10px;
}
.experience-header h3 {
  margin-bottom: 0;
  flex: 1;
}

.timeline-item.current-job .timeline-dot {
  background: linear-gradient(135deg, #98c379, #7cb05d);
  box-shadow: 0 0 0 4px rgba(152, 195, 121, 0.2);
}

.company {
  color: #61afef;
  font-weight: 500;
  margin-bottom: 5px;
}

.period {
  color: #5c6370;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.department {
  color: #5c6370;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.experience-details {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}
.experience-details .detail-item {
  margin-bottom: 15px;
}
.experience-details .detail-item:last-child {
  margin-bottom: 0;
}
.experience-details .detail-item strong {
  color: #e6e6e6;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.experience-details .tech-stack {
  color: #61afef;
  font-weight: 500;
  background: rgba(97, 175, 239, 0.1);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.experience-details .task-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience-details .task-list li {
  color: #abb2bf;
  padding: 2px 0;
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
}
.experience-details .task-list li::before {
  content: "▸";
  color: #61afef;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.8rem;
}

.contact {
  text-align: center;
}
.contact p {
  font-size: 1.1rem;
  color: #abb2bf;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn.linkedin {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  color: #fff;
  background: rgba(44, 49, 60, 0.8);
  border: 1px solid #61afef;
  color: #61afef;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(97, 175, 239, 0.2);
}
.contact-btn.linkedin:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact-btn.linkedin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 175, 239, 0.3), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-btn.linkedin:hover {
  background: linear-gradient(135deg, rgba(97, 175, 239, 0.2), rgba(97, 175, 239, 0.1));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(97, 175, 239, 0.3);
  color: #e6e6e6;
  border-color: #56b6c2;
}
.contact-btn.linkedin:hover::before {
  width: 300px;
  height: 300px;
}
.contact-btn.lapras {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  color: #fff;
  background: rgba(44, 49, 60, 0.8);
  border: 1px solid #98c379;
  color: #98c379;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(152, 195, 121, 0.2);
}
.contact-btn.lapras:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact-btn.lapras::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(152, 195, 121, 0.2), transparent);
  transition: left 0.6s ease;
}
.contact-btn.lapras:hover {
  background: linear-gradient(135deg, rgba(152, 195, 121, 0.2), rgba(152, 195, 121, 0.1));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(152, 195, 121, 0.3);
  color: #e6e6e6;
  border-color: #e5c07b;
}
.contact-btn.lapras:hover::before {
  left: 100%;
}
.contact-btn.github {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #61afef;
  border-color: #61afef;
  background: rgba(44, 49, 60, 0.8);
  border: 1px solid #c678dd;
  color: #c678dd;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(198, 120, 221, 0.2);
}
.contact-btn.github:hover {
  background: #61afef;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact-btn.github::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(198, 120, 221, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-btn.github:hover {
  background: linear-gradient(135deg, rgba(198, 120, 221, 0.2), rgba(198, 120, 221, 0.1));
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 25px rgba(198, 120, 221, 0.3);
  color: #e6e6e6;
  border-color: #56b6c2;
}
.contact-btn.github:hover::after {
  opacity: 1;
}
.contact-btn.primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
  color: #fff;
  background: linear-gradient(135deg, #61afef, #c678dd);
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-btn.primary:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact-btn.primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-btn.primary:hover::before {
  width: 300px;
  height: 300px;
}
.contact-btn.secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #61afef;
  border-color: #61afef;
  background: rgba(44, 49, 60, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(62, 68, 81, 0.3);
  color: #abb2bf;
}
.contact-btn.secondary:hover {
  background: #61afef;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.contact-btn.secondary:hover {
  background: rgba(44, 49, 60, 0.8);
  border-color: #61afef;
  color: #61afef;
}

.footer {
  text-align: center;
  padding: 40px 0;
  color: #abb2bf;
  font-size: 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(44, 49, 60, 0.3));
  margin-top: 60px;
  border-top: 1px solid rgba(62, 68, 81, 0.2);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(135deg, #61afef 0%, #c678dd 100%);
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 40px 20px;
    margin: 10px 0;
  }
  .name {
    font-size: 2.5rem;
  }
  .title {
    font-size: 1.2rem;
  }
  section {
    padding: 40px 20px;
    margin: 20px 0;
  }
  section h2 {
    font-size: 2rem;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social-links {
    gap: 15px;
  }
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-dot {
    left: 6px;
    width: 18px;
    height: 18px;
  }
  .experience-details {
    margin-top: 10px;
    padding-top: 10px;
  }
  .experience-details .detail-item {
    margin-bottom: 15px;
  }
  .experience-details .tech-stack {
    font-size: 0.8rem;
    padding: 2px 4px;
  }
  .experience-details .task-list li {
    font-size: 0.85rem;
    padding-left: 15px;
  }
  .project-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .current-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  .personal-project-demo .demo-images {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }
  .personal-project-demo .demo-images img.demo-desktop {
    max-width: 100%;
  }
  .personal-project-demo .demo-images img.demo-mobile {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .name {
    font-size: 2rem;
  }
  .description {
    font-size: 1rem;
  }
  .skill-tags {
    gap: 8px;
  }
  .skill-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/*# sourceMappingURL=style.css.map */