html, body {
      margin: 0;
      padding: 0;
      background-color: #1e1e1e; /* Dark grey */
      height: 100%;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: white;
      font-family: "Mitr", sans-serif;
    }

    .centered-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      height: 100vh;
    }

    .logo {
      width: 80px;
      height: auto;
      margin-bottom: 0px;
    }

    h1 {
      font-size: 32px;
      margin: 10px 0;
      font-weight: 500;
    }

    h2 {
      font-size: 26px;
      margin: 10px 0;
      font-weight: 500;
    }

    p {
      font-size: 18px;
      margin: 5px 0 20px;
    }

    .learn-more-button {
      padding: 6px 14px;
      font-size: 16px;
      color: white;
      background-color: #333;
      border: 1px solid #555;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s;
      border-radius: 30px;
    }

    .learn-more-button:hover {
      background-color: #555;
    }

    .button-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;

  width: 89%;
}

.big-card-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2c2c2c;
  color: white;
  text-align: center;

  width: 240px;
  min-width: 240px;
  max-width: 100%;
  

  padding: 10px 14px;
font-size: 16px;
color: white;
background-color: #333;
border: 1px solid #555;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.5s, transform 0.5s;
border-radius: 30px;


/* Glass Style */
    /* background: rgba(132, 132, 132, 0.118); */
    /* background-color: rgba(162, 162, 162, 0.208);
    background-color: rgba(23, 36, 58, 0.924);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0.5px rgba(255, 255, 255, 0.6);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.05),
        inset 0 0 1px rgba(255, 255, 255, 0.4); */
}

.big-card-button:hover {
  background-color: #555;
  background-color: #313131;
  transform: translateY(-4px);
}

.button-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.big-card-button h2 {
    margin: auto;
}

.big-card-button p {
    margin: auto;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
    margin-top: 5px;
}


.main_content_container {
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.demo_menu_bar {
  position: fixed;
  top: 20px;
  /* top: 0;
  left: 0; */
  width: 60px;
  height: 60px;
  border-radius: 30px;
  z-index: 1000;
  
  background-color: rgba(23, 36, 58, 0.501);
  background-color: rgba(30, 30, 30, 0.501);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);

    /* background-color: red; */
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;

    

    /* background-color: red; */

    /* border: 1px solid rgba(255, 255, 255, 0.053); */

    /* box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0.5px rgba(255, 255, 255, 0.6);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.05),
        inset 0 0 1px rgba(255, 255, 255, 0.4); */
}

.demo_menu_bar img {
cursor: pointer;
}


.section-container {
   /* border: 1px solid #555; */
  border-radius: 30px;
  background-color: #ffffff0f;
  padding: 15px 0px;

  width: 94%;
  max-width: 800px;
}

.scroll-container {
  display: block;
  overflow-x: auto;
  /* gap: 16px; optional spacing between cards */
  /* padding: 10px; */
  scroll-snap-type: x mandatory; /* optional for snapping */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  width: 94%;
  margin: auto;

  text-align: center;

}

.resource-btn {
  display: inline-block;
  width: 120px;
  height: auto; /* fixed height (optional) */
  /* align-items: center; */
  /* justify-content: center; */

  background-color: #2c2c2c;
  color: white;
  text-align: center;
  font-size: 16px;

  padding: 4px 14px;
  border: 1px solid #555;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.5s, transform 0.5s;

  margin: 10px;
  margin: 8px 6px;

  scroll-snap-align: start; /* optional for snap scrolling */

  align-items: center;
  vertical-align: middle;
}

.resource-btn h2 {
  font-size: 17px;
  font-weight: 600;
}

.resource-btn:hover {
  background-color: #555;
  background-color: #4b4b4b;
  transform: translateY(-1px);
  /* transform: scale(1.05); */
}