/* Custom Theme Variables to match original design */
:root {
  --neon: #189e05;
  --neon-light: rgba(24, 158, 5, 0.1);
  --bg-dark: #ffffff;
  --text-main: #111111;
  --text-muted: #555555;
  --white: #ffffff;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
}

.project-title,
.service-title,
.skill-card h4,
.process-card h4,
.bento-card h4 {
  color: var(--text-main) !important;
}

.swiper-wrapper {
  height: auto !important;
}

/* Typography */
.font-orbitron {
  font-family: "Orbitron", sans-serif;
}
.font-inter {
  font-family: "Inter", sans-serif;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}

/* Custom Colors */
.text-neon {
  color: var(--neon) !important;
}
.bg-neon {
  background-color: var(--neon) !important;
}
.border-neon {
  border-color: var(--neon) !important;
}

/* Selection */
::selection {
  background: var(--neon);
  color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon);
}

/* Background Glows */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.2;
}

.glow-blob-sm {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
}

.glow-blob-md {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  opacity: 0.1;
}

/* Glassmorphism */
/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.7); /* More opaque for light mode */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
}

/* Animations */
.animate-spin-slow {
  animation: spin-slow 6s linear infinite;
}

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

.animate-pulse-glow {
  animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(to right, #1a1a1a, #228950);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Custom Button Hover Effects */
.btn-custom-neon {
  background-color: var(--neon);
  border: 1px solid var(--neon);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-custom-neon:hover {
  background-color: #148a04;
  border-color: #148a04;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(24, 158, 5, 0.4);
  transform: translateY(-2px);
}

.btn-custom-glass {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.btn-custom-glass:hover {
  background: #f8f9fa;
  border-color: var(--neon);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Nav Link Hovers */
.nav-link-custom {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link-custom:hover,
.nav-link-custom:focus,
.nav-link-custom.active {
  color: var(--neon) !important;
}

/* Traveling Border Card Logic */
.card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2px;
  isolation: isolate;
}
.rotating-border {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 300deg,
    var(--neon) 360deg
  );
  animation: spin-slow 6s linear infinite;
  opacity: 0.8;
  z-index: -1;
}

/* Mobile Menu */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
#mobile-menu.visible {
  transform: translateX(0%);
}

/* Tech Stack Icons */
.tech-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--neon);
  transition: all 0.3s ease;
  cursor: pointer;
}
.tech-icon:hover {
  transform: scale(1.1);
  background: rgba(24, 158, 5, 0.1);
}
.hover-react:hover {
  color: #61dafb;
}
.hover-js:hover {
  color: #f7df1e;
}
.hover-ui:hover {
  color: #38b2ac;
}
.hover-db:hover {
  color: white;
}
.hover-figma:hover {
  color: #f24e1e;
}

/* About Section Bento Grid */
.bento-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}
.bento-card h4,
.bento-card h5 {
  color: var(--text-main) !important;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.25);
}

.bento-card:hover .icon-box {
  background: var(--neon-light);
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(57, 255, 20, 0.05),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* Skills Section */
.skill-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}
.skill-card h4 {
  color: var(--text-main) !important;
}

.skill-card:hover {
  border-color: var(--neon);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.1);
}

.skill-icon {
  font-size: 1.5rem;
  color: var(--neon);
  width: 32px;
  text-align: center;
}

/* Custom Progress Bar */

.glass-badge {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.35em 0.8em;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 20px;
  color: var(--text-main);
  font-weight: 600;
}

