/* Modern Cinematic Theme - Inspired by Spiderman Launch Website */

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

:root {
  --dark-bg: #0a0a0a;
  --dark-surface: #1a1a1a;
  --dark-surface-2: #252525;
  --dark-bg-alt: #252525;
  --accent-primary: #d9ff00;
  --accent-secondary: #b8e600;
  --accent-tertiary: #9acc00;
  --accent-orange: #d9ff00; /* Chartreuse as primary accent */
  --accent-red: #b8e600; /* Slightly darker variant */
  --accent-yellow: #d9ff00; /* Chartreuse */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --gradient-primary: linear-gradient(135deg, #d9ff00 0%, #b8e600 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #252525 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 601px) {
  .container {
    max-width: 85%;
  }
}

@media only screen and (min-width: 993px) {
  .container {
    max-width: 90%;
  }
}

@media only screen and (min-width: 1201px) {
  .container {
    max-width: 1280px;
  }
}

.row {
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.col {
  box-sizing: border-box;
}

/* ============================================
   NAVIGATION - Modern Minimal
   ============================================ */

nav {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(217, 255, 0, 0.1);
}

nav.navbar-shrink {
  background: rgba(10, 10, 10, 0.98) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7) !important;
}

.dark-yellow {
  background: transparent !important;
}

/* ============================================
   FOOTER - Modern Dark Theme
   ============================================ */

.modern-footer {
  background: var(--dark-surface) !important;
  border-top: 2px solid rgba(217, 255, 0, 0.2);
  padding: 80px 0 0;
  margin-top: 0;
}

.footer-content {
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-name {
  color: var(--text-primary) !important;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--accent-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-secondary) !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary) !important;
  font-size: 0.95rem;
  margin: 0.5rem 0 0 0;
}

.footer-location .material-icons {
  font-size: 18px;
  color: var(--accent-orange);
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  color: var(--text-primary) !important;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding: 0.5rem 0;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-orange) !important;
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.4) !important;
  border-top: 1px solid rgba(217, 255, 0, 0.1);
  padding: 24px 0;
  margin-top: 0;
}

.footer-copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
}

.footer-credit {
  color: var(--text-secondary) !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-credit:hover {
  color: var(--accent-orange) !important;
  text-decoration: underline;
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .modern-footer {
    padding: 60px 0 0;
  }

  .footer-main {
    gap: 2.5rem;
    padding-bottom: 40px;
  }

  .footer-name {
    font-size: 1.75rem;
  }

  .footer-description {
    font-size: 1rem;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .footer-link {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .footer-copyright-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-credit {
    display: block;
  }
}

.brand-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-yellow) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  color: var(--accent-orange) !important;
  transform: scale(1.05);
}

.main-menu a {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.main-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--accent-yellow) !important;
}

.main-menu a:hover::after,
.main-menu a.active::after {
  width: 80%;
}

/* ============================================
   MOBILE SIDENAV - Dark Theme
   ============================================ */

.sidenav {
  background: var(--dark-surface) !important;
  width: 280px !important;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.8) !important;
}

.sidenav i,
.sidenav .material-icons {
  color: var(--text-secondary) !important;
}

.sidenav li {
  border-bottom: 1px solid rgba(217, 255, 0, 0.1);
}

.sidenav li:first-child {
  border-bottom: 2px solid rgba(217, 255, 0, 0.2);
}

.sidenav li.logo {
  background: var(--dark-bg) !important;
  padding: 1.5rem 0 !important;
  text-align: center;
  border-bottom: 2px solid rgba(217, 255, 0, 0.2) !important;
}

.sidenav li.logo a.brand-logo,
.sidenav li.logo a.brand-logo.black-text {
  color: var(--accent-orange) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
}

