
.askAnything h1 {
    font: normal normal bold 70px/80px Inter;
    color: #FFFFFF;
}

@media(max-width:767px) {
    .askAnything h1{
        line-height: 60px;
        text-align: center;
        font-size: 50px;
        padding-top: 100px;
    }
}

.askMe-card {
    border-radius: 20px;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.askMe-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.askMe-card h5 {
    font-weight: 600;
    margin: 0;
    color: #000;
    font-size: 30px;
    line-height: 26px;
}

.askMe-bg-esign {
    background-color: #fcf8fe;
    border-color: #f0dafb;
}

.askMe-bg-estamp {
    background-color: #e6e8f2;
    border-color: #7884bb;
}

.askMe-bg-clm {
    background-color: #eef6ff;
    border-color: #9cc9ff;
}

.askMe-bg-melento {
    background-color: #f2eaf6;
    border-color: #c6a4d9;
}
.askMe-nav {
    position: sticky;
}

.askMe-nav button {
    text-align: left;
    display: block;
    width: 100%;
    padding: 14px 20px 14px 40px;
    margin-bottom: 10px;
    font: bold 18px/24px Inter;
    position: relative;
    background: #fff;
    color: #000;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.askMe-nav button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #aaaaaa;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.askMe-nav button.active {
    background: #ededed;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    font-family: 'Oswald', sans-serif !important;
}

.askMe-nav button.active::before {
    background: linear-gradient(121deg, #de037e 0%, #1A53BC 100%);
}

.askMe-content {
    position: relative;
    padding-left: 30px;
}

.askMe-content::before {
    content: "";
    position: absolute;
    left: 43px;
    top: 0px;
    bottom: 0px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #707070, #707070 4px, transparent 4px, transparent 8px);
}

.askMe-tab-content {
    display: none;
}

.askMe-tab-content.active {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

.askMe-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.askMe-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 6px;
    /* background: linear-gradient(180deg, #A7015B 0%, #001793 100%); */
    background: #B50068;
    border: 4px solid #e99fd6;
}

.askMe-item h6 {
    font: bold 18px/24px Inter;
    margin: 0 0 6px;
    color: #292C31;
}

.askMe-item p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #000000;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

/* Mobile Accordion */
.askMe-mobile-tabs {
    display: none;
    padding: 0 15px;
}

.askMe-toggle {
    width: 100%;
    background: #ededed;
    padding: 16px 20px;
    font-weight: bold;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border-radius: 5px;
}

.askMe-toggle.active {
    border-left: 6px solid transparent;
    background: #f7f7f7;
    border-radius: 0px;
    border-image: linear-gradient(to bottom, #ff007f, #7a3cff, #0047ff) 1;
} 
.askMe-toggle {
    border-left: 6px solid #B50068;
    background: #f7f7f7;
    border-radius: 0px;
    font-family: 'Oswald', sans-serif !important;
}
.askMe-toggle .arrow {
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.askMe-toggle.active .arrow {
    /* transform: rotate(90deg);
    background: linear-gradient(41deg, #B50068, #1A53BC, #071E84); */
}

.askMe-mobile-content {
    display: none;
    background: #fff;
    padding: 10px 20px 20px 40px;
    border-left: 2px dashed #ccc;
    position: relative;
}

.askMe-mobile-content.active {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

.askMe-mobile-content .askMe-item {
    position: relative;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .faq-wrapper>.row {
        display: none;
    }

    .askMe-mobile-tabs {
        display: block;
        position: relative;
        padding: 50px 0px;
    }
    .askMe-toggle{
        background-color: #fff;
    }
    .askMe-dot{
        left: -10px;
    }
    .askMe-mobile-content{
        padding: 60px 0px;
    }
    .askMe-mobile-tab{
        margin-bottom: 30px;
    }
    .askAnything{
        align-items: flex-start !important;
    }
}