.business-hero {
  width: 100%;
  height: 800px;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/images/business/Business_hero.webp") center/cover no-repeat;
}

.hero-floating-img {
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 374px;
  height: 272px;
  z-index: 10;
  border-radius: 8px;
  overflow: hidden;
}

.hero-floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.page-spacing {
  height: 120px;
  width: 100%;
}

.business-main {
  width: 100%;
  padding-bottom: 100px;
  background-image: url("../assets/images/business/section_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.96);
}

.vertical-row {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  gap: 100px;
}

.vertical-row.reverse {
  flex-direction: row-reverse;
}

.vertical-text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vertical-heading {
  color: #131d45;
  font-family: "Source Sans Pro";
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

.vertical-para {
  color: #515050;
  font-family: "Merriweather";
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  max-width: 607px;
  margin: 0;
}

.vertical-btn {
  width: 229px;
  height: 52px;
  border-radius: 26px;
  background: #212121;
  color: #fff;
  font-family: "Merriweather";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  border: none;
}

.vertical-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.vertical-image-box {
  width: 520px;
  height: 450px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vertical-image-box img,
.vertical-image-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1440px) {
  .hero-content {
    width: 100%;
    padding: 0 60px;
  }
  .vertical-row {
    width: 80%;
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-floating-img {
    width: 280px;
    height: 200px;
    bottom: -50px;
  }
  .vertical-row {
    width: 90%;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .vertical-row.reverse {
    flex-direction: column;
  }
  .vertical-text-box {
    align-items: center;
  }
  .vertical-image-box {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-floating-img {
    display: none;
  }
  .page-spacing {
    height: 60px;
  }

  .business-main {
    background-size: cover;
    background-position: center;
  }

  .vertical-row {
    width: 100%;
    padding: 40px 20px;
    gap: 40px;
  }
  .vertical-heading {
    font-size: 26px; /* Reduced to 26px */
  }
  .vertical-para {
    font-size: 15px;
    line-height: 28px;
  }

  .vertical-image-box {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .vertical-heading {
    font-size: 22px;
  }
  .vertical-para {
    font-size: 14px;
  }
}
