/*================================================
0. Mixins Css
=================================================*/
/* Global Styles for clipping */
@media (max-width: 1280px) {
  .cta-wrapper .cta-title {
    font-size: 2.6rem !important;
  }
}
.clipping-path-hero {
  padding-top: 130px;
  padding-bottom: 30px;
}
@media (min-width: 576px) and (max-width: 768px) {
  .clipping-path-hero {
    padding-top: 20px;
  }
}
@media (max-width: 576px) {
  .clipping-path-hero {
    padding-top: 20px;
    padding-bottom: unset;
  }
}
.clipping-path-hero .hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (min-width: 576px) and (max-width: 768px) {
  .clipping-path-hero .hero-content h1 {
    font-size: 1.75rem !important;
  }
}
@media (max-width: 576px) {
  .clipping-path-hero .hero-content h1 {
    font-size: 1.75rem !important;
  }
}

.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: 5%;
  left: -30px;
  border-left: 4px solid #1A2980;
}

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

@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
  .hero-main-img {
    transform: none;
  }
}
/* 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;
  --mouse-x: 50%;
  --mouse-y: 50%;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease-out;
}
.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;
}
.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);
}
.holo-card .holo-content .icon-box.gradient-blue {
  background: var(--primary-gradient);
}
.holo-card .holo-content .icon-box.gradient-purple {
  background: linear-gradient(135deg, #1A2980, #377dff);
}
.holo-card .holo-content .icon-box.gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.holo-card .holo-content .icon-box.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.holo-card .holo-content .icon-box.gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}
.holo-card .holo-content .icon-box.gradient-dark {
  background: linear-gradient(135deg, #374151, #111827);
}
.holo-card .holo-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}
.holo-card .holo-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.holo-card .holo-content .read-more {
  color: #1A2980;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.holo-card .holo-content .read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}
.holo-card .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 .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;
}
.holo-card:hover .read-more i {
  transform: translateX(4px);
}
.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;
  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;
}

/*================ Why Choose Section */
.why-choose-section {
  padding: 100px 0 80px 0;
  background: linear-gradient(to bottom, hsl(240, 50%, 98%), #fff);
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  border: 2px solid hsl(240, 30%, 95%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card .popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.feature-card .feature-badge {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background: rgba(55, 125, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.feature-card .feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.feature-card .feature-desc {
  color: hsl(240, 20%, 50%);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-card .feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card .feature-points li {
  color: hsl(240, 20%, 40%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card .feature-points li i {
  color: var(--primary-color);
  font-size: 0.875rem;
}
.feature-card.featured {
  border-color: var(--primary-color);
}
.feature-card.featured:before {
  transform: scaleX(1);
}
.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}
.feature-card:hover .feature-badge {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.feature-card:hover:before {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }
}
/* 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.25rem;
  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;
}

/* Utilities */
.border-white-10 {
  border-color: rgba(0, 0, 0, 0.05) !important;
}/*# sourceMappingURL=clipping-path.css.map */