* {
  font-family: "Inter", sans-serif;
}

:root {
  --bg-color: #eef2f6;
  --light-shadow: #ffffff;
  --dark-shadow: #d1d9e6;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
}

.neu-flat {
  background: linear-gradient(145deg, #ffffff, #e6e9ef);
  box-shadow:
    8px 8px 16px var(--dark-shadow),
    -8px -8px 16px var(--light-shadow);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.neu-pressed {
  background: linear-gradient(145deg, #e6e9ef, #ffffff);
  box-shadow:
    inset 6px 6px 12px var(--dark-shadow),
    inset -6px -6px 12px var(--light-shadow);
  border-radius: 12px;
}

.neu-convex {
  background: linear-gradient(145deg, #ffffff, #e6e9ef);
  box-shadow:
    6px 6px 12px var(--dark-shadow),
    -6px -6px 12px var(--light-shadow);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.neu-convex:hover {
  transform: translateY(-2px);
}

.neu-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e6e9ef);
  box-shadow:
    4px 4px 8px var(--dark-shadow),
    -4px -4px 8px var(--light-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.neu-icon:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

.nav-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #1e3a8a;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.nav-item:hover {
  color: #f59e0b;
  background: linear-gradient(145deg, #e6e9ef, #ffffff);
  box-shadow:
    4px 4px 8px var(--dark-shadow),
    -4px -4px 8px var(--light-shadow);
}

.nav-item.active {
  box-shadow:
    inset 3px 3px 6px var(--dark-shadow),
    inset -3px -3px 6px var(--light-shadow);
  color: #f59e0b;
  font-weight: 600;
}

.cta-btn {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  box-shadow:
    6px 6px 12px var(--dark-shadow),
    -6px -6px 12px var(--light-shadow);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
}

.grid-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e3a8a;
  transition: all 0.3s ease;
}

.grid-icon:hover .grid-dot {
  background: #f59e0b;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: #1e3a8a;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.mobile-nav-items {
  padding: 20px;
}

.mobile-nav-item {
  display: block;
  padding: 16px 20px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 3px 3px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.mobile-menu-contact {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.contact-info {
  color: white;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1e3a8a;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.side-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  overflow-y: auto;
}

.side-panel.open {
  right: 0;
}

.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 138, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1001;
}

.side-panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e3a8a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.close-btn:hover {
  transform: rotate(90deg);
  background: #f59e0b;
}

.explore-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbbf24;
  color: #1e3a8a;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.image-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.instagram {
  background: #e4405f;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn:hover {
  transform: translateY(-4px);
}

.email-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
}

.email-input:focus {
  border-color: #f59e0b;
}

.send-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.send-btn:hover {
  background: #d97706;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 480px) {
  .side-panel {
    width: 100%;
    right: -100%;
  }
}

.neu-footer-flat {
  background: #eef2f6;
  box-shadow:
    20px 20px 60px #d1d5d9,
    -20px -20px 60px #ffffff;
}

.neu-footer-pressed {
  background: #eef2f6;
  box-shadow:
    inset 6px 6px 12px #d1d5d9,
    inset -6px -6px 12px #ffffff;
}

.neu-footer-icon {
  background: #eef2f6;
  box-shadow:
    6px 6px 12px #d1d5d9,
    -6px -6px 12px #ffffff;
  transition: all 0.3s ease;
}

.neu-footer-icon:hover {
  box-shadow:
    inset 4px 4px 8px #d1d5d9,
    inset -4px -4px 8px #ffffff;
  transform: translateY(-2px);
}

.neu-footer-input {
  background: #eef2f6;
  box-shadow:
    inset 4px 4px 8px #d1d5d9,
    inset -4px -4px 8px #ffffff;
  border: none;
  outline: none;
}

.neu-footer-btn {
  background: linear-gradient(145deg, #eef2f6, #d6dadf);
  box-shadow:
    6px 6px 12px #d1d5d9,
    -6px -6px 12px #ffffff;
  transition: all 0.3s ease;
}

.neu-footer-btn:hover {
  box-shadow:
    8px 8px 16px #d1d5d9,
    -8px -8px 16px #ffffff;
  transform: translateY(-2px);
}

.neu-footer-btn:active {
  box-shadow:
    inset 4px 4px 8px #d1d5d9,
    inset -4px -4px 8px #ffffff;
  transform: translateY(0);
}

.footer-link {
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #9333ea);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.footer-animated-border {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  background: #eef2f6;
  border-radius: 24px;
  padding: 3px;
  overflow: hidden;
}

.footer-animated-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    #f59e0b,
    #e07b39,
    #c084c0,
    #a855f7,
    #7c3aed,
    #3b82f6,
    #7c3aed,
    #a855f7,
    #c084c0,
    #e07b39,
    #f59e0b
  );
  animation: rotate 4s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer-content {
  position: relative;
  z-index: 1;
  background: #eef2f6;
  border-radius: 21px;
  padding: 48px 32px 32px;
}

.wave-top {
  position: absolute;
  top: -59px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-top .shape-fill {
  fill: #eef2f6;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.side-panel {
  background: linear-gradient(145deg, #f0f4f8 0%, #e2e8f0 100%);
  box-shadow:
    20px 20px 60px #b8b9be,
    -20px -20px 60px #ffffff;
}

.side-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(251, 191, 36, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 70%
    );
  pointer-events: none;
  border-radius: inherit;
}

/* Gradient Badge */
.neomorph-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 50px;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.neomorph-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.neomorph-badge:hover::after {
  left: 100%;
}

/* 3D Text with Depth */
.neomorph-text {
  color: #1e293b;
  text-shadow:
    2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(148, 163, 184, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
}

/* 3D Close Button */
.neomorph-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 100%);
  border: none;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    0 2px 4px rgba(0, 0, 0, 0.05);
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.neomorph-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: #ef4444;
  box-shadow:
    8px 8px 16px #cbd5e1,
    -8px -8px 16px #ffffff,
    0 8px 16px rgba(239, 68, 68, 0.15);
}

.neomorph-btn:active {
  transform: scale(0.95);
  box-shadow:
    inset 4px 4px 8px #cbd5e1,
    inset -4px -4px 8px #ffffff;
}

/* 3D Portfolio Grid with Color Accents */
.neomorph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  perspective: 1000px;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.item-amber {
  box-shadow:
    8px 8px 16px #cbd5e1,
    -8px -8px 16px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(251, 191, 36, 0.1);
}

.item-purple {
  box-shadow:
    8px 8px 16px #cbd5e1,
    -8px -8px 16px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(139, 92, 246, 0.1);
}

.item-blue {
  box-shadow:
    8px 8px 16px #cbd5e1,
    -8px -8px 16px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  border-radius: 20px;
}

.item-amber .portfolio-overlay {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.9) 0%,
    rgba(245, 158, 11, 0.9) 100%
  );
}

.item-purple .portfolio-overlay {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.9) 0%,
    rgba(124, 58, 237, 0.9) 100%
  );
}

