/* Services section-specific styles and animations */

/* Enhanced fade-in animations with staggered timing */
@keyframes servicesFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes serviceCardHover {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
  100% {
    transform: translateY(-5px) scale(1.01);
  }
}

@keyframes serviceIconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px #ff00cc) drop-shadow(0 0 16px #00fff7);
  }
  50% {
    filter: drop-shadow(0 0 12px #ff00cc) drop-shadow(0 0 24px #00fff7);
  }
}

@keyframes serviceCardGlow {
  0%, 100% {
    box-shadow: 0 0 20px #ff00cc44, 0 0 40px #00fff744;
  }
  50% {
    box-shadow: 0 0 30px #ff00cc, 0 0 60px #00fff7;
  }
}

@keyframes techStackFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes processStepGlow {
  0%, 100% {
    background: linear-gradient(135deg, rgba(255, 0, 204, 0.1), rgba(0, 255, 247, 0.1));
  }
  50% {
    background: linear-gradient(135deg, rgba(255, 0, 204, 0.2), rgba(0, 255, 247, 0.2));
  }
}

/* Services section animations */
.services-section-animate {
  animation: servicesFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* Enhanced services list with cards */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

.service-card, .tech-category, .process-step, .testimonial, .faq-item, .portfolio-item, .tech-cert-card {
  background: rgba(24, 25, 42, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    0 0 40px #00fff744, 
    0 0 80px #ff00cc44,
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px) saturate(1.3);
  -webkit-backdrop-filter: blur(25px) saturate(1.3);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7, #ff00cc);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.tech-category:hover, .process-step:hover, .testimonial:hover, .faq-item:hover, .portfolio-item:hover, .tech-cert-card:hover {
  background: rgba(24, 25, 42, 0.4);
  box-shadow: 
    0 0 40px #ff00cc, 
    0 0 80px #00fff7, 
    0 0 120px #ff00cc44,
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 0, 204, 0.6);
  transform: translateY(-2px) scale(1.02);
}

.tech-category:hover::before,
.process-step:hover::before,
.testimonial:hover::before,
.faq-item:hover::before,
.portfolio-item:hover::before,
.tech-cert-card:hover::before {
  opacity: 1;
}

.process-step::before {
  content: counter(process-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff00cc, #00fff7);
  color: #18192a;
  font-weight: bold;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  z-index: 10;
}

.testimonial::before,
.faq-item::before,
.portfolio-item::before,
.tech-cert-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7, #ff00cc);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-category::after,
.process-step::after,
.testimonial::after,
.faq-item::after,
.portfolio-item::after,
.tech-cert-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  animation: serviceIconGlow 3s ease-in-out infinite;
  transition: transform 0.3s, filter 0.3s;
}

.service-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e0e0e0;
  text-shadow: 0 0 6px #18192a, 0 0 12px #00fff7;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

.service-description {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 0 6px #18192a, 0 0 12px #00fff7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 10px;
}

.service-features li {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  text-shadow: 0 0 6px #18192a, 0 0 12px #00fff7;
}

.service-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
}

.service-card:hover .service-features li {
  animation: techStackFadeIn 0.5s ease forwards;
}

.service-card:hover .service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-card:hover .service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-card:hover .service-features li:nth-child(3) { animation-delay: 0.3s; }

/* Technologies section enhancement */
.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tech-category {
  background: rgba(24, 25, 42, 0.6);
  border: 2px solid #00fff7;
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: #ff00cc;
  box-shadow: 0 0 20px #ff00cc, 0 0 40px #00fff7;
  transform: translateY(-3px);
}

.tech-category-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff00cc;
  text-shadow: 0 0 8px #ff00cc, 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 2px 0 0 #000, 0 2px 0 #000, -2px 0 0 #000, 0 -2px 0 #000;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

.tech-category-content {
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* Process section enhancement */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

.process-step {
  position: relative;
  overflow: visible;
  padding-top: 2.5rem; /* add extra space for the number */
  background: rgba(24, 25, 42, 0.8);
  border: 2px solid #00fff7;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.process-step::before {
  content: counter(process-counter);
  position: absolute;
  top: -28px; /* move the circle above the box */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff00cc, #00fff7);
  color: #18192a;
  font-weight: bold;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  z-index: 10;
}

.process-list {
  counter-reset: process-counter;
}

.process-step {
  counter-increment: process-counter;
}

/* Ensure tech categories don't get numbered */
.tech-category::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7, #ff00cc);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  border-color: #ff00cc;
  box-shadow: 0 0 20px #ff00cc, 0 0 40px #00fff7;
  transform: translateY(-5px);
  animation: processStepGlow 2s ease-in-out infinite;
}