.sidenav li > a {
  color: var(--text-secondary) !important;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 1.5rem !important;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidenav li > a .material-icons,
.sidenav li > a i.material-icons {
  color: var(--text-secondary) !important;
  font-size: 24px !important;
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.sidenav li > a:hover {
  background: rgba(217, 255, 0, 0.05) !important;
  color: var(--accent-orange) !important;
  border-left-color: var(--accent-orange);
  padding-left: 1.75rem;
}

.sidenav li > a:hover .material-icons,
.sidenav li > a:hover i.material-icons {
  color: var(--accent-orange) !important;
  transform: scale(1.1);
}

.sidenav li > a.active,
.sidenav li > a.sidenav-close.active {
  background: rgba(217, 255, 0, 0.1) !important;
  color: var(--accent-orange) !important;
  border-left-color: var(--accent-orange);
  font-weight: 600;
}

.sidenav li > a.active .material-icons,
.sidenav li > a.active i.material-icons,
.sidenav li > a.sidenav-close.active .material-icons,
.sidenav li > a.sidenav-close.active i.material-icons {
  color: var(--accent-orange) !important;
}

.sidenav-trigger {
  color: var(--text-primary) !important;
}

.sidenav-trigger .material-icons {
  color: var(--text-primary) !important;
  font-size: 28px;
}

.sidenav-overlay {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/* ============================================
   HERO SECTION - Full Screen Cinematic
   ============================================ */

.intro-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  position: relative;
  overflow: visible;
  padding: 0;
  padding-bottom: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(217, 255, 0, 0.15) 0%,
    transparent 70%
  );
  animation: rotateGradient 20s linear infinite;
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      rgba(217, 255, 0, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, rgba(253, 125, 0, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(254, 179, 54, 0.2), transparent);
  background-size: 200% 200%;
  animation: particleMove 15s ease infinite;
  opacity: 0.6;
}

@keyframes particleMove {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 20px 80px;
}

.hero-content .container {
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: rgba(217, 255, 0, 0.08);
  border: 1px solid rgba(217, 255, 0, 0.25);
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.badge-chip:nth-child(1) {
  animation-delay: 0.2s;
}

.badge-chip:nth-child(2) {
  animation-delay: 0.35s;
}

.badge-chip:nth-child(3) {
  animation-delay: 0.5s;
}

.badge-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.badge-chip:hover {
  background: rgba(217, 255, 0, 0.15);
  border-color: rgba(217, 255, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 255, 0, 0.15);
}

.badge-chip:hover::before {
  left: 100%;
}

.badge-chip .material-icons {
  font-size: 18px;
  color: var(--accent-orange);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.badge-chip:hover .material-icons {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.badge-chip span {
  position: relative;
  z-index: 1;
}

/* Legacy badge-text for backward compatibility */
.badge-text {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(217, 255, 0, 0.1);
  border: 1px solid rgba(217, 255, 0, 0.3);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
  max-width: 100%;
}

.badge-text:hover {
  background: rgba(217, 255, 0, 0.2);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 3rem 0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
  letter-spacing: -3px;
}

.hero-name .name-line {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #d9ff00 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  text-shadow: none;
  transition: transform 0.3s ease;
}

.hero-name .name-line:hover {
  transform: scale(1.02);
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(217, 255, 0, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

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

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(217, 255, 0, 0.3),
    transparent
  );
}

.hero-description {
  max-width: 900px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-intro {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-style: italic;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000000;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(217, 255, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  opacity: 0;
  animation: fadeInUpScroll 1s ease 1.2s forwards;
  width: auto;
  min-width: 200px;
  white-space: nowrap;
  pointer-events: none;
  margin: 0;
  text-align: center;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(217, 255, 0, 0.5);
  border-radius: 20px;
  position: relative;
  animation: mouseFloat 2s ease-in-out infinite;
}

@keyframes mouseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--accent-orange);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.scroll-text {
  font-size: 0.75rem;
  color: rgba(217, 255, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

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

@keyframes fadeInUpScroll {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================
   SECTIONS - Modern Card Layout
   ============================================ */

section {
  padding: 120px 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.dark-green {
  background: var(--dark-surface) !important;
  position: relative;
}

.dark-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.grey {
  background: var(--dark-bg) !important;
}

.profile,
.skills,
.love {
  padding-top: 100px;
  padding-bottom: 100px;
}

.love .row {
  margin-bottom: 0;
}

.love .row:first-of-type {
  margin-bottom: 1.5rem;
}

/* ============================================
   TYPOGRAPHY - Bold & Modern
   ============================================ */

.title h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}

.title h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
}

.profile .title h2,
.profile .title h3,
.profile p {
  color: var(--text-primary);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

h2.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.love h2.subtitle {
  color: var(--text-primary) !important;
}

p.sub-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.love p.sub-content {
  color: var(--text-secondary) !important;
}

/* ============================================
   WHAT I LOVE SECTION - Matching Skills Style
   ============================================ */

.love {
  color: var(--text-primary);
}

.love .title h2,
.love .title h3 {
  color: var(--text-primary) !important;
}

.love-container {
  padding: 20px 0;
}

.love-category {
  background: var(--dark-surface);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 0;
  border: 1px solid rgba(217, 255, 0, 0.1);
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
  overflow: visible;
}

.love-category {
  overflow: visible;
}

.love-item {
  background: #0f0f0f;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(217, 255, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(217, 255, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  min-height: 100%;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.love-item > * {
  position: relative;
  z-index: 10;
}

.love-item:hover {
  transform: translateY(-4px);
}

.love-item:hover > * {
  position: relative;
  z-index: 101;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.love-item:hover .love-icon-wrapper,
.love-item:hover .love-icon,
.love-item:hover h5,
.love-item:hover .love-description,
.love-item:hover .love-actions {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.love-item:hover .material-icons,
.love-item:hover i.material-icons {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.love-item:hover p,
.love-item:hover span {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.love-item .material-icons {
  font-size: 48px;
  color: var(--accent-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(217, 255, 0, 0.3));
  opacity: 1;
  visibility: visible;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1.2) rotate(15deg) translateY(-5px);
  }
  50% {
    transform: scale(1.3) rotate(15deg) translateY(-8px);
  }
}

.love-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 10;
}

.love-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--accent-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(217, 255, 0, 0.3));
}

.love-item h5 {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  letter-spacing: 0.5px;
  opacity: 1;
  visibility: visible;
}

.love-description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-grow: 1;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.love-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(217, 255, 0, 0.2);
  transition: border-color 0.4s ease;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.love-item:hover .love-actions {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.love-actions .Links-arrow {
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  margin: 0;
  flex: 0 0 auto;
  min-width: 130px;
  justify-content: center;
  align-items: center;
  display: inline-flex !important;
  position: relative !important;
  color: var(--text-primary) !important;
}

.love-actions .Links-arrow .Links-arrowIcon {
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
  margin-left: 0.5rem;
}

.love-actions .Links-arrow span {
  display: inline-block;
}

/* Card entrance animation */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(217, 255, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(217, 255, 0, 0.2);
  }
}

.love-item {
  animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  perspective: 1000px;
}

.love-item > * {
  opacity: 1 !important;
  visibility: visible !important;
}

.love-item:nth-child(1) {
  animation-delay: 0.1s;
}

.love-item:nth-child(2) {
  animation-delay: 0.2s;
}

.love-item:nth-child(3) {
  animation-delay: 0.3s;
}

.love-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Removed duplicate hover animation - using the main hover rule above */

/* Responsive styles for love section */
@media only screen and (max-width: 992px) {
  .love-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .love-category {
    padding: 2rem;
  }

  .love-item {
    padding: 2rem 1.75rem;
  }

  .love-item .material-icons {
    font-size: 42px;
  }

  .love-icon svg {
    width: 42px;
    height: 42px;
  }

  .love-item h5 {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 600px) {
  .love-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .love-item {
    padding: 2rem 1.5rem;
    gap: 1rem;
    min-height: auto;
  }

  .love-item .material-icons {
    font-size: 40px;
  }

  .love-icon svg {
    width: 40px;
    height: 40px;
  }

  .love-item h5 {
    font-size: 1.25rem;
  }

  .love-description {
    font-size: 0.95rem;
  }
}

/* ============================================
   SKILLS SECTION - Modern Grid
   ============================================ */

.skill-category {
  background: var(--dark-surface);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(217, 255, 0, 0.1);
}

.category-header {
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.category-header .material-icons {
  color: var(--accent-orange);
  font-size: 2rem;
}

.category-header h4 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.skill-item {
  background: var(--dark-surface-2);
  border: 1px solid rgba(217, 255, 0, 0.1);
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-4px);
}

.skill-item .material-icons {
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.skill-item h5 {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

/* ============================================
   EXPERIENCE SECTION - Modern Card Grid
   ============================================ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.exp-card {
  background: #0f0f0f;
  border: 2px solid rgba(217, 255, 0, 0.15);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(217, 255, 0, 0.1);
  z-index: 1;
  min-height: 280px;
  height: 100%;
}

.exp-card > * {
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

/* Animation delays removed */

.exp-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  background: var(--gradient-primary);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  opacity: 0.85;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 1rem;
  padding-right: 7rem;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(217, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-icon .material-icons {
  font-size: 32px;
  color: var(--accent-orange);
}

.exp-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: right;
  line-height: 1.4;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-card-body {
  padding: 0 2rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-company,
.exp-location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-company .material-icons,
.exp-location .material-icons {
  font-size: 20px;
  color: var(--accent-orange);
  transition: all 0.5s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-company span,
.exp-location span {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.exp-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.exp-card.expanded .exp-card-footer {
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(217, 255, 0, 0.1);
  border: 2px solid rgba(217, 255, 0, 0.3);
  border-radius: 10px;
  color: var(--accent-orange);
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.exp-btn::before {
  display: none;
}

.exp-btn .material-icons {
  font-size: 18px;
}

.exp-btn:hover {
  transform: translateY(-2px);
}

/* Hover Effects */
.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 255, 0, 0.05) 0%,
    rgba(253, 125, 0, 0.05) 100%
  );
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-card:hover {
  transform: translateY(-4px);
}

.exp-card:hover > * {
  position: relative;
  z-index: 101;
  opacity: 1 !important;
  visibility: visible !important;
}

.exp-card:hover .exp-card-header,
.exp-card:hover .exp-card-body,
.exp-card:hover .exp-card-footer,
.exp-card:hover .exp-card-badge,
.exp-card:hover .exp-icon,
.exp-card:hover .exp-date,
.exp-card:hover .exp-title,
.exp-card:hover .exp-info,
.exp-card:hover .exp-btn {
  opacity: 1 !important;
  visibility: visible !important;
}

.exp-card:hover .exp-card-badge {
  transform: scale(1) translateY(-2px);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(217, 255, 0, 0.4), 0 0 15px rgba(217, 255, 0, 0.2);
}

.exp-card:hover .exp-card-header {
  display: flex !important;
}

.exp-card:hover .exp-card-body {
  display: block !important;
}

.exp-card:hover .exp-card-footer {
  display: block !important;
}

.exp-card:hover .exp-info {
  display: flex !important;
}

.exp-card:hover .exp-btn {
  display: inline-flex !important;
}

/* Expandable Card Styles */
.exp-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card.expanded {
  grid-column: 1 / -1;
  grid-row: span 4;
  z-index: 200;
  max-width: 100%;
  overflow: visible;
  width: 100%;
  background: var(--dark-surface-2);
  border-color: rgba(217, 255, 0, 0.3);
  border-radius: 20px;
  padding-bottom: 0;
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.exp-card.expanded .exp-card-header,
.exp-card.expanded .exp-card-body,
.exp-card.expanded .exp-card-footer {
  opacity: 1 !important;
  visibility: visible !important;
}

.exp-card.expanded .exp-card-badge {
  opacity: 1 !important;
  visibility: visible !important;
}

.exp-card.expanded .exp-icon {
  background: rgba(217, 255, 0, 0.15);
}

.exp-card.expanded .exp-icon .material-icons {
  color: var(--accent-orange);
}

.exp-card.expanded .exp-date {
  color: var(--text-secondary);
  font-weight: 700;
}

.exp-card.expanded .exp-title {
  color: var(--text-primary);
}

.exp-card.expanded .exp-company,
.exp-card.expanded .exp-location {
  color: var(--text-secondary);
  font-weight: 500;
}

.exp-card.expanded .exp-company .material-icons,
.exp-card.expanded .exp-location .material-icons {
  color: var(--accent-orange);
}

.exp-card.expanded .exp-btn {
  background: rgba(217, 255, 0, 0.1);
  border-color: rgba(217, 255, 0, 0.3);
  color: var(--accent-orange);
  font-weight: 600;
}

.exp-card.expanded .exp-btn:hover {
  transform: translateY(-2px);
}

.exp-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.exp-card.expanded .exp-card-details {
  display: block;
  max-height: 100%;
  opacity: 1;
  padding: 2.5rem 2rem 3rem 2rem;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: visible;
  border-radius: 0 0 20px 20px;
}

.exp-card-details-content {
  color: var(--text-secondary);
  line-height: 1.8;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: visible;
}

.exp-card.expanded .exp-card-details-content {
  color: rgba(0, 0, 0, 0.95);
}

.exp-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 1.5rem 0 2rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(217, 255, 0, 0.2);
}

.exp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.exp-meta-item .material-icons {
  font-size: 20px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.exp-card.expanded .exp-card-details .exp-meta-item {
  color: var(--text-secondary);
}

.exp-card-details-content hr {
  border: none;
  border-top: 1px solid rgba(217, 255, 0, 0.2);
  margin: 2rem 0;
}

.exp-card-details-content > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.exp-card.expanded .exp-btn .material-icons {
  transform: rotate(180deg);
}

.exp-card-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(217, 255, 0, 0.3);
}

.exp-card.expanded .exp-card-details h4 {
  color: var(--text-primary);
  border-bottom-color: rgba(217, 255, 0, 0.3);
}

.exp-card-details h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin: 2rem 0 1.25rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-orange);
}

.exp-card.expanded .exp-card-details h5 {
  color: var(--accent-orange);
  border-left-color: var(--accent-orange);
}

.exp-card-details p {
  margin: 1rem 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.exp-card.expanded .exp-card-details p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.responsibilities-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.responsibilities-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.responsibilities-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}

.exp-card.expanded .exp-card-details .responsibilities-list li {
  color: var(--text-secondary);
}

.exp-card.expanded .exp-card-details .responsibilities-list li::before {
  color: var(--accent-orange);
}

.exp-card-details .company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-weight: 500;
}

.exp-card.expanded .exp-card-details .company {
  color: var(--text-secondary);
}

.exp-card-details .company .material-icons {
  font-size: 20px;
  color: var(--accent-orange);
}

.exp-card.expanded .exp-card-details .company .material-icons {
  color: var(--accent-orange);
}

.exp-card-details hr {
  border: none;
  border-top: 1px solid rgba(217, 255, 0, 0.2);
  margin: 1.5rem 0;
}

.exp-card.expanded .exp-card-details hr {
  border-top-color: rgba(217, 255, 0, 0.2);
}

/* Technologies Container */
.exp-card-details p:has(.chip) {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem 0;
  padding: 0;
  padding-bottom: 1rem;
  justify-content: start;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.exp-card-details .chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 0;
  background: rgba(217, 255, 0, 0.15);
  border: 1px solid rgba(217, 255, 0, 0.3);
  border-radius: 8px;
  color: var(--accent-orange);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: left;
  height: 40px;
  width: 150px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exp-card-details .chip i,
.exp-card-details .chip .tech-icon {
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
}

.exp-card-details .chip span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exp-card.expanded .exp-card-details .chip {
  background: rgba(217, 255, 0, 0.15);
  border-color: rgba(217, 255, 0, 0.3);
  color: var(--accent-orange);
  font-weight: 600;
}

.exp-card.expanded .exp-card-details .chip:hover {
  background: rgba(217, 255, 0, 0.25);
  border-color: rgba(217, 255, 0, 0.5);
  transform: translateY(-2px);
}

/* Fallback for browsers that don't support :has() */
.exp-card-details .tech-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem 0;
  padding: 0;
  padding-bottom: 1rem;
  justify-content: start;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.exp-card-details .tech-container .chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 0;
  background: rgba(217, 255, 0, 0.15);
  border: 1px solid rgba(217, 255, 0, 0.3);
  border-radius: 8px;
  color: var(--accent-orange);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: left;
  height: 40px;
  width: 150px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exp-card-details .tech-container .chip i,
.exp-card-details .tech-container .chip .tech-icon {
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
}

.exp-card-details .tech-container .chip span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exp-card.expanded .exp-card-details .tech-container .chip {
  background: rgba(217, 255, 0, 0.15);
  border-color: rgba(217, 255, 0, 0.3);
  color: var(--accent-orange);
  font-weight: 600;
}

.exp-card.expanded .exp-card-details .tech-container .chip:hover {
  background: rgba(217, 255, 0, 0.25);
  border-color: rgba(217, 255, 0, 0.5);
  transform: translateY(-2px);
}

.exp-card-details .card-panel {
  background: rgba(217, 255, 0, 0.05) !important;
  border: 1px solid rgba(217, 255, 0, 0.2) !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: none !important;
}

.exp-card.expanded .exp-card-details .card-panel {
  background: rgba(217, 255, 0, 0.05) !important;
  border-color: rgba(217, 255, 0, 0.2) !important;
  box-shadow: none !important;
}

.exp-card-details table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.exp-card-details table thead th {
  background: rgba(217, 255, 0, 0.15);
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent-orange);
  font-size: 1rem;
}

.exp-card.expanded .exp-card-details table thead th {
  background: rgba(217, 255, 0, 0.15);
  color: var(--accent-orange);
}

.exp-card-details table tbody td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(217, 255, 0, 0.1);
  background: rgba(217, 255, 0, 0.03);
}

.exp-card.expanded .exp-card-details table tbody td {
  border-bottom-color: rgba(217, 255, 0, 0.1);
  background: rgba(217, 255, 0, 0.03);
}

.exp-card-details table tbody tr:last-child td {
  border-bottom: none;
}

.exp-card-details table tbody td a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.exp-card.expanded .exp-card-details table tbody td a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.exp-card.expanded .exp-card-details table tbody td a:hover {
  color: var(--accent-orange);
  text-decoration: none;
  opacity: 0.8;
}

/* Project Groups - Modern Card Layout */
.project-group {
  margin: 2rem 0;
  padding: 0;
}

.project-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(217, 255, 0, 0.2);
}

.project-category-header .material-icons {
  font-size: 28px;
  color: var(--accent-orange);
}

.project-category-header h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin: 0;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.project-card {
  background: rgba(217, 255, 0, 0.05);
  border: 1px solid rgba(217, 255, 0, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  background: rgba(217, 255, 0, 0.08);
  border-color: rgba(217, 255, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 255, 0, 0.1);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.project-link:hover {
  color: var(--accent-secondary);
  gap: 0.75rem;
}

.project-link .material-icons {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.project-link:hover .material-icons {
  transform: translateX(3px);
}

.project-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-orange) !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.project-name span {
  color: var(--accent-orange) !important;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.exp-card.expanded .exp-card-details .project-description {
  color: var(--text-secondary);
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .experience-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .exp-card-details .tech-container,
  .exp-card-details p:has(.chip) {
    grid-template-columns: repeat(auto-fill, 130px);
    gap: 0.6rem;
  }

  .exp-card-details .chip,
  .exp-card-details .tech-container .chip {
    width: 130px;
    height: 38px;
    font-size: 0.8rem;
    padding: 0.65rem 0.85rem;
  }
}

@media only screen and (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 20px 0;
  }

  .exp-card-details .tech-container,
  .exp-card-details p:has(.chip) {
    grid-template-columns: repeat(auto-fill, 110px);
    gap: 0.5rem;
  }

  .exp-card-details .chip,
  .exp-card-details .tech-container .chip {
    width: 110px;
    height: 36px;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }

  .exp-card {
    border-radius: 16px;
  }

  .exp-card-header {
    padding: 1.5rem 1.5rem 1rem;
    padding-right: 5.5rem;
  }

  .exp-card-body {
    padding: 0 1.5rem 1.25rem;
  }

  .exp-card-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .exp-icon {
    width: 50px;
    height: 50px;
  }

  .exp-icon .material-icons {
    font-size: 28px;
  }

  .exp-title {
    font-size: 1.25rem;
  }

  .exp-date {
    font-size: 0.8rem;
    max-width: calc(100% - 60px);
    word-wrap: break-word;
  }

  .exp-card-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }

  .project-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-card {
    padding: 1.25rem;
  }

  .project-category-header h5 {
    font-size: 1.1rem;
  }

  .project-category-header .material-icons {
    font-size: 24px;
  }
}

/* ============================================
   EDUCATION SECTION - Modern Card Grid
   ============================================ */

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.edu-card {
  background: #0f0f0f;
  border: 2px solid rgba(217, 255, 0, 0.15);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(217, 255, 0, 0.1);
  z-index: 1;
  transition: all 0.3s ease;
}

.edu-card > * {
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.edu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  gap: 1rem;
}

.edu-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(217, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edu-icon .material-icons {
  font-size: 32px;
  color: var(--accent-orange);
}

.edu-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.edu-card-body {
  padding: 0 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.edu-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
}

.edu-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.edu-institute,
.edu-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.edu-institute .material-icons,
.edu-location .material-icons {
  font-size: 18px;
  color: var(--accent-orange);
  opacity: 0.8;
}

/* Hover Effects */
.edu-card:hover {
  transform: translateY(-4px);
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .education-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .education-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 20px 0;
  }

  .edu-card {
    border-radius: 16px;
  }

  .edu-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .edu-card-body {
    padding: 0 1.5rem 1.5rem;
  }

  .edu-icon {
    width: 50px;
    height: 50px;
  }

  .edu-icon .material-icons {
    font-size: 28px;
  }

  .edu-title {
    font-size: 1.25rem;
  }

  .edu-date {
    font-size: 0.8rem;
  }
}

/* ============================================
   CERTIFICATES SECTION - Modern Card Grid
   ============================================ */

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.cert-card {
  background: #0f0f0f;
  border: 2px solid rgba(217, 255, 0, 0.15);
  border-radius: 20px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(217, 255, 0, 0.1);
  z-index: 1;
  transition: all 0.3s ease;
}

.cert-card > * {
  position: relative;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.cert-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  gap: 1rem;
}

.cert-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(217, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
  border: 1px solid rgba(217, 255, 0, 0.2);
}

.cert-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.cert-date {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: right;
  line-height: 1.4;
}

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

.cert-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  min-height: 3.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cert-issuer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: auto;
}

.cert-issuer .material-icons {
  font-size: 18px;
  color: var(--accent-orange);
  opacity: 0.8;
}

.cert-issuer span {
  text-transform: capitalize;
  font-weight: 500;
}

.cert-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(217, 255, 0, 0.1);
  border: 1px solid rgba(217, 255, 0, 0.3);
  border-radius: 8px;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.cert-btn:hover {
  transform: translateY(-2px);
}

.cert-btn .material-icons {
  font-size: 18px;
}

.cert-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(217, 255, 0, 0.05);
  border: 1px solid rgba(217, 255, 0, 0.15);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
  min-width: 0;
}

.cert-credential .material-icons {
  font-size: 18px;
  color: var(--accent-orange);
  opacity: 0.8;
  flex-shrink: 0;
}

.cert-credential span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

/* Hover Effects */
.cert-card:hover {
  transform: translateY(-4px);
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .certificates-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 20px 0;
  }

  .cert-card {
    border-radius: 16px;
  }

  .cert-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .cert-card-body {
    padding: 0 1.5rem 1.25rem;
  }

  .cert-card-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .cert-logo {
    width: 60px;
    height: 60px;
    padding: 8px;
  }

  .cert-title {
    font-size: 1.1rem;
    min-height: 3em;
    -webkit-line-clamp: 2;
  }

  .cert-date {
    font-size: 0.8rem;
  }

  .cert-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   CONTACT SECTION - Modern Card Grid
   ============================================ */

.contact-section {
  background: var(--dark-bg) !important;
  padding: 80px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-card {
  background: #0f0f0f;
  border: 2px solid rgba(217, 255, 0, 0.15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(217, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(217, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 28px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  transition: all 0.3s ease;
}

.contact-handle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.contact-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(217, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-arrow .material-icons {
  font-size: 20px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

/* Hover Effects */
.contact-card:hover {
  transform: translateY(-4px);
}

/* Map Section */
.contact-map {
  margin-top: 60px;
  width: 100%;
  background: var(--dark-surface);
  padding: 0;
  border-top: 2px solid rgba(217, 255, 0, 0.2);
}

.map-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) brightness(1);
}

/* Responsive Design */
@media only screen and (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }
}

@media only screen and (max-width: 600px) {
  .contact-section {
    padding: 60px 0 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 30px 0;
  }

  .contact-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 24px;
  }

  .contact-title {
    font-size: 1.1rem;
  }

  .contact-handle {
    font-size: 0.85rem;
  }

  .contact-arrow {
    width: 36px;
    height: 36px;
  }

  .contact-arrow .material-icons {
    font-size: 18px;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.Links-arrow {
  color: var(--text-primary) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(217, 255, 0, 0.3);
  border-radius: 8px;
  background: rgba(217, 255, 0, 0.05);
  white-space: nowrap;
  position: relative !important;
  margin-right: 0 !important;
}

.Links-arrow:hover {
  transform: translateX(3px);
}

.Links-arrowIcon {
  display: inline-flex !important;
  align-items: center;
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
}

.Links-arrowIcon svg {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.3s ease;
  display: block;
}

.Links-arrow:hover .Links-arrowIcon svg {
  transform: translateX(3px);
}

.Links-arrowIcon svg path {
  fill: var(--text-primary) !important;
  transition: fill 0.3s ease;
}

/* ============================================
   COLLECTIONS & MODALS
   ============================================ */

.collection {
  background: transparent;
  border: none;
}

.collection .collection-item {
  background: var(--dark-surface);
  border: 1px solid rgba(217, 255, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.collection .collection-item:hover {
  transform: translateX(4px);
}

.collection .collection-item.avatar .title {
  color: var(--accent-yellow);
}

.collection .collection-item.avatar p {
  color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media only screen and (max-width: 992px) {
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-name {
    font-size: 4rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 2rem;
    padding: 1.5rem;
    margin: 2rem 0 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-divider {
    height: 40px;
  }

  .hero-intro {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  section {
    padding: 80px 0;
  }

  .profile,
  .skills,
  .love {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .love-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
  }

  .love-category {
    padding: 2rem;
  }

  .love-item {
    padding: 1.75rem 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .intro-section {
    min-height: 100vh;
  }

  .hero-content {
    padding: 80px 20px 60px;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }

  .badge-chip {
    padding: 0.55rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .badge-chip .material-icons {
    font-size: 16px;
  }

  .badge-text {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero-name {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(217, 255, 0, 0.3),
      transparent
    );
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }

  .scroll-indicator {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
  }

  .scroll-mouse {
    width: 24px;
    height: 40px;
  }

  .scroll-text {
    font-size: 0.65rem;
    width: 100%;
    text-align: center;
  }

  .love-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .love-category {
    padding: 1.5rem;
  }

  .love-item {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }

  .love-item .material-icons {
    font-size: 32px;
  }

  .love-item h5 {
    font-size: 1.1rem;
  }

  .love-description {
    font-size: 0.9rem;
  }

  .love-actions {
    gap: 0.5rem;
    flex-direction: column;
    padding-top: 0.75rem;
  }

  .love-actions .Links-arrow {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    min-width: auto;
  }

  .skill-category {
    padding: 1.5rem;
  }

  .title h2 {
    font-size: 2rem;
  }

  .Links-arrow {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .profile,
  .skills,
  .love {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: none;
}

/* ============================================
   SMOOTH SCROLL INDICATOR
   ============================================ */

#scrollIndicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease;
}