.item-blue .portfolio-overlay {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.9) 0%,
    rgba(37, 99, 235, 0.9) 100%
  );
}

.ppx-neo-about {
  padding: clamp(2rem, 10vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  overflow: hidden;
}
.ppx-neo-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (width: 1024px) {
  .ppx-neo-wrapper {
    grid-template-columns: 1fr !important;
    gap: 4rem;
  }
}

@media (min-width: 968px) {
  .ppx-neo-wrapper {
    grid-template-columns: 0.8fr 1.1fr;
    gap: 4rem;
  }
}
@media (min-width: 1200px) {
  .ppx-neo-wrapper {
    gap: 6rem;
  }
}

.ppx-neo-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

.ppx-neo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40px;
  background: #e8ecf2;
  box-shadow:
    25px 25px 50px #29377d2e,
    -25px -25px 50px #ffffff;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ppx-neo-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    30px 30px 60px #29377d2e,
    -30px -30px 60px #ffffff;
}

.ppx-neo-inset {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #e8ecf2;
  box-shadow:
    inset 6px 6px 12px #29377d2e,
    inset -6px -6px 12px #ffffff;
  position: relative;
}

.ppx-neo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
}

.ppx-neo-frame:hover .ppx-neo-img {
  opacity: 1;
  transform: scale(1.05);
}

.ppx-neo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(245, 158, 11, 0.15) 50%,
    rgba(59, 130, 246, 0.15) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.ppx-neo-badge {
  position: relative;
  margin-top: -2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: #e8ecf2;
  border-radius: 20px;
  box-shadow:
    12px 12px 24px #29377d2e,
    -12px -12px 24px #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: ppx-float 5s ease-in-out infinite;
  z-index: 10;
}

@keyframes ppx-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.ppx-neo-check {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow:
    4px 4px 8px rgba(245, 158, 11, 0.3),
    -2px -2px 6px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ppx-neo-badge-content h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ppx-neo-badge-content span {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.ppx-neo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.ppx-neo-orbit-1 {
  width: 140%;
  height: 140%;
  border-top-color: rgba(139, 92, 246, 0.2);
  border-right-color: rgba(245, 158, 11, 0.15);
  animation: ppx-spin 25s linear infinite;
}

.ppx-neo-orbit-2 {
  width: 120%;
  height: 120%;
  border-bottom-color: rgba(59, 130, 246, 0.2);
  border-left-color: rgba(139, 92, 246, 0.15);
  animation: ppx-spin 20s linear infinite reverse;
}

@keyframes ppx-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ppx-neo-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ppx-neo-tag i {
  font-size: 1.125rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 2px rgba(245, 158, 11, 0.2));
}

.ppx-neo-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.02em;
}

