@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #050915;
  --panel: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --muted: #9aa3b8;
  --text: #e8ecf5;
  --heading: #f7f8fb;
  --accent: #ff7a18;
  --accent-2: #ff2d80;
  --glow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s ease;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 15% 20%, rgba(255, 122, 24, 0.18), transparent 26%),
              radial-gradient(circle at 80% 0%, rgba(255, 45, 128, 0.18), transparent 32%),
              radial-gradient(circle at 70% 85%, rgba(255, 122, 24, 0.12), transparent 32%),
              var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

*::selection {
  background: rgba(255, 122, 24, 0.25);
  color: #fff;
}

html::-webkit-scrollbar {
  width: 0.9rem;
}
html::-webkit-scrollbar-track {
  background: #0b1020;
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff7a18, #ff2d80);
  border-radius: 12px;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #0d1328;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 8%;
  height: 6.5rem;
  background: rgba(5, 9, 21, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

section {
  min-height: auto;
  padding: 4rem 8%;
  margin-bottom: 2rem;
}

.heading {
  font-size: 3.5rem;
  color: var(--heading);
  font-weight: 800;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 1rem;
}

.heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.6);
}

.heading i {
  color: var(--accent);
  margin-right: 0.6rem;
  font-size: 3.2rem;
}

.heading span {
  color: var(--accent);
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.04em;
}

header .logo i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-right: 0.4rem;
}

header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}

header .navbar ul li a {
  font-size: 1.45rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.6rem 0;
  position: relative;
}

header .navbar ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #fff;
}

header .navbar ul li a.active::after,
header .navbar ul li a:hover::after {
  transform: scaleX(1);
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: var(--text);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 78%;
    height: 100%;
    background: #0c1228;
    padding: 2rem;
    text-align: left;
    align-items: flex-start;
  }
  header .navbar ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem 0;
    text-align: left;
    color: #fff;
    font-size: 1.8rem;
  }
  header .navbar.nav-toggle {
    right: 0;
  }
  .fa-times {
    transform: rotate(180deg);
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  gap: 2rem;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 6rem 8% 4rem 8% !important;
  margin-top: -2rem;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

/* Home Container - Main flex wrapper */
.home-container {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Column */
.home-left {
  flex: 0 1 45%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-left .content {
  padding-top: 1rem;
}

.home-left h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

.home-left h2 span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Role Badges */
.role-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid;
  transition: all 0.3s ease;
}

.badge-network {
  background: rgba(255, 122, 24, 0.1);
  color: #ff7a18;
  border-color: rgba(255, 122, 24, 0.3);
}

.badge-network:hover {
  background: rgba(255, 122, 24, 0.2);
  border-color: rgba(255, 122, 24, 0.5);
  transform: translateY(-2px);
}

.badge-software {
  background: rgba(255, 45, 128, 0.1);
  color: #ff2d80;
  border-color: rgba(255, 45, 128, 0.3);
}

.badge-software:hover {
  background: rgba(255, 45, 128, 0.2);
  border-color: rgba(255, 45, 128, 0.5);
  transform: translateY(-2px);
}

.badge-data {
  background: rgba(100, 200, 255, 0.1);
  color: #64c8ff;
  border-color: rgba(100, 200, 255, 0.3);
}

.badge-data:hover {
  background: rgba(100, 200, 255, 0.2);
  border-color: rgba(100, 200, 255, 0.5);
  transform: translateY(-2px);
}

/* Typing Text */
.home-left p {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.home-left .typing-text {
  color: var(--accent);
  font-weight: 600;
}

/* Subtitle */
.subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem !important;
  font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), #ff5a00);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}

.secondary-btn {
  background: rgba(255, 122, 24, 0.1);
  color: var(--accent);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(255, 122, 24, 0.2);
  transform: translateY(-3px);
}

/* Right Column */
.home-right {
  flex: 0 1 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: auto;
}

.home .image {
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  order: 1;
}

.space-container {
  position: relative;
  width: 65%;
  margin-left: 0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 140, 30, 0.3),
              inset 0 2px 8px rgba(255, 255, 255, 0.1);
  border: 6px solid rgba(255, 140, 30, 0.4);
  cursor: pointer;
  position: relative;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  filter: brightness(1.05) contrast(1.08) saturate(1.1);
  transition: filter 0.3s ease;
}

.profile-img:hover {
  filter: brightness(1.1) contrast(1.12) saturate(1.15);
}

.profile-glow {
  position: absolute;
  width: 106%;
  height: 106%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 30, 0.2), transparent 60%);
  top: -3%;
  left: -3%;
  z-index: 2;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Gradient transformation layers */
