section.section h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  letter-spacing: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form label {
  font-weight: 500;
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1.5px solid #ff00cc;
  border-radius: 6px;
  font-size: 1rem;
  background: #18192a;
  color: #e0e0e0;
  box-shadow: 0 0 8px #ff00cc44;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #00fff7;
  box-shadow: 0 0 12px #00fff7;
  outline: none;
}
.contact-form button {
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px #ff00cc, 0 0 24px #00fff7;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #00fff7 0%, #ff00cc 100%);
  color: #fff;
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.portfolio-item {
  background: rgba(24, 25, 42, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 1rem;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(25px) saturate(1.3);
  -webkit-backdrop-filter: blur(25px) saturate(1.3);
  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);
  position: relative;
  overflow: hidden;
}
.portfolio-item:hover {
  transform: translateY(-2px) scale(1.02);
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7;
  border-color: rgba(255, 0, 204, 0.6);
  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);
  background: rgba(24, 25, 42, 0.4);
}

blockquote {
  border-left: 4px solid #ff00cc;
  margin: 1rem 0;
  padding: 0.7rem 1.2rem;
  background: rgba(34, 0, 51, 0.5);
  color: #ff00cc;
  font-style: italic;
  text-shadow: 0 0 8px #ff00cc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.careers {
  color: #ff00cc;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.blog-post {
  background: rgba(0, 255, 247, 0.08);
  border-left: 4px solid #00fff7;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  color: #00fff7;
  font-weight: 500;
  text-shadow: 0 0 8px #00fff7;
}
.partners-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.partner-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px #00fff7) drop-shadow(0 0 16px #ff00cc);
  background: #18192a;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: rgba(24, 25, 42, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 1rem;
  border-radius: 20px;
  color: #fff;
  backdrop-filter: blur(25px) saturate(1.3);
  -webkit-backdrop-filter: blur(25px) saturate(1.3);
  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);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.download-list a {
  color: #ff00cc;
  font-weight: bold;
  text-shadow: 0 0 8px #ff00cc;
  transition: color 0.2s, text-shadow 0.2s;
}
.download-list a:hover {
  color: #00fff7;
  text-shadow: 0 0 12px #00fff7, 0 0 24px #ff00cc;
}
.badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 0.92rem;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 0 8px #ff00cc, 0 0 12px #00fff7;
  letter-spacing: 1px;
  border: none;
}

.tech-why, .tech-get {
  color: #e0e0e0;
  font-size: 0.98rem;
  margin: 0.5rem 0 0.2rem 0;
  text-align: center;
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  display: inline-block;
}

.tech-get {
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  display: inline-block;
}

.tech-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;
  font-weight: 600;
}

.fun-fact {
  color: #fff;
  font-size: 0.97rem;
  text-align: center;
  background: linear-gradient(90deg, #ffb347 0%, #ff00cc 100%);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 0 8px #ffb34744;
  display: inline-block;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.fun-fact:hover {
  transform: scale(1.02);
  color: #ffb347;
  text-shadow: 0 0 8px #ffb347;
}

.animated-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100vw;
}
.animated-bg::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;
}

.tech-header {
  font-size: 2.7rem;
  color: #00fff7;
  text-shadow: 0 0 18px #00fff7, 0 0 36px #ff00cc, 0 0 48px #00fff7;
  letter-spacing: 2.5px;
  text-align: center;
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 900;
  animation: servicesHeaderGlow 2.5s infinite alternate;
}

.badge, .neon-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%);
  color: #18192a;
  font-weight: bold;
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 0.2rem 0.7rem;
  box-shadow: 0 0 8px #ff00cc, 0 0 16px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  margin-right: 0.3rem;
  margin-bottom: 0.1rem;
}

.neon-keyword {
  color: #39ff14;
  text-shadow:
    0 0 2px #000,
    0 0 8px #ff00cc,
    0 0 16px #ff00cc;
  font-weight: 700;
}

.highlight {
  color: #39ff14;
  text-shadow:
    0 0 2px #000,
    0 0 8px #ff00cc,
    0 0 16px #ff00cc;
  font-weight: 700;
}

.tech-category, .process-step {
  border-radius: 12px;
  box-shadow: 0 0 20px #00fff744, 0 0 40px #ff00cc44;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tech-category:hover, .process-step:hover {
  border-color: #ff00cc;
  box-shadow: 0 0 30px #ff00cc, 0 0 60px #00fff7;
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18192a;
  border-radius: 12px;
  padding: 0.5rem 1.1rem;
  height: 48px;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  box-sizing: content-box;
  box-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: visible;
}

.cert-badge svg {
  width: 32px;
  height: 32px;
  display: block;
}

.cert-download {
  display: block;
  margin-top: 0.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.tech-certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem 0 2.8rem 0;
  flex-wrap: wrap;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: stretch;
}

.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;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tech-category > * {
  margin-bottom: 0.7rem;
}

.tech-category > *:last-child {
  margin-bottom: 0;
}

.badge, .tech-why, .tech-get, .tech-case-study, .fun-fact {
  word-break: break-word;
}

@media (max-width: 768px) {
  .tech-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tech-category {
    min-height: 0;
    padding: 1.2rem;
  }
}

