.hero-section {
  width: 100%;
  height: 100vh;
  background-image: url("/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-content {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
  font-family: sans-serif;
}

/* কমন স্টাইল */
.hero-content-left,
.hero-content-right {
  width: 50%;
}

.hero-content-left {
  padding-left: 100px;
}

.hero-content-left h1,
.hero-content-right h1 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
}

.hero-content-left p,
.hero-content-right p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 550px;
  opacity: 0.95;
}

.hero-content-left button,
.hero-content-right button {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: #ffffffb1;
  border: 2px solid #ffffffb1;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content-left button:hover,
.hero-content-right button:hover {
  background: #fff;
  color: #2c3e6b; /* তোমার থিম কালার অনুযায়ী */
  transform: translateY(-5px);
}

.hero-content-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* =========================
   1440px (Large Desktop)
========================= */
@media (max-width: 1440px) {
  .hero-content {
    max-width: 1200px;
  }

  .hero-content-left h1,
  .hero-content-right h1 {
    font-size: 28px;
  }
}

/* =========================
   1024px (Tablet Landscape)
========================= */
@media (max-width: 1024px) {
  .hero-section {
    height: 85vh;
    padding-bottom: 70px;
    background-size: cover;
  }

  .hero-content {
    padding: 0 30px;
    overflow: hidden;
  }

  .hero-content-left,
  .hero-content-right {
    width: 48%;
  }

  .hero-content-left h1,
  .hero-content-right h1 {
    font-size: 26px;
  }
}

/* =========================
   768px (Tablet Portrait)
========================= */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    padding: 120px 0 60px;
  }

  .hero-content {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }

  /* scrollbar hide */
  .hero-content::-webkit-scrollbar {
    display: none;
  }

  .hero-content-left,
  .hero-content-right {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    text-align: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-content-right {
    align-items: center;
  }

  .hero-content-left h1,
  .hero-content-right h1 {
    font-size: 24px;
  }

  .hero-content-left p,
  .hero-content-right p {
    font-size: 15px;
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .hero-content-left button,
  .hero-content-right button {
    font-size: 11px;
    padding: 8px 18px;
  }
}

/* =========================
   575px (Mobile)
========================= */
@media (max-width: 575px) {
  .hero-section {
    height: 55vh;
    padding: 70px 0;
    border-radius: 0 0 25px 25px;
    background-size: cover;
  }

  .hero-content {
    position: absolute;
    top: 50%;
  }

  .hero-content-left h1,
  .hero-content-right h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-content-left p,
  .hero-content-right p {
    font-size: 14px;
    margin: 0 auto 10px;
  }

  .hero-content-left button,
  .hero-content-right button {
    font-size: 10px;
    padding: 7px 16px;
  }
}