.progress-custom {
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-custom {
  background: linear-gradient(
    90deg,
    rgba(57, 255, 20, 0.1) 0%,
    var(--neon) 100%
  );
  height: 100%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 36px;
  margin: 1rem 1rem 0 1rem;
  width: auto;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Pages Dropdown Customization */
.dropdown-menu.glass {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 1rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1) !important;
  padding: 0.75rem;
  animation: dropdownAppear 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: top center;
}

@keyframes dropdownAppear {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-item {
  color: var(--text-main) !important;
  font-family: inherit;
  font-weight: 500;
  padding: 0.6rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(24, 158, 5, 0.08) !important;
  color: var(--neon) !important;
  transform: translateX(4px);
}

.dropdown-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  margin: 0.5rem 0;
}

/* Projects Section Styling */
.aspect-ratio-16-10 {
  aspect-ratio: 16 / 10;
}

.glass-overlay {
  background: linear-gradient(to top, var(--bg-dark), transparent);
  opacity: 0.6;
}

.glass-badge-dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.glass-card-premium {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.glass-card-premium:hover {
  border-color: var(--neon) !important;
  background: white;
  box-shadow: 0 10px 40px -10px rgba(26, 175, 5, 0.2);
  transform: translateY(-10px) scale(1.01);
}

.glass-card-premium:hover .project-title {
  color: var(--neon) !important;
}

.glass-card-premium .aspect-ratio-16-10 img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-premium:hover .aspect-ratio-16-10 img {
  transform: scale(1.02);
}

.hover-neon:hover {
  color: var(--neon) !important;
}

.project-title {
  transition: color 0.3s ease;
}

.active-filter {
  background-color: var(--neon) !important;
  border-color: var(--neon) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(24, 158, 5, 0.3);
}

.projectSwiper {
  width: 100%;
  height: auto !important;
  touch-action: pan-y !important;
  overflow: hidden !important;
}

.swiper-slide {
  height: auto !important;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--text-main) !important;
  width: 50px !important;
  height: 50px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: var(--neon) !important;
  color: var(--neon) !important;
  box-shadow: 0 0 15px rgba(26, 175, 5, 0.3) !important;
}

.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--neon) !important;
  box-shadow: 0 0 10px var(--neon) !important;
  width: 25px !important;
  border-radius: 5px !important;
}

.swiper-button-disabled {
  opacity: 0.2 !important;
  cursor: not-allowed !important;
}

.hidden-slide {
  display: none !important;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Relocated Action Buttons Glassmorphism */
.glass-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-btn:hover {
  background: var(--neon);
  color: black !important;
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon);
  transform: translateY(-3px) scale(1.1);
}

.glass-card-premium:hover .glass-btn {
  border-color: rgba(57, 255, 20, 0.3);
}

.tech-badge {
  background: rgba(50, 255, 0, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: var(--text-main);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

.tech-badge:hover {
  background: rgba(50, 255, 0, 0.1);
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}

/* Responsiveness & Refinement */
@media (max-width: 991.98px) {
  .projects-nav {
    display: none !important;
  }
  .swiper-pagination {
    margin-top: 2rem !important;
  }
}

@media (max-width: 767.98px) {
  .display-4 {
    font-size: 2.5rem;
  }
  .glass-card-premium .p-4 {
    padding: 1.5rem !important;
  }
  .glass-btn {
    width: 38px;
    height: 38px;
    margin: 0.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .tech-badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* Services Section Styling */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  border-color: var(--neon);
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(26, 175, 5, 0.05),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--neon);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.service-card:hover .service-icon-box iconify-icon {
  color: var(--neon) !important;
}

.service-card:hover .service-title {
  color: var(--neon) !important;
}

.service-title {
  transition: color 0.3s ease;
}

/* Testimonials Section Styling */
.testimonialSwiper {
  width: 100% !important;
  height: auto;
  padding-bottom: 3rem !important;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  width: 300px !important;
  max-width: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonialSwiper .swiper-slide {
  height: auto;
  width: auto !important;
}
.testimonialSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.testimonial-card:hover {
  border-color: var(--neon);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.avatar-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.extra-small {
  font-size: 0.75rem;
}

/* Contact Section Styling */
.contact-section {
  padding: 100px 0;
  background-image: url("https://hoirqrkdgbmvpwutwuwj.supabase.co/storage/v1/object/public/assets/assets/77f55872-adf5-4910-9a7c-d21c0041bbe1_3840w.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent,
    white 15%,
    white 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    white 15%,
    white 85%,
    transparent
  );
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  border-color: var(--neon);
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-control-custom {
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background: white;
  border-color: var(--neon);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(26, 175, 5, 0.1);
  outline: none;
}

.form-control-custom::placeholder {
  color: #999999;
}

.form-select-custom {
  background: rgba(240, 240, 240, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

.form-select-custom:focus {
  border-color: var(--neon);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.form-select-custom option {
  background-color: white;
  color: var(--text-main);
}

.social-link-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-item:hover {
  background: var(--neon);
  color: black;
  border-color: var(--neon);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

/* Custom Select Styling */
.custom-select-container {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-select-container.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.custom-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--neon);
}

.custom-option.selected {
  background: rgba(26, 175, 5, 0.1);
  color: var(--neon);
  font-weight: 500;
}

.custom-select-trigger iconify-icon {
  transition: transform 0.3s ease;
}

.custom-select-container.open .custom-select-trigger iconify-icon {
  transform: rotate(180deg);
}

/* Process Section Styling */
.process-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.02);
}

.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 6rem;
  font-weight: 900;
  font-family: "Orbitron", sans-serif;
  color: var(--neon);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.mobile-nav-link {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--text-muted);
  text-decoration: none;
  margin: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-main);
  transform: scale(1.1);
}

.process-card:hover .step-number {
  opacity: 0.1;
  transform: scale(1.1);
}

.process-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--neon);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
  background: var(--neon);
  color: var(--white);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  transform: rotate(-5deg);
}

/* Footer Styling */
.footer-section {
  padding: 60px 0 30px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(57, 255, 20, 0.3);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--neon);
  padding-left: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--neon);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
  }
  70% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible !important;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--neon);
  color: black;
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon);
  transform: translateY(-5px);
}

