/* Methodology section connectors */
.icon-number {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 2px;
    background: rgba(230, 126, 34, 0.2);
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: -30px;
}

/* Letter spacing utility */
.ls-xl {
    letter-spacing: 0.1rem;
}

/* Image blob used in "Why LeaderHire" */
.img-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile fix for methodology connector */
@media (max-width: 991px) {
    .vertical-line {
        display: none;
    }
}

/* Moves the header down and pushes all subsequent content accordingly */
header.wrapper {
    padding-top: 30px !important; /* Adjust this value (e.g., 40px or 50px) to your liking */
}