/* ============================================
   EDURO HOME MODERN
   Scoped under .eduro-home — zero conflict with legacy styles
   Matches Alle-Jobs (list-modern) design language
   ============================================ */

/* ---- CSS Variables ---- */
.eduro-home {
    --eh-primary:        #DE6B3B;
    --eh-primary-dark:   #c45a2f;
    --eh-primary-light:  #e8855a;
    --eh-secondary:      #F2943C;
    --eh-gradient:       linear-gradient(135deg, #DE6B3B 0%, #F2943C 100%);
    --eh-gradient-dark:  linear-gradient(135deg, #c45a2f 0%, #DE6B3B 100%);
    --eh-gradient-soft:  linear-gradient(135deg, rgba(222,107,59,.10) 0%, rgba(242,148,60,.10) 100%);
    --eh-text-dark:      #1a1a2e;
    --eh-text-med:       #4a4a5a;
    --eh-text-light:     #6b6b7b;
    --eh-bg-light:       #f8f9fc;
    --eh-bg-white:       #ffffff;
    --eh-border:         #e5e7eb;
    --eh-border-light:   #f0f1f3;
    --eh-shadow-xs:      0 1px 3px rgba(0,0,0,.04);
    --eh-shadow-sm:      0 2px 8px rgba(0,0,0,.06);
    --eh-shadow-md:      0 4px 20px rgba(0,0,0,.08);
    --eh-shadow-lg:      0 8px 40px rgba(0,0,0,.12);
    --eh-shadow-xl:      0 12px 60px rgba(0,0,0,.16);
    --eh-r-sm:  8px;
    --eh-r-md:  12px;
    --eh-r-lg:  16px;
    --eh-r-xl:  24px;
    --eh-r-pill:50px;
    --eh-trans: 0.3s ease;
    --eh-trans-fast: 0.15s ease;
}

/* ---- Base reset inside wrapper ---- */
.eduro-home *, .eduro-home *::before, .eduro-home *::after {
    box-sizing: border-box;
}
.eduro-home {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--eh-text-dark);
    background: var(--eh-bg-light);
    line-height: 1.6;
}
.eduro-home a { text-decoration: none; }
.eduro-home ul { list-style: none; padding: 0; margin: 0; }
.eduro-home img { max-width: 100%; height: auto; display: block; }

/* ---- Container ---- */
.eh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* Section badge (pill label above heading) */
.eh-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--eh-primary);
    background: var(--eh-gradient-soft);
    border: 1px solid rgba(222,107,59,.2);
    padding: 5px 14px;
    border-radius: var(--eh-r-pill);
    margin-bottom: 12px;
}
.eh-badge--white {
    color: #fff;
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35);
}

