/* Process
-----------------------------------------------------------------*/
.process .item {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.process .item:last-of-type {
  border: 0;
}

.process .item:hover .to-in {
  margin-left: 0;
}

/* ULTRA TECH PROCESS STYLES - LIGHT THEME - EYE-CATCHING & STUNNING */
.ultra-tech-process {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Animated Background Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #10b981, #f59e0b);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 11s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(7) { left: 70%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(8) { left: 80%; animation-delay: 5s; animation-duration: 12s; }
.particle:nth-child(9) { left: 90%; animation-delay: 7s; animation-duration: 10s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; animation-duration: 14s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Floating Geometric Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border: 2px solid rgba(59, 130, 246, 0.2);
  animation: shapeFloat 20s linear infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 85%;
  transform: rotate(45deg);
  animation-delay: 5s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 20%;
  border-radius: 50%;
  animation-delay: 10s;
}

.shape-4 {
  width: 30px;
  height: 30px;
  top: 30%;
  left: 70%;
  transform: rotate(45deg);
  animation-delay: 15s;
}

.shape-5 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 50%;
  border-radius: 50%;
  animation-delay: 8s;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Ultra Process Cards */
.ultra-process-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-size: 200% 200%;
  border-radius: 25px;
  opacity: 0;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 0;
  filter: blur(8px);
}

.ultra-process-card:hover .card-glow {
  opacity: 0.8;
  animation: glowPulse 1s ease-in-out infinite;
}

.card-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ultra-process-card:hover .card-inner {
  transform: translateY(-15px) rotateX(5deg);
  border-color: rgba(17, 167, 204, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Process Icon Styles */
.process-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.process-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-icon svg {
  width: 50px;
  height: 50px;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}

.icon-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  filter: blur(20px);
}

.ultra-process-card:hover .icon-bg-glow {
  opacity: 0.6;
  transform: scale(1.5);
}

.icon-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.particle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  animation: particleOrbit 3s linear infinite;
}

.particle-dot:nth-child(1) {
  animation-delay: 0s;
  transform: rotate(0deg) translateX(30px);
}

.particle-dot:nth-child(2) {
  animation-delay: 1s;
  transform: rotate(120deg) translateX(30px);
}

.particle-dot:nth-child(3) {
  animation-delay: 2s;
  transform: rotate(240deg) translateX(30px);
}

@keyframes particleOrbit {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
    opacity: 0;
  }
}

/* Icon Color Schemes - Logo Colors */
.research-icon {
  background: linear-gradient(135deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: white;
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.4);
}

.research-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 50px rgba(17, 167, 204, 0.6);
}

.concept-icon {
  background: linear-gradient(135deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: white;
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.4);
}

.concept-icon:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 0 50px rgba(17, 167, 204, 0.6);
}

.implement-icon {
  background: linear-gradient(135deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: white;
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.4);
}

.implement-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 50px rgba(17, 167, 204, 0.6);
}

.handover-icon {
  background: linear-gradient(135deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: white;
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.4);
}

.handover-icon:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 0 50px rgba(17, 167, 204, 0.6);
}

/* Enhanced Pulse Animation */
.pulse-dot {
  animation: enhancedPulse 2s ease-in-out infinite;
}

@keyframes enhancedPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
    filter: brightness(1.5);
  }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Text Animations - Logo Colors */
.animated-text {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

.glowing-title {
  text-shadow: 0 0 20px rgba(17, 167, 204, 0.3);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.gradient-text {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

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

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 20px rgba(17, 167, 204, 0.3);
  }
  100% {
    text-shadow: 0 0 30px rgba(17, 167, 204, 0.5), 0 0 40px rgba(171, 207, 55, 0.2);
  }
}

/* Neon Button - Logo Colors */
.neon-button {
  background: transparent;
  border: 2px solid rgb(17, 167, 204);
  color: rgb(17, 167, 204);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(17, 167, 204, 0.2);
}

.neon-button:hover {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: #ffffff;
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.5);
  transform: translateY(-2px);
}

.neon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.neon-button:hover::before {
  left: 100%;
}