.ppx-neo-heading span {
  display: inline;
  background: linear-gradient(90deg, #f59e0b 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.ppx-neo-heading span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #8b5cf6, #3b82f6);
  border-radius: 2px;
  opacity: 0.3;
}

.ppx-neo-desc {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ppx-neo-card {
  padding: 1.5rem;
  background: #e8ecf2;
  border-radius: 16px;
  box-shadow:
    inset 4px 4px 8px #29377d2e,
    inset -4px -4px 8px #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #475569;
  line-height: 1.7;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ppx-neo-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #f59e0b 0%, #8b5cf6 50%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ppx-neo-card:hover {
  transform: translateX(8px);
  color: #1e293b;
  box-shadow:
    inset 6px 6px 12px #29377d2e,
    inset -6px -6px 12px #ffffff;
}

.ppx-neo-card:hover::before {
  opacity: 1;
}

.ppx-neo-glow-amber {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

.ppx-neo-glow-purple {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.06) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 967px) {
  .ppx-neo-frame {
    max-width: 900px;
    padding: 1.5rem;
    border-radius: 30px;
  }

  .ppx-neo-orbit {
    display: none;
  }

  .ppx-neo-badge {
    margin-top: -1.5rem;
    padding: 1rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ppx-neo-badge,
  .ppx-neo-orbit {
    animation: none;
  }

  .ppx-neo-frame,
  .ppx-neo-card,
  .ppx-neo-tag {
    transition: none;
  }
}

.portfolio-overlay i {
  font-size: 1.8rem;
  color: white;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.portfolio-item:hover {
  transform: translateY(-8px) rotateX(5deg);
}

.item-amber:hover {
  box-shadow:
    16px 16px 32px #cbd5e1,
    -16px -16px 32px #ffffff,
    0 20px 40px rgba(251, 191, 36, 0.25),
    0 0 0 2px rgba(251, 191, 36, 0.3);
}

.item-purple:hover {
  box-shadow:
    16px 16px 32px #cbd5e1,
    -16px -16px 32px #ffffff,
    0 20px 40px rgba(139, 92, 246, 0.25),
    0 0 0 2px rgba(139, 92, 246, 0.3);
}

.item-blue:hover {
  box-shadow:
    16px 16px 32px #cbd5e1,
    -16px -16px 32px #ffffff,
    0 20px 40px rgba(59, 130, 246, 0.25),
    0 0 0 2px rgba(59, 130, 246, 0.3);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-overlay i {
  transform: scale(1);
}

.portfolio-item:active {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.1),
    inset -4px -4px 8px rgba(255, 255, 255, 0.5);
}

/* 3D Email Input with Glow */
.neomorph-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.5rem;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow:
    inset 4px 4px 8px #cbd5e1,
    inset -4px -4px 8px #ffffff,
    0 2px 4px rgba(0, 0, 0, 0.02);
  color: #334155;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.4s ease;
  font-weight: 500;
}

.neomorph-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.neomorph-input:focus {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    inset 6px 6px 12px #cbd5e1,
    inset -6px -6px 12px #ffffff,
    0 0 20px rgba(139, 92, 246, 0.15),
    0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* 3D Send Button */
.neomorph-send {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 50%, #3b82f6 100%);
  border: none;
  box-shadow:
    4px 4px 8px rgba(139, 92, 246, 0.3),
    -4px -4px 8px rgba(255, 255, 255, 0.8),
    0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
}

.neomorph-send:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow:
    6px 6px 12px rgba(139, 92, 246, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9),
    0 8px 16px rgba(139, 92, 246, 0.2);
}

.neomorph-send:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow:
    inset 2px 2px 4px rgba(0, 0, 0, 0.2),
    inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

/* 3D Social Buttons with Colors */
.neomorph-social {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.2rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
}

.social-amber {
  color: #f59e0b;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(251, 191, 36, 0.1);
}

.social-purple {
  color: #8b5cf6;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(139, 92, 246, 0.1);
}

.social-blue {
  color: #3b82f6;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.social-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-shadow:
    6px 6px 12px #cbd5e1,
    -6px -6px 12px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02);
}

.neomorph-social:hover {
  transform: translateY(-5px) scale(1.05);
}

.social-amber:hover {
  box-shadow:
    10px 10px 20px #cbd5e1,
    -10px -10px 20px #ffffff,
    0 15px 30px rgba(251, 191, 36, 0.3),
    0 0 0 2px rgba(251, 191, 36, 0.2);
  color: #f59e0b;
}

.social-purple:hover {
  box-shadow:
    10px 10px 20px #cbd5e1,
    -10px -10px 20px #ffffff,
    0 15px 30px rgba(139, 92, 246, 0.3),
    0 0 0 2px rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.social-blue:hover {
  box-shadow:
    10px 10px 20px #cbd5e1,
    -10px -10px 20px #ffffff,
    0 15px 30px rgba(59, 130, 246, 0.3),
    0 0 0 2px rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.social-gradient:hover {
  box-shadow:
    10px 10px 20px #cbd5e1,
    -10px -10px 20px #ffffff,
    0 15px 30px rgba(139, 92, 246, 0.3),
    0 0 0 2px rgba(139, 92, 246, 0.2);
  transform: translateY(-5px) scale(1.05) rotate(5deg);
}

.neomorph-social:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow:
    inset 4px 4px 8px #cbd5e1,
    inset -4px -4px 8px #ffffff;
}

/* 3D Logo Container */
.neomorph-icon {
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 100%);
  border-radius: 16px;
  box-shadow:
    8px 8px 16px #cbd5e1,
    -8px -8px 16px #ffffff,
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.neomorph-icon:hover {
  transform: translateY(-2px);
  box-shadow:
    12px 12px 24px #cbd5e1,
    -12px -12px 24px #ffffff,
    0 8px 16px rgba(139, 92, 246, 0.15),
    0 0 0 2px rgba(139, 92, 246, 0.2);
}

.mobile-menu {
  background: linear-gradient(145deg, #eef2f6 0%, #d1d9e6 100%);
  box-shadow:
    30px 0 60px rgba(184, 185, 190, 0.4),
    -10px 0 30px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(251, 191, 36, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.neo-logo {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 20px;
  box-shadow:
    8px 8px 20px #cbd5e1,
    -8px -8px 20px #ffffff,
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.neo-logo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fbbf24, #8b5cf6, #3b82f6);
  z-index: -1;
  opacity: 0.3;
}

.neo-close-btn {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 100%);
  border: none;
  box-shadow:
    6px 6px 15px #cbd5e1,
    -6px -6px 15px #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.neo-close-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fbbf24, #8b5cf6, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s;
}

.neo-close-btn:hover::before {
  opacity: 1;
}

.neo-close-btn i {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.neo-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  color: white;
  box-shadow:
    10px 10px 25px rgba(139, 92, 246, 0.3),
    -10px -10px 25px rgba(255, 255, 255, 0.9);
}

.neo-close-btn:active {
  transform: rotate(90deg) scale(0.95);
  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.2),
    inset -4px -4px 10px rgba(255, 255, 255, 0.2);
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.neo-nav-item {
  padding: 1.1rem 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 18px;
  box-shadow:
    6px 6px 15px #cbd5e1,
    -6px -6px 15px #ffffff,
    0 2px 4px rgba(0, 0, 0, 0.02);
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.neo-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #fbbf24, #8b5cf6, #3b82f6);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.neo-nav-item:hover::after {
  height: 60%;
}

.neo-nav-item:hover {
  transform: translateX(12px);
  color: #4a5568;
  box-shadow:
    10px 10px 25px #cbd5e1,
    -10px -10px 25px #ffffff,
    0 8px 16px rgba(139, 92, 246, 0.1);
  padding-left: 2rem;
}

.neo-nav-item:active {
  transform: translateX(6px);
  box-shadow:
    inset 4px 4px 10px #cbd5e1,
    inset -4px -4px 10px #ffffff;
}

.neo-nav-item.active {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(59, 130, 246, 0.1) 100%
  );
  color: #8b5cf6;
  box-shadow:
    inset 3px 3px 8px #cbd5e1,
    inset -3px -3px 8px #ffffff,
    0 4px 12px rgba(139, 92, 246, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.neo-nav-item.active::before {
  content: "→";
  position: absolute;
  right: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.neo-nav-item.active::before {
  opacity: 1;
  transform: translateX(0);
}

.neo-nav-item.active::after {
  height: 80%;
  width: 5px;
}

.amber-glow {
  color: #f59e0b;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.purple-glow {
  color: #8b5cf6;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.blue-glow {
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-items .neo-nav-item {
  animation: slideIn 0.4s ease forwards;
}

.mobile-nav-items .neo-nav-item:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-nav-items .neo-nav-item:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-nav-items .neo-nav-item:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-nav-items .neo-nav-item:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-nav-items .neo-nav-item:nth-child(5) {
  animation-delay: 0.25s;
}

.mobile-nav-items .neo-nav-item:nth-child(6) {
  animation-delay: 0.3s;
}

.nm3d-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem) clamp(0.5rem, 2vw, 1rem);
}

.nm3d-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
  align-items: center;
  justify-items: center;
  padding: clamp(2rem, 8vw, 5rem) 0;
}

@media (min-width: 768px) {
  .nm3d-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .nm3d-grid {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }
}

@media (min-width: 1280px) {
  .nm3d-grid {
    gap: clamp(2rem, 3vw, 3rem);
  }
}

.nm3d-card-wrap {
  perspective: 1000px;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(30px);
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.nm3d-card-wrap.nm3d-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.nm3d-card {
  position: relative;
  width: min(85vw, 300px);
  height: min(85vw, 300px);
  transform-style: preserve-3d;
  will-change: transform;
}

@media (min-width: 640px) {
  .nm3d-card {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 768px) {
  .nm3d-card {
    width: min(28vw, 260px);
    height: min(28vw, 260px);
  }
}

@media (min-width: 1024px) {
  .nm3d-card {
    width: min(30vw, 340px);
    height: min(30vw, 340px);
  }
}

.nm3d-flat {
  background: #e0e5ec;
  box-shadow:
    6px 6px 12px #a3b1c6,
    -6px -6px 12px #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nm3d-pressed {
  background: #e0e5ec;
  box-shadow:
    inset 4px 4px 8px #a3b1c6,
    inset -4px -4px 8px #ffffff;
  border-radius: 15px;
}

.nm3d-float {
  animation: nm3d-float-anim 6s ease-in-out infinite;
}

.nm3d-card-wrap:hover .nm3d-float {
  animation-play-state: paused;
}

.nm3d-float-delay-1 {
  animation-delay: 0s;
}

.nm3d-float-delay-2 {
  animation-delay: 2s;
}

.nm3d-float-delay-3 {
  animation-delay: 4s;
}

@keyframes nm3d-float-anim {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.nm3d-orbit {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.nm3d-orbit-1 {
  width: 130%;
  height: 130%;
  border-width: clamp(8px, 2vw, 20px);
  border-color: rgba(139, 92, 246, 0.15);
  animation: nm3d-spin 20s linear infinite;
}

.nm3d-orbit-2 {
  width: 110%;
  height: 110%;
  border-width: clamp(6px, 1.5vw, 15px);
  border-color: rgba(245, 158, 11, 0.2);
  animation: nm3d-spin 15s linear infinite reverse;
}

.nm3d-orbit-3 {
  width: 160%;
  height: 160%;
  border-width: clamp(4px, 1vw, 10px);
  border-color: rgba(59, 130, 246, 0.1);
  animation: nm3d-spin 25s linear infinite;
}

@keyframes nm3d-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.nm3d-img-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.nm3d-card-wrap:hover .nm3d-img-box {
  transform: scale(1.02);
}

.nm3d-img-wrap {
  position: relative;
  width: min(50vw, 190px);
  height: min(50vw, 190px);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

@media (min-width: 640px) {
  .nm3d-img-wrap {
    width: 170px;
    height: 170px;
  }
}

@media (min-width: 768px) {
  .rdmb {
    margin-bottom: 9rem !important;
  }

  .nm3d-img-wrap {
    width: min(18vw, 170px);
    height: min(18vw, 170px);
  }
}

@media (min-width: 1024px) {
  .nm3d-img-wrap {
    width: min(20vw, 220px);
    height: min(20vw, 220px);
  }
}

.nm3d-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.nm3d-card-wrap:hover .nm3d-img-wrap img {
  opacity: 1;
}

.nm3d-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nm3d-badge {
  position: absolute;
  background: #e0e5ec;
  box-shadow:
    6px 6px 12px #a3b1c6,
    -6px -6px 12px #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(10px, 2.5vw, 14px);
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
  animation: nm3d-badge-float 3s ease-in-out infinite;
}

.nm3d-badge-top {
  top: clamp(-0.5rem, -2vw, -1rem);
  right: clamp(-0.5rem, -2vw, -1rem);
}

.nm3d-badge-bottom {
  bottom: clamp(-0.5rem, -2vw, -1rem);
  left: clamp(-0.5rem, -2vw, -1rem);
}

.nm3d-badge-delay-1 {
  animation-delay: 0s;
}

.nm3d-badge-delay-2 {
  animation-delay: 1.5s;
}

@keyframes nm3d-badge-float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.nm3d-glow-purple {
  color: #8b5cf6;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.nm3d-glow-amber {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.nm3d-glow-blue {
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

@media (hover: none) and (pointer: coarse) {
  .nm3d-card {
    transform: none !important;
  }

  .nm3d-float {
    animation-duration: 8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nm3d-float,
  .nm3d-orbit,
  .nm3d-badge {
    animation: none;
  }

  .nm3d-card-wrap {
    opacity: 1;
    transform: none;
  }
}
.portfolio-section {
  padding: clamp(1rem, 4vw, 2rem) clamp(0.5rem, 2vw, 1rem);
}
.portfolio-header {
  width: 100%;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.explore-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rdh {
  font-size: clamp(3.5rem, 5vw, 2.25rem);
  line-height: 1.2;
}
.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Styles */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--neo-bg);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  box-shadow:
    6px 6px 12px #a3b1c6,
    -6px -6px 12px #ffffff;
  transition: all 0.3s ease;
  width: fit-content;
}

.section-badge:hover {
  box-shadow:
    inset 4px 4px 8px #a3b1c6,
    inset -4px -4px 8px #ffffff;
}

.badge-icon {
  width: 16px;
  height: 16px;
  stroke: #3b82f6;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 0;
  text-shadow:
    2px 2px 4px #a3b1c6,
    -2px -2px 4px #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--neo-bg);
  border-radius: 50px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 15px;
  box-shadow:
    8px 8px 16px #a3b1c6,
    -8px -8px 16px #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discover-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.discover-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.discover-btn:hover::before {
  opacity: 1;
}

.discover-btn span,
.discover-btn svg {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.discover-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Project Card - Neomorphism 3D */
.project-card {
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--neo-bg);
  box-shadow:
    20px 20px 40px #a3b1c6,
    -20px -20px 40px #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.project-card:hover .card-inner {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow:
    30px 30px 60px #a3b1c6,
    -30px -30px 60px #ffffff;
}

.card-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 41, 59, 0.95) 0%,
    rgba(30, 41, 59, 0.6) 50%,
    transparent 100%
  );
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.project-card:hover .card-overlay {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.4) 0%,
    rgba(139, 92, 246, 0.4) 50%,
    rgba(245, 158, 11, 0.3) 100%
  );
  opacity: 0.8;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  transform: translateZ(30px);
}

.project-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.project-card:nth-child(1) .project-tag {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(139, 92, 246, 0.3)
  );
}

.project-card:nth-child(2) .project-tag {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.3),
    rgba(139, 92, 246, 0.3)
  );
}

.project-card:nth-child(3) .project-tag {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3),
    rgba(59, 130, 246, 0.3)
  );
}

.project-card:nth-child(4) .project-tag {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(245, 158, 11, 0.3)
  );
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Shine Effect */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.project-card:hover .card-shine {
  left: 100%;
}

.rdh {
  font-size: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 30px 16px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-image {
    height: 350px;
  }

  .rdh {
    font-size: 2rem;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  animation-delay: 0.2s;
}

.project-card:nth-child(3) {
  animation-delay: 0.3s;
}

.project-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* 3d product portfolio*/
.np-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  min-height: 100vh;
}

/* Grid - Single column mobile */
.np-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* Card - Full width mobile */
.np-card {
  background: #e6eaf0;
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    8px 8px 16px rgba(163, 177, 198, 0.7),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Main Image - Mobile optimized */
.np-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.7),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  touch-action: none; /* Prevent default touch actions */
}

.np-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(30, 42, 56, 0.15));
  animation: np-float 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent image from capturing touches */
}