.space-container::before {
  content: '';
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 30%, rgba(255, 140, 30, 0.15) 50%, transparent 70%);
  transform: rotate(0deg);
  z-index: 0;
  opacity: 0.8;
  animation: rotate-gradient 20s linear infinite;
}

.space-container::after {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%, rgba(255, 140, 30, 0.1) 55%, transparent 75%);
  transform: rotate(180deg);
  z-index: 1;
  opacity: 0.6;
  animation: rotate-gradient-reverse 25s linear infinite;
}

.gradient-layer-1 {
  position: absolute;
  inset: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 45%, rgba(255, 140, 30, 0.08) 60%, transparent 80%);
  z-index: -1;
  opacity: 0.6;
  animation: gradient-drift 15s ease-in-out infinite;
}

.gradient-layer-2 {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%, rgba(255, 140, 30, 0.12) 55%, transparent 75%);
  z-index: -1;
  animation: gradient-pulse 12s ease-in-out infinite;
}

.gradient-layer-3 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(255, 140, 30, 0.05) 65%, transparent 85%);
  z-index: 1;
  opacity: 0.5;
  animation: rotate-conic 18s linear infinite;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-gradient-reverse {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(-180deg);
  }
}

@keyframes gradient-drift {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes gradient-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes rotate-conic {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, rgba(255, 140, 30, 0.9), rgba(255, 165, 50, 0.7), rgba(255, 140, 30, 0.9)) border-box;
  box-shadow: 0 0 20px rgba(255, 140, 30, 0.5), inset 0 0 20px rgba(255, 140, 30, 0.2);
}

.orbit-1 {
  width: 108%;
  height: 108%;
  border-width: 4px;
  animation: rotate-orbit 20s linear infinite;
  box-shadow: 0 0 30px rgba(255, 140, 30, 0.6), inset 0 0 15px rgba(255, 140, 30, 0.3);
}

.orbit-2 {
  width: 118%;
  height: 118%;
  border-width: 3px;
  animation: rotate-orbit 25s linear infinite reverse;
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, rgba(200, 100, 20, 0.7), rgba(180, 90, 30, 0.5), rgba(200, 100, 20, 0.7)) border-box;
  box-shadow: 0 0 25px rgba(200, 100, 20, 0.5), inset 0 0 12px rgba(200, 100, 20, 0.25);
}

.orbit-3 {
  width: 128%;
  height: 128%;
  border-width: 2px;
  animation: rotate-orbit 30s linear infinite;
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, rgba(255, 165, 50, 0.5), rgba(255, 140, 30, 0.4), rgba(255, 165, 50, 0.5)) border-box;
  box-shadow: 0 0 20px rgba(255, 140, 30, 0.4), inset 0 0 10px rgba(255, 140, 30, 0.2);
}

.orbit::before,
.orbit::after {
  display: none;
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 122, 24, 0.5), inset 0 0 30px rgba(255, 122, 24, 0.2);
    opacity: 0.6;
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 122, 24, 0.8), inset 0 0 40px rgba(255, 122, 24, 0.3);
    opacity: 1;
  }
}

@keyframes rotate-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(255, 255, 255);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  mix-blend-mode: luminosity;
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content .certification-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #ffd900, #fc8c05);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
  border-left: 5px solid #011aff;
}
.about .row .content .certification-badge i {
  font-size: 1.8rem;
  color: #011aff;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #011aff;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}

.about .open-to-work {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 122, 24, 0.45);
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2rem;
}

.about .open-to-work i {
  font-size: 1.6rem;
}

/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  background: var(--bg);
  min-height: 90vh;
  padding-top: 12rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.skills .heading {
  color: var(--heading);
  margin-bottom: 4rem;
}

.skills .heading span {
  color: var(--accent);
}

.skills-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.skills-globe {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 10, 24, 0.9) 0%, rgba(15, 20, 35, 0.95) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  min-height: 500px;
}

.skills-globe::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 122, 24, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.skills-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: var(--text);
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px currentColor;
}

