

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #2b88b4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 480px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #001d86;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

.container,
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }

  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  width: 100%;
  max-width: 220px;
  justify-content: center;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #149ddd;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Modern Refresh Overrides
--------------------------------------------------------------*/
:root {
  --surface-0: #f8fafc;
  --surface-1: #ffffff;
  --surface-2: #eef2ff;
  --text-1: #0f172a;
  --text-2: #475569;
  --brand-500: #2563eb;
  --brand-600: #1d4ed8;
  --ring: rgba(37, 99, 235, 0.15);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --header-gradient: linear-gradient(170deg, #0f172a 0%, #1e293b 100%);
  --header-border: rgba(148, 163, 184, 0.2);
  --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%);
  --hero-overlay: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 40%);
  --hero-text: #ffffff;
  --hero-accent: #93c5fd;
  --card-border: #e2e8f0;
  --glass-panel-bg: rgba(255, 255, 255, 0.15);
  --glass-panel-border: rgba(255, 255, 255, 0.3);
  --glass-panel-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

body.dark-mode {
  --surface-0: #020617;
  --surface-1: #0f172a;
  --surface-2: #1e293b;
  --text-1: #ffffff;
  --text-2: #ffffff;
  --brand-500: #3b82f6;
  --brand-600: #2563eb;
  --ring: rgba(59, 130, 246, 0.22);
  --shadow-soft: 0 12px 28px rgba(2, 6, 23, 0.45);
  --header-gradient: linear-gradient(170deg, #020617 0%, #0f172a 100%);
  --header-border: rgba(71, 85, 105, 0.35);
  --hero-gradient: linear-gradient(135deg, #020617 0%, #0f172a 45%, #1d4ed8 100%);
  --hero-overlay: radial-gradient(circle at 20% 20%, rgba(147, 197, 253, 0.2), rgba(255, 255, 255, 0) 45%);
  --hero-text: #f8fafc;
  --hero-accent: #60a5fa;
  --card-border: #334155;
  --glass-panel-bg: rgba(15, 23, 42, 0.28);
  --glass-panel-border: rgba(148, 163, 184, 0.25);
  --glass-panel-shadow: 0 8px 32px rgba(2, 6, 23, 0.38);
}

body.dark-mode,
body.dark-mode p,
body.dark-mode span,
body.dark-mode li,
body.dark-mode strong,
body.dark-mode em,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .nav-menu a,
body.dark-mode .nav-menu a i,
body.dark-mode .section-title p,
body.dark-mode .resume .resume-item h5,
body.dark-mode .contact .info p,
body.dark-mode .contact .info h4 {
  color: #ffffff !important;
}

body.light-mode #about,
body.light-mode #projects,
body.light-mode #skills,
body.light-mode #resume,
body.light-mode #contact,
body.light-mode #about p,
body.light-mode #projects p,
body.light-mode #skills p,
body.light-mode #resume p,
body.light-mode #contact p,
body.light-mode #about span,
body.light-mode #projects span,
body.light-mode #skills span,
body.light-mode #resume span,
body.light-mode #contact span,
body.light-mode #about li,
body.light-mode #resume li,
body.light-mode #contact li,
body.light-mode #about strong,
body.light-mode #resume strong,
body.light-mode #contact strong,
body.light-mode #about em,
body.light-mode #resume em,
body.light-mode #contact em,
body.light-mode #about h2,
body.light-mode #about h3,
body.light-mode #projects h2,
body.light-mode #projects h3,
body.light-mode #skills h2,
body.light-mode #resume h2,
body.light-mode #resume h3,
body.light-mode #resume h4,
body.light-mode #resume h5,
body.light-mode #contact h2,
body.light-mode #contact h4 {
  color: #0f172a !important;
}

body.light-mode .skill-node  {
  color: #ffffff !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-1);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--hero-overlay), var(--hero-gradient);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

a {
  color: var(--brand-500);
}

a:hover {
  color: var(--brand-600);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: var(--text-1);
}

#header .profile h1,
.skills .progress .skill,
.resume .resume-item h4 {
  font-family: "Inter", sans-serif;
}

#header .d-flex.flex-column {
  height: 100%;
}

.container,
.container-fluid {
  padding-left: 36px;
  padding-right: 36px;
}

#header {
  top: 36px;
  left: 16px;
  bottom: 36px;
  width: 400px;
  height: 700px;
  padding: 12px 14px;
  bottom: 16px;
  width: 232px;
  padding: 12px 10px;
  background: var(--header-gradient);
  border: 1px solid var(--header-border);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
}

