/* Page frame */
html, body {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;         /* Ensure full viewport height */
  display: flex;             /* Header / main / footer vertically */
  flex-direction: column;
}

/* Header & footer take natural height */
header, footer {
  flex: 0 0 auto;
}

/* Main fills remaining space and centers its content */
main {
  flex: 1 1 auto;            /* Grow to fill the space between header and footer */
  display: grid;
  place-items: center;       /* Horizontal + vertical center */
  overflow: hidden;          /* Prevent scrollbars if letterboxed */
}

/* Optional wrapper if desired */
.svg-stage {
  width: 100%;
  height: 100%;
}

/* The <object id="bharatSVG"> inside main (or .svg-stage) */
#bharatSVG {
  display: block;          /* Remove inline baseline gap */
  width: 100%;
  height: 100%;
  object-fit: contain;     /* Scale to fit without distortion */
  object-position: center; /* Center inside the box */
}