/* Section heading */
.eh-heading {
    font-size: clamp(24px,3.5vw,38px);
    font-weight: 800;
    color: var(--eh-text-dark);
    line-height: 1.2;
    margin: 0 0 14px;
}
.eh-heading--white { color: #fff; }
.eh-subheading {
    font-size: 16px;
    color: var(--eh-text-med);
    line-height: 1.65;
    margin: 0;
}
.eh-subheading--white { color: rgba(255,255,255,.85); }

/* Buttons */
.eh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--eh-r-pill);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--eh-trans);
    white-space: nowrap;
}
.eh-btn--primary {
    background: #fff;
    color: var(--eh-primary);
    box-shadow: var(--eh-shadow-sm);
}
.eh-btn--primary:hover {
    background: var(--eh-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--eh-shadow-md);
}
.eh-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.eh-btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}
.eh-btn--gradient {
    background: var(--eh-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(222,107,59,.35);
}
.eh-btn--gradient:hover {
    background: var(--eh-gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(222,107,59,.50);
    color: #fff;
}
.eh-btn--ghost {
    background: transparent;
    color: var(--eh-primary);
    border-color: var(--eh-primary);
}
.eh-btn--ghost:hover {
    background: var(--eh-gradient-soft);
    transform: translateY(-2px);
    color: var(--eh-primary);
}
.eh-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

/* Section wrapper */
.eh-section {
    padding: 80px 0;
}
.eh-section--white { background: var(--eh-bg-white); }
.eh-section--light { background: var(--eh-bg-light); }
.eh-section--gradient { background: var(--eh-gradient); }

/* Section intro block */
.eh-intro { margin-bottom: 44px; }
.eh-intro--center { text-align: center; }

/* ============================================
   HERO
   ============================================ */
.eh-hero {
    position: relative;
    padding: 80px 0 0;
    background: var(--eh-gradient);
    overflow: hidden;
}
.eh-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.eh-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    animation: ehFloat 22s ease-in-out infinite;
}
.eh-hero__shape--1 { width: 560px; height: 560px; top:-220px; right:-140px; animation-delay:0s; }
.eh-hero__shape--2 { width: 320px; height: 320px; bottom:-120px; left: 8%; animation-delay:-8s; animation-direction:reverse; }
.eh-hero__shape--3 { width: 200px; height: 200px; top: 40%; left: 40%; animation-delay:-14s; background:rgba(255,255,255,.04); }
@keyframes ehFloat {
    0%,100%{ transform:translate(0,0) rotate(0deg); }
    33%    { transform:translate(28px,-28px) rotate(120deg); }
    66%    { transform:translate(-18px,18px) rotate(240deg); }
}

.eh-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 32px;
    align-items: flex-end;
}
.eh-hero__content {
    max-width: 660px;
    padding-bottom: 80px;
}

.eh-hero__title {
    font-size: clamp(32px,4.8vw,58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 20px;
}
.eh-hero__list {
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.eh-hero__list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: rgba(255,255,255,.80);
    line-height: 1.45;
    padding: 9px 14px 9px 12px;
    background: rgba(255,255,255,.10);
    border-radius: 10px;
    border-left: 3px solid rgba(255,255,255,.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.eh-hero__list li::before {
    display: none;
}
.eh-hero__list li strong {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1px;
}

/* ---- Image column ---- */
.eh-hero__img-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* pop-out: image overflows hero bottom */
    margin-bottom: -1px;
}

/* large glowing circle behind the person */
.eh-hero__img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,.06) 55%, transparent 75%);
    z-index: 0;
}

/* subtle ring */
.eh-hero__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.18);
    z-index: 0;
    animation: ehPulse 3.5s ease-in-out infinite;
}
@keyframes ehPulse {
    0%,100% { transform: translateX(-50%) scale(1);   opacity: .6; }
    50%      { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

.eh-hero__img {
    position: relative;
    z-index: 1;
    height: 520px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,.28));
    display: block;
}

/* floating stats pill — bottom-left of image */
.eh-hero__stat {
    position: absolute;
    bottom: 48px;
    left: -16px;
    z-index: 3;
    background: #fff;
    border-radius: 50px;
    padding: 10px 18px 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    animation: ehBobble 4s ease-in-out infinite;
}
@keyframes ehBobble {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.eh-hero__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--eh-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.eh-hero__stat-icon i {
    font-size: 16px;
    color: #fff;
}
.eh-hero__stat-text {
    line-height: 1.2;
}
.eh-hero__stat-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--eh-text-dark);
    display: block;
}
.eh-hero__stat-label {
    font-size: 11px;
    color: var(--eh-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
}

/* ============================================
   BRAND STRIP
   ============================================ */
.eh-brands {
    padding: 56px 0 60px;
    background: linear-gradient(135deg, #fdf6f2 0%, #fff8f4 50%, #fdf6f2 100%);
    position: relative;
    overflow: hidden;
}

/* subtle background accent lines */
.eh-brands::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--eh-gradient);
    opacity: .35;
}

.eh-brands__title {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--eh-primary);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.eh-brands__title::before,
.eh-brands__title::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--eh-primary);
    opacity: .35;
}