#main {
  margin-left: 264px;
}

.theme-toggle-btn {
  margin: 12px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  transition: all 0.25s ease;
}

.theme-toggle-btn:hover {
  background: rgba(59, 130, 246, 0.32);
  border-color: rgba(96, 165, 250, 0.55);
}

#header .profile img {
  border: 6px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

#header .profile .social-links a {
  background: rgba(148, 163, 184, 0.15);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

#header .profile .social-links a:hover {
  background: var(--brand-500);
  transform: translateY(-2px);
}

.nav-menu a,
.nav-menu a:focus {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 18px 0;
}

.nav-menu > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  background: rgba(148, 163, 184, 0.18);
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #60a5fa;
}

.mobile-nav-toggle {
  background: var(--brand-500);
  box-shadow: 0 10px 20px var(--ring);
}

.mobile-nav-toggle:hover {
  background: var(--brand-600);
}

.back-to-top {
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.35);
}

.back-to-top:hover {
  background: #2616a3;
}

@media (max-width: 1199px) {
  #header {
    top: 12px;
    left: -108px;
    bottom: 12px;
    width: 88px;
    padding: 14px 8px;
    border-radius: 20px;
    border: 1px solid var(--header-border);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
  }

  #main {
    margin-left: 0;
  }

  .nav-menu {
    display: block;
    flex: initial;
    padding: 18px 0 0;
  }

  #header .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #header .profile img {
    width: 54px;
    margin: 4px auto 0;
    border-width: 4px;
  }

  #header .profile h1,
  #header .profile .social-links,
  .nav-menu a span,
  .theme-toggle-btn span {
    display: none;
  }

  .theme-toggle-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    margin-top: 2px;
    border-radius: 14px;
  }

  .theme-toggle-btn i {
    padding: 0;
    font-size: 1rem;
  }

  .nav-menu > ul {
    gap: 8px;
  }

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
    min-height: 56px;
    margin: 0 auto 8px;
    padding: 0;
    justify-content: center;
    border-radius: 16px;
  }

  .nav-menu a i,
  .nav-menu a:focus i {
    padding-right: 0;
    font-size: 1.35rem;
  }

  .mobile-nav-active #header {
    left: 12px;
  }
}
#hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

#hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

#hero #hero-network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--hero-text);
}

#hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 0;
  color: var(--hero-text);
}

#hero p span {
  color: var(--hero-text);
  border-bottom: 3px solid var(--hero-accent);
}

.about-profile-image {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

section {
  padding: 10px 0;
}

.section-bg {
  background: transparent;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
}

.section-title h2::after {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-500), #60a5fa);
}

#about .container,
#projects .container,
#skills .container,
#resume .container,
#contact .container {
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-panel-border);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: var(--glass-panel-shadow);
  padding-top: 36px;
  padding-bottom: 36px;
}

.about .content ul li,
.resume .resume-item ul li {
  color: var(--text-2);
}

.about .content ul i {
  color: var(--brand-500);
}

.projects .project-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.projects .project-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

.projects .project-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.projects .project-media-links {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
}

.projects .project-media-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(15, 23, 42, 0.42);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  margin-top: 30px;
  transition: 0.3s;
}

.projects .project-media-link:hover {
  color: #fff;
  background: var(--brand-500);
  border-color: rgba(96, 165, 250, 0.9);
}

.projects .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.projects .project-card:hover .project-media-links {
  opacity: 1;
}

.projects .project-card:hover .project-media-link {
  margin-top: 0;
}

.projects .project-card:hover .project-image {
  transform: scale(1.06);
}

.projects .project-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.projects .project-card p {
  color: var(--text-2);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .projects .project-image {
    height: 200px;
  }
}

.skills-orbit {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 12px;
}

