: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
=================================================*/
.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 {
  font-size: 1.1rem;
  color: #666699;
}

.lead-text {
  font-size: 1.125rem;
  color: #52527a;
  line-height: 1.7;
}

/* 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);
}

.section-subtitle {
  color: #677788;
  font-size: 1.1rem;
}

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

.cutout-hero {
  padding: 180px 0px 80px 0px;
}
@media (max-width: 767px) {
  .cutout-hero {
    padding: 40px 0px 50px 0px;
  }
}
@media (max-width: 425px) {
  .cutout-hero {
    padding: 0px 0px 40px 0px;
  }
}
.cutout-hero h1 {
  line-height: 1.2;
}

.service-badges .badge-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-badges .badge-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

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

/* 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);
}

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

.gradient-purple {
  background: linear-gradient(135deg, #1A2980, #377dff);
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

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

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

/* CTA Section start */
/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-wrapper {
  /* Light tint based on brand color #26D0CE/Blue */
  background: linear-gradient(135deg, #f0fbff 0%, #e2f2ff 100%);
  border-radius: 40px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c5d7ee;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px 25px;
    border-radius: 24px;
  }
}
.cta-wrapper .cta-bg-shapes .cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.cta-wrapper .cta-bg-shapes .cta-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(55, 125, 255, 0.1);
  top: -150px;
  right: -100px;
}

.cta-wrapper .cta-bg-shapes .cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(38, 208, 206, 0.1);
  bottom: -100px;
  left: -50px;
}

.cta-wrapper .cta-badge {
  display: inline-block;
  background: rgba(55, 125, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(55, 125, 255, 0.2);
  color: #377dff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.cta-wrapper .cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 991px) {
  .cta-wrapper .cta-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-title {
    font-size: 2rem;
  }
}
.cta-wrapper .cta-subtitle {
  font-size: 1.1rem;
  color: #677788;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-subtitle {
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .cta-wrapper .cta-title {
    font-size: 2.6rem !important;
  }
}
.cta-wrapper .cta-subtitle strong {
  color: #377dff;
  background: rgba(55, 125, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.cta-wrapper .cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-benefits {
    max-width: 500px;
    margin: 0 auto;
  }
}
.cta-wrapper .cta-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1e2022;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.cta-wrapper .cta-benefits li i {
  width: 28px;
  height: 28px;
  background: rgba(55, 125, 255, 0.1);
  color: #377dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box {
    text-align: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-label {
  display: block;
  color: #1e2022;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-wrapper .volume-pricing-box .volume-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box .volume-pills {
    justify-content: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-pills .v-pill {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1e2022;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cta-wrapper .volume-pricing-box .volume-pills .v-pill:hover {
  background: #377dff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(55, 125, 255, 0.3);
}

.cta-wrapper .volume-pricing-box .volume-cta-link {
  color: #377dff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.cta-wrapper .volume-pricing-box .volume-cta-link:hover {
  opacity: 1;
  color: #0056b3;
}

.cta-wrapper .cta-action-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box {
    padding: 35px 25px;
  }
}
.cta-wrapper .cta-action-box .offer-highlight {
  text-align: center;
  margin-bottom: 30px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-icon {
  font-size: 2.5rem;
  color: #377dff;
  margin-bottom: 15px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 8px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-subtitle {
  color: #677788;
  font-size: 0.95rem;
}

.cta-wrapper .cta-buttons .cta-btn-custom {
  font-size: 1.1rem !important;
}

.cta-wrapper .cta-action-box .pricing-context .price-value {
  color: #1e2022;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-wrapper .cta-action-box .pricing-context .price-disclaimer {
  color: #677788;
  font-size: 0.85rem;
}

.cta-wrapper .cta-action-box .trust-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box .trust-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.cta-wrapper .cta-action-box .trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e2022;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.cta-wrapper .cta-action-box .trust-row .trust-item i {
  font-size: 1rem;
}/*# sourceMappingURL=cutout.css.map */