/* Project Details Specific Styles */
.min-vh-auto {
  min-height: auto !important;
}

.tech-badge {
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tech-badge:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}

.gallery-slide-inner {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.gallery-slide-inner:hover {
  border-color: var(--neon) !important;
}

.gallery-slide-inner img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide-inner:hover img {
  opacity: 0.9;
}

.projectGallerySwiper {
  overflow: visible !important;
}

.project-gallery-section {
  overflow-x: hidden;
}

.project-gallery-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.glass-card-overview {
  background: #fdfdfd;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  transition: none !important;
}

.glass-card-overview:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(57, 255, 20, 0.3) !important;
}

/* Feature Icon Refinement */
.service-icon-box iconify-icon {
  color: var(--neon) !important;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: rgba(57, 255, 20, 0.15) !important;
  border-color: var(--neon) !important;
}

/* Tech Category Styles */
.tech-category-card {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: #ffffff !important;
  border-radius: 20px !important;
}

.tech-category-card:hover {
  border-color: var(--neon) !important;
  background: rgba(57, 255, 20, 0.05) !important;
}

.tech-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.tech-pill:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon);
  color: var(--text-main);
}

.tech-pill iconify-icon {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.tech-pill span {
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Challenges & Solutions Styles */
.challenges-solutions-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 100, 0, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.challenge-card {
  border-color: rgba(255, 59, 48, 0.15) !important;
  background: #fffafa !important;
}

.challenge-card:hover {
  border-color: rgba(255, 59, 48, 0.6) !important;
  background: rgba(255, 59, 48, 0.05) !important;
}

.solution-card {
  border-color: rgba(57, 255, 20, 0.2) !important;
  background: rgba(57, 255, 20, 0.02) !important;
}

.solution-card:hover {
  border-color: var(--neon) !important;
}

.icon-box-challenge,
.icon-box-solution {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.icon-box-challenge {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
}

.challenge-card:hover .icon-box-challenge {
  background: #ff3b30;
  color: white;
}

.icon-box-solution {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--neon);
}

.solution-card:hover .icon-box-solution {
  background: var(--neon);
  color: var(--white);
}

.challenge-item,
.solution-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
  color: var(--text-muted);
}

.challenge-item:hover {
  background: rgba(255, 59, 48, 0.03);
  border-color: rgba(255, 59, 48, 0.2);
  color: var(--text-main);
}

.solution-item:hover {
  background: rgba(57, 255, 20, 0.03);
  border-color: rgba(57, 255, 20, 0.2);
  color: var(--text-main);
}

/* Results & Impact Styles */
.results-impact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.result-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.result-card:hover {
  background: rgba(57, 255, 20, 0.05) !important;
  border-color: var(--neon) !important;
}

.text-neon {
  color: var(--neon) !important;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.result-number-wrapper {
  position: relative;
  display: inline-block;
}

/* Final CTA Section Styles */
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.final-cta-section .glass-card-premium {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
}

.final-cta-section .glass-card-premium:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(57, 255, 20, 0.3) !important;
}

/* ============================================
  ABOUT PAGE SPECIFIC STYLES (SCOPED)
  ============================================ */

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Timeline Section */
.timeline-section {
  position: relative;
}

.timeline-container {
  position: relative;
  padding-left: 100px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(57, 255, 20, 0.5),
    rgba(57, 255, 20, 0.1)
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

.timeline-year {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  text-align: right;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon);
}

.timeline-year::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.2);
}

