/* Futuristic Services Section */
.futuristic-services-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 100px 0;
}

/* Animated Background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.digital-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%234ecdc4" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
  animation: gridPulse 6s infinite ease-in-out;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
  border-radius: 50%;
  animation: particleFloat 25s infinite linear;
}

.floating-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 70%;
  left: 70%;
  animation-delay: 12s;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(150px, -150px) rotate(90deg); }
  50% { transform: translate(-150px, -300px) rotate(180deg); }
  75% { transform: translate(-300px, 150px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

#services-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* 3D Holographic Display */
.holographic-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  z-index: 1;
}

.hologram-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 50%;
  animation: hologramSpin 25s infinite linear;
}

.hologram-ring-2 {
  width: 80%;
  height: 80%;
  border-color: rgba(255, 107, 107, 0.2);
  animation-duration: 30s;
  animation-direction: reverse;
}

.hologram-ring-3 {
  width: 60%;
  height: 60%;
  border-color: rgba(255, 255, 255, 0.1);
  animation-duration: 20s;
}

@keyframes hologramSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Container */
.container {
  position: relative;
  z-index: 2;
}

/* Futuristic Title */
.title-container {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.cyber-title {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.glitch-text {
  position: relative;
  color: #fff;
  text-shadow: 
    0 0 5px rgba(78, 205, 196, 0.8),
    0 0 10px rgba(78, 205, 196, 0.6),
    0 0 20px rgba(78, 205, 196, 0.4);
  animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitch-1 0.5s infinite;
  color: #4ecdc4;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 0.5s infinite;
  color: #ff6b6b;
  z-index: -2;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-2px, -2px); }
  20% { transform: translate(-2px, 2px); }
  30% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  70% { transform: translate(2px, -2px); }
  80% { transform: translate(-2px, -2px); }
  90% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(2px, 2px); }
  20% { transform: translate(2px, -2px); }
  30% { transform: translate(-2px, -2px); }
  40% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  60% { transform: translate(2px, 2px); }
  70% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, 2px); }
  90% { transform: translate(-2px, -2px); }
}

.title-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(78, 205, 196, 0.3), transparent);
  animation: titleGlow 3s infinite ease-in-out;
}

@keyframes titleGlow {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.deco-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  animation: lineGlow 2s infinite alternate;
}

@keyframes lineGlow {
  0% { box-shadow: 0 0 5px #4ecdc4; }
  100% { box-shadow: 0 0 20px #4ecdc4, 0 0 30px #4ecdc4; }
}

.deco-diamond {
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
  transform: rotate(45deg);
  animation: diamondSpin 4s infinite linear;
}

@keyframes diamondSpin {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(225deg) scale(1.2); }
  100% { transform: rotate(405deg) scale(1); }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  perspective: 1000px;
}

.service-card-3d {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.service-card-3d:hover {
  transform: translateY(-20px) rotateX(10deg) rotateY(5deg);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(78, 205, 196, 0.3);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-3d:hover .card-glow {
  opacity: 1;
}

.card-hologram {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  animation: hologramRotate 4s infinite linear;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-3d:hover .card-hologram {
  opacity: 1;
}

@keyframes hologramRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img-3d {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-3d:hover .service-img-3d {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-3d:hover .image-overlay {
  opacity: 1;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  animation: scanLine 2s infinite;
}

@keyframes scanLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(250px); }
}

.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><circle cx="25" cy="25" r="2" fill="%234ecdc4" opacity="0.3"/><line x1="0" y1="25" x2="50" y2="25" stroke="%234ecdc4" stroke-width="0.5" opacity="0.2"/><line x1="25" y1="0" x2="25" y2="50" stroke="%234ecdc4" stroke-width="0.5" opacity="0.2"/></svg>') repeat;
  animation: patternShift 4s infinite linear;
}

@keyframes patternShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.service-content-3d {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.service-title-3d {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-gradient {
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s infinite linear;
}

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

.service-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.service-features {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-dot.active {
  background: #4ecdc4;
  box-shadow: 0 0 10px #4ecdc4;
}

.feature-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 205, 196, 0.5), transparent);
}

.cyber-button {
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.2), rgba(255, 107, 107, 0.2));
  border: 1px solid rgba(78, 205, 196, 0.5);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.cyber-button span {
  position: relative;
  z-index: 2;
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.4), transparent);
  transition: left 0.5s ease;
}

.cyber-button:hover .button-glow {
  left: 100%;
}

/* Circuit Pattern */
.card-circuit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  height: 1px;
  width: 100%;
  top: 30%;
  animation: circuitFlow 3s infinite;
}

.circuit-line-2 {
  top: 70%;
  animation-delay: 1.5s;
}

.circuit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #4ecdc4;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: nodePulse 2s infinite;
}

