.hero-main {
  position: relative;
  /* min-height: 100vh; */
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-blur-ellipse {
  position: absolute;
  left: 50%;
  top: 166px;
  transform: translateX(-50%);
  width: 1272px;
  height: 654px;
  border-radius: 50%;
  background: #ffffff;
  filter: blur(114.3px);
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 202px;
  margin-bottom: 34px;
}

.hero-title {
  font-size: 60px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #dd630f 0%, #ffa245 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #525252;
  line-height: 1.2;
}

.hero-descriptions {
  position: relative;
  z-index: 10;
  margin-bottom: 34px;
}

.description-texts {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  color: #000;
  padding: 20px;
}

.cta-section {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.btn-request-quote {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 10px 30px 10px 66px;
  border-radius: 70px;
  background: linear-gradient(180deg, #dd630f 0%, #ffa245 100%);
  border: none;
  color: white;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-request-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(221, 99, 15, 0.3);
}

.btn-circles {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
}

.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
}

.circle-1 {
  width: 46px;
  height: 46px;
  opacity: 0.2;
}

.circle-2 {
  width: 34px;
  height: 34px;
  opacity: 0.3;
}

.circle-3 {
  width: 22px;
  height: 22px;
  opacity: 0.3;
}

.circle-4 {
  width: 10px;
  height: 10px;
  opacity: 1;
}

.btn-text {
  position: relative;
  z-index: 5;
}

.books-showcase {
  position: relative;
  z-index: 3;
  min-height: 600px;
  margin-top: 60px;
  margin-bottom: 0;
}

.books-blur {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1460px;
  height: 912px;
  border-radius: 50%;
  opacity: 0.5;
  background: #ff962c;
  filter: blur(132.547px);
  z-index: 1;
}

.hero-main .books-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 0 75px;
  min-height: 600px;
  z-index: 2;
}

.book-item {
  position: relative;
  flex-shrink: 0;
}

.book-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.book-1 {
  width: 331px;
  padding-top: 164px;
}

.book-1 .book-image {
  height: 529px;
  object-fit: cover;
}

.book-2 {
  width: 330px;
  padding-top: 114px;
}

.book-2 .book-image {
  height: 469px;
  object-fit: cover;
}

.book-3 {
  width: 330px;
  padding-top: 34px;
}

.book-3 .book-image {
  height: 527px;
  object-fit: cover;
}

.book-4 {
  width: 330px;
  padding-top: 114px;
}

.book-4 .book-image {
  height: 469px;
  object-fit: cover;
}

.book-5 {
  width: 331px;
  padding-top: 164px;
}

.book-5 .book-image {
  height: 529px;
  object-fit: cover;
}

.bottom-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(249, 250, 251, 0) 0%,
    rgba(249, 250, 251, 1) 100%
  );
  z-index: 4;
  pointer-events: none;
}

@media (max-width: 1550px) {
 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .bg-blur-ellipse {
    width: 100%;
    height: 100%;
    top: 140px;
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-title {
    font-size: 55px;
  }

  .hero-subtitle {
    font-size: 27px;
  }

  .hero-description {
    position: relative;
    z-index: 10;
    margin-bottom: 34px;
  }

  .description-texts {
    font-size: 1.125rem;
    padding: 15px;
  }

  .hero-main .books-blur {
    width: 1200px;
    height: 750px;
  }

  .hero-main .books-container {
    gap: 20px;
    padding: 0 40px;
    min-height: 500px;
  }

  .hero-main .book-1,
  .book-5 {
    width: 260px;
    padding-top: 130px;
  }

 .hero-main .book-1 .book-image,
  .book-5 .book-image {
    height: 420px;
  }

  .hero-main .book-2,
  .book-4 {
    width: 260px;
    padding-top: 90px;
  }

  .hero-main .book-2 .book-image,
  .book-4 .book-image {
    height: 370px;
  }

  .hero-main .book-3 {
    width: 260px;
    padding-top: 28px;
  }

  .hero-main .book-3 .book-image {
    height: 418px;
  }
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

 .hero-main  .books-container {
    gap: 15px;
    padding: 0 30px;
  }

  .book-1,
  .book-5 {
    width: 230px;
    padding-top: 115px;
  }

  .book-1 .book-image,
  .book-5 .book-image {
    height: 370px;
  }

  .book-2,
  .book-4 {
    width: 230px;
    padding-top: 80px;
  }

  .book-2 .book-image,
  .book-4 .book-image {
    height: 328px;
  }

  .book-3 {
    width: 230px;
    padding-top: 24px;
  }

  .book-3 .book-image {
    height: 368px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding-top: 150px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .description-texts {
    font-size: 1.125rem;
  }

  .hero-main .books-container {
    gap: 20px;
    padding: 0 20px;
  }

  .book-1,
  .book-2,
  .book-3,
  .book-4,
  .book-5 {
    width: 200px;
  }

  .book-1 {
    padding-top: 100px;
  }

  .book-1 .book-image {
    height: 320px;
  }

  .book-2 {
    padding-top: 70px;
  }

  .book-2 .book-image {
    height: 284px;
  }

  .book-3 {
    padding-top: 20px;
  }

  .book-3 .book-image {
    height: 320px;
  }

  .book-4 {
    padding-top: 70px;
  }

  .book-4 .book-image {
    height: 284px;
  }

  .book-5 {
    padding-top: 100px;
  }

  .book-5 .book-image {
    height: 320px;
  }

  .banner-form {
    margin-top: -200px;
  }
}

@media (max-width: 835px) {

  .hero-bg video {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .bg-blur-ellipse {
    width: 90%;
    height: 300px;
    top: 100px;
    filter: blur(80px);
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .description-texts {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  .hero-main .btn-request-quote {
    font-size: 1rem;
    height: 50px;
    padding: 8px 25px 8px 55px;
  }

  .hero-main .btn-circles {
    width: 30px;
    height: 30px;
  }

  .hero-main .circle-1 {
    width: 35px;
    height: 35px;
  }
  .hero-main .circle-2 {
    width: 25px;
    height: 25px;
  }
  .hero-main .circle-3 {
    width: 15px;
    height: 15px;
  }
  .hero-main .circle-4 {
    width: 4px;
    height: 4px;
  }

  .books-showcase {
    display: none !important;
  }

  .bottom-gradient {
    height: 150px;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .description-texts {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }
}

@media (max-width: 380px) {

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .description-texts {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }
}
