/*
======================================================
  ফ্রন্ট পেজ: হিরো ব্যানার স্টাইল
======================================================
*/

.hero-banner-wrapper {
  background-color: #eef2ff;
  padding: 2rem 1rem;
}

.hero-banner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 55%;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text-primary);
  margin: 0 0 1rem 0;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin: 0 0.5rem 0.5rem 0;
}

.hero-image {
  flex: 1 1 40%;
  max-width: 350px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1rem;
  }
  .hero-text { order: 2; }
  .hero-image {
    order: 1;
    max-width: 70%;
    margin-bottom: 2rem;
  }
  .hero-text h1 { font-size: 2rem; }
}