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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #020617;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 6.5rem 0;
}
@media (max-width: 767px) {
  .section-padding {
    padding: 4rem 0;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 9999px;
  border: 2px solid #020617;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.6);
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(168, 85, 247, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: width 0.3s ease, height 0.3s ease;
}
@media (max-width: 767px) {
  .cursor-glow {
    display: none;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

.section-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #14b8a6;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}

.underline {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #14b8a6);
  margin: 1rem auto 0;
  border-radius: 9999px;
}

.card-glowing {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-glowing:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(99, 102, 241, 0.1);
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: rgb(145.8, 147.9, 245.2);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hide {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5), 0 0 15px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}
.btn-outline:active {
  transform: translateY(0);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.avatar-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .avatar-container {
    width: 250px;
    height: 250px;
  }
}

.avatar-glowing-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 35% 65% 70% 30%/30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 50%, rgba(20, 184, 166, 0.4) 100%);
  filter: blur(15px);
  animation: morphingRing 12s infinite alternate, spinRing 25s infinite linear;
  z-index: -1;
}

.avatar-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 35% 65% 70% 30%/30% 30% 70% 70%;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-width: 2px;
  border-color: rgba(99, 102, 241, 0.3);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: morphingRing 12s infinite alternate;
}
.avatar-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.avatar-initials {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff 30%, rgba(248, 250, 252, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
  z-index: 2;
  user-select: none;
  animation: floatInitials 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .avatar-initials {
    font-size: 5rem;
  }
}

.avatar-image-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
}

.avatar-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  opacity: 0.1;
  background-image: radial-gradient(rgba(99, 102, 241, 0.5) 1px, transparent 1px), radial-gradient(rgba(99, 102, 241, 0.5) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 1;
}

@keyframes morphingRing {
  0% {
    border-radius: 35% 65% 70% 30%/30% 30% 70% 70%;
  }
  50% {
    border-radius: 50% 50% 30% 70%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 50% 50%/30% 70% 30% 70%;
  }
}
@keyframes spinRing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes floatInitials {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  cursor: pointer;
  z-index: 100;
}
.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #f8fafc;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(-2px);
}
.nav-toggle.active .bar:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(2px);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), #6366f1, rgba(20, 184, 166, 0.1));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 31px;
  }
}

.timeline-item {
  padding: 1.5rem 0;
  position: relative;
  width: 50%;
  clear: both;
}
.timeline-item:nth-child(odd) {
  float: left;
  padding-right: 3rem;
}
.timeline-item:nth-child(odd) .timeline-date {
  left: calc(100% + 2rem);
  text-align: left;
}
.timeline-item:nth-child(even) {
  float: right;
  padding-left: 3rem;
}
.timeline-item:nth-child(even) .timeline-date {
  right: calc(100% + 2rem);
  text-align: right;
}
@media (max-width: 767px) {
  .timeline-item {
    width: 100%;
    float: none !important;
    padding-left: 4.5rem !important;
    padding-right: 0 !important;
  }
  .timeline-item .timeline-date {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    text-align: left !important;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: #020617;
  border: 3px solid #6366f1;
  position: absolute;
  border-radius: 50%;
  top: 2rem;
  left: 50%;
  margin-left: -8px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .timeline-dot {
    left: 31px;
    top: 4.3rem;
  }
}

.timeline-item:hover .timeline-dot {
  background-color: #14b8a6;
  border-color: #14b8a6;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.8);
  transform: scale(1.2);
}

.timeline-date {
  position: absolute;
  top: 1.8rem;
  width: 150px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #14b8a6;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .timeline-date {
    top: 0;
  }
}

.timeline-content {
  padding: 2rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.timeline-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.timeline-content .timeline-institution {
  font-size: 0.95rem;
  color: rgb(145.8, 147.9, 245.2);
  font-weight: 500;
  margin-bottom: 1rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: #94a3b8;
}
@media (max-width: 767px) {
  .timeline-content {
    padding: 1.5rem;
  }
}

.timeline::after {
  content: "";
  display: table;
  clear: both;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-tag svg {
  width: 16px;
  height: 16px;
  color: #64748b;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-tag:hover {
  color: #f8fafc;
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.05);
  transform: translateY(-2px);
}
.skill-tag:hover svg {
  color: #6366f1;
}
.skill-tag.highlighted {
  border-color: rgba(20, 184, 166, 0.2);
  color: rgb(25, 230, 207.5);
  background: rgba(20, 184, 166, 0.03);
}
.skill-tag.highlighted svg {
  color: #14b8a6;
}
.skill-tag.highlighted:hover {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.08);
}
.skill-tag.highlighted:hover svg {
  color: rgb(25, 230, 207.5);
}

.supp-tag, .lang-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.375rem;
  font-size: 0.85rem;
  color: #94a3b8;
}
.supp-tag svg, .lang-tag svg {
  width: 14px;
  height: 14px;
  color: #14b8a6;
}

