/* ============================================
   Service Tabs - FINAL FULL CSS WITH ARROWS
   PNG icons fully supported
   ============================================ */

.sti-wrapper {
    max-width:1180px;
    margin:40px auto;
    font-family:Arial,Helvetica,sans-serif;
    color:#222;
    padding:20px;
    position:relative; /* Required for arrows */
}

/* Heading */
.sti-heading {
    text-align:center;
    margin-bottom:30px;
}
.sti-heading small {
    display:block;
    color:#3db5e3;
    font-weight:600;
}
.sti-heading span {
    display:block;
    font-size:34px;
    font-weight:800;
    color:#0b0b3a;
}

/* CARD ROW */
.sti-cards {
    display:flex;
    gap:18px;
    flex-wrap:nowrap;
    justify-content:flex-start;
    margin-bottom:36px;
    overflow-x:auto;
    padding-bottom:10px;

    scrollbar-width:none;
    position:relative;
    min-height:140px;
}
.sti-cards::-webkit-scrollbar {
    display:none;
}

/* SINGLE CARD */
.sti-card {
    background:#fff;
    border:2px solid #eee;
    box-shadow:0 6px 20px rgba(20,20,20,0.03);
    flex:0 0 220px;
    cursor:pointer;
    transition:all .25s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:24px;
    position:relative;
    border-radius:6px;
}

}
.sti-card + .sti-card { margin-left:10px; }

/* CARD TOP (icon + number) */
.sti-card .sti-card-top {
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}

/* ICON */
.sti-icon-wrap {
    width:60px;
    height:60px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
}
.sti-icon-wrap img {
    width:60px;
    height:60px;
    object-fit:contain;
}

/* NUMBER */
.sti-number {
    font-weight:700;
    color:#111;
    font-size:14px;
}

/* TITLE */
.sti-card-title {
    margin-top:18px;
    font-weight:700;
    color:#111;
    text-align:center;
    font-size:15px;
    line-height:1.2;
}

/* ACTIVE CARD - border only */
.sti-card.active {
    background:transparent;       /* no fill */
    border-color:#2357b5;         /* BLUE border */
    color:#111;
    box-shadow:none;
}

/* Active icon = same (NO FILTER) */
.sti-card.active .sti-icon-wrap img {
    filter:none;
}

/* Active text stays dark */
.sti-card.active .sti-number,
.sti-card.active .sti-card-title {
    color:#111;
}

/* ======================================
   ARROW BUTTONS (left & right)
   ====================================== */

.sti-arrow {
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2357b5;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:16%;
    transform:translateY(-50%);
    cursor:pointer;
    z-index:20;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.sti-arrow img {
    width:22px;
    height:22px;
    filter:brightness(0) invert(1);
}

/* Left Arrow */
.sti-left-arrow {
    left:-25px;
}

/* Right Arrow */
.sti-right-arrow {
    right:-25px;
}

/* ======================================
   CONTENT AREA
   ====================================== */

.sti-contents {
    background:#fff;
    padding:30px;
    border-radius:6px;
    display:block;
}

.sti-content {
    display:none;
    align-items:flex-start;
    gap:24px;
}
.sti-content.active {
    display:flex;
}

/* CONTENT IMAGE */
.sti-content-media img {
    max-width:520px;
    width:100%;
    height:auto;
    display:block;
    border-radius:6px;
    object-fit:cover;
}

/* CONTENT TEXT */
.sti-content-text {
    flex:1;
    padding:8px 16px;
}
.sti-content-text h3 {
    font-size:24px;
    color:#0b0b3a;
    margin-top:0;
}
.sti-content-text p {
    color:#666;
    line-height:1.6;
}

/* BULLETS */
.sti-bullets {
    list-style:none;
    padding:0;
    margin-top:18px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
}
.sti-bullets li {
    position:relative;
    padding-left:22px;
    color:#2f8d4a;
}
.sti-bullets li:before {
    content:'✔';
    position:absolute;
    left:0;
    top:0;
    color:#2f8d4a;
}

/* BUTTON */
.sti-btn {
    display: inline-block;
    padding: 10px 18px;
    background: transparent !important;   /* NO background always */
    color: #0b5ea8 !important;            /* Blue text */
    border: 2px solid #000 !important;    /* Black border */
    text-decoration: none;
    border-radius: 4px;
    margin-top: 12px;
    font-weight: 600;
    transition: 0.2s ease;
}

/* Hover state */
.sti-btn:hover {
    background: transparent !important;   /* Still no background */
    color: #0b5ea8 !important;            /* Still blue text */
    border-color: #000 !important;        /* Black border stays */
}


/* Responsive */
@media (max-width:900px) {
    .sti-cards { flex-wrap:wrap; }
    .sti-card { flex:1 1 45%; }
    .sti-content { flex-direction:column; }
}
@media (max-width:520px) {
    .sti-card { flex:1 1 100%; }
}
/* Hide arrows on mobile */
@media (max-width: 768px) {
    .sti-arrow {
        display: none !important;
    }
}