/* owl carousel wrapper */
.eh-brands .owl-carousel .single-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

/* each logo in a frosted card */
.eh-brands .owl-carousel .single-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(222,107,59,.12);
    border-radius: 14px;
    padding: 16px 28px;
    width: 100%;
    min-height: 88px;
    box-shadow: 0 2px 12px rgba(222,107,59,.07);
    transition: all var(--eh-trans);
}
.eh-brands .owl-carousel .single-brand a:hover {
    border-color: var(--eh-primary-light);
    box-shadow: 0 6px 24px rgba(222,107,59,.16);
    transform: translateY(-3px);
}

/* logo image — full color, good size */
.eh-brands .owl-carousel .single-brand img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%) opacity(.85);
    transition: filter var(--eh-trans), transform var(--eh-trans);
}
.eh-brands .owl-carousel .single-brand a:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

/* fallback for non-carousel layout */
.eh-brands__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
}
.eh-brands__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(222,107,59,.12);
    border-radius: 14px;
    padding: 16px 28px;
    min-height: 88px;
    box-shadow: 0 2px 12px rgba(222,107,59,.07);
    transition: all var(--eh-trans);
}
.eh-brands__logo a:hover {
    border-color: var(--eh-primary-light);
    box-shadow: 0 6px 24px rgba(222,107,59,.16);
    transform: translateY(-3px);
}
.eh-brands__logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(20%) opacity(.85);
    transition: filter var(--eh-trans);
}
.eh-brands__logo a:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ============================================
   JOB INFO (text block)
   ============================================ */
.eh-jobinfo {
    padding: 72px 0;
    background: var(--eh-bg-light);
    text-align: center;
}
.eh-jobinfo__title {
    font-size: clamp(22px,3.5vw,36px);
    font-weight: 800;
    color: var(--eh-text-dark);
    line-height: 1.2;
    margin: 0 0 14px;
}
.eh-jobinfo__text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--eh-text-med);
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================
   REGISTER BANNER
   ============================================ */
.eh-banner {
    position: relative;
    padding: 72px 0;
    background: var(--eh-gradient);
    overflow: hidden;
}
.eh-banner::before {
    content:'';
    position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events:none;
}
.eh-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}
.eh-banner__img {
    max-height: 340px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.20));
}
.eh-banner__content {}
.eh-banner__title {
    font-size: clamp(26px,3.5vw,44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}
.eh-banner__text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.85);
    margin: 0 0 24px;
}

/* ============================================
   CATEGORY SLIDER
   ============================================ */
.eh-cats {
    padding: 80px 0;
    background: var(--eh-bg-light);
}

/* Card — full overlay design */
.eh-cats .owl-carousel .catagory-content {
    margin: 8px;
    position: relative;
    height: 280px;
    border-radius: var(--eh-r-xl);
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: var(--eh-shadow-md);
    transition: transform var(--eh-trans), box-shadow var(--eh-trans);
    background: var(--eh-text-dark);
}
.eh-cats .owl-carousel .catagory-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--eh-shadow-xl);
}

/* Image fills the whole card, show face at top */
.eh-cats .owl-carousel .catagory-content > img,
.eh-cats .owl-carousel .catagory-content img:first-child {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}
.eh-cats .owl-carousel .catagory-content:hover > img,
.eh-cats .owl-carousel .catagory-content:hover img:first-child {
    transform: scale(1.06);
}

/* Gradient overlay — fades from transparent top to dark bottom */
.eh-cats .owl-carousel .catagory-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.72) 100%
    );
    z-index: 1;
    transition: background var(--eh-trans);
}
.eh-cats .owl-carousel .catagory-content:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 20%,
        rgba(222,107,59,0.35) 55%,
        rgba(0,0,0,0.80) 100%
    );
}

