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

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617 70%);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem;
}

section {
  margin-bottom: 4rem;
}

h1, h2, h3 {
  letter-spacing: 0.6px;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  border-radius: 10px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}
.navbar-brand i {
  margin-right: 0.5rem;
  color: #22c55e;
  filter: drop-shadow(0 6px rgba(34, 197, 94, 0.12));
  transition: all 0.35s ease;
}
.navbar-brand:hover i {
  transform: rotate(-6deg) scale(1.05);
}

#nav-check {
  display: none;
}

.navbar-toggler {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: white;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 1.4rem;
}
.navbar-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.35s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.navbar-nav a i {
  margin-right: 0.35rem;
}
.navbar-nav a:hover {
  color: #020617;
  transform: translateY(-2px);
  background: rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.15), 0 0 50px rgba(34, 197, 94, 0.4);
  border: 1px solid rgba(34, 197, 94, 0.7);
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }
  .navbar-nav {
    position: absolute;
    top: 72px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    flex-direction: column;
    padding: 1rem;
    display: none;
  }
  #nav-check:checked ~ .navbar-nav {
    display: flex;
  }
}
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.profile-img {
  width: 220px;
  max-width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 6px solid transparent;
  background: linear-gradient(135deg, #4f46e5, #06b6d4) border-box;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 50px rgba(79, 70, 229, 0.65);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.profile-img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 60px rgba(79, 70, 229, 0.75);
}

@media (max-width: 480px) {
  .profile-img {
    width: 140px;
    height: 140px;
  }
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.6rem;
}

.hero p {
  font-size: 1.2rem;
  color: #c7d2fe;
}

section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col {
  flex: 1;
  min-width: 120px;
}

.col-auto {
  flex: 0 0 auto;
}

input[type=text],
input[type=url] {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 2px solid #00ffff;
  border-radius: 14px;
  background: rgba(0, 255, 255, 0.08);
  color: #00ffff;
  outline: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
  font-weight: 500;
}

input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder {
  color: rgba(0, 255, 255, 0.6);
}

input[type=text]::placeholder,
input[type=url]::placeholder {
  color: rgba(0, 255, 255, 0.6);
}

input[type=text]:focus,
input[type=url]:focus {
  background: rgba(0, 255, 255, 0.15);
  border-color: #00ff88;
  color: #00ff88;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.8), inset 0 0 15px rgba(0, 255, 136, 0.15), 0 0 40px rgba(0, 255, 136, 0.4);
}

thead {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
}

th, td {
  padding: 1rem;
  text-align: left;
}

tbody tr {
  transition: all 0.35s ease;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}

table a i,
.table-link i {
  color: #c7d2fe;
  display: inline-block;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.35s ease;
}

table a:hover i,
.table-link:hover i {
  color: #22c55e;
  transform: rotate(-8deg) scale(1.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* neon-style fancy project table */
.fancy-table {
  width: 100%;
  border-collapse: collapse;
  background: #020617;
  color: #0ff;
  box-shadow: 0 0 20px #0ff, inset 0 0 10px #0ff;
}

.fancy-table thead {
  background: rgba(0,255,255,0.1);
}

.fancy-table th,
.fancy-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0,255,255,0.2);
}

.fancy-table th {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.fancy-table tbody tr:hover {
  background: rgba(0,255,255,0.15);
}

.fancy-table .repo-link,
.fancy-table .live-link {
  color: #0ff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border: 1px solid #0ff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.fancy-table .repo-link:hover,
.fancy-table .live-link:hover {
  background: #0ff;
  color: #020617;
  box-shadow: 0 0 10px #0ff;
}

i {
  color: #22c55e;
  transition: all 0.35s ease;
}

.nav-link i {
  color: white;
}

.nav-link:hover i {
  color: #020617;
  transform: scale(1.1);
}

ul {
  list-style: none;
}
ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
ul li i {
  color: #06b6d4;
  margin-right: 0.5rem;
}

.btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.footer {
  position: relative; /* allow absolutely-positioned content */
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  color: #c7d2fe;
  overflow: hidden; /* clip gooey blobs */
}

.animate-slide-up {
  animation: slide 0.8s ease both;
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes surge {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4), 0 0 10px 3px rgba(34, 197, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0), 0 0 20px 6px rgba(34, 197, 94, 0.15);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(34, 197, 94, 0), 0 0 30px 0 rgba(34, 197, 94, 0);
  }
}
@keyframes aurora {
  0% {
    background: linear-gradient(135deg, #22c55e, #06b6d4, #4f46e5);
    background-position: 0% 50%;
  }
  50% {
    background: linear-gradient(135deg, #06b6d4, #4f46e5, #22c55e);
    background-position: 100% 50%;
  }
  100% {
    background: linear-gradient(135deg, #22c55e, #06b6d4, #4f46e5);
    background-position: 0% 50%;
  }
}
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6), inset 0 0 10px rgba(0, 255, 136, 0.2);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  }
  20%, 24%, 55% {
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.3), inset 0 0 5px rgba(0, 255, 136, 0.1);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
  }
}

/* animations used earlier */
.navbar-brand:hover i {
  animation: surge 1.5s infinite;
}

.nav-link:hover i {
  animation: surge 0.8s ease-out;
}

table a:hover i {
  animation: surge 0.6s ease-out;
}

.btn-success:hover {
  animation: aurora 3s ease infinite;
  background-size: 200% 200%;
}

/* ghost cursor styles */
.ghost-cursor {
  pointer-events: none;
  position: absolute;
  width: 48px;
  height: 48px;
  background: transparent;
  transform: translate(-50%, -50%);
  opacity: 1 !important;
  visibility: visible;
  z-index: 50000; /* lowered so chat toggle sits above */
}


.ghost-cursor::before {
  /* neon ghost emoji */
  content: "👻";
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #0ff;
  text-shadow: 0 0 8px #0ff, 0 0 16px #0ff, 0 0 24px #0ff;
  display: block;
  text-align: center;
}

.ghost-trail {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0ff;
  opacity: 0.6;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* live chat widget */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  /* make circular */
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(79,70,229,0.6);
  z-index: 100000; /* above ghost */
  animation: neon-pulse 2.5s infinite alternate;
  overflow: hidden;
}

.chat-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: rotate-circle 4s linear infinite;
}

