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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  transition: background-color 0.3s, color 0.3s;
}

:root {
  --primary-color: #667eea;
  --primary-dark: #5a67d8;
  --secondary-color: #64748b;
  --accent-color: #764ba2;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --background-color: #ffffff;
  --surface-color: #f7fafc;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --shadow-light: 0 0.0625rem 0.1875rem 0 rgba(102, 126, 234, 0.1);
  --shadow-medium: 0 0.25rem 0.375rem -0.0625rem rgba(102, 126, 234, 0.1);
  --shadow-large: 0 0.625rem 0.9375rem -0.1875rem rgba(102, 126, 234, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(102, 126, 234, 0.2);
  --pastel-blue: #e3f2fd;
  --pastel-purple: #f3e5f5;
  --pastel-green: #e8f5e8;
  --pastel-orange: #fff3e0;
  --pastel-pink: #fce4ec;
  --pastel-cyan: #e0f2f1;
}

body[data-theme=dark] {
  --primary-color: #5eacff;
  --primary-dark: #4f9df5;
  --secondary-color: #cbd5e1;
  --accent-color: #667eea;
  --gradient-primary: linear-gradient(135deg, #5eacff 0%, #667eea 100%);
  --background-color: #0a0e1a;
  --surface-color: #1a1f2e;
  --text-primary: #f7fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #a0aec0;
  --border-color: #2d3748;
  --shadow-light: 0 0.0625rem 0.1875rem 0 rgba(159, 122, 234, 0.3);
  --shadow-medium: 0 0.25rem 0.375rem -0.0625rem rgba(159, 122, 234, 0.3);
  --shadow-large: 0 0.625rem 0.9375rem -0.1875rem rgba(159, 122, 234, 0.3);
  --glass-bg: rgba(10, 14, 26, 0.1);
  --glass-border: rgba(159, 122, 234, 0.2);
  --pastel-blue: #1a365d;
  --pastel-purple: #322659;
  --pastel-green: #1c4532;
  --pastel-orange: #744210;
  --pastel-pink: #702459;
  --pastel-cyan: #234e52;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

body[data-theme=dark] p {
  color: var(--text-secondary);
}
body[data-theme=dark] h1,
body[data-theme=dark] h2,
body[data-theme=dark] h3,
body[data-theme=dark] h4,
body[data-theme=dark] h5,
body[data-theme=dark] h6 {
  color: var(--text-primary);
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem) saturate(180%);
  border: none;
  border-bottom: 1px solid #f5f5f5;
  z-index: 1000;
  transition: all 0.3s;
}
body[data-theme=dark] .nav-header {
  background: var(--glass-bg);
  border-bottom: 1px solid #2d3748;
}

/* Animation Enhancements */
.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border-bottom: 1px solid #e2e8f0;
}

body[data-theme=dark] .nav-header.scrolled {
  background: rgba(10, 14, 26, 0.2);
  border-bottom: 1px solid #2d3748;
}

.nav-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.375rem;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  text-decoration: none;
}
body[data-theme=dark] .nav-brand a {
  color: #f7fafc;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: var(--primary-color);
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-secondary);
}
.theme-toggle:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: var(--text-primary);
  margin: 0.1875rem 0;
  transition: 0.3s;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 0 3.125rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, var(--background-color) 100%);
}

.hero-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 75rem;
  margin: 0 auto;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: none;
  box-shadow: var(--shadow-large);
  transition: transform 0.3s;
  object-fit: cover;
}
.profile-image:hover {
  transform: translateY(-0.3rem);
}

.hero-image {
  flex-shrink: 0;
  width: 17.5rem;
  height: 17.5rem;
}

.hero-greeting {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-greeting-text {
  color: #1a202c;
}
body[data-theme=dark] .hero-greeting-text {
  color: #f7fafc;
}

.hero-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  color: var(--primary-color);
}
body[data-theme=dark] .hero-name {
  background: var(--gradient-primary);
  color: var(--primary-color);
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 37.5rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-large);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-medium);
}

/* Ensure text is visible in dark mode */
body[data-theme=dark] .hero-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-color);
}

.btn-secondary {
  position: relative;
  background: transparent;
  color: transparent;
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  padding: 2px;
  /* thickness of the border */
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-secondary:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-medium);
}

.experience-section {
  padding: 6.25rem 0;
  background-color: var(--surface-color);
}

.timeline {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1.875rem;
  top: 0;
  bottom: 0;
  width: 0.125rem;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 5rem;
}

.timeline-marker {
  position: absolute;
  left: 1.375rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 0.25rem solid var(--background-color);
  box-shadow: var(--shadow-medium);
}
body[data-theme=dark] .timeline-marker {
  background: var(--gradient-primary);
}

