/* Global Styles for masking9 */
:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --dark-bg: #2d3436;
  --light-bg: #f8f9fa;
  --text-color: #333;
  --white-color: #ffffff;
  --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #5848c2;
  transform: translateY(-2px);
}

.text-gradient {
  background: var(--gradient-primary);
}

.section-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ... Previous Styles Keep Same ... */
.bg-gradient-primary {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.text-transparent {
  color: transparent;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.spacing-2 {
  letter-spacing: 2px;
}

.border-width-4 {
  border-width: 4px !important;
}

.shadow-soft {
  box-shadow: 0 10px 20px -10px rgba(102, 126, 234, 0.5);
}

.icon-square {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bg-soft-primary {
  background-color: rgba(102, 126, 234, 0.1);
}

.image-composition {
  padding: 20px;
}

.dot-pattern {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#cbd5e0 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
}

.border-white-thick {
  border: 5px solid rgba(255, 255, 255, 0.5215686275);
}

/* --- Dynamic Background --- */
.bg-box-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 90%;
  background-color: #f3f4f6;
  /* Default Initial Color */
  border-radius: 30px;
  z-index: 0;
  transition: background-color 1.5s ease;
  /* Smooth transition handled by CSS */
}

/* --- Vertical Line Animation Styles --- */
.vertical-line-container {
  position: absolute;
  right: -15px;
  /* Positioned to the right of the image */
  top: 10%;
  height: 80%;
  width: 4px;
  z-index: 3;
}

/* Thin static rail */
.static-rail {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

/* The Moving Dash */
.moving-dash {
  position: absolute;
  left: -1px;
  /* Align center with rail */
  width: 4px;
  height: 40px;
  /* Length of the dash */
  background: #6c5ce7;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
  /* Animation: Moves from Top (-10%) to Bottom (110%) */
  animation: scanMove 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scanMove {
  0% {
    top: -10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .image-composition {
    margin-top: 40px;
  }
  .bg-box-shape {
    width: 100%;
    right: auto;
    left: 0;
  }
  .vertical-line-container {
    right: -5px;
  }
}
.masking-standard-hero {
  padding: 200px 0 100px;
}

.info-card {
  background: #1a1a2e;
  /* Dark Blue/Black Background */
  color: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.info-card .icon-float {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4facfe;
  /* Light Blue accent */
}
.info-card .card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.info-card .card-desc {
  color: #b0b0c0;
  /* Softer white for text */
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: -1;
}
.info-card:hover {
  transform: translateY(-8px);
}
.info-card:hover .icon-float {
  color: #fff;
}
.info-card:hover:before {
  width: 300px;
  height: 300px;
  background: rgba(79, 172, 254, 0.1);
  /* Expands the accent color */
}

.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.how-it-works .process-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, hsl(200, 80%, 55%), hsl(190, 80%, 60%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-it-works .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}
.how-it-works .process-card:hover:before {
  transform: scaleX(1);
}
.how-it-works .process-card .process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(138, 43, 226, 0.1);
}
.how-it-works .process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
}
.how-it-works .process-card .process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.how-it-works .process-card .process-description {
  color: hsl(240, 20%, 50%);
  font-size: 0.95rem;
  line-height: 1.6;
}/*# sourceMappingURL=masking-services.css.map */