.lang-tag strong {
  color: #f8fafc;
  font-weight: 500;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  height: 70px;
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav-logo .logo-accent {
  color: #6366f1;
  font-weight: 900;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0f172a;
    border-left: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding: 3rem;
  }
}

.nav-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #6366f1;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover, .nav-link.active {
  color: #f8fafc;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.nav-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.05);
  border-radius: 0.5rem;
  color: rgb(145.8, 147.9, 245.2);
}
.nav-link.nav-btn::after {
  display: none;
}
.nav-link.nav-btn:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.hero {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}

.hero-content .badge {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.1s forwards;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.4rem;
  }
}
.hero-subtitle .cursor {
  color: #6366f1;
  animation: blink 0.7s infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
@media (max-width: 767px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}
@media (max-width: 767px) {
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-socials {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}
@media (max-width: 767px) {
  .hero-socials {
    justify-content: center;
  }
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.15);
}

.hero-visual {
  animation: fadeIn 1.2s ease 0.3s forwards;
}
@media (max-width: 767px) {
  .hero-visual {
    grid-row: 1;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator .mouse {
  width: 26px;
  height: 44px;
  border: 2px solid #64748b;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background-color: #14b8a6;
  border-radius: 9999px;
  position: absolute;
  top: 8px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  padding: 2.5rem;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}
.about-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #f8fafc;
}
.about-card p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.about-card .card-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.05;
}
.about-card .card-icon svg {
  width: 80px;
  height: 80px;
  color: #6366f1;
}
@media (max-width: 767px) {
  .about-card {
    padding: 1.8rem;
  }
}

.career-card {
  border-left: 4px solid #14b8a6;
}
.career-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.details-card {
  border-left: 4px solid #6366f1;
}

.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}
.about-info-list li svg {
  width: 18px;
  height: 18px;
  color: #6366f1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.about-info-list li strong {
  color: #f8fafc;
  font-weight: 500;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.skills-category-card {
  padding: 2rem;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.skills-category-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}
@media (max-width: 767px) {
  .skills-category-card {
    padding: 1.5rem;
  }
}

.networking-card {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .networking-card {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .networking-card {
    grid-column: span 1;
  }
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding-bottom: 1rem;
}
.category-header svg {
  width: 24px;
  height: 24px;
  color: #6366f1;
}
.category-header h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

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

.skills-supplementary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .skills-supplementary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.supp-box {
  padding: 1.8rem;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.5rem;
}
.supp-box h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #f8fafc;
  border-left: 3px solid #14b8a6;
  padding-left: 0.75rem;
}

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .project-card {
    padding: 1.8rem;
  }
}

.project-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6366f1;
}
.project-icon-box svg {
  width: 24px;
  height: 24px;
}

.project-card:hover .project-icon-box {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
  transform: scale(1.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.project-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}
.project-content p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .certifications-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cert-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.cert-header svg {
  width: 32px;
  height: 32px;
  color: #14b8a6;
  flex-shrink: 0;
}
.cert-header h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8fafc;
}
.cert-header span {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
  margin-top: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-item .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6366f1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-item .info-icon svg {
  width: 20px;
  height: 20px;
}
.info-item .info-details {
  display: flex;
  flex-direction: column;
}
.info-item .info-details span {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-item .info-details strong {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.03);
}
.info-item:hover .info-icon {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}
.info-item:hover .info-details strong {
  color: #6366f1;
}

.contact-form-container {
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .contact-form-container {
    padding: 1.8rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
}
.form-group input, .form-group textarea {
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.5rem;
  color: #f8fafc;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.02);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.form-success-msg {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.5s ease;
}
.form-success-msg svg {
  width: 50px;
  height: 50px;
  color: #14b8a6;
}
.form-success-msg p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background-color: #020617;
}
.footer .heart {
  color: #ef4444;
  display: inline-block;
  animation: pulse 1s infinite alternate;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #64748b;
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.signature-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #020617 0%, rgb(1.184, 3.552, 13.616) 100%);
  position: relative;
  z-index: 2;
}

.signature-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signature-card {
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border-radius: 0.75rem;
  border: 1px dashed rgba(99, 102, 241, 0.2);
  position: relative;
}
.signature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #14b8a6);
  border-radius: 0.75rem 0.75rem 0 0;
}
@media (max-width: 767px) {
  .signature-card {
    padding: 2rem;
  }
}

.signature-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.signature-graphic {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  color: rgb(169.2, 170.85, 247.3);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
  user-select: none;
  transform: rotate(-3deg);
  display: inline-block;
}
@media (max-width: 767px) {
  .signature-graphic {
    font-size: 2.5rem;
  }
}

.signature-divider {
  width: 60%;
  height: 1px;
  background: rgba(100, 116, 139, 0.2);
  margin: 1rem auto 1.5rem;
}

.signature-meta {
  font-size: 0.85rem;
  color: #94a3b8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.signature-meta strong {
  color: #f8fafc;
  font-weight: 600;
}
.signature-meta .dot-divider {
  color: #14b8a6;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #6366f1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
.back-to-top:hover {
  background: #4f46e5;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