@keyframes np-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Zoom Lens Overlay */
.np-zoom-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 100;
  background-repeat: no-repeat;
  background-color: #eef2f7;
  will-change: transform, opacity, left, top;
}

.np-zoom-lens.active {
  opacity: 1;
  transform: scale(1);
}

.np-zoom-lens::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* Zoom indicator icon */
.np-zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #e6eaf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    3px 3px 6px rgba(163, 177, 198, 0.7),
    -3px -3px 6px rgba(255, 255, 255, 0.9);
  color: #5a6a7a;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.np-image-wrap:hover .np-zoom-icon {
  transform: scale(1.1);
  color: #1e2a38;
}

.np-image-wrap.zooming {
  cursor: none;
}

.np-image-wrap.zooming .np-zoom-icon {
  opacity: 0;
  transform: scale(0.8);
}

/* Mobile zoom hint */
.np-zoom-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30, 42, 56, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 50;
  white-space: nowrap;
}

.np-image-wrap.zooming .np-zoom-hint {
  opacity: 0;
}

@media (hover: none) and (pointer: coarse) {
  .np-image-wrap:not(.zooming) .np-zoom-hint {
    opacity: 1;
    animation: hint-pulse 2s ease-in-out infinite;
  }
}

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Product Name */
.np-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #1e2a38;
}