.timeline-content {
  border: 1px solid rgba(57, 255, 20, 0.2) !important;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--neon) !important;
  background: rgba(57, 255, 20, 0.03) !important;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}

.timeline-content:hover .timeline-icon {
  background: var(--neon);
  color: black;
}

/* Values Section */
.value-card {
  border: 1px solid rgba(57, 255, 20, 0.2) !important;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--neon) !important;
  background: rgba(57, 255, 20, 0.03) !important;
  transform: translateY(-5px);
}

.value-icon {
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

/* About CTA Section */
.about-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.about-cta-section .glass-card-premium {
  border: 1px solid rgba(57, 255, 20, 0.3) !important;
}

.about-cta-section .glass-card-premium:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline-container {
    padding-left: 50px;
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-year {
    left: -50px;
    width: 45px;
    font-size: 0.9rem;
  }

  .timeline-year::after {
    right: -16px;
    width: 10px;
    height: 10px;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Pricing Section */
.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon);
  box-shadow: 0 20px 40px -20px rgba(57, 255, 20, 0.2);
  background: rgba(57, 255, 20, 0.03);
}

.pricing-card .price-tag {
  font-family: "Orbitron", sans-serif;
  color: var(--neon);
}

.pricing-feature-list li {
  color: #a0a0a0; /* text-secondary fallback */
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-feature-list li iconify-icon {
  color: var(--neon);
  flex-shrink: 0;
}

/* FAQ Accordion */
.glass-accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.glass-accordion .accordion-button {
  background: #ffffff;
  border: 1px solid rgba(112, 81, 81, 0.08);
  border-radius: 1rem !important;
  color: var(--text-main);
  font-family: "Orbitron", sans-serif;
  box-shadow: none;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.glass-accordion .accordion-button:not(.collapsed) {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon);
  color: black;
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
}

.glass-accordion .accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
}

.glass-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(0%) sepia(96%) saturate(366%) hue-rotate(86deg)
    brightness(118%) contrast(119%);
}

.glass-accordion .accordion-body {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-top: none;
  border-radius: 1rem;
  color: black;
  padding: 1.5rem;
}
/* Contact Map & Extras */
.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.2);
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.map-filter {
  filter: brightness(0.7) contrast(1.1);
  mix-blend-mode: normal;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.2);
}

.btn-telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  color: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

/* Footer & Back to Top Refinement */
.footer-section {
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 0 40px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02);
}

.footer-section h5 {
  color: var(--text-main) !important;
}

.footer-section .text-secondary {
  color: #555555 !important;
}

.footer-section .border-white {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.process-card h4 {
  color: var(--text-main) !important;
}

.process-card:hover {
  border-color: var(--neon);
  transform: translateY(-5px);
}

.process-card:hover h4 {
  color: var(--neon) !important;
}