/* Text sits over the gradient at the bottom */
.eh-cats .catagory-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 22px;
    background: transparent;
    z-index: 2;
}
.eh-cats .catagory-text h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.80);
    margin: 0 0 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.eh-cats .catagory-text h2 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    gap: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Arrow icon in circle */
.eh-cats .catagory-text h2 svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    padding: 7px;
    transition: all var(--eh-trans);
}
.eh-cats .owl-carousel .catagory-content:hover .catagory-text h2 svg {
    background: var(--eh-primary);
    border-color: var(--eh-primary);
    transform: translateX(4px);
}
.eh-cats .catagory-text h2 svg path { fill: #ffffff; }

/* ============================================
   SERVICE / VIDEO
   ============================================ */
.eh-service {
    padding: 80px 0;
    background: var(--eh-bg-light);
}
.eh-service__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.eh-service__media {
    position: relative;
    border-radius: var(--eh-r-xl);
    overflow: hidden;
    box-shadow: var(--eh-shadow-xl);
}
.eh-service__media img { width: 100%; display: block; }
.eh-service__play {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    transition: transform var(--eh-trans);
}
.eh-service__play:hover { transform: scale(1.15); }
.eh-service__play img { width: 100%; }
.eh-service__body {}
.eh-service__list {
    margin: 0 0 28px;
}
.eh-service__list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--eh-text-med);
    line-height: 1.5;
}
.eh-service__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--eh-gradient-soft);
    border: 1px solid rgba(222,107,59,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.eh-service__icon i { color: var(--eh-primary); font-size: 11px; }

/* ============================================
   DECISION (2 cards)
   ============================================ */
.eh-decision {
    padding: 80px 0;
    background: var(--eh-bg-white);
}
.eh-decision__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 44px;
}
.eh-decision__or {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 0 8px;
}
.eh-decision__or-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--eh-border), transparent);
}
.eh-decision__or-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--eh-text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.eh-decision__card {
    background: var(--eh-bg-white);
    border: 1.5px solid var(--eh-border);
    border-radius: var(--eh-r-xl);
    overflow: hidden;
    box-shadow: var(--eh-shadow-sm);
    transition: all var(--eh-trans);
}
.eh-decision__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--eh-shadow-lg);
}
.eh-decision__card--accent {
    border-color: var(--eh-primary);
    box-shadow: 0 4px 24px rgba(222,107,59,.14);
}
.eh-decision__card--accent:hover {
    box-shadow: 0 8px 40px rgba(222,107,59,.22);
}
.eh-decision__thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.eh-decision__body {
    padding: 26px 28px;
}
.eh-decision__card-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--eh-text-dark);
    margin: 0 0 16px;
}
.eh-decision__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--eh-text-med);
    padding: 5px 0;
    line-height: 1.5;
}
.eh-decision__list li i {
    color: var(--eh-primary);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}
.eh-decision__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

/* ============================================
   STEPS (4 icons)
   ============================================ */
.eh-steps {
    padding: 80px 0;
    background: var(--eh-bg-light);
}
.eh-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.eh-step {
    background: var(--eh-bg-white);
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-r-xl);
    padding: 34px 22px 28px;
    text-align: center;
    box-shadow: var(--eh-shadow-xs);
    transition: all var(--eh-trans);
    position: relative;
}
.eh-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--eh-shadow-md);
    border-color: var(--eh-primary-light);
}
.eh-step__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--eh-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(222,107,59,.35);
}
.eh-step__icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin: 0 auto 18px;
}
.eh-step__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--eh-text-dark);
    margin: 0 0 8px;
}
.eh-step__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--eh-text-med);
    margin: 0;
}
.eh-steps__cta {
    text-align: center;
    margin-top: 44px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.eh-testimonials {
    padding: 80px 0;
    background: var(--eh-bg-white);
}
.eh-testimonials .test-active {
    padding-bottom: 12px;
}
.eh-testimonials .owl-carousel .single-test {
    padding: 8px;
}
.eh-testi-card {
    background: var(--eh-bg-white);
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-r-xl);
    padding: 28px;
    box-shadow: var(--eh-shadow-sm);
    transition: all var(--eh-trans);
    position: relative;
}
.eh-testi-card:hover {
    box-shadow: var(--eh-shadow-md);
    border-color: rgba(222,107,59,.25);
}
.eh-testi-quote {
    font-size: 52px;
    line-height: 1;
    color: var(--eh-primary);
    opacity: .25;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.eh-testi-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--eh-text-med);
    margin: 0 0 20px;
}
.eh-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eh-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(222,107,59,.3);
    flex-shrink: 0;
}
.eh-testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--eh-text-dark);
    margin: 0 0 2px;
}
.eh-testi-role {
    font-size: 12px;
    color: var(--eh-primary);
    font-weight: 600;
}