/* Neon Link - Logo Colors */
.neon-link {
  color: rgb(17, 167, 204);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.neon-link:hover {
  color: rgb(171, 207, 55);
  text-shadow: 0 0 10px rgba(171, 207, 55, 0.3);
}

.neon-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(17, 167, 204), rgb(171, 207, 55));
  transition: width 0.3s ease;
}

.neon-link:hover::after {
  width: 100%;
}

/* Card Title Styling - Logo Colors */
.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(17, 167, 204, 0.2);
}

.ultra-process-card:hover .card-title {
  color: #1e293b;
  text-shadow: none;
  transform: translateY(-2px);
}

.process-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.ultra-process-card:hover .process-content p {
  color: #64748b;
}

/* Floating Card Animation */
.ultra-process-card:nth-child(1) {
  animation: cardFloat 8s ease-in-out infinite;
}

.ultra-process-card:nth-child(2) {
  animation: cardFloat 8s ease-in-out infinite 2s;
}

.ultra-process-card:nth-child(3) {
  animation: cardFloat 8s ease-in-out infinite 4s;
}

.ultra-process-card:nth-child(4) {
  animation: cardFloat 8s ease-in-out infinite 6s;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

/* Reduce spacing between cards */
.ultra-tech-process .row {
  margin-left: -10px;
  margin-right: -10px;
}

.ultra-tech-process .col-lg-3,
.ultra-tech-process .col-md-6 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-inner {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
  
  .process-icon {
    width: 80px;
    height: 80px;
  }
  
  .process-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
  
  .particle {
    width: 3px;
    height: 3px;
  }
  
  .ultra-tech-process .col-lg-3,
  .ultra-tech-process .col-md-6 {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .card-inner {
    padding: 25px 15px;
  }
  
  .process-icon {
    width: 70px;
    height: 70px;
  }
  
  .process-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .ultra-tech-process {
    min-height: auto;
  }
}

/* ==================== SERVICES SECTION ANIMATIONS ==================== */

/* Ultra Services Section */
.ultra-services-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Services Animated Background Particles */
.services-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.services-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  border-radius: 50%;
  animation: servicesParticleFloat 10s linear infinite;
  box-shadow: 0 0 10px rgba(17, 167, 204, 0.3);
}

.services-particle:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 14s; }
.services-particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 12s; }
.services-particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.services-particle:nth-child(4) { left: 45%; animation-delay: 6s; animation-duration: 13s; }
.services-particle:nth-child(5) { left: 55%; animation-delay: 8s; animation-duration: 15s; }
.services-particle:nth-child(6) { left: 65%; animation-delay: 1s; animation-duration: 11s; }
.services-particle:nth-child(7) { left: 75%; animation-delay: 3s; animation-duration: 17s; }
.services-particle:nth-child(8) { left: 85%; animation-delay: 5s; animation-duration: 14s; }

@keyframes servicesParticleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Services Floating Geometric Shapes */
.services-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.services-shape {
  position: absolute;
  border: 2px solid rgba(17, 167, 204, 0.15);
  animation: servicesShapeFloat 25s linear infinite;
}

.services-shape-1 {
  width: 50px;
  height: 50px;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  animation-delay: 0s;
}

.services-shape-2 {
  width: 35px;
  height: 35px;
  top: 70%;
  left: 80%;
  transform: rotate(45deg);
  animation-delay: 8s;
}

.services-shape-3 {
  width: 60px;
  height: 60px;
  top: 85%;
  left: 25%;
  border-radius: 50%;
  animation-delay: 16s;
}

.services-shape-4 {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 75%;
  transform: rotate(45deg);
  animation-delay: 12s;
}

@keyframes servicesShapeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Ultra Service Cards */
.ultra-service-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
  margin-bottom: 30px;
}

.service-card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-size: 200% 200%;
  border-radius: 20px;
  opacity: 0;
  animation: servicesGlowPulse 4s ease-in-out infinite;
  z-index: 0;
  filter: blur(6px);
}

.ultra-service-card:hover .service-card-glow {
  opacity: 0.6;
  animation: servicesGlowPulse 2s ease-in-out infinite;
}

