/* ===== Page scope ===== */
.about-r-page {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #FFA500;
}

/* ===== HERO ===== */
.about-r-page .hero {
  margin-top: 10px !important;   /* সবসময় fixed 10px */
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  background: transparent;
}
.about-r-page .hero img {
  max-width: calc(100% - 120px);
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .about-r-page .hero img { max-width: calc(100% - 60px); }
}
@media (max-width: 600px) {
  .about-r-page .hero img { max-width: 100%; }
}

/* ===== MAIN CONTAINER ===== */
.about-r-page .main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 44px;
}
.about-r-page .main-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 50px rgba(255, 165, 0, 0.9);
}

/* ===== Text styles (all orange) ===== */
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #FFA500;
  text-align: center;
  text-decoration: underline;
  margin: 6px 0 14px 0;
}
.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #FFA500;
  margin-bottom: 14px;
}
.bullet-list {
  margin-left: 20px;
}
.bullet-list li {
  margin-bottom: 8px;
  color: #FFA500;
}

/* Force all text orange */
.about-r-page .main-container,
.about-r-page .main-container h1,
.about-r-page .main-container h2,
.about-r-page .main-container h3,
.about-r-page .main-container p,
.about-r-page .main-container li {
  color: #FFA500 !important;
}

/* ===== Mobile এ tray hide ===== */
@media (max-width: 768px) {
  .tray-toggle-vertical,
  .tray-menu {
    display: none !important;
  }
}
/* ===== Fix scroll issue ===== */
html, body {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden;   /* sideways scroll off */
  overflow-y: auto;     /* সবসময় vertical scroll allow */
}

.about-r-page {
  min-height: 100vh;    /* full viewport height cover করবে */
  overflow: visible;    /* scroll block হবে না */
}
