body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.svg-container {
    text-align: center;
}

/* General SVG styling */
svg {
    width: 100%;
    height: auto;
  }
  
  /* Backring */
  .backring {
    fill: transparent;
    stroke: #007bff77;
    stroke-width: 1;
  }
  
  /* Vijin section */
  .vijin-ellipse {
    fill: transparent;
    stroke: black;
    stroke-width: 1;
  }
  
  .vijin-text {
    font-size: 10px;
    font-family: sans-serif;
    fill: black;
  }
  
  .vijin-circle {
    fill: transparent;
    stroke: #007bff;
    stroke-width: 1;
  }
  
  /* Divisions section */
  .divisions-circle {
    fill: white;
    stroke: #007bff;
    stroke-width: 1;
  }

  .divisions-icon,
  .divisions-text {
    fill: black;
    font-family: sans-serif;
  }

  .divisions-icon {
    font-size: 15px;
  }

  .divisions-text {
    font-size: 7px;
  }
  
  /* Transparent circles */
  .transparent-circle {
    fill: transparent;
  }

/* common for all pages */
.container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures container fills the viewport */
}

h1 {
  color: #333;
}

p {
  color: #666;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background-color: #0056b3;
}

/* header section */
header {
    background-color: #303a52;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    list-style: none;
}
header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

/* main section */
main {
    padding: 20px;
}
.content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.back-link {
    display: block;
    margin-top: 20px;
    text-align: center;
}
.back-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

/* footer section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}



/* innovation section */

.innovation {
    background-color: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.innovation h2 {
    margin-top: 0;
}