/* Thumbnail Section - Mobile optimized */
.np-thumb-section {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.np-thumb-container {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e6eaf0;
  box-shadow:
    inset 3px 3px 6px rgba(163, 177, 198, 0.7),
    inset -3px -3px 6px rgba(255, 255, 255, 0.9);
  padding: 8px;
  touch-action: pan-x;
}

.np-thumb-track {
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.np-thumb {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #eef2f7;
  box-shadow:
    3px 3px 6px rgba(163, 177, 198, 0.7),
    -3px -3px 6px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
}

.np-thumb:active {
  transform: scale(0.95);
}

.np-thumb.active {
  box-shadow:
    inset 2px 2px 4px rgba(163, 177, 198, 0.7),
    inset -2px -2px 4px rgba(255, 255, 255, 0.9);
}

.np-thumb.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: rgba(163, 177, 198, 0.7)
    linear-gradient(135deg, #b8a9c9 0%, #9bb5ce 50%, #e6c4a8 100%) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.np-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Navigation Buttons - Mobile optimized touch targets */
.np-nav {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #e6eaf0;
  color: #5a6a7a;
  font-size: 14px;
  cursor: pointer;
  box-shadow:
    4px 4px 8px rgba(163, 177, 198, 0.7),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
}

.np-nav:active {
  box-shadow:
    inset 2px 2px 4px rgba(163, 177, 198, 0.7),
    inset -2px -2px 4px rgba(255, 255, 255, 0.9);
  transform: scale(0.95);
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  :root {
    --np-radius: 20px;
    --np-gap: 20px;
  }

  .np-container {
    padding: 40px 24px;
    max-width: 900px;
  }

  .np-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .np-card {
    padding: 24px;
  }
  .np-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .np-thumb {
    flex: 0 0 70px;
    height: 70px;
  }

  .np-nav {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .np-zoom-lens {
    width: 160px;
    height: 160px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .np-container {
    padding: 60px 40px;
    max-width: 1400px;
  }

  .np-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1 row × 3 columns */
    gap: 30px;
    position: relative;
  }

  .np-zoom-lens {
    width: 180px;
    height: 180px;
  }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .np-container {
    max-width: 1400px;
    padding: 30px 60px;
  }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
  .np-container {
    padding: 12px;
  }

  .np-card {
    padding: 16px;
    border-radius: 12px;
  }

  .np-title {
    font-size: 1.1rem;
  }

  .np-thumb {
    flex: 0 0 50px;
    height: 50px;
  }

  .np-nav {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .np-zoom-lens {
    width: 120px;
    height: 120px;
  }
}

/* Utility classes */
.np-fade {
  animation: np-fade 0.3s ease;
}

@keyframes np-fade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Prevent text selection on buttons */
.np-nav,
.np-thumb {
  user-select: none;
  -webkit-user-select: none;
}
/*game developemnt*/

.neo360-container {
  width: 100%;
  max-width: 1300px;
  border-radius: 24px;
  padding: 40px 10px;
  margin: 0 auto;
}

.neo360-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.neo360-viewer-box {
  position: relative;
  padding: 24px;
  background: #e6e7ee;
  border-radius: 24px;
  box-shadow:
    16px 16px 32px #c8c9d0,
    -16px -16px 32px #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.neo360-viewer-box:hover {
  transform: translateY(-8px);
  box-shadow:
    24px 24px 48px #c8c9d0,
    -24px -24px 48px #ffffff;
}

.neo360-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #e6e7ee, #f0f1f7);
  box-shadow:
    6px 6px 12px #c8c9d0,
    -6px -6px 12px #ffffff;
  pointer-events: none;
  z-index: 10;
}

.neo360-orb-1 {
  width: 60px;
  height: 60px;
  top: -20px;
  right: -20px;
  animation: float 8s ease-in-out infinite;
}

.neo360-orb-2 {
  width: 40px;
  height: 40px;
  bottom: -15px;
  left: -15px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.neo360-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--neo-radius-sm);
  overflow: hidden;
  background: #e6e7ee;
  box-shadow:
    inset 6px 6px 12px #c8c9d0,
    inset -6px -6px 12px #ffffff;
  flex: 1;
}

.neo360-iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.neo360-iframe.loaded {
  opacity: 1;
}

.neo360-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.neo360-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6e7ee;
  box-shadow:
    6px 6px 12px #c8c9d0,
    -6px -6px 12px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.neo360-spinner::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow:
      6px 6px 12px #c8c9d0,
      -6px -6px 12px #ffffff;
  }

  50% {
    box-shadow:
      10px 10px 20px #c8c9d0,
      -10px -10px 20px #ffffff;
  }
}

.neo360-loader-text {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.neo360-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.neo360-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #e6e7ee;
  color: #718096;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    5px 5px 10px #c8c9d0,
    -5px -5px 10px #ffffff;
  transition: all 0.2s ease;
}

.neo360-btn:hover {
  color: #667eea;
  transform: translateY(-2px);
  box-shadow:
    8px 8px 16px #c8c9d0,
    -8px -8px 16px #ffffff;
}

.neo360-btn:active {
  box-shadow:
    inset 3px 3px 6px #c8c9d0,
    inset -3px -3px 6px #ffffff;
  transform: translateY(0);
}
.neo360-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #718096;
  display: none;
}

