.hero-whoweare {
  padding: 225px 0 229px;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  z-index: 1;
}

.hero-whoweare::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("/hand.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 800px;
  width: 1000px;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/aboutbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.hero-whoweare .container,
.hero-whoweare .row {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: 72px;
  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.2;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 40px;
}

.hero-text strong {
  font-weight: 700;
}

.btn-hero-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-hero-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; }


.hero-image-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
}

.hero-book-image {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  margin-right: -50px;
}


@media (min-width: 1024px) and (max-width: 1550px) {
  .hero-whoweare { padding: 200px 0; }
  .hero-heading { font-size: 56px; line-height: 1.3; }
  .hero-text { font-size: 17px; max-width: 90%; }
  .glow-effect { width: 450px; height: 450px; right: 5%; }
  .hero-whoweare::before {
    height: 800px;
    width: 800px;
  }
  .hero-book-image { max-width: 420px; margin-right: -20px; }
}

@media (max-width: 835px) {
  .hero-whoweare {
    padding: 60px 0 40px;
     text-align: center; 
  }

  .hero-whoweare::before {
    display: none;
  }

  .hero-heading {
    font-size: 34px;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
  }

  .hero-image-container {
    justify-content: center;
    min-height: 350px;
    margin-top: 20px;
  }

   .hero-whoweare .btn-hero-quote {
    font-size: 1rem;
    height: 50px;
    padding: 10px 25px 10px 60px;
     display: inline-flex; 
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    
  }
}

@media (max-width: 576px) {
  .hero-whoweare {
    padding: 50px 0 30px;
    text-align: center; 
  }

  .hero-heading {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-image-container {
    min-height: 280px;
  }

   .hero-whoweare .btn-hero-quote {
    display: inline-flex; 
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