.process-step-text {
  color: #e0e0e0;
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Services section background animation */
#services {
  /* Removed overflow: hidden to allow internal scrolling */
  /* Removed position: relative to allow sticky positioning */
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(0,255,247,0.07) 0 2px, transparent 2px 40px), repeating-linear-gradient(45deg, rgba(255,0,204,0.07) 0 2px, transparent 2px 40px);
  animation: gridMove 12s linear infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 80px 80px, 120px 80px; }
}

/* Responsive design */
@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .tech-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .process-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
}

/* Loading state for service cards */
.service-card.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Success/error states */
.service-card.success {
  border-color: #00ff00;
  box-shadow: 0 0 20px #00ff00;
}

.service-card.error {
  border-color: #ff0000;
  box-shadow: 0 0 20px #ff0000;
}

/* Accessibility improvements */
.service-card:focus,
.process-step:focus,
.tech-category:focus {
  outline: 2px solid #00fff7;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .process-step,
  .tech-category {
    border-width: 3px;
  }
  
  .service-card::before,
  .process-step::before {
    border: 2px solid #fff;
  }
}

.services-header {
  font-size: 2.5rem;
  color: #00fff7;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #ff00cc;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  margin-bottom: 0.5rem;
  animation: servicesHeaderGlow 2.5s infinite alternate;
}

@keyframes servicesHeaderGlow {
  0% { text-shadow: 0 0 12px #00fff7, 0 0 24px #ff00cc; }
  100% { text-shadow: 0 0 24px #ff00cc, 0 0 48px #00fff7; }
}

.services-underline {
  display: block;
  width: 180px;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #00fff7, #ff00cc, #00fff7);
  border-radius: 2px;
  box-shadow: 0 0 16px #00fff7, 0 0 32px #ff00cc;
  animation: underlinePulse 2s infinite alternate;
}

@keyframes underlinePulse {
  0% { opacity: 0.7; box-shadow: 0 0 16px #00fff7, 0 0 32px #ff00cc;transform: scaleX(0.7); }
  100% { opacity: 1; box-shadow: 0 0 32px #ff00cc, 0 0 48px #00fff7;transform: scaleX(1); }
}

.services-intro {
  text-align: center;
  color: #e0e0e0;
  font-size: 1.18rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc44;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 1.2s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes serviceCardBounce {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-20px) scale(1.08); }
  60% { transform: translateY(-12px) scale(1.04); }
  100% { transform: translateY(-16px) scale(1.05) rotate(-1deg); }
}

.featured-service {
  border-width: 3px;
  box-shadow: 0 0 48px #00fff7, 0 0 96px #ff00cc, 0 0 32px #fff;
  background: rgba(24, 25, 42, 0.95);
  transform: scale(1.07);
  z-index: 3;
}

.service-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.25rem 0.9rem;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: badgePulse 2s infinite alternate;
  z-index: 4;
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7; }
  100% { box-shadow: 0 0 24px #00fff7, 0 0 48px #ff00cc; }
}

.services-cta-container {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 1.2rem 0;
}

.services-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 10px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
  letter-spacing: 1.5px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: ctaPulse 2.5s infinite alternate;
}

.services-cta:hover, .services-cta:focus {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 32px #ff00cc, 0 0 64px #00fff7;
  transform: scale(1.07);
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7; }
  100% { box-shadow: 0 0 32px #00fff7, 0 0 64px #ff00cc; }
}

.services-trusted-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.trusted-label {
  color: #00fff7;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc44;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18192a;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  height: 38px;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  box-sizing: content-box;
  box-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trusted-logo svg {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto;
}

.trusted-logo:hover {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
}

.services-mini-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
  background: rgba(24, 25, 42, 0.85);
  border: 2px solid #ff00cc;
  border-radius: 10px;
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
  padding: 1.1rem 2.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
  animation: fadeInUp 1.5s;
}

.testimonial-quote {
  color: #00fff7;
  font-size: 1.18rem;
  font-weight: 600;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  margin-bottom: 0.3rem;
  text-align: center;
}

.testimonial-client {
  color: #ff00cc;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 0 6px #ff00cc, 0 0 12px #00fff7;
  text-align: center;
}

#service-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 12, 24, 0.88);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.service-modal-content {
  position: relative;
  z-index: 2;
  background: rgba(24, 25, 42, 0.98);
  border: 2.5px solid #00fff7;
  border-radius: 18px;
  box-shadow: 0 0 32px #ff00cc, 0 0 64px #00fff7;
  padding: 2.2rem 2.5rem 2.5rem 2.5rem;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.service-modal-content h2 {
  color: #00fff7;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #ff00cc;
}
.service-modal-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.service-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.service-modal-content ul li {
  color: #ff00cc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1.2rem;
}
.service-modal-content ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
}
.service-modal-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-modal-cta:hover, .service-modal-cta:focus {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 24px #ff00cc, 0 0 48px #00fff7;
  transform: scale(1.07);
}
.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #ff00cc;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 3;
  text-shadow: 0 0 8px #ff00cc, 0 0 16px #00fff7;
  transition: color 0.2s, text-shadow 0.2s;
}
.service-modal-close:hover, .service-modal-close:focus {
  color: #00fff7;
  text-shadow: 0 0 16px #00fff7, 0 0 32px #ff00cc;
}

