section[data-module="business-home"] {
    position: relative;
    width: 100%;
}

section[data-module="business-home"] .business-home-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #000;
    font-family: "Poppins", "Inter", Arial, sans-serif;
}

/* Background Images */
section[data-module="business-home"] .business-home-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.65s ease;
    z-index: 1;
}

section[data-module="business-home"] .business-home-bg.active {
    opacity: 1;
}

section[data-module="business-home"] .business-home-bg[data-bg="integrated"] {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/CAB-business-bannerbg-01s.jpg");
}

section[data-module="business-home"] .business-home-bg[data-bg="retail"] {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/CAB-business-bannerbg-02s.jpg");
}

section[data-module="business-home"] .business-home-bg[data-bg="fastfood"] {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/CAB-business-bannerbg-03s.jpg");
}

section[data-module="business-home"] .business-home-bg[data-bg="feedmills"] {
    background-image: url("https://cab.stagings.entertopwp.com/wp-content/uploads/2026/06/CAB-business-bannerbg-04s.jpg");
}

/* Right Red Overlay */
section[data-module="business-home"] .business-home-overlay {
      position: absolute;
	  top: 0;
	  right: 0;
	  width: 68%;
	  height: 100%;
	  background: linear-gradient(
    90deg,
    rgba(140, 3, 4, 0) 0%,
    rgba(140, 3, 4, 0.3) 40%,
    rgba(140, 3, 4, 0.4) 60%,
    rgba(140, 3, 4, 0.5) 100%
);
	  z-index: 2;
      pointer-events: none;
}

/* Right Content Area */
section[data-module="business-home"] .business-home-right-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 47.3%;
    height: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(340px, 395px) 315px;
    column-gap: 36px;
    align-items: center;
    justify-content: start;
    padding: 0 30px 0 58px;
    box-sizing: border-box;
}

/* Left Text Content */
section[data-module="business-home"] .business-home-content {
    position: relative;
    width: 100%;
    min-height: 255px;
}

section[data-module="business-home"] .business-home-copy {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

section[data-module="business-home"] .business-home-copy.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateY(0);
}

section[data-module="business-home"] .business-home-copy h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

section[data-module="business-home"] .business-home-copy h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;
}

section[data-module="business-home"] .business-home-copy p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    max-width: 360px;
}

/* Timeline */
section[data-module="business-home"] .business-home-nav {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 44px;
    box-sizing: border-box;
}

section[data-module="business-home"] .business-home-nav::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

section[data-module="business-home"] .business-home-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