.timeline-content {
  position: relative;
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-content:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-large);
}
body[data-theme=dark] .timeline-content {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-header {
  margin-bottom: 1rem;
}
.timeline-header h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-company {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
body[data-theme=dark] .timeline-company {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-panel-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Link icon in corner */
.panel-link-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  color: var(--primary-color);
  opacity: 0.8;
  pointer-events: none;
  /* Prevents the icon from blocking click */
}

.highlights-section {
  padding: 6.25rem 0;
  background-color: var(--background-color);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background-color: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  box-shadow: var(--shadow-light);
}
.highlight-card h3 {
  font-size: 1.3rem;
}
.highlight-card:hover {
  transform: translateY(-0.1875rem) !important;
  box-shadow: var(--shadow-large);
}
body[data-theme=dark] .highlight-card {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}
body[data-theme=dark] .highlight-icon {
  background: var(--gradient-primary);
}

.education-section {
  min-height: 90vh;
  background-color: var(--background-color);
  display: grid;
  align-items: center;
  padding-bottom: 8rem;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.education-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
  transition: all 0.3s;
}
.education-card:hover {
  transform: translateY(-0.2rem) !important;
  box-shadow: var(--shadow-large);
}
body[data-theme=dark] .education-card {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.education-icon {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}
body[data-theme=dark] .education-icon {
  background: var(--gradient-primary);
}

.education-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.education-institution {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.education-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.education-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.skills-section {
  padding: 6.25rem 0;
  background-color: var(--surface-color);
}

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

.skill-category {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s;
}
.skill-category:hover {
  transform: translateY(-0.1875rem);
  box-shadow: var(--shadow-medium);
}
body[data-theme=dark] .skill-category {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.skill-category h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}
.skill-tag.frontend {
  background-color: var(--pastel-blue);
  color: #1e40af;
  border: 1px solid rgba(30, 64, 175, 0.2);
}
body[data-theme=dark] .skill-tag.frontend {
  background-color: var(--pastel-blue);
  color: #93c5fd;
}
.skill-tag.backend {
  background-color: var(--pastel-purple);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
}
body[data-theme=dark] .skill-tag.backend {
  background-color: var(--pastel-purple);
  color: #c4b5fd;
}
.skill-tag.tools {
  background-color: var(--pastel-green);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}
body[data-theme=dark] .skill-tag.tools {
  background-color: var(--pastel-green);
  color: #6ee7b7;
}
.skill-tag.soft {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
body[data-theme=dark] .skill-tag.soft {
  background-color: #7f1d1d;
  color: #fca5a5;
}
.skill-tag.other {
  background-color: #fefce8;
  color: #ca8a04;
  border: 1px solid rgba(202, 138, 4, 0.2);
}
body[data-theme=dark] .skill-tag.other {
  background-color: #78350f;
  color: #fde68a;
}
.skill-tag:hover {
  transform: translateY(-0.1875rem);
  box-shadow: var(--shadow-medium);
}

.contact-section {
  padding: 6.25rem 0;
  background-color: var(--background-color);
}

.contact-content {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: var(--shadow-light);
}
.contact-link:hover {
  transform: translateY(-0.1875rem);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-color);
}
.contact-link i {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-theme=dark] .contact-link i {
  background: var(--gradient-primary);
}

body[data-theme=dark] .contact-link i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 48rem) {
  .nav-links {
    display: none;
  }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .social-btn {
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 1.3rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-greeting {
    font-size: 2rem;
  }
  .hero-image {
    width: 13.75rem;
    height: 13.75rem;
  }
  .profile-image {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 0.5rem;
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .timeline-content {
    padding: 1.5rem;
  }
  .highlight-card {
    padding: 2rem 1.5rem;
  }
  .skill-category {
    padding: 1.5rem;
  }
  .contact-links {
    grid-template-columns: 1fr;
  }
  .container,
  .nav-container {
    padding: 0 1rem;
  }
}
@media (max-width: 30rem) {
  .hero-greeting {
    font-size: 1.75rem;
  }
  .hero-image {
    width: 11.25rem;
    height: 11.25rem;
  }
  .profile-image {
    width: 9.375rem;
    height: 9.375rem;
  }
}
@media (max-width: 410px) {
  .hero-section {
    padding-top: 12vh;
    min-height: 80vh;
  }
  .education-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .education-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .education-icon {
    margin-bottom: 1rem;
  }
}
.faq-section {
  padding: 3rem 0 6.25rem 0;
  background-color: var(--background-color);
  min-height: 70vh;
}

.faq-content {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto;
}

.faq-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

body[data-theme=dark] .contact-link i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-flex .ms-flex-row .ms-items-center p {
  color: #1a202c !important;
}
.ms-flex .ms-flex-row .ms-items-center p:has(a) {
  opacity: 0.3;
}

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