.tech-header, .gallery-header, .testimonials-header, .about-header, .contact-header {
  font-size: 2.3rem;
  color: #00fff7;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #ff00cc;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  margin-bottom: 0.5rem;
  animation: servicesHeaderGlow 2.5s infinite alternate;
}

.about-header, .contact-header {
  margin-top: 2rem;
}

.tech-underline, .gallery-underline, .testimonials-underline, .about-underline, .contact-underline {
  display: block;
  width: 180px;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #00fff7, #ff00cc, #00fff7);
  border-radius: 2px;
  box-shadow: 0 0 16px #00fff7, 0 0 32px #ff00cc;
  animation: underlinePulse 2s infinite alternate;
}

.tech-intro, .gallery-intro, .testimonials-intro, .about-intro, .contact-intro {
  text-align: center;
  color: #e0e0e0;
  font-size: 1.13rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc44;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 1.2s;
}

.tech-icon, .gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.tech-category-desc, .gallery-desc {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  text-align: center;
}

.tech-category-strength, .gallery-strength {
  color: #00fff7;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-align: center;
  text-shadow: 0 0 8px #00fff7;
}

.tech-category-link, .gallery-link {
  display: inline-block;
  margin: 0.7rem auto 1.1rem auto;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.25rem 0.9rem;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  animation: badgePulse 2s infinite alternate;
  z-index: 4;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.tech-category-link:hover, .tech-category-link:focus, .gallery-link:hover, .gallery-link:focus {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
  transform: scale(1.07);
}

.tech-category-desc, .highlight {
  margin-bottom: 1.1rem;
}

.tech-case-study, .gallery-case-study {
  color: #ff00cc;
  font-size: 0.97rem;
  margin-top: 0.5rem;
  text-align: center;
  background: rgba(34, 0, 51, 0.7);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 0 8px #ff00cc44;
  display: inline-block;
}

.tech-certifications, .gallery-certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem 0 2.2rem 0;
  flex-wrap: wrap;
}

.cert-badge, .gallery-cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18192a;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  height: 38px;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  box-sizing: content-box;
  box-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-badge img, .gallery-cert-badge img {
  width: 32px;
  height: 32px;
  display: block;
}

.cert-download, .gallery-cert-download {
  display: inline-block;
  margin-left: 1.5rem;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.4rem 1.2rem;
  box-shadow: 0 0 8px #ff00cc, 0 0 16px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cert-download:hover, .cert-download:focus, .gallery-cert-download:hover, .gallery-cert-download:focus {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
  transform: scale(1.07);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.process-step-title {
  color: #00fff7;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  text-align: center;
  text-shadow: 0 0 8px #00fff7;
}

.process-step-desc {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.process-step-deliverables {
  color: #ff00cc;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.process-step-link {
  display: inline-block;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 0.3rem 1rem;
  box-shadow: 0 0 8px #ff00cc, 0 0 16px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.process-step-link:hover, .process-step-link:focus {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 16px #ff00cc, 0 0 32px #00fff7;
  transform: scale(1.07);
}

.highlight, .neon-keyword {
  color: #39ff14;
  text-shadow:
    0 0 2px #000,
    0 0 8px #ff00cc,
    0 0 16px #ff00cc;
  font-weight: 700;
}

/* Remove or override any other .highlight or .neon-keyword color or text-shadow rules below */

.faq-item, .portfolio-item {
  background: rgba(24, 25, 42, 0.45);
  border: 2.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37), 0 0 40px #00fff744, 0 0 80px #ff00cc44;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 18px;
  transition: box-shadow 0.3s, background 0.3s, border 0.3s;
}

.faq-item:hover, .portfolio-item:hover {
  background: rgba(24, 25, 42, 0.65);
  box-shadow: 0 0 40px #ff00cc, 0 0 80px #00fff7, 0 0 120px #ff00cc44;
  border-color: #ff00cc;
} 