.skill-node {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid var(--accent-soft, rgba(147, 197, 253, 0.38));
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 0 12px var(--accent-soft, rgba(96, 165, 250, 0.28));
  animation: skill-fade 3.5s ease-in-out infinite;
  transform: translate3d(var(--x, 0), var(--y, 0), 0) scale(var(--scale, 1));
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  will-change: transform, opacity;
  -webkit-user-select: none;
  user-select: none;
}

.skill-html {
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.4);
}

.skill-css {
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.4);
}

.skill-javascript {
  --accent: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.38);
}

.skill-react {
  --accent: #60a5fa;
  --accent-soft: rgba(96, 165, 250, 0.4);
}

.skill-nodejs {
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.38);
}

.skill-flutter {
  --accent: #06b6d4;
  --accent-soft: rgba(6, 182, 212, 0.38);
}

.skill-dart {
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.38);
}

.skill-postgresql {
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.38);
}

.skill-mysql {
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.38);
}

.skill-java {
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.38);
}

.skill-python {
  --accent: #84cc16;
  --accent-soft: rgba(132, 204, 22, 0.38);
}

.skill-django {
  --accent: #a855f7;
  --accent-soft: rgba(168, 85, 247, 0.38);
}

.skill-php {
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.38);
}

.skill-github {
  --accent: #94a3b8;
  --accent-soft: rgba(148, 163, 184, 0.38);
}

.skill-git {
  --accent: #ef4444;
  --accent-soft: rgba(239, 68, 68, 0.38);
}

.skill-wordpress {
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.38);
}

.skill-design {
  --accent: #f472b6;
  --accent-soft: rgba(244, 114, 182, 0.38);
}

.skill-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), var(--accent-soft, rgba(191, 219, 254, 0.45)), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  animation: skill-shine 3s linear infinite;
}

.skill-node i {
  font-size: 1.2rem;
  color: var(--accent, #93c5fd);
  text-shadow: 0 0 14px var(--accent-soft, rgba(96, 165, 250, 0.6));
}

.skill-node span {
  color: #ffffff;
  font-size: 0.9rem;
}

.skill-node:hover {
  --scale: 1.14;
  border-color: var(--accent, rgba(191, 219, 254, 0.85));
  box-shadow: 0 0 28px var(--accent-soft, rgba(96, 165, 250, 0.88)), 0 0 56px var(--accent-soft, rgba(59, 130, 246, 0.45));
  background: rgba(15, 23, 42, 0.7);
}

.skills-orbit .skill-node:nth-child(odd) {
  animation-delay: -1.3s;
}

.skills-orbit .skill-node:nth-child(3n) {
  animation-delay: -2.2s;
}

@keyframes skill-fade {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes skill-shine {
  0% {
    opacity: 0;
    transform: translateX(-26%);
  }

  35% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translateX(26%);
  }
}

@media (max-width: 768px) {
  .skills-orbit {
    min-height: 520px;
  }

  .skill-node {
    padding: 8px 12px;
  }

  .skill-node i {
    font-size: 1.05rem;
  }

  .skill-node span {
    font-size: 0.82rem;
  }
}

.resume .resume-item {
  border-left: 2px solid #cbd5e1;
}

.resume .resume-item::before {
  background: var(--surface-1);
  border: 2px solid var(--brand-500);
}

.resume .resume-item h5 {
  border-radius: 999px;
  background: var(--surface-2);
  color: #1e3a8a;
}

.contact {
  padding-bottom: 84px;
}

.contact .info {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.contact .php-email-form {
  width: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .php-email-form label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0f172a;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 12px;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.95);
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(90deg, var(--brand-500), #3b82f6);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.3s;
  border-radius: 999px;
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500));
}

body.dark-mode .contact .php-email-form label,
body.dark-mode .contact .php-email-form input,
body.dark-mode .contact .php-email-form textarea {
  color: #ffffff !important;
}

body.dark-mode .contact .php-email-form input,
body.dark-mode .contact .php-email-form textarea {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.45);
}

body.dark-mode .contact .php-email-form input::placeholder,
body.dark-mode .contact .php-email-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.85);
}

.contact .info i {
  background: #e0edff;
  color: var(--brand-500);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--brand-500);
  color: #fff;
}

@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  #about .container,
  #projects .container,
  #skills .container,
  #resume .container,
  #contact .container {
    border-radius: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  section {
    padding: 44px 0;
  }
}


.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