.neo360-error.show {
  display: block;
}

/* Responsive */
@media (max-width: 968px) {
  .neo360-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .neo360-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .neo360-viewer-box {
    padding: 16px;
  }

  .neo360-orb {
    display: none;
  }
}
/* gallery */
.neo-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(40px, 6vw, 0px);
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0px;
  perspective: 2000px;
}

/* Main Card - Outer raised frame */
.neo-gallery-card {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #eef0f4, #d8dce2);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 30px);
  box-shadow:
    15px 15px 40px #b8bec7,
    -15px -15px 40px #ffffff,
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* Hover lift effect */
.neo-gallery-card:hover {
  transform: translateY(-15px) translateZ(40px) rotateX(3deg) rotateY(3deg);
  box-shadow:
    25px 25px 60px #a8b0bb,
    -25px -25px 60px #ffffff,
    0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Inner recessed frame - The key element matching your image */
.neo-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: clamp(15px, 3vw, 25px);
  background: #e8ecf1;
  box-shadow:
    inset 8px 8px 16px #b8bec7,
    inset -8px -8px 16px #ffffff,
    0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  transform: translateZ(10px);
  transition: all 0.4s ease;
}

.neo-gallery-card:hover .neo-image-frame {
  box-shadow:
    inset 12px 12px 24px #a8b0bb,
    inset -12px -12px 24px #ffffff,
    0 0 0 1px rgba(255, 255, 255, 0.4);
  transform: translateZ(20px);
}

/* Image container - innermost area */
.neo-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #dde2e8;
  box-shadow:
    inset 3px 3px 6px #b8bec7,
    inset -3px -3px 6px #ffffff;
}

.neo-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.neo-gallery-card:hover img {
  transform: scale(1.1);
}

/* Shine effect overlay */
.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 10;
}

.neo-gallery-card:hover .shine {
  left: 150%;
}

/* Corner accents for extra depth */
.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #dde2e8, #f0f4f8);
  box-shadow:
    3px 3px 6px #b8bec7,
    -3px -3px 6px #ffffff;
  z-index: 5;
}

.corner-tl {
  top: 10px;
  left: 10px;
}

.corner-tr {
  top: 10px;
  right: 10px;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
}

.corner-br {
  bottom: 10px;
  right: 10px;
}

/* Zoom button */
.neo-zoom-btn {
  position: absolute;
  bottom: clamp(15px, 3vw, 25px);
  right: clamp(15px, 3vw, 25px);
  width: clamp(45px, 8vw, 55px);
  height: clamp(45px, 8vw, 55px);
  background: linear-gradient(145deg, #eef0f4, #d8dce2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    6px 6px 12px #b8bec7,
    -6px -6px 12px #ffffff;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateZ(30px);
  z-index: 20;
}

.neo-gallery-card:hover .neo-zoom-btn {
  transform: translateZ(50px) scale(1.1) rotate(90deg);
  box-shadow:
    10px 10px 25px #a8b0bb,
    -10px -10px 25px #ffffff;
}

.neo-zoom-btn svg {
  width: clamp(20px, 4vw, 24px);
  height: clamp(20px, 4vw, 24px);
  color: #7a828d;
  transition: color 0.3s ease;
}

.neo-gallery-card:hover .neo-zoom-btn svg {
  color: #5a626d;
}

/* Modal Styles */
.neo-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(232, 236, 241, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: clamp(20px, 5vw, 50px);
  perspective: 1500px;
}

.neo-modal-overlay.neo-active {
  display: flex;
  opacity: 1;
}

.neo-modal-content {
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  position: relative;
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.neo-modal-overlay.neo-active .neo-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Modal frame matching card style */
.neo-modal-frame {
  background: linear-gradient(145deg, #eef0f4, #d8dce2);
  padding: clamp(20px, 4vw, 35px);
  border-radius: 24px;
  box-shadow:
    30px 30px 80px #a8b0bb,
    -30px -30px 80px #ffffff;
}

.neo-modal-inner {
  border-radius: 16px;
  padding: clamp(15px, 3vw, 25px);
  background: #e8ecf1;
  box-shadow:
    inset 8px 8px 16px #b8bec7,
    inset -8px -8px 16px #ffffff;
}

.neo-modal-img-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    inset 3px 3px 6px #b8bec7,
    inset -3px -3px 6px #ffffff;
}

.neo-modal-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.neo-modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #eef0f4, #d8dce2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    8px 8px 20px #b8bec7,
    -8px -8px 20px #ffffff;
  transition: all 0.3s ease;
}

.neo-modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow:
    12px 12px 30px #a8b0bb,
    -12px -12px 30px #ffffff;
}

