.elementor-widget-randtech_explore_services,
.elementor-widget-randtech_explore_services > .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
}

.rtech-es {
    --rtech-es-bg: #f7f9fc;
    --rtech-es-card: #fff;
    --rtech-es-border: #dfe4eb;
    --rtech-es-heading: #071a3b;
    --rtech-es-text: #48566b;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
    padding: 76px 24px 82px;
    background: var(--rtech-es-bg);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.rtech-es *,
.rtech-es *::before,
.rtech-es *::after {
    box-sizing: border-box;
}

.rtech-es__inner {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
}

.rtech-es__header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.rtech-es__heading {
    margin: 0;
    color: var(--rtech-es-heading);
    font-size: clamp(34px, 3.2vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.rtech-es__subheading {
    margin: 12px 0 0;
    color: var(--rtech-es-text);
    font-size: 17px;
    line-height: 1.55;
}

.rtech-es__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rtech-es__card {
    --rtech-es-accent: #1768f2;
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 25px;
    border: 1px solid var(--rtech-es-border);
    border-radius: 12px;
    background: var(--rtech-es-card);
    box-shadow: 0 2px 8px rgba(7, 26, 59, .025);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.rtech-es__card:hover {
    z-index: 2;
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--rtech-es-accent), #fff 48%);
    box-shadow: 0 18px 40px rgba(7, 26, 59, .11);
}

.rtech-es__card-link {
    position: absolute;
    z-index: 4;
    inset: 0;
    border-radius: inherit;
}

.rtech-es__card-link:focus-visible {
    outline: 3px solid var(--rtech-es-accent);
    outline-offset: 3px;
}

.rtech-es__icon {
    flex: 0 0 auto;
    display: block;
    width: 74px;
    height: 74px;
    margin: 0 0 16px;
    object-fit: contain;
    object-position: left center;
}

.rtech-es__card-title {
    max-width: 250px;
    margin: 0;
    color: var(--rtech-es-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.rtech-es__description {
    margin: 11px 0 25px;
    color: var(--rtech-es-text);
    font-size: 14px;
    line-height: 1.55;
}

.rtech-es__arrow {
    margin-top: auto;
    margin-left: auto;
    color: var(--rtech-es-accent);
    font-size: 28px;
    font-weight: 500;
    line-height: .8;
    transition: transform .22s ease;
}

.rtech-es__card:hover .rtech-es__arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .rtech-es {
        padding: 64px 24px 70px;
    }

    .rtech-es__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .rtech-es {
        padding: 50px 18px 54px;
    }

    .rtech-es__header {
        margin-bottom: 26px;
    }

    .rtech-es__heading {
        font-size: 34px;
    }

    .rtech-es__subheading {
        font-size: 15px;
    }

    .rtech-es__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rtech-es__card {
        min-height: 255px;
        padding: 23px 23px 22px;
    }

    .rtech-es__card-title {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rtech-es__card,
    .rtech-es__arrow {
        transition: none;
    }
}

