html, body {
  overflow-x: hidden;   /* শুধু horizontal scroll বন্ধ */
  overflow-y: auto;     /* vertical scroll চালু রাখবে */
  height: auto;         /* body height fix না করে auto রাখুন */
}


/* ===== Page background + base font ===== */
.service-page {
  font-family: 'Poppins', system-ui, sans-serif;
  background-color: #ffffff;
  color: #FFA500;
}

/* ===== HERO ===== */
.service-page .hero {
  margin-top: 10px !important;  /* সবসময় 10px থেকে শুরু */
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  background: transparent;
}
.service-page .hero img {
  max-width: calc(100% - 120px);
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}
@media (max-width: 992px) {
  .service-page .hero img { max-width: calc(100% - 60px); }
}
@media (max-width: 600px) {
  .service-page .hero img { max-width: 100%; }
}

/* ===== Main container & teal section ===== */
.service-page .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 44px;
}
.service-page .main-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 50px rgba(255,165,0,0.9);
}
.service-page .section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #FFA500;
  margin: 6px 0 20px 0;
}
.service-page .section-text {
  font-size: 16px;
  line-height: 1.7;
  color: #FFA500;
  margin: 0 0 14px 0;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-box {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFA500;
  text-align: center;
}
.service-box ul {
  list-style-type: disc;
  padding-left: 18px;
}
.service-box ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #FFA500;
}
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Tray menu ===== */
.tray-menu {
  position: fixed;
  top: 20%;
  left: -220px;
  width: 200px;
  background: #ffa500;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  z-index: 1200;
  transition: left .3s ease;
}
.tray-menu.open { left: 0; }
.tray-menu a {
  display: block;
  padding: 12px 14px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f1f1f1;
  font-size: 15px;
}
.tray-menu a:hover { background: rgba(255,165,0,0.12); }

/* Tray button */
.tray-toggle-vertical {
  position: fixed;
  left: 0;
  top: 40%;
  transform: translateY(-50%) rotate(180deg);
  background: #ffffff;
  color: #FFA500;
  padding: 18px 12px;
  min-height: 140px;
  border-radius: 12px 0 0 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  border: 3px solid #FFA500;
  box-shadow: 0 0 22px 8px rgba(255,165,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tray-toggle-vertical:hover {
  transform: translateY(-50%) rotate(180deg) translateX(2px) scale(1.03);
  box-shadow: 0 0 36px 14px rgba(255,165,0,0.65);
}

/* ===== Hide tray menu & button on mobile ===== */
@media only screen and (max-width: 768px) {
  #trayMenu,
  #trayButton,
  .tray-menu,
  .tray-toggle-vertical {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