.neo-modal-close svg {
  width: 24px;
  height: 24px;
  color: #7a828d;
}

/* Responsive */
@media (max-width: 768px) {
  .neo-gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .neo-gallery-card {
    padding: 20px;
  }

  .neo-image-frame {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .neo-gallery-container {
    grid-template-columns: 1fr;
  }
}
.neo-card-title {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #374151;
  text-align: center;
}
.nvg-section {
  position: relative;
  width: 100%;
  padding: clamp(40px, 8vw, 40px) clamp(15px, 4vw, 30px);
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f0f2f5;
}

.nvg-container {
  max-width: 1300px;
  margin: 0 auto;
}

.nvg-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
  letter-spacing: -0.5px;
}

.nvg-gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #a855f7 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid Systems */
.nvg-grid {
  display: grid;
  gap: clamp(20px, 3vw, 35px);
  margin-bottom: 35px;
}

.nvg-grid-reels {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.nvg-grid-long {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.nvg-card {
  position: relative;
  background: #e0e5ec;
  border-radius: 24px;
  padding: 12px;
  box-shadow:
    15px 15px 40px #b8b9be,
    -15px -15px 40px #ffffff;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: nvg-fade-in 0.6s ease forwards;
}

/* Staggered Animation Delays */
.nvg-grid > .nvg-card:nth-child(1) {
  animation-delay: 0.1s;
}

.nvg-grid > .nvg-card:nth-child(2) {
  animation-delay: 0.2s;
}

.nvg-grid > .nvg-card:nth-child(3) {
  animation-delay: 0.3s;
}

.nvg-grid > .nvg-card:nth-child(4) {
  animation-delay: 0.4s;
}

.nvg-grid > .nvg-card:nth-child(5) {
  animation-delay: 0.5s;
}

.nvg-grid > .nvg-card:nth-child(6) {
  animation-delay: 0.6s;
}

.nvg-grid > .nvg-card:nth-child(7) {
  animation-delay: 0.7s;
}

.nvg-grid > .nvg-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes nvg-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nvg-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    25px 25px 60px #a8aab1,
    -25px -25px 60px #ffffff;
}

/* Video Wrapper */
.nvg-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #d1d9e6;
}

.nvg-reel .nvg-video-wrapper {
  aspect-ratio: 9/16;
}

.nvg-long .nvg-video-wrapper {
  aspect-ratio: 16/9;
}

.nvg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay & Reflection Effects */
.nvg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nvg-card:hover .nvg-overlay {
  opacity: 1;
}

.nvg-reflection {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.nvg-card:hover .nvg-reflection {
  left: 150%;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .nvg-grid-long {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nvg-grid-reels {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .nvg-grid-long {
    grid-template-columns: 1fr;
  }

  .nvg-card {
    padding: 8px;
    border-radius: 16px;
  }

  .nvg-video-wrapper {
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .nvg-grid-reels {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .nvg-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nvg-reflection {
    display: none;
  }
}
.whatsapp-3d {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2de26f, #20b858);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-decoration: none;
  box-shadow:
    0 10px 20px rgba(37, 211, 102, 0.4),
    0 6px 6px rgba(37, 211, 102, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  transform: perspective(500px) rotateX(10deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-3d i {
  font-size: 32px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateZ(10px);
}

.whatsapp-3d:hover {
  transform: perspective(500px) rotateX(0deg) translateY(-5px) scale(1.1);
  box-shadow:
    0 20px 40px rgba(37, 211, 102, 0.5),
    0 15px 15px rgba(37, 211, 102, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.whatsapp-3d:active {
  transform: perspective(500px) rotateX(10deg) translateY(2px) scale(0.95);
  box-shadow:
    0 5px 10px rgba(37, 211, 102, 0.3),
    inset 0 2px 5px rgba(0, 0, 0, 0.2);
}
.np-contact-section {
  padding: 3rem 2rem;
}

.np-contact-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.np-contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: np-contact-orb-float 25s infinite ease-in-out;
}

.np-contact-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.np-contact-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.np-contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.np-contact-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #f59e0b 0%, #f2835c 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.np-contact-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.np-contact-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Balanced Layout - Equal Columns */
.np-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.np-contact-column {
  display: flex;
  flex-direction: column;
}

/* Glass Cards */
.np-contact-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.np-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

/* Panel Headers */
.np-contact-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.np-contact-panel-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

/* Info Panel Specifics */
.np-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.np-contact-info-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.04),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.np-contact-info-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.06),
    -12px -12px 24px rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.5);
}

.np-contact-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.08),
    -6px -6px 12px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.np-contact-info-item[data-color="amber"]:hover .np-contact-icon-ring {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.np-contact-info-item[data-color="purple"]:hover .np-contact-icon-ring {
  background: linear-gradient(135deg, #c084fc 0%, #f2835c 100%);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.np-contact-info-item[data-color="blue"]:hover .np-contact-icon-ring {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.np-contact-icon {
  width: 22px;
  height: 22px;
  color: #64748b;
  transition: all 0.3s ease;
}

.np-contact-info-item:hover .np-contact-icon {
  color: white;
  transform: scale(1.1);
}

.np-contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 2;
}

.np-contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.np-contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

/* Glow Effects */
.np-contact-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.np-contact-glow-amber {
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.6) 0%,
    transparent 70%
  );
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.np-contact-glow-purple {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.6) 0%,
    transparent 70%
  );
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.np-contact-glow-blue {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.6) 0%,
    transparent 70%
  );
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.np-contact-info-item:hover .np-contact-glow {
  opacity: 1;
}

/* Social Links */
.np-contact-social {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.np-contact-social-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.np-contact-social-links {
  display: flex;
  gap: 1rem;
}

.np-contact-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  box-shadow:
    5px 5px 10px rgba(0, 0, 0, 0.06),
    -5px -5px 10px rgba(255, 255, 255, 0.9);
  color: #64748b;
  transition: all 0.3s ease;
  text-decoration: none;
}

.np-contact-social-link:hover {
  transform: translateY(-3px);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.08),
    -8px -8px 16px rgba(255, 255, 255, 1);
  color: #f2835c;
  background: white;
}

.np-contact-social-link svg {
  width: 20px;
  height: 20px;
}

/* Form Panel */
.np-contact-form-panel {
  display: flex;
  flex-direction: column;
}

.np-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.np-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.np-contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.np-contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

.np-contact-input-wrap {
  position: relative;
}

/* Neomorphic Inputs */
.np-contact-input,
.np-contact-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 16px;
  background: #e6e6e623;
  box-shadow:
    inset 5px 5px 10px rgba(0, 0, 0, 0.05),
    inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  color: #1e293b;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 1;
}