.legend-dot.network {
  background: linear-gradient(135deg, #ff7a18, #ff5a18);
  border: 2px solid rgba(255, 122, 24, 0.6);
  box-shadow: 0 0 15px rgba(255, 122, 24, 0.4);
}

.legend-dot.software {
  background: linear-gradient(135deg, #ff2d80, #e61d6e);
  border: 2px solid rgba(255, 45, 128, 0.6);
  box-shadow: 0 0 15px rgba(255, 45, 128, 0.4);
}

.legend-dot.general {
  background: linear-gradient(135deg, #9aa3b8, #7888a0);
  border: 2px solid rgba(154, 163, 184, 0.4);
}

.legend-label {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.skills-globe canvas {
  width: 100%;
  height: 500px;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.skills-globe-tooltip {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%);
  background: linear-gradient(135deg, rgba(5, 9, 21, 0.98) 0%, rgba(10, 15, 30, 0.98) 100%);
  border: 2px solid rgba(255, 122, 24, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.6;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
              0 0 30px rgba(255, 122, 24, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.skills-globe-tooltip strong {
  display: block;
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.skills-globe-tooltip .level {
  color: var(--accent);
  font-weight: 600;
}

.skills-globe-tooltip .projects {
  margin-top: 0.4rem;
  color: var(--muted);
}

.view-all-skills-btn {
  display: inline-block;
  margin: 2rem auto;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.6);
}

.view-all-skills-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.8);
  border-color: white;
}

.skills-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.skills-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 8%;
  will-change: transform;
  animation: scroll-left 25s linear infinite;
}

.carousel-track-reverse {
  animation: scroll-right 30s linear infinite;
}

.carousel-track:hover,
.carousel-track-reverse:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-100% / 2));
  }
  100% {
    transform: translateX(0);
  }
}

.skill-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 3.5rem;
  border-radius: 9999px;
  border: 2px solid;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.skill-badge:hover {
  transform: scale(1.2);
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 35px currentColor;
}

.skill-badge svg,
.skill-badge img {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

.skill-badge span {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

/* Color variants for different tech categories */
.skill-badge.frontend {
  border-color: rgba(34, 211, 238, 0.3);
  color: rgb(34, 211, 238);
}

.skill-badge.frontend:hover {
  border-color: rgb(34, 211, 238);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.skill-badge.backend {
  border-color: rgba(52, 211, 153, 0.3);
  color: rgb(52, 211, 153);
}

.skill-badge.backend:hover {
  border-color: rgb(52, 211, 153);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}

.skill-badge.language {
  border-color: rgba(250, 204, 21, 0.3);
  color: rgb(250, 204, 21);
}

.skill-badge.language:hover {
  border-color: rgb(250, 204, 21);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.skill-badge.database {
  border-color: rgba(168, 85, 247, 0.3);
  color: rgb(168, 85, 247);
}

.skill-badge.database:hover {
  border-color: rgb(168, 85, 247);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.skill-badge.cloud {
  border-color: rgba(251, 146, 60, 0.3);
  color: rgb(251, 146, 60);
}

.skill-badge.cloud:hover {
  border-color: rgb(251, 146, 60);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.5);
}

.skill-badge.tools {
  border-color: rgba(100, 116, 139, 0.3);
  color: rgb(226, 232, 240);
}

.skill-badge.tools:hover {
  border-color: rgb(100, 116, 139);
  box-shadow: 0 0 20px rgba(100, 116, 139, 0.5);
}

/* skills media queries starts */
@media screen and (max-width: 1024px) {
  .view-all-skills-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
  }
  
  .carousel-track,
  .carousel-track-reverse {
    padding: 2rem 4%;
    gap: 2rem;
  }
  
  .skill-badge {
    padding: 1.5rem 3rem;
  }
  
  .skill-badge span {
    font-size: 1.4rem;
  }
  
  .skill-badge svg,
  .skill-badge img {
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media screen and (max-width: 600px) {
  .skills {
    padding-top: 9rem;
    padding-bottom: 2rem;
  }
  
  .view-all-skills-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .skills-carousel-wrapper {
    gap: 2rem;
  }
  
  .carousel-track,
  .carousel-track-reverse {
    padding: 1.5rem 2%;
    gap: 1.2rem;
  }
  
  .skill-badge {
    padding: 1rem 2rem;
    gap: 1rem;
  }
  
  .skill-badge span {
    font-size: 1.2rem;
  }
  
  .skill-badge svg,
  .skill-badge img {
    width: 2rem;
    height: 2rem;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: #e5ecfb;
  min-height: 80vh;
}
.education .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 0.3s;
  background: rgb(252, 252, 252);
}
.education .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
}
.education .box-container .box .image {
  flex: 1 1 20rem;
  width: 100%;
}
.education .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #012970;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4 {
  font-size: 2rem;
  color: rgb(34, 109, 0);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.edu-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  background: rgba(255, 122, 24, 0.1);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.3);
}

.edu-coursework {
  margin-top: 1.5rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  text-align: left;
}

.coursework-label {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 1rem 1rem;
}

.coursework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-left: 1rem;
}

.coursework-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coursework-grid li {
  font-size: 1.35rem;
  color: #ffffff;
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
}

.coursework-grid li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff7a18;
  font-size: 1.8rem;
  font-weight: bold;
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
  .coursework-grid {
    grid-template-columns: 1fr;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  /* background: #010124; */
  background: linear-gradient(to bottom, #000031, #00002c);
}
.work h2 {
  color: #fff;
  padding: 1rem;
}
.work .heading span {
  color: var(--accent);
}
.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.work .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 30rem;
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: #ffd900;
}
.work .box-container .box .content .tag h3 {
  font-size: 1.8rem;
}
.work#certifications .box-container .box .content .tag h3,
#certifications .box-container .box .content .tag h3 {
  font-size: 1.8rem;
}
.work .box-container .box:hover .content {
  top: 25%;
}
.work .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work .desc p {
  font-size: 1.5rem;
}
.work .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
.work .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 2rem;
}
.work .desc .btns .btn:hover {
  background: #310ae0f5;
}