section[data-module="business-home"] .business-home-nav-item .dot {
    position: absolute;
    left: -39px;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #ffffff;
    transform: translateY(-50%);
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

section[data-module="business-home"] .business-home-nav-item .label {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.35s ease;
}

section[data-module="business-home"] .business-home-nav-item.active .label {
    color: #ee303c;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.85), 0 0 10px rgba(255, 255, 255, 0.8);
}

section[data-module="business-home"] .business-home-nav-item.active .dot {
    background: #ee303c;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.02);
}

section[data-module="business-home"] .business-home-nav-item:hover .label {
    color: #ee303c;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.85), 0 0 10px rgba(255, 255, 255, 0.8);
}
@media (max-width: 1600px) {
    section[data-module="business-home"] .business-home-copy h2 {
        font-size: 34px;
    }
	section[data-module="business-home"] .business-home-copy h3 {
		font-size: 22px;
    }
}


/* Responsive */
@media (max-width: 1400px) {
    section[data-module="business-home"] .business-home-overlay,
    section[data-module="business-home"] .business-home-right-panel {
        width: 49%;
    }

    section[data-module="business-home"] .business-home-right-panel {
        grid-template-columns: minmax(300px, 360px) 290px;
        padding: 0 24px 0 44px;
        column-gap: 30px;
    }

    section[data-module="business-home"] .business-home-copy h2 {
        font-size: 28px;
    }

    section[data-module="business-home"] .business-home-copy h3 {
        font-size: 20px;
    }

    section[data-module="business-home"] .business-home-nav-item .label {
        font-size: 22px;
    }
	section[data-module="business-home"] .business-home-copy p {
  font-size: 16px;
}
}

@media (max-width: 1100px) {
    section[data-module="business-home"] .business-home-banner {
        height: 600px;
    }

    section[data-module="business-home"] .business-home-overlay,
    section[data-module="business-home"] .business-home-right-panel {
        width: 54%;
    }

    section[data-module="business-home"] .business-home-right-panel {
        grid-template-columns: minmax(260px, 1fr) 250px;
        padding: 0 24px 0 34px;
        column-gap: 22px;
    }

    section[data-module="business-home"] .business-home-copy {
        min-width: 0;
    }

    section[data-module="business-home"] .business-home-copy h2 {
        font-size: 31px;
    }

    section[data-module="business-home"] .business-home-copy h3 {
        font-size: 21px;
    }

    section[data-module="business-home"] .business-home-copy p {
        font-size: 16px;
    }

    section[data-module="business-home"] .business-home-nav-item .label {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    section[data-module="business-home"] .business-home-banner {
        height: auto;
        min-height: 700px;
    }

    section[data-module="business-home"] .business-home-overlay {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(238, 48, 60, 0.16) 0%,
            rgba(238, 48, 60, 0.58) 100%
        );
    }

    section[data-module="business-home"] .business-home-right-panel {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 700px;
        grid-template-columns: 1fr;
        row-gap: 40px;
        align-content: center;
        padding: 70px 24px 50px;
    }

    section[data-module="business-home"] .business-home-content {
        min-height: 240px;
    }

    section[data-module="business-home"] .business-home-copy {
        top: 0;
        transform: translateY(18px);
    }

    section[data-module="business-home"] .business-home-copy.active {
        transform: translateY(0);
    }

    section[data-module="business-home"] .business-home-copy p {
        max-width: 100%;
    }

    section[data-module="business-home"] .business-home-nav {
        height: auto;
        gap: 28px;
        padding-left: 28px;
    }

    section[data-module="business-home"] .business-home-nav::before {
        height: 100%;
    }

    section[data-module="business-home"] .business-home-nav-item .dot {
        left: -37px;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {

  section[data-module="business-home"] .business-home-banner {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 450px;
    overflow: hidden;
  }

  section[data-module="business-home"] .business-home-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
  }

  /* #EE303C gradient overlay */
  section[data-module="business-home"] .business-home-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(238, 48, 60, 0.08) 0%,
      rgba(238, 48, 60, 0.18) 28%,
      rgba(238, 48, 60, 0.42) 50%,
      rgba(238, 48, 60, 0.68) 72%,
      rgba(238, 48, 60, 0.9) 100%
    );
    pointer-events: none;
  }

  /* Main mobile layout */
  section[data-module="business-home"] .business-home-right-panel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 450px;
    min-height: 450px;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 26px 18px;
    box-sizing: border-box;
  }

  /* =========================================
     LEFT NAVIGATION
  ========================================= */

  section[data-module="business-home"] .business-home-nav {
    order: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  section[data-module="business-home"] .business-home-nav::before {
    display: none;
  }

  section[data-module="business-home"] .business-home-nav-item {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    background: rgba(238, 48, 60, 0.28);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box;
    transition:
      background 0.3s ease,
      border-color 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  section[data-module="business-home"] .business-home-nav-item .dot {
    display: none;
  }

  section[data-module="business-home"] .business-home-nav-item .label {
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  }

  section[data-module="business-home"] .business-home-nav-item.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  section[data-module="business-home"] .business-home-nav-item.active .label {
    color: #ee303c;
    text-shadow: none;
  }

  section[data-module="business-home"] .business-home-nav-item:hover .label {
    color: #ffffff;
  }

  section[data-module="business-home"] .business-home-nav-item.active:hover .label {
    color: #ee303c;
  }

  /* =========================================
     RIGHT CONTENT PANEL
  ========================================= */

  section[data-module="business-home"] .business-home-content {
    order: 2;
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 355px;
    padding: 22px 16px;
    border-radius: 16px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
    overflow: hidden;
  }

  section[data-module="business-home"] .business-home-copy {
    position: absolute;
    top: 50%;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(12px);
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease,
      transform 0.4s ease;
  }

  section[data-module="business-home"] .business-home-copy.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }

  section[data-module="business-home"] .business-home-copy h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }

  section[data-module="business-home"] .business-home-copy h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.32);
  }

  section[data-module="business-home"] .business-home-copy p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.34);
  }
}