ul.custom-list {
  list-style: none;
  padding: 0;
}

ul.custom-list li {
  background: url('../../assets/images/icon_circle_check.png') no-repeat left center;
  background-size: 16px 16px;
  padding-left: 24px;
  margin-bottom: 15px;
}
.icon-wrapper {
  height: 50px; /* set a fixed height based on your tallest icon */
  display: flex;
  align-items: flex-end; /* align image to top inside wrapper */
  justify-content: center;
}

.demo-banner {
    /* background: linear-gradient(135deg, #4a6cf7 0%, #6b46c1 100%); */
    background: #667ED9;
    border-radius: 16px;
    padding: 20px;
    /* max-width: 500px; */
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    /* border:1px solid #000; */
}

.demo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}
.form-container {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #374151;
    outline: none;
    transition: box-shadow 0.2s ease;
    height: 40px;
}

.email-input::placeholder {
    color: #9ca3af;
}

.email-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.demo-button-blue {
    background: linear-gradient(135deg, #1D54C1 0%, #1D54C1 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    height: 40px;
}
.demo-button-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 67, 249, 0.4);
    color: #fff;
}
.demo-button-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}


.demo-button-blue:hover::before {
    left: 100%;
}

.demo-button-blue:active {
    transform: translateY(-1px);
}
.demo-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    height: 40px;
}

.demo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}


.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.demo-button:hover::before {
    left: 100%;
}

.demo-button:active {
    transform: translateY(-1px);
}

.arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.demo-button:hover .arrow {
    transform: translateX(2px);
}



/* Counter Start */
   .stats-container {
    background: white;
    /* padding: 40px 60px; */
    border-radius: 0px;
    width: 100%;
    /* margin: 20px auto; */
}

.stat-item {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* -webkit-text-fill-color: transparent; Uncomment to apply visible gradient text */
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.counter-animation {
    display: inline-block;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-icon.pulse {
    animation: pulse 2s infinite;
}
.collapsible-link {
        width: 100%;
        position: relative;
        text-align: left;
    }

    .accordionCard{
        border: 1px solid #000;
        margin-bottom: 20px;
        border-radius:10px !important;
    }
    .collapsible-link::before {
        content: '\f107';
        position: absolute;
        top: 35%;
        right: -0.2rem;
        transform: translateY(-50%);
        display: block;
        font-family: 'FontAwesome';
        font-size: 1.1rem;
    }

    .collapsible-link[aria-expanded='true']::before {
        content: '\f106';
    }
    .accordion>.card:not(:last-of-type) {
        border-bottom: 1px solid #000;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

/* Optional: responsive tweaks */
@media (max-width: 768px) {
    .stats-container {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    #faq{
        padding: 20px 20px !important;
    }
    #productintro .hero-subtitle{
        padding-right: 0px;
    }
    ul.custom-list li {
        padding-left: 15px !important;
    }
}
/* Counter end */