/* ---- Testimonial Owl nav — move arrows BELOW carousel, never over content ---- */
.eduro-home .test-active {
    padding-bottom: 0;
}
/* Extra bottom space so nav sits below cards */
.eduro-home .test-active.owl-carousel {
    padding-bottom: 72px;
}
/* Nav container: centered row below cards */
.eduro-home .test-active .owl-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
}
/* Override absolute side-positioning from style.css */
.eduro-home .test-active .owl-nav .owl-prev,
.eduro-home .test-active .owl-nav .owl-next {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}
/* Button styling — Eduro orange */
.eduro-home .test-active .owl-nav button i,
.eduro-home .test-active .owl-nav button span {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    background: var(--eh-bg-white) !important;
    color: var(--eh-primary) !important;
    border: 1.5px solid rgba(222,107,59,.3) !important;
    box-shadow: 0 2px 10px rgba(222,107,59,.12) !important;
    transition: all var(--eh-trans) !important;
}
.eduro-home .test-active .owl-prev i,
.eduro-home .test-active .owl-prev span {
    background: var(--eh-bg-white) !important;
    color: var(--eh-primary) !important;
}
.eduro-home .test-active .owl-nav button:hover i,
.eduro-home .test-active .owl-nav button:hover span {
    background: var(--eh-primary) !important;
    color: #fff !important;
    border-color: var(--eh-primary) !important;
    transform: scale(1.08) !important;
}

/* ============================================
   FEEDBACK BANNER (full-width image + overlay)
   ============================================ */
.eh-feedback {
    position: relative;
    padding: 88px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.eh-feedback::before {
    content:'';
    position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(222,107,59,.88) 0%, rgba(26,26,46,.78) 100%);
    z-index:0;
}
.eh-feedback__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.eh-feedback__title {
    font-size: clamp(28px,4.5vw,50px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
}
.eh-feedback__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURED JOBS
   ============================================ */
.eh-jobs {
    padding: 80px 0;
    background: var(--eh-bg-light);
}
/* Modern job card grid — equal heights, 3 cols */
.eh-jobs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.eh-jobs__grid .eduro-jobs__card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.eh-jobs__grid .eduro-jobs__card-link {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.eh-jobs__grid .eduro-jobs__card-content {
    flex: 1;
}
@media (max-width: 1100px) {
    .eh-jobs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .eh-jobs__grid { grid-template-columns: 1fr; gap: 16px; }
}

.eh-jobs__cta {
    text-align: center;
    margin-top: 44px;
}
.eh-jobs__cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--eh-gradient);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--eh-r-pill);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(222,107,59,.35);
    transition: all var(--eh-trans);
}
.eh-jobs__cta a:hover {
    background: var(--eh-gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(222,107,59,.50);
}

/* ============================================
   FAQ
   ============================================ */
.eh-faq {
    padding: 80px 0;
    background: var(--eh-bg-white);
}
.eh-faq__list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.eh-faq__item {
    background: var(--eh-bg-white);
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-r-md);
    overflow: hidden;
    box-shadow: var(--eh-shadow-xs);
    transition: box-shadow var(--eh-trans);
}
.eh-faq__item:hover { box-shadow: var(--eh-shadow-sm); }
.eh-faq__item .accordion-button {
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--eh-text-dark);
    background: var(--eh-bg-white);
    padding: 18px 24px;
    border-radius: var(--eh-r-md);
    box-shadow: none;
}
.eh-faq__item .accordion-button:not(.collapsed) {
    color: var(--eh-primary);
    background: var(--eh-gradient-soft);
    box-shadow: none;
}
.eh-faq__item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DE6B3B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.eh-faq__item .accordion-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--eh-text-med);
    padding: 16px 24px 22px;
    background: var(--eh-bg-white);
    font-family: inherit;
}

