  /* ── Section ── */
  .home-our-services {
    background-color: #f2f3f5;
    padding: 86px 0 76px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
  }

  /* ── Header ── */
  .home-our-services .home-our-services__header {
    text-align: center;
    margin-bottom: 52px;
    padding: 0 20px;
  }

  .home-our-services .home-our-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-our-services .home-our-services__eyebrow-bar {
    width: 4px;
    height: 18px;
    background-color: #dd6402;
    display: inline-block;
    border-radius: 2px;
  }

  .home-our-services .home-our-services__eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dd6402;
    margin: 0;
  }

  .home-our-services .home-our-services__heading {
    font-size: 46px;
    font-weight: 800;
    color: #0d2d3a;
    line-height: 1.18;
    margin: 0;
  }

  /* ── Owl ── */
  .home-our-services #ourServicesOwl {
    overflow: hidden;
  }

  .home-our-services #ourServicesOwl .owl-stage-outer {
    overflow: hidden;
  }

  /* ── Slide ── */
  .home-our-services .home-our-services__slide {
    position: relative;
    height: 520px;           /* bigger since only 3 items show */
    overflow: hidden;
    cursor: pointer;
  }

  /* Background image */
  .home-our-services .home-our-services__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .home-our-services .home-our-services__slide:hover .home-our-services__bg {
    transform: scale(1.05);
  }

  /* Gradient — subtle, darkens bottom third only */
  .home-our-services .home-our-services__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10, 28, 40, 0.00) 40%,
      rgba(10, 28, 40, 0.68) 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
  }

  .home-our-services .home-our-services__slide:hover::before {
    background: linear-gradient(
      to bottom,
      rgba(10, 28, 40, 0.04) 20%,
      rgba(10, 28, 40, 0.78) 100%
    );
  }

  /* ── Bottom label: number block | service name ── */
  .home-our-services .home-our-services__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: stretch;
  }

  /* Number block */
  .home-our-services .home-our-services__num {
    flex-shrink: 0;
    width: 72px;
    background-color: #dd6402;       /* deep terracotta */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, width 0.3s ease;
  }

  .home-our-services .home-our-services__slide:hover .home-our-services__num {
    background-color: #b95505;       /* darker on hover */
  }

  /* Name bar */
  .home-our-services .home-our-services__name {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0 26px;
    height: 68px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    color: #0d2d3a;
    letter-spacing: 0.2px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  /* Arrow — slides in on hover */
  .home-our-services .home-our-services__name i {
    margin-left: auto;
    font-size: 13px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #dd6402;
  }

  .home-our-services .home-our-services__slide:hover .home-our-services__name {
    background-color: #ffffff;
    color: #dd6402;
  }

  .home-our-services .home-our-services__slide:hover .home-our-services__name i {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── Nav ── */
  .home-our-services .home-our-services__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
  }

  .home-our-services .home-our-services__nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #0d2d3a;
    border-radius: 50%;
    background: transparent;
    color: #0d2d3a;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }

  .home-our-services .home-our-services__nav-btn:hover {
    background: #dd6402;
    border-color: #dd6402;
    color: #fff;
  }

  /* ── Responsive ── */
  @media (max-width: 1199px) {
    .home-our-services .home-our-services__heading { font-size: 38px; }
    .home-our-services .home-our-services__slide   { height: 440px; }
  }

  @media (max-width: 991px) {
    .home-our-services .home-our-services__slide   { height: 380px; }
  }

  @media (max-width: 767px) {
    .home-our-services { padding: 50px 0; }
    .home-our-services .home-our-services__heading { font-size: 28px; }
    .home-our-services .home-our-services__slide   { height: 300px; }
    .home-our-services .home-our-services__num     { width: 60px; font-size: 16px; }
    .home-our-services .home-our-services__name    { height: 60px; font-size: 15px; }
  }
