@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Rubik:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playwrite+PE:wght@100..400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap);
:root {
  --midPrimary: #9e4ff3;
  --darkPrimary: #7027be;
  --primary: #8c34eb;
}

* {
  /* border: 1px solid red; */
  /* overflow-x: hidden; */
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  margin: 0;
  font-family: "Rubik", sans-serif;
  overflow-x: hidden !important;
  /* border: 1px solid red; */
}

.breadcrumbLink {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.breadcrumbLink span {
  margin-left: 10px;
}

h1,
h2,
h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.layer-ui__wrapper__top-right {
  display: none !important;
}

.primaryText {
  color: #8c34eb;
  color: var(--primary);
}

.primaryBtn,
.lightBtn,
.outlinedBtn {
  background-color: #8c34eb;
  background-color: var(--primary);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px;
  text-align: center;
  font-size: 1.05rem;
}

.primaryBtn:hover:not(.primaryBtn:disabled) {
  background-color: #7027be !important;
  background-color: var(--darkPrimary) !important;
  color: white !important;
}

.primaryBtn:disabled {
  background-color: gray;
  color: whitesmoke;
}

.outlinedBtn {
  background-color: transparent;
  border: 2px solid black;
  color: black;
  font-size: 1rem;
  margin: 5px;
}

.outlinedBtn:hover {
  background-color: white;
  color: black;
}

.lightOutlineBtn {
  color: white;
  border-color: white;
}

.lightBtn {
  background-color: white;
  color: rgb(48, 46, 46);
  font-size: 20px;
  border: 1px solid lightgray;
}

button:disabled {
  cursor: not-allowed;
}

.lightBtn:hover {
  background-color: rgb(236, 236, 236);
  cursor: pointer;
  transition: 0.3s;
}

.largeBtn {
  padding: 20px 30px;
  font-size: 1.2rem;
  display: flex;
  font-weight: bold;
  align-items: center;
}

.idea__evaluation__table {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.idea__evaluation__table table {
  background-color: rgb(230, 228, 228);
  padding: 5px;
  border-radius: 10px;
  margin: 10px;
  border-collapse: separate;
  border-spacing: 10px;
  box-shadow: 1px 4px 8px rgba(15, 9, 175, 0.1);
  table-layout: fixed; /* Ensures fixed-width cells */
  width: 100%; /* Distribute width across the table */
}

/* Styling for the table header boxes */
.idea__evaluation__table table th {
  background: white;
  color: var(var(--primary));
  text-align: center;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}

/* Styling for the table content boxes */
.idea__evaluation__table table td {
  /* width: 100%; */
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  width: 50%; /* Divide equally between two cells per row */
  word-wrap: break-word;
  text-align: left;
}

/* Hover effect for the content boxes
.idea__evaluation__table table td:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.bordered__bot__table {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  margin-top: 1.5rem;
  box-shadow: 1px 4px 8px rgba(15, 9, 175, 0.1);
  background-color: rgb(229, 226, 226);
}

.border__table__item {
  flex-grow: 1;
  margin: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 10px 20px;
  box-shadow: 1px 4px 8px rgba(15, 9, 175, 0.1);
  background-color: white;
}

.idea__conclusion {
  padding: 10px;
  background-color: rgb(228, 226, 226);
  margin: 10px;
  border-radius: 10px;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.border__table__item h3 {
  color: #8c34eb;
  color: var(--primary);
}

.chart__wrapper {
  width: 40%;
}

.rate__table {
  display: flex;
  border-radius: 8px;
  padding: 5px;
  overflow: hidden;
  background: white;
  margin: 5px;
  border: 1px solid lightgray;
  box-shadow: 0px 0.344px 5px lightgray;
}

.rate__table .rate__bot {
  display: flex;
  /*background-color: rgb(3, 90, 221);*/
  color: black;
  height: 55px;
  padding: 10px;
  align-items: center; /* Aligns items vertically in the center */
  justify-content: center;
  /*border-right: 7px solid white; */
  border-radius: 10px;
  text-align: center;
  flex: 1 1;
  /*box-shadow: 1px 4px 8px rgba(15, 9, 175, 0.1);*/
  transition: background-color 0.3s, transform 0.3s;
  box-sizing: border-box;
  cursor: pointer;
}

.rate__table .rate__bot:not(:last-child) {
  border-right: 0px solid white;
}
/* 
.rate__table .rate__bot:hover {
  transform: scale(1.1);
  cursor: pointer;
} */

.idea__evaluation__table .input__inline label {
  margin-left: 5px;
}

.active__rate {
  background-color: rgb(230, 230, 230) !important;
  color: #8c34eb !important;
  color: var(--primary) !important;
  font-weight: 600;
  border: 1px solid #8c34eb !important;
  border: 1px solid var(--primary) !important;
}

.idea__evaluation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.idea__evaluation__header > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.input__inline {
  display: flex;
  flex-direction: row;
}

.idea__evaluation__table .input__inline table {
  flex-grow: 1;
  margin: 5px;
}

.ant-collapse-header-text {
  font-size: 1.2rem !important;
  color: black !important;
}

.ant-collapse-header {
  display: flex !important;
  align-items: center !important;
}

.ant-collapse:has(.ant-collapse-item-active) {
  width: 100% !important;
}

.unauthorized {
  text-align: center;
}

.unauthorized img {
  width: 32rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* task calendar styles */
.rbc-btn-group {
  margin: 5px;
}

.rbc-toolbar-label {
  font-weight: bold;
}

.ant-badge-status-dot {
  width: 15px !important;
  height: 15px !important;
}

.ToolbarWrapper-sc-cif21b-6 {
  display: none !important;
}

/* .ant-btn-primary{
  background-color: var(--primary) !important;
}

.ant-btn-primary:hover{
  background-color: var(--darkPrimary) !important;
} */

.ant-btn-default:hover {
  border-color: #8c34eb !important;
  border-color: var(--primary) !important;
  color: #8c34eb !important;
  color: var(--primary) !important;
}

.timeline-item-title {
  margin-bottom: 30px !important;
  background-color: white;
  border: 1px solid lightgray;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.milestone__timeline .horizontal {
  width: 100% !important;
}

#timeline-main-wrapper {
  overflow-y: hidden !important;
  overflow-x: auto !important;
}

/* 
theme styles */

.pink__theme {
  background-color: rgb(255, 222, 244);
  color: rgb(223, 0, 174);
}

.pink__theme:hover,
.active__theme.pink__theme {
  border-color: rgb(223, 0, 174);
}

.green__theme {
  background-color: rgb(196, 250, 217);
  color: rgb(102, 211, 135);
}

.green__theme:hover,
.active__theme.green__theme {
  border-color: rgb(2, 207, 111);
}

.blue__theme {
  background-color: rgb(196, 244, 250);
  color: rgb(102, 176, 211);
}

.blue__theme:hover,
.active__theme.blue__theme {
  border-color: rgb(2, 159, 207);
}

.red__theme {
  background-color: rgb(253, 201, 201);
  color: rgb(202, 73, 73);
}

.red__theme:hover,
.active__theme.red__theme {
  border-color: rgb(202, 60, 60);
}

.orange__theme {
  background-color: rgb(255, 218, 175);
  color: rgb(255, 112, 30);
}

.orange__theme:hover,
.active__theme.orange__theme {
  border-color: rgb(255, 112, 30);
}

.purple__theme {
  background-color: rgb(243, 223, 255);
  color: rgb(185, 85, 185);
}

.purple__theme:hover,
.active__theme.purple__theme {
  border-color: rgb(185, 85, 185);
}

.skyblue__theme {
  background-color: rgb(223, 255, 253);
  color: rgb(1, 156, 184);
}

.skyblue__theme:hover,
.active__theme.skyblue__theme {
  border-color: rgb(0, 148, 189);
}

.gray__theme {
  background-color: rgb(133, 133, 133);
  color: rgb(83, 83, 83);
}

.gray__theme:hover,
.active__theme.gray__theme {
  border-color: rgb(82, 82, 82);
}

.yellow__theme {
  background-color: rgb(255, 255, 224);
  color: rgb(255, 204, 0);
}

.yellow__theme:hover,
.active__theme.yellow__theme {
  border-color: rgb(255, 204, 0);
}

.teal__theme {
  background-color: rgb(202, 255, 229);
  color: rgb(0, 155, 136);
}

.teal__theme:hover,
.active__theme.teal__theme {
  border-color: rgb(0, 155, 136);
}

.brown__theme {
  background-color: rgb(210, 180, 140);
  color: rgb(153, 101, 21);
}

.brown__theme:hover,
.active__theme.brown__theme {
  border-color: rgb(153, 101, 21);
}

.lavender__theme {
  background-color: rgb(230, 210, 255);
  color: rgb(136, 86, 204);
}

.lavender__theme:hover,
.active__theme.lavender__theme {
  border-color: rgb(136, 86, 204);
}

.lightblue__theme {
  background-color: rgb(204, 232, 255);
  color: rgb(0, 116, 195);
}

.lightblue__theme:hover,
.active__theme.lightblue__theme {
  border-color: rgb(0, 116, 195);
}

.lightgreen__theme {
  background-color: rgb(210, 255, 210);
  color: rgb(0, 128, 0);
}

.lightgreen__theme:hover,
.active__theme.lightgreen__theme {
  border-color: rgb(0, 128, 0);
}

.cyan__theme {
  background-color: rgb(224, 255, 255);
  color: rgb(0, 191, 191);
}

.cyan__theme:hover,
.active__theme.cyan__theme {
  border-color: rgb(0, 191, 191);
}

.peach__theme {
  background-color: rgb(255, 229, 204);
  color: rgb(255, 153, 85);
}

.peach__theme:hover,
.active__theme.peach__theme {
  border-color: rgb(255, 153, 85);
}

.mint__theme {
  background-color: rgb(220, 255, 220);
  color: rgb(0, 153, 0);
}

.mint__theme:hover,
.active__theme.mint__theme {
  border-color: rgb(0, 153, 0);
}

.lightpurple__theme {
  background-color: rgb(225, 210, 255);
  color: rgb(150, 75, 255);
}

.lightpurple__theme:hover,
.active__theme.lightpurple__theme {
  border-color: rgb(150, 75, 255);
}

/* General rule for transparentThemeCard */
.transparentThemeCard {
  background-color: transparent !important; /* Override background color */
  color: inherit; /* Keep text color from the theme */
  border-width: 2px; /* Add a border width if needed */
  border-style: solid; /* Ensure border is solid */
}

/* Apply border colors based on the specific themes when .transparentThemeCard is used */

/* Pink theme */
.transparentThemeCard.pink__theme {
  border-color: rgb(223, 0, 174);
}

/* Green theme */
.transparentThemeCard.green__theme {
  border-color: rgb(2, 207, 111);
}

/* Blue theme */
.transparentThemeCard.blue__theme {
  border-color: rgb(2, 159, 207);
}

/* Red theme */
.transparentThemeCard.red__theme {
  border-color: rgb(202, 60, 60);
}

/* Orange theme */
.transparentThemeCard.orange__theme {
  border-color: rgb(255, 112, 30);
}

/* Purple theme */
.transparentThemeCard.purple__theme {
  border-color: rgb(185, 85, 185);
}

/* Sky Blue theme */
.transparentThemeCard.skyblue__theme {
  border-color: rgb(0, 148, 189);
}

/* Gray theme */
.transparentThemeCard.gray__theme {
  border-color: rgb(82, 82, 82);
}

/* Yellow theme */
.transparentThemeCard.yellow__theme {
  border-color: rgb(255, 204, 0);
}

/* Teal theme */
.transparentThemeCard.teal__theme {
  border-color: rgb(0, 155, 136);
}

/* Brown theme */
.transparentThemeCard.brown__theme {
  border-color: rgb(153, 101, 21);
}

/* Lavender theme */
.transparentThemeCard.lavender__theme {
  border-color: rgb(136, 86, 204);
}

/* Light Blue theme */
.transparentThemeCard.lightblue__theme {
  border-color: rgb(0, 116, 195);
}

/* Light Green theme */
.transparentThemeCard.lightgreen__theme {
  border-color: rgb(0, 128, 0);
}

/* Cyan theme */
.transparentThemeCard.cyan__theme {
  border-color: rgb(0, 191, 191);
}

/* Peach theme */
.transparentThemeCard.peach__theme {
  border-color: rgb(255, 153, 85);
}

/* Mint theme */
.transparentThemeCard.mint__theme {
  border-color: rgb(0, 153, 0);
}

/* Light Purple theme */
.transparentThemeCard.lightpurple__theme {
  border-color: rgb(150, 75, 255);
}

.topHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.topHeader h2 {
  margin: 5px;
}

.timeline-item-title {
  margin-bottom: 30px !important;
  background-color: white;
  border: 1px solid lightgray;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.milestone__timeline .horizontal {
  width: 100% !important;
}

#timeline-main-wrapper {
  overflow-y: hidden !important;
  overflow-x: auto !important;
}

.verticalProgressWrapper {
  width: 20px; /* Adjust the width accordingly */
  transform: rotate(270deg); /* Rotate the progress bar */
  margin-left: auto;
}

.highcharts-credits {
  display: none !important;
}

.speedometer {
  height: 200px !important;
}

.chart-scrollable-wrapper {
  overflow-x: auto; /* Enable horizontal scrolling */
  padding: 1rem; /* Optional: Add some padding */
}

.chart-scrollable-wrapper > div {
  min-width: 800px; /* Ensure the chart has a minimum width */
}

.HelpDialog__header {
  display: none !important;
}

.model__segmented__box {
  width: 70% !important;
}

.Increase__AI__Button__width {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .idea__evaluation__header {
    flex-direction: column;
  }
  .idea__evaluation__header > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .topHeader {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .idea__evaluation__header > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .idea__evaluation__header h1 {
    text-align: center;
  }

  .idea__evaluation__table table th,
  .idea__evaluation__table table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
  }

  .input__inline,
  .bordered__bot__table {
    flex-direction: column;
  }

  .border__table__item {
    width: 90%;
  }

  .ant-collapse:has(.ant-collapse-item-active) {
    width: 100% !important;
  }
}

@media screen and (max-width: 650px) {
  .ant-segmented-group {
    flex-direction: column;
    width: 100%;
  }
  .ant-segmented-item-selected {
    /* background-color: #1890ff; Ant Design's default blue */
    font-weight: bolder;
    box-shadow: 1px 1px 1px 1px black !important;
    background: white !important;
  }
  .responsive__segmented {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Enable horizontal scrolling */
    justify-content: space-between; /* Spacing between items */
    gap: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .idea__evaluation__header > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .idea__evaluation__header > div button {
    width: 100%;
    margin: 0px;
  }

  .responsive__segmented .ant-segmented-item {
    flex-shrink: 0;
  }

  .Increase__AI__Button__width {
    width: 50% !important;
  }
}

@media screen and (max-width: 526px) {
  .topHeader {
    flex-direction: column;
    align-items: center;
  }
  .model__segmented__box {
    width: 100% !important;
  }
}

.OtherPages_landing__section__\+cQlW {
  padding: 4rem 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  background-image: linear-gradient(
      rgba(28, 27, 28, 0.688),
      rgba(33, 32, 32, 0.622)
    ),
    url(/static/media/aboutUs.fee356064dc73bb06895.jpg);
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  animation: OtherPages_fadeInBackground__K-AsW 2s ease-in-out forwards; /* Add the animation */
  opacity: 0; /* Start with full transparency */
}

.OtherPages_landing__section__\+cQlW h1 {
  font-size: 4rem;
  margin: 10px;
}

.OtherPages_landing__text__RSDHw {
  margin-top: 10%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 1px solid red; */
}

.OtherPages_landing__text__RSDHw p {
  line-height: 1.8rem;
  font-size: 1.1rem;
  color: whitesmoke;
  width: 60%;
  text-align: justify;
  margin-bottom: 1rem;
}

/* New Hero Container Styles */
.OtherPages_hero__container__Yg6km {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 0;
}

.OtherPages_hero__text__column__TXagf {
  text-align: left;
}

.OtherPages_hero__stats__column__2-4Yx {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.OtherPages_hero__stats__title__k0VGV {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  text-align: center;
}

.OtherPages_hero__stats__grid__omktz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
}

.OtherPages_hero__stat__card__CkJ9t {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.OtherPages_hero__stat__card__CkJ9t:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.OtherPages_hero__stat__icon__SKUQA {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  display: block;
}

.OtherPages_hero__stat__number__gK1lT {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0.25rem 0;
}

.OtherPages_hero__stat__label__ld2h4 {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.OtherPages_our__mission__j7Thv {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  gap: 10px;
  padding: 0rem 2rem;
  /* border: 1px solid red; */
}

.OtherPages_our__mission__j7Thv img {
  width: 40rem;
  border-top-right-radius: 100px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu h1 {
  font-size: 2rem;
  margin: 10px;
  margin-bottom: 5px;
}

.OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu {
  padding: 1rem;
}

.OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu p {
  color: gray;
  padding: 0px 10px;
  line-height: 1.8rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.OtherPages_bgDark__pQacu {
  background-image: url(/static/media/blobGray.dd73f07533fb88009aa2.svg);
  background-color: whitesmoke;
  background-size: contain;
}

.OtherPages_bgDark__pQacu img {
  border-top-left-radius: 100px;
}

.OtherPages_smallPara__I4lLp {
  width: 90%;
}

.OtherPages_contact__wrapper__POQIi {
  background-image: url(/static/media/blobBg.df683a4e1a47dd5d3849.svg);
  background-color: var(--primary);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.OtherPages_contact__wrapper__POQIi h1 {
  font-size: 3rem;
  margin-top: 3%;
}

.OtherPages_contact__section__N7stS {
  padding: 4rem 2rem;
  background-image: url(/static/media/blobGray.dd73f07533fb88009aa2.svg);
  background-color: whitesmoke;
}

.OtherPages_contact__form__SeA4c {
  border: 1px solid lightgray;
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0px 0.344px 5px lightgray;
}

.OtherPages_contact__form__SeA4c h2,
.OtherPages_contact__form__SeA4c p {
  text-align: center;
}

.OtherPages_bg__primary__k91iG {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  overflow-y: hidden;
  background-image: url(/static/media/blobBgLg.5727ceb4333fb44a7aa5.svg);
  background-color: var(--primary);
  background-repeat: repeat;
  background-size: contain;
  padding: 4rem 2rem;
}

.OtherPages_bgDark__pQacu .OtherPages_smallPara__I4lLp {
  color: black !important;
}

.OtherPages_box__Gr-Qa {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid lightgray;
  box-shadow: 0px 0.333px 5px lightgray;
  margin: 10px auto;
  background-color: white;
  max-width: 90%;
}

.OtherPages_box__Gr-Qa section {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

@keyframes OtherPages_fadeInBackground__K-AsW {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.OtherPages_info__Wrapper__ezZ81 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.OtherPages_btn__wrapper__QdlcO {
  display: flex;
  justify-content: center;
}

/* Enhanced Mobile Responsiveness */
@media screen and (max-width: 768px) {
  /* Hero Container Mobile */
  .OtherPages_hero__container__Yg6km {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .OtherPages_hero__text__column__TXagf {
    text-align: center;
    order: 1;
  }

  .OtherPages_hero__stats__column__2-4Yx {
    order: 2;
  }

  .OtherPages_hero__stats__title__k0VGV {
    font-size: 1.5rem;
  }

  .OtherPages_hero__stats__grid__omktz {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .OtherPages_hero__stat__card__CkJ9t {
    padding: 1rem 0.75rem;
  }

  .OtherPages_hero__stat__icon__SKUQA {
    font-size: 1.5rem;
  }

  .OtherPages_hero__stat__number__gK1lT {
    font-size: 1.4rem;
  }

  .OtherPages_hero__stat__label__ld2h4 {
    font-size: 0.7rem;
  }

  .OtherPages_landing__text__RSDHw {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    padding: 0 1rem;
  }

  .OtherPages_landing__text__RSDHw h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .OtherPages_hero__badge__A-KNV {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .OtherPages_hero__description__ePTgg {
    width: 100%;
    font-size: 0.95rem;
    padding: 0;
    line-height: 1.6;
  }

  /* Stats Section Mobile */
  .OtherPages_stats__section__Yelm2 {
    padding: 3rem 1rem;
  }

  .OtherPages_stats__container__SJmne {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .OtherPages_stat__card__2YbmG {
    padding: 1.5rem 1rem;
  }

  .OtherPages_stat__icon__tH5hw {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .OtherPages_stat__number__kOm27 {
    font-size: 2rem;
  }

  .OtherPages_stat__label__81h77 {
    font-size: 0.85rem;
  }

  /* Story Section Mobile */
  .OtherPages_story__section__ns98d {
    padding: 4rem 1rem;
  }

  .OtherPages_story__container__DhEPO {
    /* keep two columns on tablet sizes so text remains to the right of the image */
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .OtherPages_story__visual__nazWN {
    order: -1;
  }

  .OtherPages_section__header__40t\+E h2 {
    font-size: 1.8rem;
  }

  .OtherPages_image__wrapper__B7PDB img {
    height: 250px;
  }

  .OtherPages_story__timeline__Ra9Cv {
    padding-left: 2.5rem;
  }

  .OtherPages_story__timeline__Ra9Cv::before {
    left: 0.4rem;
  }

  .OtherPages_timeline__marker__wdgVF {
    left: -1.9rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .OtherPages_timeline__content__bIzC5 p {
    font-size: 0.9rem;
  }

  /* Solution Section Mobile */
  .OtherPages_solution__section__y2f6a {
    padding: 4rem 1rem;
  }

  .OtherPages_solution__container__RqsBy {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .OtherPages_feature__card__c8vjk {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .OtherPages_feature__card__c8vjk:hover {
    transform: translateY(-5px);
  }

  .OtherPages_feature__icon__eF0nr {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    align-self: center;
  }

  /* Team Section Mobile */
  .OtherPages_team__section__QSCLx {
    padding: 4rem 1rem;
  }

  .OtherPages_team__container__NLvYR {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .OtherPages_quality__card__BvHuw {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .OtherPages_quality__card__BvHuw:hover {
    transform: translateY(-5px);
  }

  .OtherPages_quality__icon__5\+5Zi {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    align-self: center;
  }

  /* Platform Section Mobile */
  .OtherPages_platform__section__ctUUo {
    padding: 4rem 1rem;
  }

  .OtherPages_platform__title__JcnpP {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
  }

  .OtherPages_platform__subtitle__LIcva {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .OtherPages_platform__subtitle__heading__NhH\+Y {
    font-size: 1.6rem;
  }

  .OtherPages_platform__cards__wrapper__-upLk {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .OtherPages_platform__card__VX\+eA {
    padding: 2rem 1.5rem;
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .OtherPages_platform__card__icon__VXyOJ {
    align-self: center;
    justify-self: center;
    font-size: 2.5rem;
  }

  .OtherPages_platform__card__VX\+eA h3 {
    font-size: 1.2rem;
  }

  .OtherPages_platform__card__VX\+eA p {
    font-size: 0.9rem;
  }

  /* Legacy support for old sections */
  .OtherPages_our__mission__j7Thv {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu {
    order: 2;
    padding: 1rem 0;
  }

  .OtherPages_our__mission__j7Thv img {
    order: 1;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 90%;
    width: 100%;
    height: auto;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu p {
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 1rem;
  }

  .OtherPages_bgDark__pQacu .OtherPages_our__mission__j7Thv {
    flex-direction: column-reverse;
  }

  .OtherPages_bgDark__pQacu .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu {
    order: 1;
  }

  .OtherPages_bgDark__pQacu .OtherPages_our__mission__j7Thv img {
    order: 2;
  }
}

/* Enhanced styles for better visual hierarchy */
.OtherPages_section__subtitle__MRD7e {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

/* Enhanced Hero Section Styles */
.OtherPages_hero__badge__A-KNV {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.OtherPages_hero__icon__FfS0L {
  font-size: 1.2rem;
  animation: OtherPages_sparkle__RZQet 2s ease-in-out infinite;
}

.OtherPages_hero__content__1weEH {
  max-width: 800px;
  margin: 0 auto;
}

.OtherPages_hero__description__ePTgg {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes OtherPages_sparkle__RZQet {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* Innovation Stats Section */
.OtherPages_stats__section__Yelm2 {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.OtherPages_stats__section__Yelm2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27%23667eea%27 fill-opacity=%270.03%27%3E%3Cpath d=%27m0 40l40-40h-40v40zm40 0v-40h-40l40 40z%27/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.OtherPages_stats__container__SJmne {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.OtherPages_stat__card__2YbmG {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.OtherPages_stat__card__2YbmG::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s;
}

.OtherPages_stat__card__2YbmG:hover::before {
  left: 100%;
}

.OtherPages_stat__card__2YbmG:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.OtherPages_stat__icon__tH5hw {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
  display: block;
}

.OtherPages_stat__number__kOm27 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.OtherPages_stat__label__81h77 {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

/* Enhanced Story Section */
.OtherPages_story__section__ns98d {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.OtherPages_story__container__DhEPO {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.OtherPages_section__header__40t\+E {
  margin-bottom: 2rem;
}

.OtherPages_section__badge__wgPje {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.OtherPages_badge__icon__6Xibg {
  font-size: 1rem;
}

.OtherPages_section__header__40t\+E h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.OtherPages_image__wrapper__B7PDB {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.OtherPages_image__wrapper__B7PDB img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.OtherPages_image__overlay__57IC4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
}

.OtherPages_image__wrapper__B7PDB:hover .OtherPages_image__overlay__57IC4 {
  opacity: 1;
}

.OtherPages_image__wrapper__B7PDB:hover img {
  transform: scale(1.05);
}

.OtherPages_overlay__icon__JzFjS {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.OtherPages_overlay__icon__JzFjS + span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Timeline Styles */
.OtherPages_story__timeline__Ra9Cv {
  position: relative;
  /* create more space so timeline doesn't overlap text */
  padding-left: 3.25rem; /* increased from 2rem */
  margin-bottom: 1.5rem;
}

.OtherPages_story__timeline__Ra9Cv::before {
  content: '';
  position: absolute;
  /* push the vertical line further left so markers and line don't overlap the paragraph text */
  left: 0.5rem; /* moved left from 1rem */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding-bottom: 1.5rem;
}

.OtherPages_timeline__item__QszMN {
  position: relative;
  margin-bottom: 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.OtherPages_timeline__marker__wdgVF {
  position: absolute;
  /* align marker with the moved vertical line */
  left: -4.5rem; /* shifted slightly left from -2rem */
  width: 3.6rem;
  height: 3.6rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.OtherPages_timeline__content__bIzC5 p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Solution Section */
.OtherPages_solution__section__y2f6a {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
}

.OtherPages_solution__container__RqsBy {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.OtherPages_solution__features__\+Aiv- {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.OtherPages_feature__card__c8vjk {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.OtherPages_feature__card__c8vjk:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.OtherPages_feature__icon__eF0nr {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.OtherPages_feature__content__9wKSE h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.OtherPages_feature__content__9wKSE p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Team Section */
.OtherPages_team__section__QSCLx {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.OtherPages_team__container__NLvYR {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.OtherPages_team__qualities__PXcTe {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.OtherPages_quality__card__BvHuw {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.OtherPages_quality__card__BvHuw:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.OtherPages_quality__icon__5\+5Zi {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.OtherPages_quality__content__JjpPm h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.OtherPages_quality__content__JjpPm p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Medium screen responsiveness */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .OtherPages_landing__text__RSDHw p {
    width: 80%;
    font-size: 1rem;
  }

  .OtherPages_our__mission__j7Thv {
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .OtherPages_our__mission__j7Thv img {
    max-width: 35rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu h1 {
    font-size: 1.8rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu p {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .OtherPages_landing__section__\+cQlW {
    padding: 2rem 0.5rem;
    min-height: 50vh;
  }

  .OtherPages_landing__text__RSDHw {
    margin-top: 10%;
    padding: 0 0.5rem;
  }

  .OtherPages_landing__text__RSDHw h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .OtherPages_hero__badge__A-KNV {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    gap: 0.4rem;
  }

  .OtherPages_hero__icon__FfS0L {
    font-size: 1rem;
  }

  .OtherPages_hero__description__ePTgg {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Hero Container Small Mobile */
  .OtherPages_hero__container__Yg6km {
    gap: 1.5rem;
  }

  .OtherPages_hero__stats__title__k0VGV {
    font-size: 1.3rem;
  }

  .OtherPages_hero__stats__grid__omktz {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .OtherPages_hero__stat__card__CkJ9t {
    padding: 0.75rem 0.5rem;
  }

  .OtherPages_hero__stat__icon__SKUQA {
    font-size: 1.25rem;
  }

  .OtherPages_hero__stat__number__gK1lT {
    font-size: 1.2rem;
  }

  .OtherPages_hero__stat__label__ld2h4 {
    font-size: 0.65rem;
  }

  /* Stats Section Small Mobile */
  .OtherPages_stats__section__Yelm2 {
    padding: 2rem 0.5rem;
  }

  .OtherPages_stats__container__SJmne {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .OtherPages_stat__card__2YbmG {
    padding: 1.25rem 0.75rem;
  }

  .OtherPages_stat__number__kOm27 {
    font-size: 1.75rem;
  }

  .OtherPages_stat__label__81h77 {
    font-size: 0.8rem;
  }

  /* Story Section Small Mobile */
  .OtherPages_story__section__ns98d {
    padding: 3rem 0.5rem;
  }

  .OtherPages_section__badge__wgPje {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .OtherPages_section__header__40t\+E h2 {
    font-size: 1.5rem;
  }

  .OtherPages_image__wrapper__B7PDB img {
    height: 200px;
  }

  .OtherPages_timeline__item__QszMN {
    margin-bottom: 1.5rem;
  }

  .OtherPages_timeline__content__bIzC5 p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Solution Section Small Mobile */
  .OtherPages_solution__section__y2f6a {
    padding: 3rem 0.5rem;
  }

  .OtherPages_feature__card__c8vjk {
    padding: 1rem;
  }

  .OtherPages_feature__content__9wKSE h4 {
    font-size: 1rem;
  }

  .OtherPages_feature__content__9wKSE p {
    font-size: 0.85rem;
  }

  /* Team Section Small Mobile */
  .OtherPages_team__section__QSCLx {
    padding: 3rem 0.5rem;
  }

  .OtherPages_quality__card__BvHuw {
    padding: 1rem;
  }

  .OtherPages_quality__content__JjpPm h4 {
    font-size: 1rem;
  }

  .OtherPages_quality__content__JjpPm p {
    font-size: 0.85rem;
  }

  /* Platform Section Small Mobile */
  .OtherPages_platform__section__ctUUo {
    padding: 3rem 0.5rem;
  }

  .OtherPages_platform__title__JcnpP {
    font-size: 1.8rem;
  }

  .OtherPages_platform__subtitle__LIcva {
    font-size: 0.9rem;
  }

  .OtherPages_platform__subtitle__heading__NhH\+Y {
    font-size: 1.4rem;
  }

  .OtherPages_platform__card__VX\+eA {
    padding: 1.5rem 1rem;
    flex: none;
    width: 100%;
    max-width: 350px;
  }

  .OtherPages_platform__card__icon__VXyOJ {
    font-size: 2rem;
  }

  .OtherPages_platform__card__VX\+eA h3 {
    font-size: 1.1rem;
  }

  .OtherPages_platform__card__VX\+eA p {
    font-size: 0.85rem;
  }

  /* Legacy support for old sections */
  .OtherPages_our__mission__j7Thv {
    padding: 1.5rem 0.5rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .OtherPages_our__mission__j7Thv .OtherPages_mission__text__QTtHu p {
    font-size: 0.85rem;
    line-height: 1.4rem;
  }
}

/* Very small phones: collapse story into single column at <=540px */
@media screen and (max-width: 540px) and (min-width: 481px) {
  .OtherPages_story__container__DhEPO {
    grid-template-columns: 1fr; /* stack on very small phones */
    gap: 1.5rem;
  }

  .OtherPages_image__wrapper__B7PDB img {
    height: 220px;
  }

  .OtherPages_story__timeline__Ra9Cv {
    padding-left: 1.75rem; /* slightly reduced for small screens */
  }

  .OtherPages_story__timeline__Ra9Cv::before {
    left: 0.5rem;
  }

  .OtherPages_timeline__marker__wdgVF {
    left: -1.8rem;
    width: 2.1rem;
    height: 2.1rem;
  }
}

/* Touch interactions for mobile */
@media (hover: none) and (pointer: coarse) {
  .OtherPages_stat__card__2YbmG:hover {
    transform: none;
  }
  
  .OtherPages_feature__card__c8vjk:hover,
  .OtherPages_quality__card__BvHuw:hover {
    transform: none;
  }
  
  .OtherPages_image__wrapper__B7PDB:hover .OtherPages_image__overlay__57IC4 {
    opacity: 0;
  }
  
  .OtherPages_image__wrapper__B7PDB:hover img {
    transform: none;
  }
}

/* Performance optimizations */
.OtherPages_stat__card__2YbmG,
.OtherPages_feature__card__c8vjk,
.OtherPages_quality__card__BvHuw,
.OtherPages_image__wrapper__B7PDB {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Platform Features Section */
.OtherPages_platform__section__ctUUo {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.OtherPages_platform__section__ctUUo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width=%2760%27 height=%2760%27 viewBox=%270 0 60 60%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.05%27%3E%3Ccircle cx=%2730%27 cy=%2730%27 r=%274%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.OtherPages_platform__title__JcnpP {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.OtherPages_platform__subtitle__LIcva {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.OtherPages_platform__subtitle__heading__NhH\+Y {
  font-size: 2rem;
  margin: 3rem 0 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.OtherPages_platform__cards__wrapper__-upLk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.OtherPages_platform__card__VX\+eA {
  flex: 0 1 300px;
  max-width: 350px;
}

.OtherPages_platform__card__VX\+eA {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  flex: 0 1 300px;
  max-width: 350px;
}

.OtherPages_platform__card__VX\+eA:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  background: white;
}

.OtherPages_platform__card__icon__VXyOJ {
  font-size: 3.5rem;
  margin: 0 auto 1.5rem auto;
  display: block;
  text-align: center;
}

.OtherPages_platform__card__VX\+eA h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #1e293b;
}

.OtherPages_platform__card__VX\+eA p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Platform Card Color Variants */
.OtherPages_platform__card__blue__u3NMo .OtherPages_platform__card__icon__VXyOJ {
  color: #3b82f6;
}

.OtherPages_platform__card__green__Mf7wu .OtherPages_platform__card__icon__VXyOJ {
  color: #10b981;
}

.OtherPages_platform__card__yellow__pyb6D .OtherPages_platform__card__icon__VXyOJ {
  color: #f59e0b;
}

.OtherPages_platform__card__red__fRlf7 .OtherPages_platform__card__icon__VXyOJ {
  color: #ef4444;
}

.OtherPages_platform__card__pink__N4SZs .OtherPages_platform__card__icon__VXyOJ {
  color: #ec4899;
}

/* Additional Services Section Styles */
.OtherPages_detailed__feature__section__OSwL4 {
  background-color: rgb(245, 245, 245);
  padding: 4rem 2rem;
}

.OtherPages_simple__card__wrapper__\+KprZ {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.OtherPages_simple__card__VtBEG {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0px 0.233px 4px lightgray;
  margin: 1rem;
  flex: 1 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.OtherPages_simple__card__VtBEG:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.OtherPages_simple__card__VtBEG h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
  color: #333;
}

.OtherPages_simple__card__VtBEG p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: rgb(100, 100, 100);
  line-height: 1.6rem;
}

/* Responsive styles for additional services */
@media screen and (max-width: 768px) {
  .OtherPages_detailed__feature__section__OSwL4 {
    padding: 3rem 1rem;
  }

  .OtherPages_simple__card__wrapper__\+KprZ {
    flex-direction: column;
    align-items: center;
  }

  .OtherPages_simple__card__VtBEG {
    min-width: 90%;
    max-width: 90%;
    margin: 0.5rem 0;
    padding: 1.5rem;
  }

  .OtherPages_simple__card__VtBEG h3 {
    font-size: 1.2rem;
  }

  .OtherPages_simple__card__VtBEG p {
    font-size: 0.9rem;
  }
}

.Form_form__wrapper__uel5M{
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
}


.Form_form__wrapper__uel5M .Form_intro__title__3XNfh{
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 4rem;
    font-family: 'Rubik',sans-serif;
    
}

.Form_problem__btn__wrapper__SGv0B{
    display: flex;
    align-items: center;
}



.Form_explore__body__fvsjr .Form_article__card__WO4Al{
    border: 1px solid lightgray;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    width: 25%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
    text-decoration: none;
    color: black;
    text-align: center;
    border-radius: 10px;


}

.Form_explore__body__fvsjr .Form_article__card__wrapper__dzhim {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}

.Form_article__card__WO4Al:hover{
    transform: scale(1.1);
    transition: 0.3s ease-out;
    cursor: pointer;
}

.Form_article__textHeader__PP6ld{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Form_game__wrapper__7Y4H4{
    border: 2px solid rgb(245, 245, 245);
    width: 100%;
    
    background-color: whitesmoke;
    padding: 1rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
    
}

.Form_game__btn__wrapper__6m4xb{
    padding: 10px ;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.Form_game__btn__wrapper__6m4xb Button{
    margin:10px;
}



.Form_active__option__IwMpZ{
    background-color: whitesmoke !important;
    border:2px solid var(--primary) !important;
}

.Form_explore__body__fvsjr .Form_article__card__WO4Al a:hover{
    background-color: whitesmoke;
}

.Form_explore__body__fvsjr .Form_article__card__WO4Al img{
    width: 100px;

}



.Form_intro__wrapper__sQ3ZZ{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}

.Form_form__Y4xxt{
    background-color: white;
    box-shadow: 0px 0.333px 5px gray;
    padding: 1.5rem;
    width: 85vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    margin-top: 3%;
}


.Form_form__header__chrDa h2{
    margin: 0px;
}

.Form_form__header__chrDa{
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-bottom: 1px solid lightgray;
    padding-bottom: 1rem;
       
}

.Form_radio__inline__99lxa{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap:10px;
    gap:10px;
    margin-bottom: 15px;
  
}








.Form_inputRadioWrapper__mUT9k label{
    font-size: 1rem;
    font-family: 'Roboto',sans-serif;
}

/* .input__wrapper label,.input__inline label{
    font-weight: bold;
    color: black;
} */


.Form_selection__cardWrapper__v6Thg{
    display: flex;
    justify-content: center;
 
}

.Form_selection__card__hPor\+{
    border: 1px solid lightgray;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 25%;
    cursor: pointer;
    margin: 2rem;
    text-align: center;
}

.Form_selection__card__hPor\+ small{
    color: gray;
}

.Form_form__body__3yd78 > h2{
    text-align: center;
}

.Form_selection__card__hPor\+ img{
    width: 80px;

}

.Form_selection__card__hPor\+:hover:not(.Form_active__selectionCard__MgYYf){
    background-color: whitesmoke;
    
}

.Form_financial__asses__6Moy6{
    display: grid;
    grid-template-columns: auto auto  auto ;
    grid-gap: 10px;
    gap: 10px;
}

.Form_financial__asses__6Moy6 textarea:focus{
    height: 120px !important;
    transition: 0.3s;
}

.Form_spinner__FmNmy{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Form_spinner__FmNmy img{
    width: 50px;

}

.Form_form__header__chrDa small{
    color: rgb(199, 199, 199);
    
}

.Form_explore__wrapper__5PQTN{
    padding: 1rem;
}

.Form_explore__header__nwyEk{
    display: flex;
    justify-content: space-between;
}

.Form_video__wrapper__pgDZl{
    display: flex;
   
}

.Form_video__wrapper__pgDZl iframe{
    width: 30%;
    height: 200px;
    margin: 1rem 2rem;
}

.Form_input__wrapper__G87hQ{
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    margin-top: 1rem;
    
}

.Form_input__wrapper__G87hQ label{
    margin-bottom: 10px;
}

.Form_language__wrapper__vQY0m{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.Form_form__btnwrapper__maIRZ{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.Form_form__btnwrapper__maIRZ button{
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
}


.Form_visible__-pDMM{
    display: block;
}

.Form_hidden__za7Dl{
    display: none;
}

.Form_input__inline__b1Vou{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap:10px;
    gap:10px;
}


.Form_theme__card__eqVRM{
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border: 3px solid transparent;
    
}

.Form_theme__card__eqVRM h4{
    margin: 0px;
    margin-bottom: 10px;
}


.Form_pink__theme__yV95P{
    background-color: rgb(255, 222, 244);
    color: rgb(223, 0, 174);
    
}

.Form_pink__theme__yV95P:hover,.Form_active__theme__YmLpH.Form_pink__theme__yV95P{
    border-color: rgb(223, 0, 174);
    
}


.Form_green__theme__EnYnV{
    background-color: rgb(196, 250, 217);
    color: rgb(102, 211, 135);
}


.Form_green__theme__EnYnV:hover,.Form_active__theme__YmLpH.Form_green__theme__EnYnV{
    border-color: rgb(2, 207, 111);
}

.Form_blue__theme__RVU-C{
    background-color: rgb(196, 244, 250);
    color: rgb(102, 176, 211);
}

.Form_blue__theme__RVU-C:hover,.Form_active__theme__YmLpH.Form_blue__theme__RVU-C{
    border-color: rgb(2, 159, 207);
}

.Form_red__theme__pDRmB{
    background-color: rgb(253, 201, 201);
    color: rgb(202, 73, 73);
}

.Form_red__theme__pDRmB:hover,.Form_active__theme__YmLpH.Form_red__theme__pDRmB{
    border-color: rgb(202, 60, 60);
}


.Form_orange__theme__OUzpc{
    background-color: rgb(255, 218, 175);
    color: rgb(255, 112, 30);
}

.Form_orange__theme__OUzpc:hover,.Form_active__theme__YmLpH.Form_orange__theme__OUzpc{
    border-color: rgb(255, 112, 30);
}

.Form_purple__theme__caTbO{
    background-color: rgb(243, 223, 255);
    color: rgb(185, 85, 185);
}

.Form_purple__theme__caTbO:hover,.Form_active__theme__YmLpH.Form_purple__theme__caTbO{
    border-color: rgb(185, 85, 185);
}

.Form_selection__cardSmallWrapper__H-Jbo{
    justify-content: flex-start;
}

.Form_selection__cardSmallWrapper__H-Jbo .Form_selection__card__hPor\+{
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    width: 27%;
}

.Form_selection__cardSmallWrapper__H-Jbo .Form_selection__card__hPor\+ img{
    width: 50px;
}



.Form_active__selectionCard__MgYYf{
    background-color: whitesmoke;
    border: 5px solid var(--primary);
}

.Form_feedback__radio__wrapper__I6u2v{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.Form_feedback__radio__wrapper__I6u2v input{
    margin: 0px;
}


.Form_feedback__radio__input__IiPWn{
    margin-bottom: 10px;
    margin-right: 20px;
}

.Form_feedback__title__card__chQhl{
    margin: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(253, 219, 246);
    border: 1px solid blueviolet;
    min-height: 50px;
    border-radius: 10px;

}

.Form_feedback__title__card__chQhl h4{
    margin: 0px;
    font-size: 1rem;
}

.Form_feedback__radio__wrapper__I6u2v label{
    margin: 0px;
    margin-left: 5px; 
   
}

.Form_form__body__problemStatement__BRJMl{
    padding: 10px;
    border: 1px solid lightgray;
}


.Form_report__completed__BwXOs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Form_report__completed__BwXOs img{
    width: 50%;
    border-radius: 10px;
}


.Form_game__info__yEfk3{
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.Form_score__section__h2sgK{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 50%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    border: 1px solid lightgray;
    margin-top: 5%;
}

.Form_score__section__h2sgK img{
    width: 100px;
}

.Form_score__section__h2sgK h1{
    font-size: 1.4rem;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;

}

.Form_score__section__h2sgK h3{
    color: rgb(167, 167, 167);
    margin: 0px;
}

.Form_game__info__yEfk3 h4{
    font-size: 1.7rem;
    margin: 0px;

}


.Form_game__body__BJ6jU{
    padding: 2rem;
}

.Form_question__count__d8G4z{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.Form_question_section__MIzlF{
    background-color: white;
    border: 1px solid lightgray;
    padding: 1.5rem;
    border-radius: 10px;

}

.Form_question__text__stx32{
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.Form_answer__options__UUCkV{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap:10px;
    gap:10px;

}

.Form_answer__options__UUCkV button{
    padding: 10px;
    border: none;
    text-align: left;
    border-radius: 5px;
    cursor: pointer;
    background-color: white;
    color: black;
    font-weight: bold;
    border: 2px solid black;
}

.Form_answer__options__UUCkV button:disabled{
    cursor: not-allowed;
}

.Form_answer__options__UUCkV button:hover:not(.Form_answer__options__UUCkV button:disabled){
    background-color: whitesmoke;
}

.Form_right__answer__FYrHC{
    border: 2px solid rgb(5, 185, 110) !important;
    background-color: lightcyan !important;
}

.Form_box__mZPQt{
    border-radius: 10px;
    box-shadow: 0px 0.244px 6px gray;
    margin: 1rem;
    background-color: white;
    margin-top: 5%;
    padding: 2rem;
}

.Form_box__mZPQt h2{
    text-align: center;
}

.Form_image__wrapper__uM5Py{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Form_image__card__4Gojq{
    box-shadow: 0px 0.344px 5px lightgray;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Form_image__card__4Gojq:hover{
    background-color: whitesmoke;
    cursor: pointer;
}

.Form_image__card__4Gojq img{
    width:300px;
}

.Form_ideaForm__lPhJ2{
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 10px;
    margin: 1rem 0px;
}

@media screen and (max-width:768px){
    .Form_form__wrapper__uel5M .Form_intro__title__3XNfh{
        font-size: 3rem;
        margin: 2rem;
        margin-top: 30%;
       
    }

    .Form_answer__options__UUCkV{
        grid-template-columns: auto;
    }

    .Form_score__section__h2sgK{
        width: 90%;
    }

    .Form_form__Y4xxt{
        width: 70%;
        margin-top:20%;
    }

    .Form_selection__cardWrapper__v6Thg{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .Form_selection__card__hPor\+{
        width: 80%;
    }

    .Form_input__inline__b1Vou{
        grid-template-columns: auto;
    }

    .Form_input__wrapper__G87hQ textarea{
        width: 100% !important;
        height: 100px;
    }

    .Form_radio__inline__99lxa{
        grid-template-columns: auto;
    }

    .Form_selection__cardSmallWrapper__H-Jbo{
        flex-direction: column;
    }
    .Form_selection__cardSmallWrapper__H-Jbo .Form_selection__card__hPor\+{
        width: 80%
    }

    .Form_financial__asses__6Moy6{
        grid-template-columns: auto;
    }

    .Form_article__card__wrapper__dzhim{
        flex-direction: column;

    }
    .Form_article__card__WO4Al{
        width: 100%;
    }

    .Form_explore__header__nwyEk{
        flex-direction: column-reverse;
    }

    .Form_video__wrapper__pgDZl{
        flex-direction: column;
    }

    .Form_video__wrapper__pgDZl iframe{
        width: 100%;
        margin: 0px;
        margin-bottom: 20px;
    }
    

    
}



.Navbar_navbar__c\+ZhH {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* border: 1px solid black; */
  /* width: 100%; */
}

.Navbar_navbar__c\+ZhH ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.Navbar_profile__wrapper__p\+AON {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  color: rgb(241, 241, 241);
}

.Navbar_profile__wrapper__p\+AON img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 100px;
  margin-right: 10px;
}

.Navbar_profile__wrapper__p\+AON span {
  margin-right: 5px;
}

.Navbar_toggler__T\+gwv {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.Navbar_toggler__T\+gwv:hover {
  color: gray;
}

.Navbar_navbar__c\+ZhH ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: rgb(241, 241, 241);
}

.Navbar_navbar__c\+ZhH ul li a:hover {
  background-color: rgb(240, 240, 240);
  border-radius: 6px;
  transition: 0.3s;
  color: var(--primary);
}

.Navbar_nav_icon__iUkd9 {
  font-size: 1rem;
  margin-right: 10px;
}

.Navbar_lightText__5T\+Md {
  box-shadow: none;
}

.Navbar_lightText__5T\+Md a,
.Navbar_lightText__5T\+Md h3,
.Navbar_lightText__5T\+Md .Navbar_profile__wrapper__p\+AON {
  color: white;
}

/* When we need dark text on light backgrounds (e.g. blog hero) */
.Navbar_darkText__r7vT\+ a,
.Navbar_darkText__r7vT\+ h3,
.Navbar_darkText__r7vT\+ .Navbar_profile__wrapper__p\+AON,
.Navbar_darkText__r7vT\+ .Navbar_logo__wrapper__860Fl {
  color: #111 !important;
}

.Navbar_darkText__r7vT\+ .Navbar_nav_icon__iUkd9 {
  color: #111 !important;
}

.Navbar_logo__wrapper__860Fl {
  color: rgb(241, 241, 241);
}

.Navbar_scrolledNav__k0cM1 {
  background-color: white !important;
  color: black;
}

.Navbar_scrolledNav__k0cM1 .Navbar_logo__wrapper__860Fl,
.Navbar_scrolledNav__k0cM1 .Navbar_profile__wrapper__p\+AON,
.Navbar_scrolledNav__k0cM1 ul li a {
  color: black;
}

.Navbar_scrolledNav__k0cM1 .Navbar_btn__wrapper__NX3T- a {
  color: white;
}

.Navbar_logo__wrapper__860Fl img {
  width: 35px;
  margin-right: 5px;
  margin-bottom: 2px;
}

.Navbar_logo__item__gystd {
  display: flex;
  align-items: center;
}

.Navbar_logo__item__gystd h3 {
  margin: 0px;
  font-family: "Playwrite PE", cursive;
}

@media screen and (max-width: 768px) {
  .Navbar_toggler__T\+gwv {
    display: inline;
  }

  .Navbar_navbar__c\+ZhH {
    flex-direction: column;
    background-color: whitesmoke;
    color: black !important;
    padding: 10px;
    overflow-x: hidden;
    position: static;
  }

  .Navbar_logo__wrapper__860Fl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .Navbar_logo__item__gystd {
    width: 20%;
    font-size: 0.8rem;
  }

  .Navbar_logo__item__gystd img {
    width: 20px;
  }

  .Navbar_navbar__c\+ZhH .Navbar_navbar__links__0qnNd {
    display: none;
  }

  .Navbar_navbar__c\+ZhH .Navbar_toggled__navList__I1SkZ {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .Navbar_navbar__c\+ZhH .Navbar_toggled__navList__I1SkZ li {
    width: 80%;
  }

  .Navbar_navbar__c\+ZhH .Navbar_toggled__navList__I1SkZ a {
    color: black;
    width: 100%;
    justify-content: flex-start;
  }

  .Navbar_navbar__c\+ZhH .Navbar_toggled__navList__I1SkZ a:hover {
    background-color: rgb(231, 230, 230);
  }

  .Navbar_navbar__c\+ZhH .Navbar_toggled__navList__I1SkZ .Navbar_profile__wrapper__p\+AON {
    margin-top: 2rem;
    color: black;
  }

  .Navbar_navbar__c\+ZhH h3 {
    color: black;
    margin: 5px;
  }
}

.FeatureRequest_footer__H3okb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FeatureRequest_featureRequest__header__L8EL6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FeatureRequest_tag__wrapper__ENXG- {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.FeatureRequest_comment__wrapper__PV371 {
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
  border: 1px solid lightgray;
  background-color: whitesmoke;
}

.FeatureRequest_action__wrapper__vAjKG {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.FeatureRequest_filter__wrapper__bZp7q {
  display: flex;
  flex-direction: column;
}

.FeatureRequest_filter__wrapper__bZp7q label {
  font-weight: bold;
  margin-bottom: 5px;
}

.FeatureRequest_feature__cardHeader__akb11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FeatureRequest_feature__cardHeaderInfo__UU8KZ {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .FeatureRequest_featureRequest__header__L8EL6 {
    flex-direction: column;
  }

  .FeatureRequest_action__wrapper__vAjKG {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    align-items: center;
  }

  .FeatureRequest_action__wrapper__vAjKG button {
    margin-top: 10px;
  }
  .FeatureRequest_filter__wrapper__bZp7q {
    margin-bottom: 10px;
  }
  .FeatureRequest_feature__cardHeader__akb11,
  .FeatureRequest_feature__cardHeaderInfo__UU8KZ {
    flex-direction: column;
    justify-content: flex-start;
  }
  .FeatureRequest_feature__cardHeaderInfo__UU8KZ > div {
    margin-top: 10px;
  }
}

.Pricing_container__3lJkJ {
  max-width: 1400px;
  margin: auto;
  padding: 4rem 1rem;
}

.Pricing_contact__wrapper__HH-yU {
  background-image: url(/static/media/blobBg.df683a4e1a47dd5d3849.svg);
  background-color: var(--primary);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.Pricing_contact__wrapper__HH-yU h1 {
  font-size: 3rem;
  margin-top: 3%;
}

.Pricing_title__OfKe6 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
}

.Pricing_grid__wlenX {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
  padding: 1rem;
  width: 100%;
}

/* New Pricing Layout */
.Pricing_pricingOuter__50yUd { 
  background:#f9fafb; 
  padding:4rem 1rem;
}

.Pricing_pricingIntro__V09ZG { 
  max-width:960px; 
  margin:0 auto 3rem; 
  text-align:center;
}

.Pricing_pricingTitle__vdo1v { 
  font-size:2.5rem; 
  font-weight:700; 
  color:#111827; 
  line-height:1.15;
}

.Pricing_pricingSubtitle__0LVF9 { 
  margin-top:0.75rem; 
  font-size:1.125rem; 
  color:#6b7280; 
  font-weight:400;
}

.Pricing_billingToggle__8U7tY {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.25rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.Pricing_toggleButton__mJIIw {
  flex: 1 1;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Pricing_toggleButton__mJIIw.Pricing_active__wPsT9 {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.Pricing_plansGrid__rIWaC { 
  display:grid; 
  grid-gap:2rem; 
  gap:2rem; 
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); 
  max-width:1400px; 
  margin:0 auto;
}

.Pricing_planCard__t6sOa { 
  background:#fff; 
  border-radius:1.5rem; 
  padding:2rem; 
  display:flex; 
  flex-direction:column; 
  position:relative; 
  box-shadow:0 8px 20px -6px rgba(0,0,0,.08),0 4px 10px -4px rgba(0,0,0,.05); 
  transition:box-shadow .25s, transform .25s, border-color .25s; 
  border:1px solid #e5e7eb;
}

.Pricing_planCard__t6sOa:hover { 
  transform:translateY(-6px); 
  box-shadow:0 16px 40px -10px rgba(0,0,0,.15),0 8px 24px -8px rgba(0,0,0,.08);
}

.Pricing_planCardPopular__eMeD8 { 
  border:2px solid #4f46e5; 
  box-shadow:0 12px 32px -6px rgba(99,102,241,.35);
}

.Pricing_planBadge__zy339 { 
  position:absolute; 
  top:1rem; 
  right:1rem; 
  background:#4f46e5; 
  color:#fff; 
  font-size:.65rem; 
  letter-spacing:.05em; 
  padding:0.4rem 0.75rem; 
  border-radius:9999px; 
  font-weight:600; 
  text-transform:uppercase; 
  box-shadow:0 4px 10px -2px rgba(79,70,229,.5);
}

.Pricing_planBody__mAg7t { 
  flex:1 1 auto;
}

.Pricing_planName__hZeFp { 
  font-size:1.25rem; 
  font-weight:600; 
  color:#111827; 
  margin:0;
}

.Pricing_discountBadge__8GWkL {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.Pricing_planDescription__yjmZY { 
  margin-top:.5rem; 
  font-size:.9rem; 
  color:#6b7280; 
  line-height:1.5;
}

.Pricing_planPricingRow__NlUiw { 
  margin-top:1.5rem; 
  display:flex; 
  align-items:flex-end; 
  gap:.35rem; 
  flex-wrap:wrap;
}

.Pricing_planPrice__3-G5A { 
  font-size:2.25rem; 
  font-weight:700; 
  color:#111827;
}

.Pricing_planPeriod__Ttvun { 
  font-size:1rem; 
  color:#6b7280; 
  font-weight:500;
}

.Pricing_planFeaturesList__eu-NF { 
  list-style:none; 
  margin:1.5rem 0 0; 
  padding:0; 
  display:flex; 
  flex-direction:column; 
  gap:.65rem;
}

.Pricing_planFeatureItem__x3CLR { 
  display:flex; 
  align-items:flex-start; 
  font-size:.85rem; 
  color:#374151; 
  line-height:1.4;
}

.Pricing_planCheck__Hflgw { 
  color:#16a34a; 
  font-weight:700; 
  margin-right:.5rem; 
  font-size:.9rem; 
  line-height:1.2;
}

/* RTL adjustment for Arabic */
[dir='rtl'] .Pricing_planFeatureItem__x3CLR { 
  flex-direction:row-reverse;
}
[dir='rtl'] .Pricing_planCheck__Hflgw { 
  margin-right:0; 
  margin-left:.5rem;
}

.Pricing_planButton__zIeuJ { 
  margin-top:2rem; 
  background:#4f46e5; 
  color:#fff; 
  border:none; 
  padding:.9rem 1.25rem; 
  border-radius:0.9rem; 
  font-size:.95rem; 
  font-weight:600; 
  cursor:pointer; 
  transition:background .25s, transform .25s, box-shadow .25s; 
  width:100%;
}

.Pricing_planButton__zIeuJ:hover { 
  background:#4338ca; 
  box-shadow:0 8px 24px -8px rgba(79,70,229,.6); 
  transform:translateY(-3px);
}

.Pricing_planButton__zIeuJ:active { 
  transform:translateY(-1px); 
  background:#3730a3;
}

.Pricing_planButtonPopular__A0oUa { 
  background:#16a34a;
}

.Pricing_planButtonPopular__A0oUa:hover { 
  background:#15803d; 
  box-shadow:0 8px 24px -8px rgba(22,163,74,.55);
}

/* Onboarding Confidence Section */
.Pricing_onboardingSection__iPjkh { 
  background:#ffffff; 
  padding:4rem 1.25rem; 
  border-radius:2rem; 
  box-shadow:0 8px 30px -8px rgba(0,0,0,.08); 
  position:relative; 
  overflow:hidden; 
}

.Pricing_onboardingSection__iPjkh:before, .Pricing_onboardingSection__iPjkh:after { 
  content:""; 
  position:absolute; 
  width:380px; 
  height:380px; 
  background:radial-gradient(circle at center, rgba(99,102,241,0.12), transparent 70%); 
  top:-120px; 
  left:-120px; 
  pointer-events:none; 
}
.Pricing_onboardingSection__iPjkh:after { 
  top:auto; 
  bottom:-140px; 
  left:auto; 
  right:-140px; 
  background:radial-gradient(circle at center, rgba(139,92,246,0.12), transparent 70%); 
}

.Pricing_onboardingHeader__nDtgk { 
  max-width:900px; 
  margin:0 auto 3rem; 
  text-align:center; 
}

.Pricing_onboardingTitle__H78r3 { 
  font-size:2.25rem; 
  font-weight:700; 
  color:#111827; 
  margin:0; 
}

.Pricing_onboardingSubtitle__q4KRn { 
  margin-top:.85rem; 
  font-size:1.1rem; 
  color:#6b7280; 
  line-height:1.55; 
}

.Pricing_onboardingGrid__zi7YK { 
  display:grid; 
  grid-gap:2rem; 
  gap:2rem; 
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); 
  max-width:1200px; 
  margin:0 auto; 
}

.Pricing_onboardingCard__seQiz { 
  background:#f9fafb; 
  border:1px solid #e5e7eb; 
  border-radius:1.25rem; 
  padding:1.75rem 1.5rem 1.9rem; 
  position:relative; 
  display:flex; 
  flex-direction:column; 
  gap:.65rem; 
  transition:background .3s, box-shadow .3s, transform .3s, border-color .3s; 
  overflow:hidden; 
}

.Pricing_onboardingCard__seQiz:before { 
  content:""; 
  position:absolute; 
  inset:0; 
  background:linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12)); 
  opacity:0; 
  transition:opacity .4s; 
}

.Pricing_onboardingCard__seQiz:hover { 
  background:#ffffff; 
  border-color:#6366f1; 
  box-shadow:0 14px 40px -10px rgba(99,102,241,0.35); 
  transform:translateY(-6px); 
}

.Pricing_onboardingCard__seQiz:hover:before { 
  opacity:1; 
}

.Pricing_onboardingStepCircle__PVWx5 { 
  width:46px; 
  height:46px; 
  border-radius:50%; 
  background:linear-gradient(135deg,#6366f1,#8b5cf6); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-weight:600; 
  font-size:1rem; 
  color:#ffffff; 
  box-shadow:0 4px 12px -4px rgba(99,102,241,.6); 
  flex-shrink:0; 
}

.Pricing_onboardingCardHeader__Nh-IQ { 
  display:flex; 
  align-items:center; 
  gap:.9rem; 
  position:relative; 
  z-index:2; 
}

.Pricing_onboardingCardTitle__rioMO { 
  font-size:1.05rem; 
  font-weight:600; 
  color:#1f2937; 
  margin:0; 
}

.Pricing_onboardingCardText__q9CZi { 
  font-size:.85rem; 
  line-height:1.5; 
  color:#4b5563; 
  margin:0; 
  position:relative; 
  z-index:2; 
}

.Pricing_onboardingConfidenceNote__Oo3VY { 
  margin-top:3rem; 
  text-align:center; 
  font-size:.85rem; 
  color:#6b7280; 
  max-width:760px; 
  margin-left:auto; 
  margin-right:auto; 
}

@media (max-width: 640px) { 
  .Pricing_onboardingTitle__H78r3 { font-size:1.9rem; }
  .Pricing_onboardingSubtitle__q4KRn { font-size:1rem; }
  .Pricing_onboardingSection__iPjkh { padding:3rem 1rem; }
}

.Pricing_header__\+P0Cw {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.Pricing_popular__iASpj {
  position: relative;
}

.Pricing_popular__iASpj::before {
  content: "Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #22c55e;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.Pricing_name__vew-L {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.Pricing_price__AXdHZ {
  font-size: 2.25rem;
  font-weight: bold;
}

.Pricing_period__W8--p {
  font-size: 1rem;
  opacity: 0.8;
}

.Pricing_featureLabel__2vbgE {
  font-weight: 600;
  color: #4b5563;
}

.Pricing_featureValue__\+8FGS {
  color: #6b7280;
  font-size: 0.875rem;
  text-align: right;
}

.Pricing_button__3VKHZ {
  display: block;
  margin: 0 2rem 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: opacity 0.2s ease-in-out;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.Pricing_button__3VKHZ:hover {
  opacity: 0.9;
}

/* *************************************** */
/* Deprecated old feature/card layout retained temporarily (removed) */

@media (min-width: 425px) {
  .Pricing_feature__viRNf {
    gap: 4.5rem;
  }
}

@media (min-width: 768px) {
  .Pricing_grid__wlenX {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .Pricing_grid__wlenX {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .Pricing_grid__wlenX {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Enhanced Hero Section */
.Pricing_heroSubtitle__1iVKb {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Card Styles */
.Pricing_description__Gdntm {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-align: center;
}

.Pricing_popularBadge__R6GtN {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  z-index: 10;
}

.Pricing_buttonPopular__RQc8q {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

/* Section Wrapper */
.Pricing_sectionWrapper__eBk-2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

/* Feature Comparison Table */
.Pricing_featureTable__M1NZ5 {
  margin: 2rem 0;
}

.Pricing_tableTitle__vGbvg {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.Pricing_tableWrapper__g\+ClJ {
  overflow-x: auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.Pricing_comparisonTable__QPWJF {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.Pricing_comparisonTable__QPWJF th {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.Pricing_comparisonTable__QPWJF th:first-child {
  text-align: left;
  border-top-left-radius: 1rem;
}

.Pricing_comparisonTable__QPWJF th:last-child {
  border-top-right-radius: 1rem;
}

.Pricing_categoryRow__1PQXb {
  background: #f8fafc;
}

.Pricing_categoryHeader__rogo0 {
  padding: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.Pricing_featureRow__-f3WI {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.Pricing_featureRow__-f3WI:hover {
  background-color: #f9fafb;
}

.Pricing_featureName__PGAV\+ {
  padding: 1rem;
  font-weight: 500;
  color: #374151;
  text-align: left;
}

.Pricing_featureValue__\+8FGS {
  padding: 1rem;
  text-align: center;
  color: #6b7280;
}

.Pricing_checkmark__Up33l {
  color: #22c55e;
  font-size: 1.2rem;
  font-weight: bold;
}

.Pricing_cross__p5YNy {
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: bold;
}

.Pricing_featureText__2yS74 {
  font-size: 0.9rem;
  color: #374151;
}

/* Category Button Styles */
.Pricing_categoryButton__YKHhX {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  transition: background-color 0.2s ease;
}

.Pricing_categoryButton__YKHhX:hover {
  background-color: #f3f4f6;
}

.Pricing_categoryIcon__LNsnX {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6366f1;
  transition: transform 0.2s ease;
}

.Pricing_categoryIconOpen__YduKu {
  transform: rotate(45deg);
}

/* Trust Indicators */
.Pricing_trustSection__Ub4JF {
  text-align: center;
  padding: 4rem 0;
  background: #f8fafc;
  border-radius: 2rem;
}

.Pricing_trustTitle__gws91 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.Pricing_trustBadges__J7kGt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.Pricing_trustBadge__vCwsV {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease;
}

.Pricing_trustBadge__vCwsV:hover {
  transform: translateY(-4px);
}

.Pricing_badgeIcon__-PaBi {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.Pricing_trustBadge__vCwsV h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.Pricing_trustBadge__vCwsV p {
  color: #6b7280;
  margin: 0;
}

/* FAQ Section */
.Pricing_faqSection__WuaWM {
  max-width: 800px;
  margin: 0 auto;
}

.Pricing_faqTitle__NlCqI {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.Pricing_faqContainer__BOTTU {
  margin-top: 1rem;
}

.Pricing_faqItem__w9RDv {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.Pricing_faqQuestion__rM8Wa {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: background-color 0.2s ease;
}

.Pricing_faqQuestion__rM8Wa:hover {
  background-color: #f9fafb;
}

.Pricing_faqIcon__xYjMR {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6366f1;
  transition: transform 0.2s ease;
}

.Pricing_faqIconOpen__iRuUE {
  transform: rotate(45deg);
}

.Pricing_faqAnswer__Vz9PP {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.6;
  animation: Pricing_fadeIn__pNnfB 0.3s ease-in-out;
}

.Pricing_faqAnswer__Vz9PP p {
  margin: 0;
}

@keyframes Pricing_fadeIn__pNnfB {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Section */
.Pricing_ctaSection__bqfwl {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.Pricing_ctaContent__Ok3ry {
  max-width: 600px;
  margin: 0 auto;
}

.Pricing_ctaContent__Ok3ry h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.Pricing_ctaContent__Ok3ry p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.Pricing_ctaButtons__L-Kff {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.Pricing_ctaPrimary__6lJ1Y {
  background: white;
  color: #6366f1;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Pricing_ctaPrimary__6lJ1Y:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.25);
}

.Pricing_ctaSecondary__IAYFc {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.Pricing_ctaSecondary__IAYFc:hover {
  background: white;
  color: #6366f1;
  transform: translateY(-2px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .Pricing_tableWrapper__g\+ClJ {
    border-radius: 0.5rem;
  }
  
  .Pricing_comparisonTable__QPWJF th,
  .Pricing_featureName__PGAV\+,
  .Pricing_featureValue__\+8FGS {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .Pricing_trustBadges__J7kGt {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .Pricing_ctaButtons__L-Kff {
    flex-direction: column;
    align-items: center;
  }
  
  .Pricing_ctaPrimary__6lJ1Y,
  .Pricing_ctaSecondary__IAYFc {
    width: 100%;
    max-width: 300px;
  }
  
  .Pricing_heroSubtitle__1iVKb {
    font-size: 1rem;
  }
  
  .Pricing_tableTitle__vGbvg,
  .Pricing_trustTitle__gws91,
  .Pricing_faqTitle__NlCqI {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .Pricing_sectionWrapper__eBk-2 {
    padding: 2rem 0.5rem;
  }
  
  .Pricing_comparisonTable__QPWJF {
    min-width: 600px;
  }
  
  .Pricing_tableTitle__vGbvg,
  .Pricing_trustTitle__gws91,
  .Pricing_faqTitle__NlCqI {
    font-size: 1.75rem;
  }
  
  .Pricing_ctaContent__Ok3ry h2 {
    font-size: 2rem;
  }
  
  .Pricing_ctaContent__Ok3ry p {
    font-size: 1rem;
  }
}

/* Animation for smooth scrolling and fade-ins */
.Pricing_sectionWrapper__eBk-2 {
  animation: Pricing_fadeInUp__M0jxg 0.6s ease-out;
}

@keyframes Pricing_fadeInUp__M0jxg {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced accessibility */
.Pricing_button__3VKHZ:focus,
.Pricing_ctaPrimary__6lJ1Y:focus,
.Pricing_ctaSecondary__IAYFc:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .Pricing_ctaSection__bqfwl,
  .Pricing_faqSection__WuaWM {
    page-break-inside: avoid;
  }
  
  .Pricing_comparisonTable__QPWJF {
    font-size: 12px;
  }
}

section{
    padding-bottom: 4rem;
}

footer{
    display: flex;
    justify-content: space-between;
    padding: 5rem 2rem;
}


.Footer_copyrightText__7xPhr{
    font-size: 14px;
    color: gray;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.Footer_footer__item__t0O33{
width: 30%;
padding: 0 1rem;
}

.Footer_footer__item__t0O33 p{
    line-height: 1.7rem;
    font-size: 0.9rem;
    color: rgb(75, 74, 74);
    text-align: justify;
}

.Footer_footer__link__wrapper__va8Kb,.Footer_social__links__kbXr9{
    box-sizing: border-box;
    padding: 0 1rem;
}



.Footer_footer__link__wrapper__va8Kb a,.Footer_social__links__kbXr9 a{
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
}

.Footer_logo__item__pHtpi img{
    width: 35px;
   margin-right: 5px;
   margin-bottom: 5px;
}

.Footer_logo__item__pHtpi{
    display: flex;
    align-items: center;
    }
    
.Footer_logo__item__pHtpi h3{
margin: 0px;
font-family: "Playwrite PE", cursive;
}
   
.Footer_footer__link__wrapper__va8Kb a:hover{
    color: var(--primary);
}

.Footer_footer__link__wrapper__va8Kb h4,.Footer_social__links__kbXr9 h4{
    color: gray;
}

.Footer_social__links__kbXr9 a{
    font-size: 1.2rem;
    margin-left: 5px;
    margin-right: 5px;
    background-color: black;
    color: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    float: left;
}

.Footer_social__links__kbXr9 a:hover{
    background-color: var(--primary);
}


@media screen and (max-width:768px){
    footer{
        flex-direction: column;
    }
    .Footer_footer__item__t0O33{
        width: 90%;
        
    }
}

.ErrorFallback_errorContainer__KL4zR{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}


.ErrorFallback_errorContainer__KL4zR img{
    width:30rem;
    margin: 10px;
    text-align: center;
    
}

.ErrorFallback_errorContainer__KL4zR p{
    color: gray;
    text-align: center;
}

.ErrorFallback_btn__wrapper__gubVV{
    display: flex;
    align-items: center;
}



/*# sourceMappingURL=main.a4815a86.css.map*/