.tb-svc-wrapper-97672225 {
    padding: 60px 20px;
    border-radius: 20px;
    font-family: sans-serif;
    overflow: hidden;
}

.tb-svc-wrapper-97672225 .tb-svc-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.tb-svc-wrapper-97672225 .tb-svc-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tb-svc-wrapper-97672225 .tb-svc-header-content {
    margin-bottom: 40px;
}

.tb-svc-wrapper-97672225 .tb-svc-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tb-svc-wrapper-97672225 .tb-svc-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.tb-svc-wrapper-97672225 .tb-svc-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: currentColor;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Grid Layout */
.tb-svc-wrapper-97672225 .tb-svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    perspective: 1000px;
}

/* Card Styles */
.tb-svc-wrapper-97672225 .tb-svc-card {
    position: relative;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    z-index: 1;
}

.tb-svc-wrapper-97672225 .tb-svc-card-inner {
    position: relative;
    z-index: 2;
    transform: translateZ(30px); /* 3D pop effect for inner content */
}

.tb-svc-wrapper-97672225 .tb-svc-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.tb-svc-wrapper-97672225 .tb-svc-icon svg {
    width: 1em;
    height: 1em;
}

.tb-svc-wrapper-97672225 .tb-svc-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* 3D Hover & Glow Effect */
.tb-svc-wrapper-97672225 .tb-svc-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    transform: translateZ(-10px);
}

.tb-svc-wrapper-97672225 .tb-3d-hover:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
}

.tb-svc-wrapper-97672225 .tb-3d-hover:hover .tb-svc-card-glow {
    opacity: 0.6;
}

/* Animations */
@keyframes tbFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tbPopIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.tb-svc-wrapper-97672225 .tb-fade-up {
    animation: tbFadeUp 0.8s ease forwards;
}

.tb-svc-wrapper-97672225 .tb-pop-in {
    opacity: 0;
    animation: tbPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Responsive */
@media (min-width: 768px) {
    .tb-svc-wrapper-97672225 .tb-svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .tb-svc-wrapper-97672225 .tb-svc-header-title {
        font-size: 3.2rem;
    }
    .tb-svc-wrapper-97672225 .tb-svc-desc {
        font-size: 1.2rem;
    }
    .tb-svc-wrapper-97672225 .tb-svc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}