/* E-billing - css Start */
.bill-koka-btn{
    position: relative;
    background: #fff;
    color: #6d007b;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    overflow: hidden;
}

.bill-koka-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        #6d007b,
        transparent,
        #6d007b
    );
    animation: borderMove 2s linear infinite; 
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

@keyframes borderMove{
    0%{
        background-position: 0% 50%;
    }
    100%{
        background-position: 200% 50%;
    }
}

.hero-bill-section{
    padding: 60px 0;
}

.hero-title{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-para{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.hero-img{
    max-width: 100%;
}

.button_slide {
  color: #6d007b;
  border: 1px solid #6d007b;
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #6d007b;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

.slide_down:hover {
  box-shadow: inset 0 100px 0 0 #6d007b;
}

.slide_right:hover {
  box-shadow: inset 400px 0 0 0 #6d007b;
}

.slide_left:hover {
  box-shadow: inset 0 0 0 50px #6d007b;
  color: white;
}

.slide_diagonal:hover {
  box-shadow: inset 400px 50px 0 0 #6d007b;
}

#outer {
  width: 364px;
  margin: 50px auto 0 auto;
  text-align: center;
}

.e-bill-epy{
    background: white;
    color: #6d007b !important;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none; 
    overflow: hidden;
}

.e-bill-epy .arrow{
    display: inline-block;
    animation: moveArrow 1s infinite alternate;
}

@keyframes moveArrow{
    from{ transform: translateX(0); }
    to{ transform: translateX(6px); }
}

/* start */
.feature-card{
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    height: 100%;
   

    /* IMPORTANT */
    transition: 
        box-shadow 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease;
}

.feature-card:hover .icon-box{
    background: #6d007b;
    border-radius: 10px;
    transform: rotate(6deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.feature-card:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.feature-card h6{
    margin-top: 15px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card p{
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.icon-box{
    width: 55px;
    height: 55px;
    background: rgba(109,0,123,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    border: 1px solid #efbef5;
}

.icon-box img{
    width: 28px;
    height: 28px;
    transition: filter 0.3s ease;
    margin-bottom: 20px !important;
}

.feature-card:hover .icon-box{
    background: #6d007b;
    color: #fff;
    border-radius: 10px; 
    transform: rotate(6deg) scale(1.05);
}

/* start */
.center-section-bill{
    background: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform-style: preserve-3d;
}

.center-section-bill::before{
    content: "";
    position: absolute;
    inset: -40px;
    background: linear-gradient(
        120deg,
        rgba(109,0,123,0.15),
        rgba(109,0,123,0.03),
        rgba(109,0,123,0.15)
    );
    transform: translateZ(-1px) rotate(0deg);
    opacity: 0;
    transition: all 0.8s ease;
}

.center-section-bill:hover{
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(109,0,123,0.25);
}

.center-section-bill:hover::before{
    opacity: 1;
    transform: translateZ(0) rotate(6deg);
}

.center-section-bill h3,
.center-section-bill p{
    position: relative;
    z-index: 1;
}

.center-section-bill h3{
    font-size: 34px;
    font-weight: 600;
    color: #333;
}

.center-section-bill p{
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 15px auto 0;
}

/* Start */
.faq-section{
    background: #f9f9fb;
}

.faq-accordion .accordion-item{
    border: none;
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-item:hover{
    transform: translateY(-4px);
}

.faq-accordion .accordion-button{
    background: #fff;
    color: #333;
    font-weight: 600;
    padding: 18px 20px;
    box-shadow: none;
    transition: background 0.4s ease;
}

.faq-accordion .accordion-button:not(.collapsed){
    background: #6d007b;
    color: white;
}

.faq-accordion .accordion-body{
    background: #fff;
    animation: fadeSlide 0.5s ease;
}

.accordion-button::after{
    filter: hue-rotate(260deg);
}

@keyframes fadeSlide{
    from{
        opacity: 0;
        transform: translateY(-8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
/* E-billing css end */