p {
            margin-top: 0.5em;
            margin-bottom: 0.5em;
            color: black;
        }
        ul {
            list-style-type: disc;
            padding-left: 20px; /* adds some space before bullets */
            color: black; /* optional: sets text color */
        }
        .bullet-list {
            list-style-type: disc;
            padding-left: 20px;
            color: black;
        }
        /* ================================
   REMOVE CARD NUMBER BADGES (01/02/03)
   Without impacting other CSS
================================ */

/* Most templates add badge via pseudo elements */
.service-two-inner::before,
.service-two-inner::after,
.service-two-inner .thumbnail::before,
.service-two-inner .thumbnail::after {
    content: none !important;
    display: none !important;
}

/* In case the badge is a real element inside card */
.service-two-inner .number,
.service-two-inner .badge,
.service-two-inner .serial,
.service-two-inner .count {
    display: none !important;
}
/* Top Header Bar Alignment Fix */
.rts-header-top,
.header-top,
.top-header,
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 10px 25px;
    flex-wrap: nowrap;
}

/* Left side content (text + Get in Touch) */
.rts-header-top .left,
.header-top .left,
.top-header-left,
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

/* Prevent breaking into 2 lines */
.rts-header-top p,
.header-top p,
.top-header-left p {
    margin: 0;
    white-space: nowrap;
}

/* Right side content (email + phone) */
.rts-header-top .right,
.header-top .right,
.top-header-right,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

/* Icon + text spacing */
.rts-header-top a,
.header-top a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* ================================
   CLEAN TRUSTED CLIENT LOGO GRID
================================ */

.client-grid-clean{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: center;
    justify-items: center;
    margin-top: 10px;
}

/* Logo card */
.client-logo-card{
    width: 100%;
    height: 90px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

/* Logo image inside card */
.client-logo-card img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.25s ease;
}

/* Hover effect */
.client-logo-card:hover{
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.client-logo-card:hover img{
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive breakpoints */
@media (max-width: 1200px){
    .client-grid-clean{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px){
    .client-grid-clean{
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .client-logo-card{
        height: 80px;
        border-radius: 12px;
    }
}

/* ===== WEBO PRICING SECTION ===== */
.webo-pricing-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f3f1ff, #e6e9ff);
    font-family: inherit;
}

.webo-pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.webo-pricing-badge {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #d9d0ff, #b8f1ff);
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.webo-pricing-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ff6a00;
}

/* GRID */
.webo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.webo-card {
    background: #15124a;
    border-radius: 30px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 🔥 KEY LINE */
}

.webo-card:hover {
    transform: translateY(-10px);
}

/* TOP LABEL */
.webo-card-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #5f8cff, #b8f1ff);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

/* INNER */
.webo-card-inner {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* PRICE */
.webo-price {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: -20px;
}

.webo-price.free {
    color: #ff7a00;
}

/* LIST */
.webo-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1; /* 🔥 pushes button to bottom */
}

.webo-card ul li {
    color: #d1d1ff;
    font-size: 14px;
    margin-bottom: 10px;
}

/* BUTTON */
.webo-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.webo-btn:hover {
    opacity: 0.85;
}

.webo-btn.active {
    background: linear-gradient(90deg, #ff6a00, #ff3d00);
}

/* HIGHLIGHT CARD */
.webo-card.highlight {
    /*border: 2px solid #ff6a00;*/
    box-shadow: 0 25px 60px rgba(255, 106, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .webo-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .webo-pricing-grid {
        grid-template-columns: 1fr;
    }

    .webo-pricing-header h2 {
        font-size: 22px;
    }
}