.tech-cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2.5px solid #00fff7;
  border-radius: 18px;
  box-shadow: 0 0 32px #00fff7, 0 0 48px #ff00cc44;
  padding: 0.7rem 0.7rem 1rem 0.7rem;
  margin: 1.2rem auto 1.2rem auto;
  max-width: 1100px;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.tech-cert-card.animated-bg, .tech-cert-card::before {
  position: relative;
}
.tech-cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  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;
  border-radius: 18px;
}
.tech-cert-card > * {
  position: relative;
  z-index: 1;
}
.tech-cert-card > .tech-certifications-blurb {
  text-align: center;
  color: #e0e0e0;
  font-size: 1.08rem;
  margin: 0.7rem 0 0.3rem 0;
  font-weight: 600;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc44;
}
.tech-cert-card .tech-certifications {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0 0.1rem 0;
  border-radius: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.2rem;
  margin-bottom: 0.3rem;
  background: none;
}
.tech-cert-card .cert-download {
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  min-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .tech-cert-card {
    max-width: 99vw;
    padding: 0.5rem 0.2rem 0.7rem 0.2rem;
  }
}

.neon-keyword, .highlight {
  font-weight: 700;
  text-shadow:
    0 0 2px #000,
    0 0 8px #ff00cc,
    0 0 16px #ff00cc;
}

.badge, .neon-badge {
  font-size: 1.02rem;
  font-weight: 700;
  text-shadow:
    0 0 2px #000,
    0 0 6px #00fff7;
  background: linear-gradient(90deg, #ff00cc 0%, #00fff7 100%), rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 0.22em 0.8em;
}

.tech-header, .services-header {
  text-shadow:
    0 0 4px #000,
    0 0 18px #00fff7,
    0 0 36px #ff00cc;
  font-size: 2.7rem;
  font-weight: 900;
}

.text-on-busy-bg {
  background: rgba(0,0,0,0.4);
  border-radius: 6px;
  padding: 0.1em 0.4em;
}

.tech-category-desc, .tech-category-strength, .tech-why, .tech-get, .tech-case-study, .fun-fact {
  background: rgba(10, 12, 24, 0.85);
  border-radius: 7px;
  padding: 0.18em 0.7em;
  font-size: 1.07rem;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 2px #000,
    0 0 6px #00fff7;
  margin-bottom: 0.3em;
  line-height: 1.5;
}

/* Remove background only for the specific sections we restructured */
.tech-category-strength, .tech-why, .tech-get {
  background: none;
}

.tech-category-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #ff00cc;
  text-shadow:
    0 0 8px #ff00cc,
    0 0 16px #00fff7;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

.tech-category-desc, .tech-category-strength, .tech-why, .tech-get, .tech-case-study, .fun-fact {
  text-shadow:
    0 0 2px #000,
    0 0 6px #00fff7;
  font-weight: 600;
}

.tech-why, .tech-get, .tech-case-study, .fun-fact {
  font-size: 1.01rem;
}

.process-step-title {
  color: #00fff7;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  text-align: center;
  text-shadow:
    0 0 2px #000,
    0 0 8px #00fff7,
    0 0 16px #ff00cc;
}

.process-step-desc, .process-step-why, .process-step-get {
  color: #e0e0e0;
  font-size: 1.01rem;
  text-shadow:
    0 0 2px #000,
    0 0 6px #00fff7;
  font-weight: 600;
  background: none;
}

:root {
  --neon-green: #39ff14;
  --neon-orange: #ffb347;
}

.badge-green {
  background: linear-gradient(90deg, var(--neon-green) 0%, #00fff7 100%);
  color: #18192a;
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 0.22em 0.8em;
  box-shadow: 0 0 8px var(--neon-green), 0 0 16px #00fff7;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  margin: 0.1rem 0;
  text-shadow: 0 0 2px #fff, 0 0 8px var(--neon-green);
}

.badge-orange {
  background: linear-gradient(90deg, var(--neon-orange) 0%, #ff00cc 100%);
  color: #18192a;
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 0.22em 0.8em;
  box-shadow: 0 0 8px var(--neon-orange), 0 0 16px #ff00cc;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  margin: 0.1rem 0;
  text-shadow: 0 0 2px #fff, 0 0 8px var(--neon-orange);
}

.highlight-green {
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green), 0 0 16px #00fff7;
  font-weight: 700;
}

.highlight-orange {
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--neon-orange), 0 0 16px #ff00cc;
  font-weight: 700;
}

.icon-green, .icon-orange {
  display: inline-block;
  margin-right: 0.3rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: iconGlow 2s ease-in-out infinite alternate;
}

.icon-green {
  filter: drop-shadow(0 0 4px #00fff7) drop-shadow(0 0 8px #00fff7);
}

.icon-orange {
  filter: drop-shadow(0 0 4px #ffb347) drop-shadow(0 0 8px #ffb347);
}

.icon-green:hover, .icon-orange:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 16px currentColor);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-features li:hover {
  transform: translateX(5px);
  color: #e0e0e0;
  text-shadow: 0 0 8px #e0e0e0;
}

.tech-category-desc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.faq-item strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* About info styles moved to about-cards.css */

.footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.services-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.testimonial-quote {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-badge {
  transition: all 0.3s ease;
  animation: skillBadgeFloat 3s ease-in-out infinite;
}

.skill-badge:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 20px #00fff7, 0 0 40px #ff00cc;
}

@keyframes skillBadgeFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.badges .badge {
  transition: all 0.3s ease;
}

.badges .badge:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00fff7, 0 0 30px #ff00cc;
}

.fun-fact:hover {
  transform: scale(1.02);
  color: #ffb347;
  text-shadow: 0 0 8px #ffb347;
}
 
.tech-category > .tech-why,
.tech-category > .tech-get {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
 