/* Global Styles for recolor9 */
:root {
  --primary-color: #0050ea;
  --secondary-color: #007bff;
  --dark-bg: #2d3436;
  --light-bg: #f8f9fa;
  --text-color: #333;
  --white-color: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0050ea 0%, #007bff 100%);
}

/*================================================
0. Mixins Css
=================================================*/
.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: #0050ea;
  transform: translateY(-2px);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-primary-soft {
  background: rgba(55, 125, 255, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.badge-soft-primary {
  background: rgba(26, 41, 128, 0.1);
  color: #1A2980;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.recolor-hero {
  padding: 200px 0px 80px 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .recolor-hero {
    padding: 210px 0px 80px 0px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .recolor-hero {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 576px) {
  .recolor-hero {
    padding: 80px 0px 80px 0px;
  }
}
.recolor-hero .display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .recolor-hero .display-5 {
    font-size: 2.25rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .recolor-hero .display-5 {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .recolor-hero .display-5 {
    font-size: 1.75rem;
  }
}
.recolor-hero .lead {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 991px) {
  .recolor-hero .lead {
    font-size: 1.125rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .recolor-hero .lead {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .recolor-hero .lead {
    font-size: 1rem;
  }
}

.floating-badge {
  bottom: 30px;
  left: -30px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.transform-rotate {
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.transform-rotate:hover {
  transform: rotate(0deg);
}

.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;
  color: white;
  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-icon i {
  color: white;
}
.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;
}

.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Section Base */
.retouching9-holographic-section {
  padding: 100px 0;
  background: #f8f9fc;
}

/* Typography */
.badge-pill {
  background: rgba(26, 41, 128, 0.1);
  color: #1A2980;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
}

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

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Holo Grid */
.holo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* Holo Card */
.holo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  /* CSS Variables for Mouse Position */
  --mouse-x: 50%;
  --mouse-y: 50%;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease-out;
  /* Smooth tilt return */
}

/* Inner Content */
.holo-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  /* Slightly overlaid to ensure readability */
  height: 100%;
  border-radius: 19px;
  /* Slightly smaller than card */
  margin: 1px;
  /* To show border */
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.icon-box.gradient-blue {
  background: var(--primary-gradient);
}
.icon-box.gradient-purple {
  background: linear-gradient(135deg, #1A2980, #377dff);
}
.icon-box.gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.icon-box.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.icon-box.gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}
.icon-box.gradient-dark {
  background: linear-gradient(135deg, #374151, #111827);
}

.holo-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.holo-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.read-more {
  color: #1A2980;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.holo-card:hover .read-more i {
  transform: translateX(4px);
}

/* Spotlight Effect (Radial Gradient) */
.holo-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* On top of content, but with mix-blend-mode or opacity */
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(26, 41, 128, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.holo-card:hover .holo-spotlight {
  opacity: 1;
}

/* Border Effect */
.holo-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(26, 41, 128, 0.4), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}

.holo-card:hover .holo-border {
  opacity: 1;
}

/* Hide original text */
.cbp-item .badge {
  color: transparent !important;
}

.cbp-item:hover .badge::before {
  content: "After";
  color: white;
}

.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: transparent !important;
}/*# sourceMappingURL=recoloring.css.map */