@keyframes neon-pulse {
  0% { box-shadow: 0 0 10px #4f46e5, 0 0 20px #06b6d4; }
  100% { box-shadow: 0 0 30px #0ff, 0 0 40px #4f46e5; }
}

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

.chat-widget {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100000;
}

.chat-widget.open {
  display: flex;
}

.chat-header {
  background: #222;
  color: #0ff;
  padding: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.chat-message {
  margin-bottom: 8px;
  line-height: 1.4;
}

.chat-message.user {
  text-align: right;
  color: #22c55e;
}

.chat-message.bot {
  text-align: left;
  color: #06b6d4;
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #333;
}

.chat-input-area input {
  flex: 1;
  padding: 8px;
  border: none;
  background: #222;
  color: #fff;
}

.chat-input-area button {
  padding: 8px 12px;
  border: none;
  background: #06b6d4;
  color: #020617;
  cursor: pointer;
}



/* footer gooey liquid effect */
.footer-gooey {
  position: relative;
  width: 100%;
  height: 160px; /* taller for more drama */
  filter: url('#gooey-filter');
  overflow: hidden;
  background: radial-gradient(circle at top left, #4f46e5 0%, #06b6d4 80%);
}

.footer-gooey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  animation: bg-shift 6s infinite alternate;
  pointer-events: none;
}

.gooey-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: #4f46e5;
  border-radius: 50%;
  animation: blob-move 4s infinite ease-in-out, hue-rotate 8s infinite linear;
}

.gooey-blob.small {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  animation-duration: 3.5s;
}

.blob-1 { animation-delay: 0s; }
.blob-2 { animation-delay: 1.5s; }
.blob-3 { animation-delay: 3s; }
.blob-4 { animation-delay: 0.8s; }
.blob-5 { animation-delay: 2.2s; }
.blob-6 { animation-delay: 4s; }

@keyframes blob-move {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  20% { transform: translate(-20%, -60%) scale(1.3); }
  40% { transform: translate(-70%, -30%) scale(0.9); }
  60% { transform: translate(-40%, -20%) scale(1.1); }
  80% { transform: translate(-60%, -50%) scale(0.8); }
}

@keyframes hue-rotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes bg-shift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.footer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25; /* sit on top of blobs */
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.6);
  padding: 0.8rem 1.6rem;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.footer .footer-content small {
  font-size: 1rem;
  font-weight: 600;
}

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