@keyframes circuitFlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes nodePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.2), rgba(255, 107, 107, 0.2));
  border: 1px solid rgba(78, 205, 196, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.nav-btn i {
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.nav-btn:hover .btn-ripple {
  width: 100%;
  height: 100%;
}

.nav-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #4ecdc4;
  box-shadow: 0 0 10px #4ecdc4;
}

/* No Services State */
.no-services {
  text-align: center;
  padding: 80px 40px;
  color: rgba(255, 255, 255, 0.6);
}

.no-services-icon {
  font-size: 64px;
  margin-bottom: 20px;
  color: #4ecdc4;
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* Floating Tech Elements */
.tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tech-element {
  position: absolute;
  opacity: 0.3;
}

.tech-hexagon {
  top: 15%;
  left: 15%;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: techFloat 20s infinite linear;
}

.tech-triangle {
  top: 60%;
  right: 20%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #4ecdc4;
  animation: techFloat 25s infinite linear reverse;
}

.tech-circle {
  bottom: 20%;
  left: 25%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  animation: techFloat 18s infinite linear;
}

@keyframes techFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(120px, -80px) rotate(90deg); }
  50% { transform: translate(-80px, -120px) rotate(180deg); }
  75% { transform: translate(-120px, 80px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cyber-title {
    font-size: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
  }
  
  .holographic-display {
    width: 800px;
    height: 800px;
  }
}

@media (max-width: 992px) {
  .cyber-title {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card-3d {
    margin: 0 10px;
  }
  
  .holographic-display {
    width: 600px;
    height: 600px;
  }
  
  .nav-controls {
    gap: 25px;
  }
  
  .nav-btn {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .futuristic-services-section {
    padding: 80px 0;
  }
  
  .cyber-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .title-container {
    margin-bottom: 60px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .service-card-3d {
    margin: 0;
    transform: none !important;
  }
  
  .service-card-3d:hover {
    transform: translateY(-10px) !important;
  }
  
  .service-image-container {
    height: 200px;
  }
  
  .service-content-3d {
    padding: 25px;
  }
  
  .service-title-3d {
    font-size: 20px;
  }
  
  .service-desc {
    font-size: 15px;
  }
  
  .cyber-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .holographic-display {
    width: 400px;
    height: 400px;
  }
  
  .nav-controls {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .nav-indicators {
    order: -1;
  }
  
  .deco-line {
    width: 60px;
  }
}

@media (max-width: 576px) {
  .futuristic-services-section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .cyber-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .title-container {
    margin-bottom: 50px;
  }
  
  .services-grid {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service-card-3d {
    border-radius: 15px;
  }
  
  .service-image-container {
    height: 180px;
  }
  
  .service-content-3d {
    padding: 20px;
  }
  
  .service-title-3d {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .service-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  
  .service-features {
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .feature-dot {
    width: 6px;
    height: 6px;
  }
  
  .cyber-button {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 20px;
  }
  
  .holographic-display {
    width: 300px;
    height: 300px;
  }
  
  .nav-controls {
    gap: 15px;
    margin-top: 25px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  .deco-line {
    width: 50px;
  }
  
  .title-decoration {
    gap: 15px;
  }
  
  .tech-elements {
    display: none;
  }
  
  .no-services {
    padding: 60px 30px;
  }
  
  .no-services-icon {
    font-size: 48px;
  }
}

@media (max-width: 400px) {
  .cyber-title {
    font-size: 1.8rem;
  }
  
  .service-content-3d {
    padding: 18px;
  }
  
  .service-title-3d {
    font-size: 16px;
  }
  
  .service-desc {
    font-size: 13px;
  }
  
  .cyber-button {
    padding: 6px 18px;
    font-size: 12px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
  
  .holographic-display {
    width: 250px;
    height: 250px;
  }
  
  .service-image-container {
    height: 160px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .futuristic-services-section {
    padding: 40px 0;
  }
  
  .cyber-title {
    font-size: 2.5rem;
  }
  
  .title-container {
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .service-image-container {
    height: 120px;
  }
  
  .service-content-3d {
    padding: 15px;
  }
  
  .holographic-display {
    width: 300px;
    height: 300px;
  }
  
  .nav-controls {
    margin-top: 20px;
  }
}

/* Grid Layout Adjustments for Different Screen Sizes */
@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .glitch-text {
    text-shadow: 
      0 0 3px rgba(78, 205, 196, 0.8),
      0 0 6px rgba(78, 205, 196, 0.6),
      0 0 12px rgba(78, 205, 196, 0.4);
  }
  
  .scan-line {
    height: 1px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card-3d:hover {
    transform: translateY(-5px) !important;
  }
  
  .nav-btn:hover {
    transform: scale(1.05);
  }
  
  .cyber-button:hover {
    transform: translateY(-1px);
  }
  
  .card-hologram,
  .card-glow {
    opacity: 0.3;
  }
  
  /* Disable complex animations on touch devices for better performance */
  .scan-line,
  .tech-pattern {
    animation: none;
  }
  
  .hologram-ring {
    animation-duration: 40s;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hologram-ring,
  .tech-element,
  .floating-particles::before,
  .floating-particles::after {
    animation: none;
  }
  
  .glitch-text {
    animation: none;
  }
  
  .service-card-3d {
    transition: transform 0.2s ease;
  }
}

/* Intersection Observer Animation */
.services-grid {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.services-grid.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card-3d {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-card-3d.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card-3d:nth-child(1) { transition-delay: 0.1s; }
.service-card-3d:nth-child(2) { transition-delay: 0.2s; }
.service-card-3d:nth-child(3) { transition-delay: 0.3s; }
.service-card-3d:nth-child(4) { transition-delay: 0.4s; }