/* certifications layout overrides to reduce crowding */
.work#certifications {
  background: transparent;
}

.work#certifications .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 1.5rem 3rem;
}

.work#certifications .box-container .box {
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.work#certifications .box-container .box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem;
}

.work#certifications .box-container .box .content {
  position: static;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
}

.work#certifications .box-container .box .content .tag {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  height: auto;
  align-items: center;
}

.work#certifications .box-container .box .content .tag h3 {
  font-size: 1.5rem;
}

.work#certifications .desc {
  margin: 0;
  gap: 0.6rem;
}

.work#certifications .desc p {
  font-size: 1.35rem;
  line-height: 1.5;
}

.work#certifications .desc .btns {
  margin-top: 1.2rem;
  justify-content: flex-start;
}

/* projects cards on home */
#work {
  padding-top: 9rem;
}

#work .heading {
  margin-bottom: 0.5rem;
}

.projects-intro {
  text-align: center;
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.projects-meta {
  text-align: center;
  font-size: 1.4rem;
  color: var(--muted);
  margin: 2rem 0 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.4rem;
  margin: 2rem 0 3rem;
}

.project-card {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(140px at var(--px, 50%) var(--py, 50%), rgba(255, 122, 24, 0.35), rgba(255, 45, 128, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.project-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.3);
  transform: translateY(-4px);
  outline: 1px solid rgba(255, 122, 24, 0.35);
}

.project-card:hover::after {
  opacity: 1;
}

.project-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.project-zoom:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.project-zoom i {
  font-size: 1.4rem;
  color: white;
}

.project-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.8rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.project-features {
  flex-grow: 1;
}

.project-features li {
  font-size: 1.3rem;
  color: #c7ccda;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
}

.project-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.3);
  color: #ffcba4;
  font-size: 1.2rem;
  font-weight: 600;
}

.tech-badge::before {
  content: '';
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
}

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

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.3);
}

.project-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.5);
}

.projects-pagination {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3.2rem;
  flex-wrap: wrap;
}

/* Cursor-follow tooltip for project cards */
.cursor-tooltip {
  position: fixed;
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem 0.7rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff9214, #ff2d80);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 14px 28px rgba(255, 122, 24, 0.35);
  pointer-events: none;
  transform: translate(-12px, -18px);
}

.cursor-tooltip::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #ff7a18;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
}

.cursor-tooltip .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cursor-tooltip .label {
  white-space: nowrap;
}

/* Click zoom state for project image */
.project-card.is-clicked .project-image img {
  transform: scale(1.12) !important;
}

.nav-btn,
.page-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.page-btn {
  background: linear-gradient(135deg, #ff9214, #ff2d80);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.35);
  min-width: 48px;
  justify-content: center;
}

.page-btn.active {
  box-shadow: 0 16px 32px rgba(255, 122, 24, 0.5);
}

.page-btn:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--heading);
  border: 1px solid var(--border);
  box-shadow: none;
}

.nav-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.nav-btn:not([disabled]):hover,
.page-btn:hover {
  transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 1.6rem;
  }

  .project-features li {
    font-size: 1.2rem;
  }
}
.work .viewall {
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
/* work section ends */

/* spacing adjustments between certifications and projects */
#certifications {
  padding-bottom: 1rem;
  margin-bottom: 0;
}
#work {
  padding-top: 1rem;
}

