:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #377DFF;
  --secondary-color: #ffc107;
  --dark-color: #0052ea;
  --text-color: #677788;
  --light-bg: #f8f9fa;
  --white-color: #ffffff;
}

/*================================================
0. Mixins Css
=================================================*/
/* ... 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;
  }
}
/* Buttons */
.btn-gradient-primary {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
}

.badge-primary-soft {
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-glass {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: #000;
}

.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;
}

.hero-trust-footer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-trust-footer .trust-footer-item {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 0.9rem;
}

.headshot-hero {
  padding: 180px 0 80px;
}
@media (max-width: 991px) {
  .headshot-hero {
    padding: 120px 0 60px;
  }
}
@media (max-width: 767px) {
  .headshot-hero {
    padding: 60px 0 40px;
  }
}
@media (max-width: 576px) {
  .headshot-hero {
    padding: 40px 0 30px;
  }
}
@media (max-width: 991px) {
  .headshot-hero .display-5 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .headshot-hero .display-5 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .headshot-hero .display-5 {
    font-size: 1.75rem;
  }
}
.headshot-hero .hero-cta-group {
  display: flex;
}
@media (max-width: 576px) {
  .headshot-hero .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .headshot-hero .hero-cta-group .fa-gift {
    display: none;
  }
}

.shape-blob {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
}

.shape-blob-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(26, 41, 128, 0.2);
  border-radius: 50%;
}

.shape-blob-2 {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(38, 208, 206, 0.1);
  border-radius: 50%;
}

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

.hero-main-img {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-main-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
  position: absolute;
  min-width: 180px;
  z-index: 2;
}

.card-1 {
  top: 20%;
  left: -30px;
  border-left: 4px solid #1A2980;
}

.card-2 {
  bottom: 15%;
  right: -20px;
  border-left: 4px solid #26D0CE;
}

@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
  .hero-main-img {
    transform: none;
  }
}
/* Hover Image Effect */
.cbp-caption {
  position: relative;
  overflow: hidden;
}

.cbp-item {
  box-shadow: 1px 1px 3px 3px #f2f2f2;
}

.cbp-caption img {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cbp-caption .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.05);
}

.cbp-caption:hover .hover-img {
  opacity: 1;
  transform: scale(1);
}

.cbp-caption:hover .default-img {
  opacity: 0;
  transform: scale(0.95);
  /* Smooth shrink */
}

/* Default badge text = befor */
.cbp-item .badge::befor {
  content: "befor";
  transition: 0.3s ease;
  display: inline-block;
  color: white;
}

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

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

.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;
}/*# sourceMappingURL=headshot.css.map */