/* === SSLCOMMERZ Banner Styling === */
.infotech-net-bd-sslcommerz-banner {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  font-family: 'Segoe UI', sans-serif;
  width: 100%;               /* full width */
  margin: 0 auto;            /* no side offset */
  padding: 0;                /* no extra padding at top/bottom */
  box-sizing: border-box;
  text-align: center;
}

/* Inner container */
.infotech-net-bd-sslcommerz {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo styling */
.infotech-net-bd-sslcommerz img {
  height: 40px;              /* adjust size as needed */
  display: block;
  margin: 0 auto;            /* force center alignment */
  max-width: 100%;           /* responsive scaling */
}

/* Reset body defaults to avoid unwanted spacing */
body {
  margin: 0;
  padding: 0;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .infotech-net-bd-sslcommerz img {
    height: 35px;            /* slightly smaller logo for tablets */
  }
}

@media (max-width: 480px) {
  .infotech-net-bd-sslcommerz img {
    height: 30px;            /* scale down for small screens */
  }
}