/* smaller font for certification credential IDs */
#certifications .credential-id {
  font-size: 1.2rem;
  word-break: break-word;
}

/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact {
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* recommendations section starts */
.recommendations {
  background: #f7f7f7;
}
.recommendations .heading {
  color: rgb(32, 32, 32);
  font-weight: 800;
  margin-bottom: 3rem;
}
.recommendations .heading span {
  color: rgb(115, 3, 167);
}
.recommendations .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  justify-content: center;
  padding: 2rem;
}
.recommendations .recommendation-box {
  flex: 1 1 30rem;
  background: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid rgb(115, 3, 167);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.recommendations .recommendation-box:hover {
  box-shadow: 0 8px 25px rgba(115, 3, 167, 0.2);
  transform: translateY(-5px);
}
.recommendations .recommendation-box .stars {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.recommendations .recommendation-box .stars i {
  color: #ffae00;
  font-size: 1.3rem;
}
.recommendations .recommendation-box .recommendation-text {
  font-size: 1.4rem;
  color: rgb(51, 51, 51);
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-transform: none;
}
.recommendations .recommendation-box .recommendation-author {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  margin-top: auto;
}
.recommendations .recommendation-box .recommendation-author h4 {
  font-size: 1.5rem;
  color: rgb(27, 27, 27);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.recommendations .recommendation-box .recommendation-author p {
  font-size: 1.2rem;
  color: rgb(115, 3, 167);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  text-transform: none;
}

/* Role badge styling */
.role-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.role-badge.senior-director {
  background: linear-gradient(135deg, #ff7a18, #ff9214);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.4);
}

.role-badge.manager,
.role-badge.former-manager {
  background: linear-gradient(135deg, #ff2d80, #ff5fa8);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 45, 128, 0.4);
}

.role-badge.mentor {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* recommendations media queries starts */
@media screen and (max-width: 900px) {
  .recommendations .box-container {
    flex-direction: column;
  }
  .recommendations .recommendation-box {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 600px) {
  .recommendations {
    min-height: auto;
    padding: 2rem 1rem;
  }
  .recommendations .heading {
    font-size: 2.5rem;
  }
  .recommendations .box-container {
    gap: 1.5rem;
    padding: 1rem;
  }
  .recommendations .recommendation-box {
    padding: 1.5rem;
  }
  .recommendations .recommendation-box .recommendation-text {
    font-size: 1.2rem;
  }
  .recommendations .recommendation-box .recommendation-author h4 {
    font-size: 1.3rem;
  }
  .recommendations .recommendation-box .recommendation-author p {
    font-size: 1.1rem;
  }
}
/* recommendations media queries ends */
/* recommendations section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */

/* === Neon theme overrides (global) === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.24);
}

.btn i {
  font-size: 1.3rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 122, 24, 0.35);
}

.home {
  background: radial-gradient(circle at 30% 20%, rgba(255, 122, 24, 0.14), transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(255, 45, 128, 0.18), transparent 42%),
              var(--bg);
  padding-top: 9rem;
}

.home .image {
  flex: 1 1 40rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.home .image img {
  width: 70%;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  border: 6px solid rgba(255, 255, 255, 0.08);
}

.home .open-tag {
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(130deg, rgba(255, 122, 24, 0.42), rgba(255, 45, 128, 0.38));
  border: 1px solid rgba(255, 122, 24, 0.6);
  border-radius: 1.6rem;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 16px rgba(255, 122, 24, 0.35);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.home .open-tag .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3ee577;
  box-shadow: 0 0 10px rgba(62, 229, 119, 0.85);
}

.home .open-tag .label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.home .open-tag .label p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}

.home .content h2 {
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.1;
}

.home .content h2 span {
  color: var(--accent-2);
}

.home .content p {
  font-size: 1.9rem;
  color: #c7ccda;
  font-weight: 600;
  margin: 1.2rem 0 2rem;
}

.home .content p span {
  color: var(--accent);
}

.home .btn {
  margin-top: 0.5rem;
}

.social-icons a {
  font-size: 1.8rem;
  line-height: 46px;
  background: rgba(255, 255, 255, 0.06);
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-2px);
}

.about {
  background: transparent;
}

.about .row {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 3rem;
  box-shadow: var(--glow);
}

.about .row .content h3,
.about .row .content .tag {
  color: var(--heading);
}

.about .row .content p {
  color: #ccd2e3;
}

.about .row .content .certification-badge {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.35), rgba(255, 45, 128, 0.25));
  color: #fff;
  border: 1px solid rgba(255, 122, 24, 0.4);
}

.skills {
  background: transparent;
}

.skills .container {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.skills .container .bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: none;
}

.skills .container .bar .info span {
  color: var(--heading);
}

.education {
  background: transparent;
}

.education .box-container .box {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.education .box-container .box .content h3,
.education .box-container .box .content p,
.education h4,
.education .qoute {
  color: var(--heading);
}

.work {
  background: transparent;
  margin-top: 5rem;
}

.work h2 {
  color: var(--heading);
}

.work .box-container .box {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.work .box-container .box .content {
  background: linear-gradient(180deg, rgba(5, 9, 21, 0.6), rgba(5, 9, 21, 0.9));
}

.work .box-container .box .content .tag {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}

.work .desc p {
  color: #d3d8e6;
}

.work .desc .btns .btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border: none;
}

.work .desc .btns .btn:hover {
  filter: brightness(1.08);
}

.work .viewall .btn {
  border: none;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.28);
}

.experience {
  padding-top: 9rem;
}

.experience-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.8rem;
}

.intro h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.7rem;
  color: #c7ccda;
  max-width: 56rem;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  border: 1px solid var(--border);
}

.pill.warm {
  background: linear-gradient(120deg, rgba(255, 122, 24, 0.28), rgba(255, 45, 128, 0.22));
  border-color: rgba(255, 122, 24, 0.45);
  color: #fff;
}

.status-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.6rem;
  padding: 2.2rem;
  box-shadow: var(--glow);
  overflow: hidden;
}

.status-card::before {
  content: '';
  position: absolute;
  inset: -40% 55% auto -15%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.45), transparent 60%);
  filter: blur(18px);
  z-index: 0;
}

.status-card h3 {
  font-size: 2.2rem;
  color: var(--heading);
  margin: 0.6rem 0 0.4rem;
  position: relative;
  z-index: 1;
}

.status-label {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.status-org {
  font-size: 1.5rem;
  color: #d8dff1;
  position: relative;
  z-index: 1;
}

.status-duration {
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 122, 24, 0.4);
  position: relative;
  z-index: 1;
}

.quote {
  text-align: left;
  font-size: 1.5rem;
  color: var(--muted);
  margin: 1rem 0 2.4rem;
  letter-spacing: 0.02em;
}

.exp-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
}

.exp-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.7), rgba(255, 45, 128, 0.7));
  opacity: 0.8;
}

.exp-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.8rem 2.2rem 1.6rem 2.6rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--glow);
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  left: -1.45rem;
  top: 1.9rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 30%, #ff7a18 70%);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(255, 45, 128, 0.08), transparent 35%);
  pointer-events: none;
}

.exp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.company {
  font-size: 1.4rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.exp-header h3 {
  font-size: 2rem;
  color: var(--heading);
  margin-top: 0.3rem;
  line-height: 1.3;
}

.period {
  font-size: 1.35rem;
  color: #d0d6e6;
  white-space: nowrap;
}

.promo {
  margin-top: 1rem;
  font-size: 1.35rem;
  color: #ffcba4;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.recommendations {
  background: transparent;
}

.recommendations .heading,
.recommendations .heading span {
  color: var(--heading);
}

.recommendations .box-container {
  padding: 1rem;
}

.recommendations .recommendation-box {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  border-left: 4px solid var(--accent);
}

.recommendations .recommendation-box .recommendation-text {
  color: #d6dcee;
}

.recommendations .recommendation-box .recommendation-author h4,
.recommendations .recommendation-box .recommendation-author p {
  color: var(--text);
}

.recommendations .recommendation-box .stars i {
  color: var(--accent);
}

.contact {
  background: transparent;
}

.contact .container {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.footer {
  background: #050915;
  border-top: 1px solid var(--border);
}

.footer .box-container .box h3,
.footer .box-container .box p,
.footer .credit {
  color: var(--text);
}

.footer .box-container .box .share a {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border);
}

.footer .box-container .box .share a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer .credit a {
  color: var(--accent);
}

#scroll-top {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

#scroll-top.active {
  top: calc(100% - 10rem);
}

/* ===== GitHub Activity Section ===== */
.github-activity {
  position: relative;
  padding: 6rem 8%;
}

.github-activity .section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.6rem;
  margin-top: -1rem;
  margin-bottom: 4rem;
}

.github-activity .github-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.github-activity .stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.github-activity .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.github-activity .stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(255, 122, 24, 0.2);
}

.github-activity .stat-card:hover::before {
  transform: scaleX(1);
}

.github-activity .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(255, 45, 128, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.github-activity .stat-icon i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.github-activity .stat-content {
  flex: 1;
}

.github-activity .stat-value {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', monospace;
}

.github-activity .stat-label {
  font-size: 1.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.github-activity .contribution-graph-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  backdrop-filter: blur(10px);
}

.github-activity .contribution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.github-activity .contribution-header h3 {
  font-size: 1.8rem;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.github-activity .contribution-header h3 i {
  color: var(--accent);
}

.github-activity .contribution-legend {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.github-activity .legend-label {
  font-size: 1.2rem;
  color: var(--muted);
}

.github-activity .legend-squares {
  display: flex;
  gap: 0.4rem;
}

.github-activity .legend-square {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.github-activity .legend-square.level-0 {
  background: rgba(255, 255, 255, 0.05);
}

.github-activity .legend-square.level-1 {
  background: rgba(57, 211, 83, 0.3);
}

.github-activity .legend-square.level-2 {
  background: rgba(57, 211, 83, 0.5);
}

.github-activity .legend-square.level-3 {
  background: rgba(57, 211, 83, 0.7);
}

.github-activity .legend-square.level-4 {
  background: rgba(57, 211, 83, 1);
}

.github-activity .contribution-graph {
  overflow-x: auto;
  padding: 2rem 0;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.github-activity .contribution-graph img {
  max-width: 100%;
  height: auto;
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.github-activity .contribution-graph img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(57, 211, 83, 0.25);
  filter: saturate(1.1) brightness(1.05);
}

.github-activity .contribution-stats {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.github-activity .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.github-activity .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
}

.github-activity .stat-text {
  font-size: 1.4rem;
  color: var(--muted);
}

.github-activity .activity-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.github-activity .activity-feed,
.github-activity .language-stats {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.github-activity .activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.github-activity .activity-header h3 {
  font-size: 1.8rem;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.github-activity .activity-header h3 i {
  color: var(--accent);
}

.github-activity .activity-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.github-activity .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
}

.github-activity .status-text {
  font-size: 1.3rem;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.github-activity .commits-list {
  max-height: 450px;
  overflow-y: auto;
  padding-right: 1rem;
}

.github-activity .commit-item {
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.github-activity .commit-item:hover {
  background: rgba(255, 122, 24, 0.1);
  border-color: var(--accent);
  transform: translateX(5px);
}

.github-activity .commit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.github-activity .commit-repo {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.github-activity .commit-time {
  font-size: 1.2rem;
  color: var(--muted);
}

.github-activity .commit-message {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.github-activity .commit-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: var(--muted);
}

.github-activity .commit-sha {
  font-family: 'Space Grotesk', monospace;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--accent-2);
}

.github-activity .languages-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.github-activity .language-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.github-activity .language-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.github-activity .language-name {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.github-activity .language-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.github-activity .language-percentage {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}

.github-activity .language-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.github-activity .language-progress {
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease;
  position: relative;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.github-activity .top-repos-section {
  margin-bottom: 4rem;
}

.github-activity .section-heading {
  font-size: 2.4rem;
  color: var(--heading);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.github-activity .section-heading i {
  color: var(--accent);
}

.github-activity .repos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.github-activity .repo-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.github-activity .repo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(255, 122, 24, 0.2);
}

.github-activity .repo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.github-activity .repo-name {
  font-size: 1.8rem;
  color: var(--heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.github-activity .repo-visibility {
  font-size: 1.2rem;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.github-activity .repo-description {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.github-activity .repo-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.github-activity .repo-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: var(--muted);
}

.github-activity .repo-stat i {
  color: var(--accent);
}

.github-activity .repo-language {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: var(--text);
  padding: 0.5rem 1rem;
  background: rgba(255, 122, 24, 0.1);
  border-radius: 20px;
}

.github-activity .repo-lang-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.github-activity .github-profile-link {
  text-align: center;
  margin-top: 4rem;
}

.github-activity .loading-spinner {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.github-activity .loading-spinner i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.github-activity .loading-spinner p {
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .github-activity .activity-container {
    grid-template-columns: 1fr;
  }
  .github-activity .repos-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .github-activity .github-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .github-activity .stat-card {
    padding: 2rem;
  }
  .github-activity .stat-icon {
    width: 50px;
    height: 50px;
  }
  .github-activity .stat-icon i {
    font-size: 2.4rem;
  }
  .github-activity .stat-value {
    font-size: 2.8rem;
  }
  .github-activity .contribution-graph-section {
    padding: 2rem;
  }
  .github-activity .contribution-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .github-activity .activity-feed,
  .github-activity .language-stats {
    padding: 2rem;
  }
  .github-activity .commits-list {
    max-height: 350px;
  }
}

@media (max-width: 600px) {
  .github-activity {
    padding: 4rem 5%;
  }
  .github-activity .github-stats-grid {
    grid-template-columns: 1fr;
  }
  .github-activity .contribution-graph-section {
    padding: 1.5rem;
  }
  .github-activity .contribution-header h3 {
    font-size: 1.6rem;
  }
  .github-activity .legend-square {
    width: 10px;
    height: 10px;
  }
  .github-activity .repos-grid {
    grid-template-columns: 1fr;
  }
  .github-activity .repo-card {
    padding: 2rem;
  }
  .github-activity .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .experience-hero {
    grid-template-columns: 1fr;
  }
  .exp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .period {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .skills-globe {
    padding: 1.5rem;
    min-height: 420px;
  }

  .skills-globe canvas {
    height: 420px;
  }
  
  .skills-globe-tooltip {
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
    min-width: 200px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .home .content h2 {
    font-size: 3.6rem;
  }
  .home .content p {
    font-size: 1.6rem;
  }
  .experience-hero {
    gap: 2rem;
  }
  .exp-timeline {
    padding-left: 1.4rem;
  }
  .exp-card {
    padding: 1.6rem 1.8rem 1.4rem 2.3rem;
  }
  .exp-card::before {
    left: -1.2rem;
  }

  /* Responsive Home Layout */
  .home-container {
    flex-direction: column;
    gap: 2rem;
  }

  .home-left,
  .home-middle,
  .home-right {
    flex: 1 1 100%;
  }

  .home-left h2 {
    font-size: 2.5rem;
  }

  .role-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .home .image {
    padding: 2rem 0 0 0;
  }

  .code-editor-preview-home {
    width: 100%;
  }
}

/* Demo Button and Modal Styles */
.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #ff7a18, #ff5a28);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 24, 0.5);
  background: linear-gradient(135deg, #ff8a28, #ff6a38);
}

.demo-btn:active {
  transform: translateY(0);
}

.demo-btn i {
  font-size: 1.6rem;
}

.demo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.demo-modal-content {
  background: var(--bg, #050915);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 122, 24, 0.2);
  animation: slideUp 0.3s ease;
}

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

.demo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-modal-header h2 {
  font-size: 2rem;
  color: #f7f8fb;
  margin: 0;
}

.demo-close-btn {
  background: none;
  border: none;
  color: #9aa3b8;
  font-size: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-close-btn:hover {
  color: #ff7a18;
  transform: rotate(90deg);
}

.demo-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#demo-description {
  font-size: 1.4rem;
  color: #e8ecf5;
  margin: 0;
  line-height: 1.6;
}

.demo-container {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: white;
}

@media (max-width: 768px) {
  .demo-modal {
    padding: 1rem;
  }
  
  .demo-modal-content {
    max-height: 95vh;
  }
  
  .demo-modal-header {
    padding: 1.5rem;
  }
  
  .demo-modal-header h2 {
    font-size: 1.6rem;
  }
  
  .demo-modal-body {
    padding: 1.5rem;
  }
  
  .demo-container {
    min-height: 300px;
  }
  
  .demo-btn {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}

/* Pagination Styles */
#projectsPagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #ff7a18, #ff5a28);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
}

.pagination-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 24, 0.5);
  background: linear-gradient(135deg, #ff8a28, #ff6a38);
}

.pagination-btn:active {
  transform: translateY(0);
}

.pagination-number {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255, 122, 24, 0.5);
  background: rgba(255, 122, 24, 0.1);
  color: #ff7a18;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  border-color: #ff7a18;
  background: rgba(255, 122, 24, 0.2);
  transform: scale(1.1);
}

.pagination-number.active {
  background: linear-gradient(135deg, #ff7a18, #ff5a28);
  color: white;
  border-color: #ff7a18;
}

@media (max-width: 768px) {
  #projectsPagination {
    gap: 0.5rem;
  }
  
  .pagination-btn {
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
  }
  
  .pagination-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.2rem;
  }
}
