/* Base tab */
.product-tabs-nav li {
    position: relative;
    padding: 16px 28px;
    font-weight: 600;
    color: #ffffff;
}

/* REMOVE old active background clash */
.product-tabs-nav li.active {
    background: #ffffff;
    color: #0b3a57;
}

/* 🔥 Bottom indicator */
.product-tabs-nav li.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;              /* thickness */
    background: #325c76;     /* highlight color (changeable) */
    border-radius: 2px 2px 0 0;
}

/* Optional hover polish */
.product-tabs-nav li:hover:not(.active) {
    background: rgba(255,255,255,0.12);
}

    .product-tabs-section {
    padding: 70px 0;
}

.product-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    background: #0b3a57; /* dark blue strip */
    border-radius: 4px;
    overflow-x: auto;
    padding: 5px;
    margin-bottom: 30px;
}

.product-tabs-nav li {
    list-style: none;
    padding: 16px 28px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
}

/* Remove last divider */
.product-tabs-nav li:last-child {
    border-right: none;
}

/* Active Tab */
.product-tabs-nav li.active {
    background: #ffffff;
    color: #0b3a57;
    box-shadow: inset 0 -3px 0 #0b3a57;
}

/* Hover */
.product-tabs-nav li:hover {
    background: rgba(255,255,255,0.1);
}

.product-tabs-nav li {
    list-style: none;
    padding: 7px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.product-tabs-nav li.active,
.product-tabs-nav li:hover {
    background: #102d51;
    color: #fff;
}

.product-tabs-content .tab-content {
    display: none;
    animation: fadeUp 0.4s ease;
}

.product-tabs-content .tab-content.active {
    display: block;
}

.tab-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.tab-steps li {
    margin-bottom: 8px;
    font-weight: 500;
}

.faq-item {
    margin-bottom: 15px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-tabs-nav li {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.bt-image{
    border-radius: 19px;
}
.accordion-button{
    font-size: 15px;
}

.single-tab-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    object-fit:cover;
}

 .contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    /* Force one line */
    margin: 20px auto;
    max-width: 100%;
    overflow-x: auto;
    /* Scroll if screen too small */
    padding: 0 5px;
}

.btn-action {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-action svg {
    flex-shrink: 0;
}

.btn-action.live {
    background: #25D366;
    /* WhatsApp green */
}

.btn-action.call {
    background: #d93025;
    /* red for call */
}

.btn-action.email {
    background: #0077b6;
    /* webstron blue */
}

.btn-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Make sure buttons don't wrap even on small screens */
@media (max-width: 480px) {
    .contact-buttons {
        gap: 6px;
    }

    .btn-action {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.bt-key-features {
    background: #f8fafc;
}

.feature-intro {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.feature-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.feature-box h4 {
    font-size: 18px;
    color: #102d51;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.feature-footer {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}