.np-contact-input::placeholder,
.np-contact-textarea::placeholder {
  color: #94a3b8;
}

.np-contact-input:focus,
.np-contact-textarea:focus {
  background: #eef1f4;
  box-shadow:
    inset 7px 7px 14px rgba(0, 0, 0, 0.06),
    inset -7px -7px 14px rgba(255, 255, 255, 0.9);
}

.np-contact-input-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbbf24 0%, #f2835c 50%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  filter: blur(4px);
}

.np-contact-input:focus ~ .np-contact-input-glow,
.np-contact-textarea:focus ~ .np-contact-input-glow {
  opacity: 0.4;
}

.np-contact-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Send Button */
.np-contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.125rem 2rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffffff 0%, #8b8a8a14 100%);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.08),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.np-contact-button-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #32427d 20%, #fbbf24 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.np-contact-button:hover {
  transform: translateY(-2px);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.1),
    -12px -12px 24px rgba(255, 255, 255, 1);
}

.np-contact-button:hover .np-contact-button-bg {
  opacity: 1;
}

.np-contact-button:active {
  transform: translateY(0);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.08),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.np-contact-button-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.np-contact-button-text {
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  transition: color 0.3s ease;
}

.np-contact-button:hover .np-contact-button-text {
  color: white;
}

.np-contact-button-icon {
  width: 20px;
  height: 20px;
  color: #475569;
  transition: all 0.3s ease;
}

.np-contact-button:hover .np-contact-button-icon {
  color: white;
  transform: translateX(4px) rotate(-45deg);
}

/* Animations */
@keyframes np-contact-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -40px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .np-contact-layout {
    grid-template-columns: 1fr;
  }

  .np-contact-title {
    font-size: 2.5rem;
  }

  .np-contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .np-contact-section {
    padding: 2rem 0.5rem;
  }

  .np-contact-card {
    padding: 1.75rem;
    border-radius: 24px;
  }

  .np-contact-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-contact-orb {
    animation: none;
  }

  .np-contact-info-item,
  .np-contact-button,
  .np-contact-input,
  .np-contact-social-link {
    transition: none;
  }
}
.ppx-neo-wrapper {
  align-items: stretch;
  gap: 80px;
}

.ppx-neo-visual,
.ppx-neo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ppx-neo-frame {
  flex: 1;
  display: flex;
}

.ppx-neo-inset {
  flex: 1;
}

.ppx-neo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .ppx-neo-wrapper {
    flex-direction: column;
  }
}
.ppx-neo-inset video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.np-popup {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  width: 100vw !important;
  height: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-sizing: border-box !important;
  isolation: isolate !important;
}

.np-popup.show {
  opacity: 1;
  visibility: visible;
}

.np-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.np-popup-container {
  position: relative;
  z-index: 2;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.np-popup.show .np-popup-container {
  transform: scale(1) translateY(0);
}

.np-popup-content {
  background: linear-gradient(145deg, #f0f0f3, #e6e6e9);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}

.np-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: linear-gradient(145deg, #f0f0f3, #e6e6e9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    4px 4px 8px #bebebe,
    -4px -4px 8px #ffffff;
  transition: all 0.2s ease;
  color: #64748b;
  z-index: 10;
}

.np-popup-close:hover {
  transform: rotate(90deg);
  box-shadow:
    2px 2px 4px #bebebe,
    -2px -2px 4px #ffffff;
  color: #334155;
}

.np-popup-close svg {
  width: 18px;
  height: 18px;
}

.np-popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 4px 4px 8px #bebebe,
    inset -4px -4px 8px #ffffff;
  background: linear-gradient(145deg, #f0f0f3, #e6e6e9);
}

.np-popup-icon svg {
  width: 40px;
  height: 40px;
  display: none;
}

.np-popup-icon.success #npPopupSuccessIcon {
  display: block;
  color: #10b981;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.np-popup-icon.error #npPopupErrorIcon {
  display: block;
  color: #ef4444;
  filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.np-popup-title {
  margin: 0 0 12px 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.np-popup-message {
  margin: 0 0 32px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
}

.np-popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.np-popup-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: inherit;
}

.np-popup-btn-primary {
  background: linear-gradient(145deg, #f5a623, #e09400);
  color: white;
  box-shadow:
    0 4px 6px -1px rgba(245, 166, 35, 0.4),
    0 2px 4px -1px rgba(245, 166, 35, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  flex: 1;
  min-width: 140px;
}

.np-popup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(245, 166, 35, 0.5),
    0 4px 6px -2px rgba(245, 166, 35, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.np-popup-btn-primary:active {
  transform: translateY(0);
}

.np-popup-btn-secondary {
  background: linear-gradient(145deg, #f0f0f3, #e6e6e9);
  color: #059669;
  box-shadow:
    6px 6px 12px #bebebe,
    -6px -6px 12px #ffffff;
  flex: 1;
  min-width: 140px;
}

.np-popup-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow:
    8px 8px 16px #bebebe,
    -8px -8px 16px #ffffff;
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
}

.np-popup-btn-secondary:active {
  transform: translateY(0);
  box-shadow:
    4px 4px 8px #bebebe,
    -4px -4px 8px #ffffff;
}

@media (max-width: 480px) {
  .np-popup {
    align-items: flex-start !important;
    padding-top: 100px !important;
    padding-bottom: 20px !important;
    overflow-y: auto !important;
  }

  .np-popup-container {
    padding: 10px;
    width: 100%;
  }

  .np-popup-content {
    padding: 40px 20px 32px;
    border-radius: 20px;
    margin: 0;
    width: 100%;
    max-width: none;
  }

  .np-popup-title {
    font-size: 1.4rem;
  }

  .np-popup-message {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .np-popup-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .np-popup-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .np-popup-icon {
    width: 70px;
    height: 70px;
  }

  .np-popup-icon svg {
    width: 35px;
    height: 35px;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.np-popup.show .np-popup-icon svg {
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.np-popup-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}