.service-card-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(17, 167, 204, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(17, 167, 204, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ultra-service-card:hover .service-card-inner {
  transform: translateY(-10px) rotateX(3deg);
  border-color: rgba(17, 167, 204, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(17, 167, 204, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Service Video Container */
.service-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.service-video-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(17, 167, 204, 0.2);
}

.video-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(17, 167, 204), rgb(171, 207, 55));
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  filter: blur(15px);
}

.ultra-service-card:hover .video-bg-glow {
  opacity: 0.3;
  transform: scale(1.2);
}

.video-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.video-particle-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: videoParticleOrbit 4s linear infinite;
}

.video-particle-dot:nth-child(1) {
  animation-delay: 0s;
  transform: rotate(0deg) translateX(40px);
}

.video-particle-dot:nth-child(2) {
  animation-delay: 1.3s;
  transform: rotate(120deg) translateX(40px);
}

.video-particle-dot:nth-child(3) {
  animation-delay: 2.6s;
  transform: rotate(240deg) translateX(40px);
}

@keyframes videoParticleOrbit {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(-360deg);
    opacity: 0;
  }
}

.video-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
  z-index: 3;
  position: relative;
}

.ultra-service-card:hover .video-icon {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(17, 167, 204, 0.4);
}

.video-icon::-webkit-media-controls {
  display: none !important;
}

/* Services Text Animations */
.services-animated-text {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: servicesTextShimmer 3s ease-in-out infinite;
}

.services-glowing-title {
  text-shadow: 0 0 15px rgba(17, 167, 204, 0.2);
  animation: servicesTitleGlow 3s ease-in-out infinite alternate;
}

.services-gradient-text {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: servicesGradientShift 4s ease-in-out infinite;
}

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

@keyframes servicesTitleGlow {
  0% {
    text-shadow: 0 0 15px rgba(17, 167, 204, 0.2);
  }
  100% {
    text-shadow: 0 0 25px rgba(17, 167, 204, 0.4), 0 0 35px rgba(171, 207, 55, 0.2);
  }
}

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

@keyframes servicesGlowPulse {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.8;
  }
}

/* Services Neon Button */
.services-neon-button {
  background: transparent;
  border: 2px solid rgb(17, 167, 204);
  color: rgb(17, 167, 204);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(17, 167, 204, 0.2);
}

.services-neon-button:hover {
  background: linear-gradient(45deg, rgb(17, 167, 204), rgb(171, 207, 55));
  color: #ffffff;
  box-shadow: 0 0 25px rgba(17, 167, 204, 0.4);
  transform: translateY(-2px);
}

.services-neon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.services-neon-button:hover::before {
  left: 100%;
}

/* Services Neon Link */
.services-neon-link {
  color: rgb(17, 167, 204);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.services-neon-link:hover {
  color: rgb(171, 207, 55);
  text-shadow: 0 0 8px rgba(171, 207, 55, 0.3);
}

.services-neon-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(17, 167, 204), rgb(171, 207, 55));
  transition: width 0.3s ease;
}

.services-neon-link:hover::after {
  width: 100%;
}

/* Service Card Title Styling */
.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(17, 167, 204, 0.1);
}

.ultra-service-card:hover .service-card-title {
  color: rgb(17, 167, 204);
  text-shadow: 0 0 15px rgba(17, 167, 204, 0.3);
  transform: translateY(-2px);
}

/* Floating Service Card Animation */
.ultra-service-card:nth-child(1) {
  animation: servicesCardFloat 10s ease-in-out infinite;
}

.ultra-service-card:nth-child(2) {
  animation: servicesCardFloat 10s ease-in-out infinite 3s;
}

.ultra-service-card:nth-child(3) {
  animation: servicesCardFloat 10s ease-in-out infinite 6s;
}

@keyframes servicesCardFloat {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(1deg);
  }
}

/* Services Responsive Design */
@media (max-width: 768px) {
  .service-card-inner {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
  
  .service-video-container {
    width: 200px;
    height: 200px;
  }
  
  .service-card-title {
    font-size: 1.3rem;
  }
  
  .services-particle {
    width: 2px;
    height: 2px;
  }
  
  .ultra-service-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .service-video-container {
    width: 180px;
    height: 180px;
  }
  
  .service-card-title {
    font-size: 1.2rem;
  }
  
  .ultra-services-section {
    min-height: auto;
  }
}
