.our-services-title-cracker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* controls distance between text and lines */
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 40px 0;
}

/* Left & Right Lines */
.our-services-title-cracker::before,
.our-services-title-cracker::after {
    content: "";
    flex: 0 0 80px;   /* line width (adjust here) */
    height: 3px;
    background: linear-gradient(to right, #ff0000, #ff6600);
}

/* Highlight word */
.our-services-title-cracker .highlight {
    color: #dc3545;
    position: relative;
}

/* Small blast effect */
.our-services-title-cracker .highlight::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, orange, red);
    border-radius: 50%;
    box-shadow: 0 0 8px orange, 0 0 12px red;
    animation: glow 1.5s infinite ease-in-out;
}

@keyframes glow {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}