/* Owl carousel nav dots */
.eduro-home .owl-dot span {
    background: var(--eh-border) !important;
    width: 8px !important; height: 8px !important;
    border-radius: 50% !important;
    transition: all var(--eh-trans) !important;
}
.eduro-home .owl-dot.active span {
    background: var(--eh-primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .eh-decision__grid {
        grid-template-columns: 1fr;
    }
    .eh-decision__or {
        flex-direction: row;
        padding: 8px 0;
    }
    .eh-decision__or-line {
        width: 60px; height: 2px;
        background: linear-gradient(to right, transparent, var(--eh-border), transparent);
    }
    .eh-decision__or-text {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .eh-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1100px) {
    .eh-hero__inner { grid-template-columns: 1fr 380px; }
    .eh-hero__img { height: 440px; }
    .eh-hero__img-wrap::before { width: 340px; height: 340px; }
    .eh-hero__img-wrap::after  { width: 280px; height: 280px; }
}
@media (max-width: 900px) {
    .eh-hero {
        padding: 72px 0 0;
    }
    .eh-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    .eh-hero__content {
        padding-bottom: 48px;
    }
    /* On tablet: image visible but smaller, as a strip at bottom */
    .eh-hero__img-wrap {
        justify-content: center;
        margin: 0 auto;
        max-width: 340px;
    }
    .eh-hero__img { height: 320px; }
    .eh-hero__img-wrap::before { width: 280px; height: 280px; }
    .eh-hero__img-wrap::after  { display: none; }
    .eh-hero__stat { left: 0; bottom: 32px; }
    .eh-btn-group { justify-content: center; }
    .eh-hero__list { text-align: left; max-width: 480px; margin: 0 auto; }
    .eh-hero__list li { padding: 9px 14px 9px 12px; font-size: 15px; }
    .eh-hero__list li strong { font-size: 15px; }
    .eh-service__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .eh-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .eh-banner__img { margin: 0 auto; max-height: 220px; }
}
@media (max-width: 640px) {
    .eh-section, .eh-brands, .eh-jobinfo,
    .eh-banner, .eh-cats, .eh-service, .eh-decision,
    .eh-steps, .eh-testimonials, .eh-feedback, .eh-jobs, .eh-faq {
        padding: 56px 0;
    }
    .eh-steps__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .eh-btn { font-size: 14px; padding: 12px 22px; }
    .eh-btn-group { flex-direction: column; align-items: stretch; }
    .eh-btn-group .eh-btn { width: 100%; justify-content: center; }
    .eh-hero { padding: 52px 0 0; }
    .eh-hero__title { font-size: 28px; }
    .eh-hero__img { height: 260px; }
    .eh-hero__img-wrap { max-width: 260px; }
    .eh-hero__img-wrap::before { width: 220px; height: 220px; }
    .eh-hero__stat { left: -8px; bottom: 24px; padding: 8px 14px 8px 10px; }
    .eh-hero__stat-num { font-size: 15px; }
    .eh-decision__actions { flex-direction: column; }
    .eh-decision__actions .eh-btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
    .eh-steps__grid { grid-template-columns: 1fr; }
    .eh-container { padding: 0 16px; }
    .eh-hero__img-wrap { max-width: 220px; }
    .eh-hero__img { height: 210px; }
    .eh-hero__stat { display: none; }
}

/* ============================================
   MOBILE REFINEMENTS — extended breakpoints
   ============================================ */

/* Smooth scrolling + better tap highlight */
.eduro-home {
    -webkit-tap-highlight-color: rgba(222,107,59,.15);
    scroll-behavior: smooth;
}

/* ---- Fix iOS fixed background (not supported on iOS) ---- */
@supports (-webkit-overflow-scrolling: touch) {
    .eh-feedback {
        background-attachment: scroll;
    }
}
@media (max-width: 900px) {
    .eh-feedback { background-attachment: scroll; }
}

/* ---- 768px: refined tablet tweaks ---- */
@media (max-width: 768px) {
    /* Hero */
    .eh-hero { padding: 60px 0 0; }
    .eh-hero__title { font-size: clamp(26px,7vw,40px); }
    .eh-hero__list li { font-size: 15px; }

    /* Sections: tighten padding on mid-tablet */
    .eh-jobinfo,
    .eh-service,
    .eh-decision,
    .eh-steps,
    .eh-jobs,
    .eh-faq { padding: 64px 0; }
    .eh-banner { padding: 56px 0; }
    .eh-testimonials { padding: 64px 0; }
    .eh-feedback { padding: 72px 0; }

    /* Brands */
    .eh-brands { padding: 40px 0 44px; }
    .eh-brands__title { font-size: 11px; gap: 10px; margin-bottom: 28px; }
    .eh-brands .owl-carousel .single-brand a { min-height: 72px; padding: 12px 20px; }
    .eh-brands .owl-carousel .single-brand img { max-height: 48px; }

    /* Service media order on tablet: media above text */
    .eh-service__grid { grid-template-columns: 1fr; gap: 36px; }

    /* Decision cards */
    .eh-decision__card-title { font-size: 17px; }

    /* Steps */
    .eh-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Jobs grid → 2 col */
    .eh-jobs__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* FAQ */
    .eh-faq__item .accordion-button { font-size: 14px; padding: 15px 20px; }
    .eh-faq__item .accordion-body { padding: 14px 20px 20px; }
}

/* ---- 640px: smartphone portrait ---- */
@media (max-width: 640px) {
    /* Container */
    .eh-container { padding: 0 18px; }

    /* Hero — centre everything, bigger touch targets */
    .eh-hero { padding: 44px 0 0; }
    .eh-hero__content { padding-bottom: 36px; }
    .eh-hero__title { font-size: clamp(24px,8vw,34px); line-height: 1.15; margin-bottom: 16px; }
    .eh-hero__list { gap: 6px; }
    .eh-hero__list li { font-size: 13px; padding: 8px 12px 8px 10px; border-radius: 8px; }
    .eh-hero__list li strong { font-size: 13px; }

    /* Floating stat pill on small screens: always visible, repositioned */
    .eh-hero__stat {
        position: static;
        display: inline-flex;
        margin: 0 auto 20px;
        animation: none;
        box-shadow: 0 4px 16px rgba(0,0,0,.14);
    }

    /* Buttons: full width, proper touch target (min 48px) */
    .eh-btn { padding: 14px 24px; min-height: 48px; font-size: 15px; }
    .eh-btn-group { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 20px; }
    .eh-btn-group .eh-btn { width: 100%; justify-content: center; }

    /* Intro sections */
    .eh-intro { margin-bottom: 28px; }
    .eh-heading { font-size: clamp(22px,6vw,30px); margin-bottom: 10px; }

    /* Sections: aggressive padding reduction for viewport */
    .eh-brands { padding: 36px 0 40px; }
    .eh-jobinfo { padding: 48px 0; }
    .eh-banner { padding: 44px 0; }
    .eh-service { padding: 48px 0; }
    .eh-decision { padding: 48px 0; }
    .eh-steps { padding: 48px 0; }
    .eh-testimonials { padding: 48px 0; }
    .eh-feedback { padding: 56px 0; }
    .eh-jobs { padding: 48px 0; }
    .eh-faq { padding: 48px 0; }

    /* Jobinfo */
    .eh-jobinfo__title { font-size: clamp(20px,6vw,26px); }
    .eh-jobinfo__text { font-size: 15px; }

    /* Banner */
    .eh-banner__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .eh-banner__title { font-size: clamp(22px,6vw,30px); }
    .eh-banner__text { font-size: 15px; }
    .eh-banner__img { max-height: 180px; margin: 0 auto; }

    /* Service */
    .eh-service__grid { gap: 28px; }
    .eh-service__list li { font-size: 14px; gap: 10px; }

    /* Decision cards — stacked, no side-by-side OR divider */
    .eh-decision__grid { gap: 16px; }
    .eh-decision__or { flex-direction: row; padding: 4px 0; }
    .eh-decision__or-line { width: 40px; height: 2px; background: linear-gradient(to right, transparent, var(--eh-border), transparent); }
    .eh-decision__or-text { writing-mode: horizontal-tb; transform: none; }
    .eh-decision__thumb { height: 160px; }
    .eh-decision__body { padding: 20px 20px; }
    .eh-decision__card-title { font-size: 16px; margin-bottom: 12px; }
    .eh-decision__actions { flex-direction: column; gap: 8px; margin-top: 16px; }
    .eh-decision__actions .eh-btn { width: 100%; justify-content: center; }

    /* Steps: 2 cols on phone, 1 col on tiny */
    .eh-steps__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .eh-step { padding: 22px 16px; }
    .eh-step__number { font-size: 36px; }
    .eh-step__title { font-size: 14px; }
    .eh-step__text { font-size: 13px; }
    .eh-steps__cta { margin-top: 28px; }

    /* Testimonials */
    .eh-testi-card { padding: 26px 22px; }
    .eh-testi-quote { font-size: 56px; }
    .eh-testi-text { font-size: 14px; }

    /* Feedback */
    .eh-feedback { padding: 52px 0; }
    .eh-feedback__title { font-size: clamp(22px,7vw,32px); }
    .eh-feedback__subtitle { font-size: 15px; }

    /* Jobs */
    .eh-jobs__grid { grid-template-columns: 1fr; gap: 14px; }
    .eh-jobs__cta { margin-top: 28px; }
    .eh-jobs__cta a { padding: 13px 28px; font-size: 14px; }

    /* FAQ */
    .eh-faq__list { margin-top: 24px; gap: 8px; }
    .eh-faq__item .accordion-button { font-size: 14px; padding: 14px 18px; }
    .eh-faq__item .accordion-body { padding: 12px 18px 18px; font-size: 13px; }
}

/* ---- 420px / tiny phones ---- */
@media (max-width: 420px) {
    .eh-container { padding: 0 14px; }
    .eh-hero { padding: 36px 0 0; }
    .eh-hero__title { font-size: 22px; }
    .eh-hero__img { height: 200px; }
    .eh-hero__img-wrap { max-width: 200px; }
    .eh-hero__img-wrap::before { width: 180px; height: 180px; }
    .eh-heading { font-size: 21px; }
    .eh-steps__grid { grid-template-columns: 1fr; gap: 10px; }
    .eh-step { padding: 18px 14px; }
    /* Brands: tighter */
    .eh-brands .owl-carousel .single-brand a { min-height: 60px; padding: 10px 16px; }
    /* Decision cards */
    .eh-decision__body { padding: 16px; }
}

/* ---- prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
    .eh-hero__shape,
    .eh-hero__img-wrap::after { animation: none; }
    .eh-hero__stat { animation: none; }
    .eh-btn { transition: background .1s ease, color .1s ease; }
}
