
/* Book a Demo Button Styles */
.btn.form-group {
    background-color: #6A49F2;
    border: 2px solid #6A49F2;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
    z-index: 1;
    min-height: auto;
    height: auto;
    line-height: 1.5;
}

.btn.form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.6s ease;
    z-index: -1;
}

.btn.form-group:hover {
    color: #6A49F2;
    border-color: #6A49F2;
    background-color: transparent;
}

.btn.form-group:hover::before {
    left: 0;
}
/* end of button */

 /* features block */
.features_block .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .feature_col {
    width: 19%;
    margin-bottom: 30px;
  }
  
  .feature_box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature_box:hover {
    transform: translateY(-5px);
  }
  
  .feature_box .image img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .feature_box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature_box p {
    font-size: 14px;
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .feature_col {
      width: 48%;
    }
  }
  
  @media (max-width: 575px) {
    .feature_col {
      width: 100%;
    }
  }
 


/* Override centering for modern UI section headings */
.modern_ui_section .key_features_text .section_title {
    text-align: left !important;
}

.modern_ui_section .section_title {
    text-align: left !important;
}

/* Right align heading for promoters section (right column) */
.modern_ui_section:nth-of-type(2) .section_title {
    text-align: right !important;
}

/* Make all bullet points text align left */
.modern_ui_section .design_block li p {
    text-align: left !important;
}

/* Add small gap between columns using padding */
.promoters_section .col-lg-6:first-child {
    padding-right: 30px;
}

.promoters_section .col-lg-6:last-child {
    padding-left: 80px;
}
/* end of features block */

/* start of story box (cards)*/
/* .story_box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
    padding: 20px 15px;
    height: 100%;
  } */
.story_box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding: 20px 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.story_box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }

  /* .story_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  } */
  
  .story_img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  
  .story_text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
  }
  
  .story_text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .story_text a {
    font-size: 13px;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
  }
  
  @media (max-width: 991px) {
    .col-md-2 {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    }
  }
  
  @media (max-width: 767px) {
    .col-md-2 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (max-width: 480px) {
    .col-md-2 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

.story_img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* end of story box */

/* card slider */
/* .card-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
} */

.card_item {
    background: #fff;
    padding: 20px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 160px;
}
  
.card_item:hover {
    transform: translateY(-10px);
}
  
.card_item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
  
.card_item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}
 
.card_icon_wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
            }
  
.card_icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
/* end of card slider */

.card_item img {
    display: block;
    margin: 0 auto 12px;
    max-width: 100%;
    height: auto;
}

/* Owl carousel stage outer padding */
.interface_section .owl-stage-outer {
    padding: 20px 0;
}
/* .card_item.image img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
} */


/* Industry Categories Styling */
.about_app_section .about_text .app_statstic {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.about_app_section .about_text .app_statstic li {
    width: calc(45% - 12.5px);
    background-color: var(--bg-white);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    padding: 15px 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
}

.about_app_section .about_text .app_statstic li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.12);
}

.about_app_section .about_text .app_statstic li .icon {
    margin-right: 0;
    margin-bottom: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.about_app_section .about_text .app_statstic li .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.about_app_section .about_text .app_statstic li .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_app_section .about_text .app_statstic li .text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 0;
    line-height: 1.2;
}

.about_app_section .about_text .app_statstic li .text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive grid for Core Values/Who Is It For cards */
@media (min-width: 1200px) {
    .about_app_section .about_text .app_statstic {
        justify-content: space-between;
    }
    .about_app_section .about_text .app_statstic li {
        width: calc(33.333% - 12px);
        min-height: 120px;
    }
    .about_app_section .about_text .app_statstic li .text h3 {
        font-size: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .about_app_section .about_text .app_statstic {
        justify-content: space-between;
    }
    .about_app_section .about_text .app_statstic li {
        width: calc(33.333% - 10px);
        min-height: 110px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about_app_section .about_text .app_statstic {
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .about_app_section .about_text .app_statstic li {
        width: calc(45% - 6px);
        padding: 12px 10px;
        min-height: 80px;
    }
    
    .about_app_section .about_text .app_statstic li .text h3 {
        font-size: 18px;
    }
    
    .about_app_section .about_text .app_statstic li .text p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .about_app_section .about_text .app_statstic {
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    .about_app_section .about_text .app_statstic li {
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Interface Section Screen Slider */
.interface_section .screen_slider {
    margin-top: 35px;
    min-height: 335px;
    padding-bottom: 0;
}

/* Reduce bottom padding for interface section */
.interface_section.row_am {
    padding-bottom: 20px;
}

/* Fix pricing section animation transitions */
.pricing_section .pricing_pannel {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pricing_section .pricing_pannel.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.pricing_section {
    position: relative;
    min-height: 600px;
}

/* Disable AOS animations during pricing transitions */
.pricing_section .pricing_pannel[data-aos] {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

.pricing_section .pricing_pannel[data-aos].aos-animate {
    transform: translateY(0) !important;
}

/* Optimize AOS animation timing for faster scroll responses */
[data-aos] {
    transition-duration: 0.8s !important;
    transition-delay: 0s !important;
}

/* Override specific long durations in HTML */
[data-aos-duration="1500"],
[data-aos-duration="1600"],
[data-aos-duration="1700"],
[data-aos-duration="1800"] {
    transition-duration: 0.8s !important;
}

/* Optimize scroll performance */
[data-aos] {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* About page breadcrumb: remove curve and animation */
.bred_crumb::after { display: none !important; }
.bred_crumb { background-size: cover; background-position: center; }
.bred_crumb .banner_shape1,
.bred_crumb .banner_shape2,
.bred_crumb .banner_shape3 { display: none !important; animation: none !important; }

/* Our Mission boxes centering */
.why_we_section .why_box {
    text-align: center;
}
.why_we_section .why_box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.why_we_section .why_box .text {
    text-align: center;
}
.why_we_section .why_box .text h3 {
    margin-bottom: 8px;
}
.why_we_section .why_box .text p {
    margin-bottom: 0;
}

.slider_img {
    border-radius: 50px;
    overflow: hidden; /* ensure child image corners are clipped */
}


/* Curve corners for all screenshot images */
img[src$="screenshot1.png"],
img[src$="screenshot2.png"],
img[src$="screenshot3.png"],
img[src*="/screenshot"] {
    border-radius: 20px;
    display: block;
}

.owl-stage-outer{
    border-radius: 50px;
    position:relative;
    overflow:hidden;
    -webkit-transform:translate3d(0,0,0)
}




