:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #0050ea;
  --secondary-color: #20bbff;
  --dark-color: #0f0f57;
  --text-color: #52527a;
  --light-bg: #f7f7fc;
  --white-color: #ffffff;
}

/*================================================
0. Mixins Css
=================================================*/
.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: var(--white-color);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #152063;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 41, 128, 0.4);
}

.btn-gradient-primary {
  background: var(--primary-gradient);
  color: var(--white-color);
  border: none;
  transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
  color: var(--white-color);
}

.btn-warning {
  border: none;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 5px;
  font-weight: 600;
}
.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

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

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

.retouching-hero {
  padding-top: 180px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .retouching-hero {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .retouching-hero {
    padding-top: 50px;
  }
}
.retouching-hero .shape-blob {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
}
.retouching-hero .shape-blob.shape-blob-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(26, 41, 128, 0.2);
  border-radius: 50%;
}
.retouching-hero .shape-blob.shape-blob-2 {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(38, 208, 206, 0.1019607843);
  border-radius: 50%;
}
.retouching-hero .hero-content h1 {
  color: #1a1a1a;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .retouching-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .retouching-hero .hero-content h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 767px) {
  .retouching-hero .hero-content h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .retouching-hero .hero-content .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .retouching-hero .hero-content .lead {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .retouching-hero .hero-content .lead {
    font-size: 1rem;
  }
}
.retouching-hero .hero-content .badge-soft-primary {
  background-color: rgba(26, 41, 128, 0.1019607843);
  color: #1A2980;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .retouching-hero .hero-content .badge-soft-primary {
    text-align: center;
  }
}
.retouching-hero .hero-content .text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.retouching-hero .hero-image-wrapper .hero-main-img {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}
.retouching-hero .hero-image-wrapper .hero-main-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}
.retouching-hero .hero-image-wrapper .floating-card {
  position: absolute;
  min-width: 180px;
  z-index: 2;
}
.retouching-hero .hero-image-wrapper .floating-card.card-1 {
  top: 20%;
  left: -30px;
  border-left: 4px solid #1A2980;
}
.retouching-hero .hero-image-wrapper .floating-card.card-2 {
  bottom: 11px;
  right: -59px;
  border-right: 4px solid #26D0CE;
}

/*  Trust Bar Section */
.trust-bar-wrapper {
  background: rgba(255, 255, 255, 0.9490196078);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
.trust-bar-wrapper .trust-bar-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
  transition: all 0.3s ease;
}
.trust-bar-wrapper .trust-bar-item .trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(26, 41, 128, 0.3);
  transition: all 0.3s ease;
}
.trust-bar-wrapper .trust-bar-item .trust-content {
  text-align: left;
  padding-left: 10px;
}
.trust-bar-wrapper .trust-bar-item .trust-content .trust-stat {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  line-height: 1;
  margin-bottom: 5px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.trust-bar-wrapper .trust-bar-item .trust-content .trust-stat .counter {
  display: inline-block;
}
.trust-bar-wrapper .trust-bar-item .trust-content .trust-text {
  font-size: 0.9rem;
  color: #2a2a2c;
  font-weight: 600;
}
.trust-bar-wrapper .trust-bar-item:hover {
  transform: translateY(-5px);
}
.trust-bar-wrapper .trust-bar-item:hover .trust-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(26, 41, 128, 0.5);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cta-wrappe .cta-title {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-wrappe .cta-title {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .cta-wrappe .cta-title {
    font-size: 2rem !important;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .cta-wrappe .cta-title {
    font-size: 2rem !important;
    text-align: left;
  }
}

@media (max-width: 1280px) {
  .p6r {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .cta-wrapper {
    font-size: 2.6rem !important;
  }
}
@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
  .hero-main-img {
    transform: none;
  }
}
@media (max-width: 1280px) {
  .trust-icon {
    width: 50px;
    height: 50px;
  }
  .trust-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 991px) {
  .trust-bar-wrapper {
    padding: 30px 20px;
  }
  .trust-stat {
    font-size: 1.5rem;
  }
  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .trust-bar-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 15px;
  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 20px var(--primary-gradient);
}
.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;
  margin-bottom: 0;
}

/* Hover Image Effect */
/*================ Use Cases Section start */
/* Section Base */
.holographic-section {
  padding: 100px 0;
  background: #f8f9fc;
}
.holographic-section .holo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px 0;
}
.holographic-section .holo-grid .holo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease-out;
}
.holographic-section .holo-grid .holo-card .holo-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
  border-radius: 19px;
  margin: 1px;
  display: flex;
  flex-direction: column;
}
.holographic-section .holo-grid .holo-card .holo-content .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);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-blue {
  background: var(--primary-gradient);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-purple {
  background: linear-gradient(135deg, #1A2980, #377dff);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box.gradient-dark {
  background: linear-gradient(135deg, #374151, #111827);
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box .read-more {
  color: #1A2980;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.holographic-section .holo-grid .holo-card .holo-content .icon-box .read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}
.holographic-section .holo-grid .holo-card .holo-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(25, 49, 185, 0.8), transparent 30%);
  opacity: 0;
  transition: opacity 0.8s;
}
.holographic-section .holo-grid .holo-card:hover {
  cursor: pointer;
}
.holographic-section .holo-grid .holo-card:hover .read-more i {
  transform: translateX(4px);
}
.holographic-section .holo-grid .holo-card:hover .holo-spotlight {
  opacity: 1;
}
.holographic-section .holo-grid .holo-card:hover .holo-border {
  opacity: 1;
}/*# sourceMappingURL=retouching.css.map */