.px-new {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}

.service-categories-bar {
    padding: 2.25rem 0;
}

.service-categories-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.service-category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    min-width: 140px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.service-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-bottom: 0.75rem;
}

.service-category-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-category-label {
    color: #fff;
    font-family: "Lexend", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .service-category-item {
        flex: 1 1 33.333%;
    }
}

@media (min-width: 992px) {
    .service-category-item {
        flex: 1 1 16.666%;
    }

    .service-category-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.35);
    }
}

/* Mission & Vision Cards */
.mission-vision-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.letter-spacing-1 {
    letter-spacing: 0.12em;
}

.mv-card {
    position: relative;
    height: 100%;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 33, 36, 0.25);
}

.mv-card-icon-mission {
    background: var(--primary);
}

.mv-card-icon-vision {
    background: #1a1a2e;
}

.mv-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mv-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.mv-card-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    background: rgba(233, 33, 36, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.65rem;
}

@media (max-width: 991px) {
    .mv-card {
        padding: 2rem 1.5rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(180deg, #fff 0%, #f4f5f7 50%, #fff 100%);
}

.how-steps-wrapper {
    position: relative;
}

.how-steps-line {
    display: none;
}

.how-step-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.75rem 1.75rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.how-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.how-step-card-final {
    border-color: rgba(233, 33, 36, 0.15);
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
}

.how-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    padding: 0 0.75rem;
    background: var(--primary);
    border-radius: 20px;
    color: #fff;
    font-family: "Lexend", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(233, 33, 36, 0.35);
}

.how-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0.75rem 0 1.25rem;
    background: rgba(233, 33, 36, 0.08);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.how-step-card:hover .how-step-icon {
    background: var(--primary);
    color: #fff;
}

.how-step-icon-dark {
    background: rgba(26, 26, 46, 0.08);
    color: #1a1a2e;
}

.how-step-card-final:hover .how-step-icon-dark {
    background: #1a1a2e;
    color: #fff;
}

.how-step-title {
    font-family: "Lexend", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.how-step-text {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .how-steps-wrapper {
        padding-top: 1rem;
    }

    .how-step-card {
        padding-top: 2.25rem;
    }
}

@media (max-width: 767px) {
    .how-step-card {
        padding: 2rem 1.25rem 1.5rem;
    }
}