/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue: 45;
  --sat: 98%;
  --first-color: hsl(228, 66%, 53%);
  --first-color-light: hsl(var(--hue), var(--sat), 85%);
  --first-color-lighten: hsl(var(--hue), var(--sat), 80%);
  --first-color-alt: hsl(228, 66%, 47%);
  --title-color: #373643;
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 65%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #FFF;
  --scroll-bar-color: hsl(var(--hue), 4%, 85%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 75%);
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== Margenes ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
*,
::before,
::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .5s;
}

h1,
h2,
h3 {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}


.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-light: hsl(var(--hue), var(--sat), 75%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 80%);
  --body-color: hsl(var(--hue), 8%, 13%);
  --container-color: hsl(var(--hue), 8%, 16%);
  --scroll-bar-color: hsl(var(--hue), 4%, 32%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 24%);
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1.5rem;
  top: 2.2rem;
  color: var(--title-color);
  font-size: 1.8rem;
  cursor: pointer;
}

.dark-theme .footer {
  background-color: var(--container-color);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 1rem;
}

.section__title,
.section__title-center {
  font-size: 2rem;
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-1);
}

.svg__color {
  fill: var(--first-color);
}

.svg__blob {
  fill: var(--first-color-light);
}

.svg__img {
  width: 300px;
  justify-self: center;
}

/*=============== LAYOUT ===============*/
/* .main {
  overflow: hidden;
} */

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.active-link {
  position: relative;
}

.active-link::before {
  content: '';
  position: absolute;
  bottom: -.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 50%;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/*=============== HOME ===============*/
.home__container {
  row-gap: 3rem;
}

.home__title {
  font-size: 1.8rem;
  font-weight: 500;
  /* letter-spacing: 1px; */
  margin-bottom: var(--mb-0-75);
}

.home__description {
  margin-bottom: var(--mb-2);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: var(--normal-font-size);
  font-weight: 500;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  transition: .3s;
  cursor: pointer;
}

.button:hover {
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}

/* .button__header {
   display: none;
}  */

.button-link {
  background: none;
  padding: 0;
  color: var(--title-color);
}

.button-link:hover {
  background-color: transparent;
}

.button-flex {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  padding: .75rem 1rem;
}

.button__icon {
  font-size: 1.5rem;
}

/*=============== ABOUT ===============*/
.about__container {
  gap: 2.5rem;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-1-5);
}

/*=============== SECURITY ===============*/
.security__container {
  gap: 2.5rem;
}

.security__data {
  text-align: center;
}

.security__description {
  margin-bottom: var(--mb-1-5);
}

/*=============== SERVICES ===============*/
.services__container {
  padding-top: 1rem;
}

.services__data {
  display: grid;
  row-gap: 1rem;
  background-color: var(--container-color);
  box-shadow: 0px 2px 6px hsla(var(--hue), 100%, 15%, 0.15);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.services__img {
  width: 135px;
  justify-self: center;
  margin-bottom: var(--mb-0-5);
}

/*=============== APP ===============*/
.app__container {
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.app__data {
  text-align: center;
}

.app__data .section__title-center {
  font-size: 2rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.app__description {
  margin-bottom: 1.5rem;
  color: #5d5b56;
}

.app__buttons {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 12px;
}

.app__buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  box-shadow: none;
  padding: 12px 22px;
  border: 1px solid hsl(228, 67%, 47%);
  background: #fff;
  color: hsl(228, 67%, 47%);
  transition: all 0.3s ease;
}

.app__buttons .trademark-search-class-search {
  background: hsl(228, 67%, 47%);
  color: white;
}

.app__buttons .find-trademark-class-app {
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
}

.app__buttons a:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.app__buttons i {
  margin-right: 5px;
  font-size: 1.2rem;
}


/*=============== CONTACT ===============*/
.contact__container {
  padding-bottom: 3rem;
}

.contact__description {
  text-align: center;
}

.contact__content {
  row-gap: .75rem;
}

.contact__address {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.contact__information {
  font-weight: initial;
  color: var(--text-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #fff;
  padding-bottom: 2rem;
}

.footer__container {
  row-gap: 2rem;
}

.footer__logo,
.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
}

.footer__logo {
  display: inline-block;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.footer__description,
.footer__link {
  font-size: var(--small-font-size);
}

.footer__links {
  display: grid;
  row-gap: .5rem;
}

.footer__link {
  color: var(--title-color);
}

.footer__link:hover {
  color: hsl(228, 66%, 47%);
}

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

.footer__social-link {
  font-size: 1.25rem;
  color: var(--title-color);
}

.footer__social-link:hover {
  color: hsl(228, 66%, 47%);
}

.footer__copy {
  margin-top: 6rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 62%, 59%);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(228, 100%, 97%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 54%);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
  .svg__img {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0 1rem;
  }

  .services__img {
    width: 100px;
  }

  .app__buttons {
    grid-template-columns: max-content;
  }
}

@media screen and (max-width: 520px) {
  .svg__img {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0 1rem;
  }

  .services__img {
    width: 100px;
  }

  .app__buttons {
    grid-template-columns: max-content;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__title-center {
    font-size: 1.5rem;
  }

  .app__data .section__title-center {
    font-size: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .svg__img {
    width: 100%;
  }

  .section__title-center {
    text-align: initial;
  }

  .home__container,
  .about__container,
  .security__container,
  .services__container,
  .app__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home__img {
    order: 1;
  }

  .home__container,
  .about__container,
  .security__container,
  .app__container,
  .contact__container {
    align-items: center;
  }

  .about__data,
  .security__data,
  .app__data,
  .contact__description {
    text-align: initial;
  }

  .about__img,
  .app__img {
    order: -1;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: 6rem 0 2rem;
  }

  .home__container {
    padding: 3rem 0 2rem;
  }

  .app__buttons {
    justify-content: initial;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {

  .home__title {
    font-weight: 500;
    font-size: 2.3rem;
  }

  .button__header {
    display: block;
  }

  .svg__img {
    width: 470px;
  }

  .about__container,
  .security__container,
  .app__container,
  .contact__container {
    column-gap: 6rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__container {
    grid-template-columns: 3fr 1.5fr 1.25fr;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__social {
    align-items: flex-start;
  }

  .footer__social-link {
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img {
    width: 540px;
  }

  .home__description {
    padding-right: 5rem;
  }

  .footer__container {
    column-gap: 3rem;
  }

  .scrollup {
    right: 2rem;
  }
}


.highlight__text {
  color: hsl(228, 66%, 47%);
}

.bx-wallet {
  padding-right: 5px;
  font-size: 1.3rem;
}

.bx-right-arrow-alt {
  padding-left: 5px;
  font-size: 1.3rem;
}

.footer_button {
  font-size: 0.8rem;
  margin-top: 0.7rem;
  background-color: #3b3939;
}

/*=============== CONTACT ===============*/
.new_contact__container {
  row-gap: 3.5rem;
}

.new_contact__data {
  display: grid;
  row-gap: 2rem;
}

.new_contact__subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.new_contact__description {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.new_contact__icon {
  font-size: 1.25rem;
}

.new_contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 1rem;
}

.new_contact__content {
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.new_contact__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
  z-index: 1;
}

.new_contact__label {
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.new_contact__area {
  height: 7rem;
}

.new_contact__area textarea {
  resize: none;
}

/*Input focus move up label*/
.new_contact__input:focus+.new_contact__label {
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.new_contact__input:not(:placeholder-shown).new_contact__input:not(:focus)+.new_contact__label {
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*******/

/* CONTACT SEND MESSAGE BUTTON */


.button--flex {
  border: 0px solid;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: .75rem 1.5rem;
  border-radius: 3rem;
}



/*** Loading Button Animtion **/

.button--flex {
  display: flex;
  align-items: center;
  user-select: none;
}

.button--flex .icon {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  display: none;
}

.icon.spinner.spin {
  animation: spin 1.3s ease-in-out infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.button--flex.checked .icon {
  display: flex;
}

.icon.check {
  display: inline-flex;
  align-items: center;
  height: 23px;
  width: 23px;
  font-size: 12px;
  justify-content: center;
  border-radius: 50%;
  background-color: #6e93f7;
}

/**** End Loading Animation Button CSS ***/

/*** Accordion **/

/*=============== QUESTIONS ===============*/
#faqs {
  margin-top: 4rem;
}


.questions {
  background-color: hsl(227, 100%, 95%);
}

.questions__container {
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group {
  display: grid;
  row-gap: 1.5rem;
}

.questions__item {
  background-color: var(--container-color);
  border-radius: .25rem;
}

.questions__item-title {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description {
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content {
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content {
  transition: .3s;
}

.questions__item:hover {
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.new-accordion-open .questions__header,
.new-accordion-open .questions__content {
  background-color: var(--first-color);
}

.new-accordion-open .questions__item-title,
.new-accordion-open .questions__description,
.new-accordion-open .questions__icon {
  color: #FFF;
}

.new-accordion-open .questions__icon {
  transform: rotate(45deg);
}


/* Media Query for Accordion */

@media screen and (min-width: 767px) {

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

  .questions__container {
    align-items: flex-start;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .questions__container {
    padding: 1rem 0 4rem;
  }

  .questions__title {
    text-align: initial;
  }

  .questions__group {
    row-gap: 2rem;
  }

  .questions__header {
    padding: 1rem;
  }

  .questions__description {
    padding: 0 3.5rem 2.25rem 2.75rem;
  }
}


/* END ACCORDION MENU */

.letter_spacing_others {
  letter-spacing: 1px;
}

.contact__information a {
  color: hsl(0, 0%, 37%);
}

.contact__information a:hover {
  color: hsl(228, 66%, 47%);
}

/* NEW CSS */

@media (min-width:768px) {
  .new_wrapper {
    max-width: 768px;
    padding-right: 4rem;
    padding-left: 4rem
  }
}

@media (min-width:1024px) {
  .new_wrapper {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem
  }
}

@media (min-width:1280px) {
  .new_wrapper {
    max-width: 1280px;
    padding-right: 6rem;
    padding-left: 6rem
  }
}

@media (min-width:768px) {
  .new_wrapper {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }

  @media (min-width:768px) {
    .new_wrapper {
      max-width: 768px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1024px) {
    .new_wrapper {
      max-width: 1024px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1280px) {
    .new_wrapper {
      max-width: 1280px;
      padding-right: 6rem;
      padding-left: 6rem
    }
  }
}

.billing_row {
  align-items: center;
  display: grid;
  gap: 2rem;
  padding-bottom: 6rem
}

.billing_row:last-child {
  padding-bottom: 0
}

@media (min-width:1024px) {
  .billing_row {
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 7rem
  }
}

.billing_row .billing_col:last-child {
  position: sticky;
  top: 6rem
}

@media (min-width:1024px) {
  .billing_row .billing_col:last-child {
    padding-left: 5rem
  }
}

.billing_img {
  border-radius: 1rem;
  width: 100%
}

.billing_titel {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.25rem;
  padding-bottom: 1rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

.billing_details {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity))
}

@media (min-width:768px) {
  .billing_details {
    margin-bottom: 2.75rem
  }
}

.explore_link {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  gap: .5rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

/* .explore_link:hover {
  --tw-text-opacity: 1;
  color: rgb(197 32 49 / var(--tw-text-opacity));
  color: hsl(228, 66%, 47%);
} */

.billing_software>.new_wrapper>.section_heading {
  text-align: left
}

@media (min-width:768px) {
  .billing_software>.new_wrapper>.section_heading {
    text-align: center
  }
}

.billing_software>.new_wrapper>.section_heading>.titel_name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
  color: #253C6A;
  text-align: center;
}

@media (min-width:768px) {
  .billing_software>.new_wrapper>.section_heading>.titel_name {
    font-size: 2.5rem;
    line-height: 3rem
  }

}

.billing_software>.new_wrapper>.section_heading>.titel_dec {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: .8rem;
  color: #5d5b56;
  text-align: center;
}

.billing_software_row {
  align-items: flex-start;
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  /* padding-top: 4rem; */
}

@media (min-width:768px) {
  .billing_software_row {
    /* padding-top: 6rem */
  }
}

@media (min-width:1024px) {
  .billing_software_row {
    gap: 4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* padding-top: 7rem */
  }
}

.billing_software_img {
  border-radius: .8387rem;
  margin-bottom: 1.5rem;
  width: 100%
}

.billing_software_titel {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  padding-bottom: .75rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

@media (min-width:768px) {
  .billing_software_titel {
    font-size: 1.3rem;
    line-height: 2rem
  }

  .billing_software>.new_wrapper>.section_heading>.titel_dec {
    font-size: 1.1rem;
  }
}

.billing_software_dec {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity))
}


@media (min-width:768px) {
  .billing_software_dec {
    font-size: 1.05rem;
    line-height: 1.75rem
  }
}

.more_with_pp>.new_wrapper>.section_heading {
  /* padding-bottom: 6rem; */
  text-align: center
}

.more_with_pp>.new_wrapper>.section_heading>.titel_name {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem;
  color: #253C6A;
}

@media (min-width:768px) {
  .more_with_pp>.new_wrapper>.section_heading>.titel_name {
    font-size: 2.5rem;
    line-height: 3rem
  }
}

.more_with_pp>.new_wrapper>.section_heading>.titel_dec {
  font-weight: 400;
  color: #5d5b56;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: .8rem;
}

.more_with_pp_row {
  align-items: stretch;
  display: grid;
}

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

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

.more_with_pp_col {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding: 2.5rem
}

.more_with_pp_col:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.more_with_pp_col:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(236, 236, 236);
  transition: 0.3s ease;
}

.more_with_pp_col:hover .more_woith_pp_titel {
  --tw-text-opacity: 1;
  /* color: rgb(255 255 255 / var(--tw-text-opacity)) */
}

.more_with_pp_col:hover .more_with_pp_dec {
  --tw-text-opacity: 1;
  /* color: rgb(229 231 235 / var(--tw-text-opacity)) */
}

.more_with_explor_new_wrapper {
  overflow: hidden;
  position: relative
}

.more_with_pp_col>.more_with_explor_new_wrapper>.more_with_explor {
  --tw-translate-x: -166px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.more_with_pp_col>.more_with_explor_new_wrapper>.more_with_explor>svg {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity))
}

.more_with_pp_col:hover>.more_with_explor_new_wrapper>.more_with_explor>svg {
  --tw-text-opacity: 1;
  /* color: rgb(255 255 255 / var(--tw-text-opacity)) */
}

.more_with_pp_col:hover>.more_with_explor_new_wrapper>.more_with_explor {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  /* color: rgb(255 255 255 / var(--tw-text-opacity)); */
  text-decoration-line: underline
}

.more_with_pp_img {
  display: inline-block;
  margin-bottom: 1.25rem;
  max-width: 8.375rem;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden
}

.more_woith_pp_titel {
  color: rgb(31 41 55 / var(--tw-text-opacity));
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .75rem
}

.more_with_pp_dec,
.more_woith_pp_titel {
  line-height: 1.75rem;
  --tw-text-opacity: 1
}

.more_with_pp_dec {
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.25rem
}

.analytics_img {
  border-radius: 1.5rem;
  margin: auto
}

.h3_pos {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

@media (min-width:1024px) {
  .h3_pos {
    font-size: 2rem;
    line-height: 2.5rem
  }
}

.operating_system_img {
  margin-bottom: 1.5rem;
  max-width: 8.75rem
}

.operating_system_counter-new_wrapper {
  display: flex
}

.customised_analytics {
  --tw-bg-opacity: 1;
  background-color: rgb(255 246 244 / var(--tw-bg-opacity))
}

.customised_analytics_new_wrapper {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width:768px) {
  .customised_analytics_new_wrapper {
    gap: 6rem
  }
}

@media (min-width:1024px) {
  .customised_analytics_new_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.customised_analytics_new_wrapper .customised_analytics_col:first-child {
  order: 1
}

@media (min-width:1024px) {
  .customised_analytics_new_wrapper .customised_analytics_col:first-child {
    order: 0
  }
}

.customised_analytics_heading {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

@media (min-width:1024px) {
  .customised_analytics_heading {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: left
  }
}

.customised_analytics_dec {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity))
}

@media (min-width:1024px) {
  .customised_analytics_dec {
    text-align: left
  }
}

.customised_analytics-img {
  border-radius: .5rem;
  width: 100%
}

@media (min-width:1024px) {
  .customised_analytics-img {
    margin-left: auto;
    width: auto
  }
}

.multi_terminal {
  display: block;
  padding-bottom: 5rem;
  padding-top: 5rem
}

.multi_terminal_new_wrapper {
  background-image: url(/assets/images/petpooja-go/restaurant-needs.webp);
  background-position: 50%;
  background-size: cover;
  border-radius: 1.25rem;
  margin-bottom: 5rem;
  overflow: hidden;
  padding: 7rem 1.5rem;
  position: relative
}

.multi_terminal_new_wrapper:before {
  background-image: linear-gradient(270deg, rgba(33, 33, 33, 0) -5.56%, rgba(33, 33, 33, .8));
  inset: 0;
  position: absolute;
  --tw-content: "";
  content: var(--tw-content)
}

@media (min-width:768px) {
  .multi_terminal_new_wrapper {
    padding: 11rem 5rem
  }
}

.multi_terminal_name {
  font-weight: 600;
  isolation: isolate;
  max-width: 31.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}

.new_wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%
}

@media (min-width:768px) {
  .new_wrapper {
    max-width: 768px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1024px) {
  .new_wrapper {
    max-width: 1024px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1280px) {
  .new_wrapper {
    max-width: 1280px;
    padding-left: 6rem;
    padding-right: 6rem
  }
}

@media (min-width:1536px) {
  .new_wrapper {
    max-width: 1536px;
    padding-left: 12.5rem;
    padding-right: 12.5rem
  }
}

.new_wrapper {
  margin-left: auto;
  margin-right: auto;
  /* padding: 2.5rem; */
}

@media (min-width:768px) {
  .new_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .new_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .new_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .new_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .new_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1024px) {
  .new_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .new_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .new_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .new_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .new_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1280px) {
  .new_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .new_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .new_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .new_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .new_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1536px) {
  .new_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .new_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .new_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .new_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .new_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

.m_toggle {
  border-radius: .25rem;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  height: 2.5rem;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding: .5rem
}

@media (min-width:1024px) {
  .m_toggle {
    display: none
  }
}

@media (min-width:768px) {
  .section_spacing_y {
    padding-bottom: 7rem;
    padding-top: 7rem
  }
}

@media (min-width:1024px) {
  .section_spacing_y {
    padding-bottom: 0rem;
    padding-top: 0rem;
  }
}

.counter_img {
  flex-shrink: 0
}

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

.quick_simple_billing {
  --tw-bg-opacity: 1;
  background-color: #e5ebff
}

.quick_title_paragh {
  margin-bottom: 2.5rem;
  text-align: center
}

@media (min-width:1024px) {
  .quick_title_paragh {
    margin-bottom: 4rem
  }
}

.quick_title {
  font-weight: 600;
  margin-bottom: 1rem
}

.quick_simple_feature {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width:1024px) {
  .quick_simple_feature {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.quick_features_all {
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  place-content: space-between;
  row-gap: 2.25rem;
}

@media (min-width:768px) {
  .quick_features_all {
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (min-width:1024px) {
  .quick_features_all {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)) */
  }
}

@media (min-width:1280px) {
  .quick_features_all {
    -moz-column-gap: 6rem;
    /* column-gap: 6rem */
  }
}

.quick_feature_img {
  margin-bottom: 2rem
}

@media (min-width:1024px) {
  .quick_feature_img {
    margin-bottom: 0;
  }
}

.quick_feature_img img {
  border-radius: .5rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%
}

@media (min-width:768px) {
  .quick_feature_img img {
    aspect-ratio: 16/9
  }
}

@media (min-width:1024px) {
  .quick_feature_img img {
    aspect-ratio: 1/1
  }

  .quick_features_all {
    padding-left: 4rem
  }
}

.feature_simple {
  text-align: center
}

.feature_simple img {
  margin: auto auto 1rem;
  max-width: 5rem
}

.multi_billing_img {
  flex-basis: 100%
}

@media (min-width:1024px) {
  .multi_billing_img {
    flex-basis: 60%
  }
}

.multi_billing_img img {
  border-radius: .75rem;
  margin-bottom: 2rem;
  width: 100%
}

@media (min-width:1024px) {
  .multi_billing_img img {
    margin-bottom: 0
  }
}

@media (max-width:1023px) {
  body:has(.navbar__items.active) {
    overflow-y: hidden
  }
}

.billing_row_complete .billing_col:last-child {
  position: static
}

@media (min-width:1024px) {
  .billing_row_complete .billing_col:last-child {
    order: 1;
    padding-left: 0;
    padding-right: 5rem
  }

  .billing_row_complete .billing_col:first-child {
    order: 2;
    padding-left: 0
  }
}

[data-tab-content] {
  display: none
}

/* END  NEW CSS */


.about_subdescription {
  font-weight: 500;
  margin-bottom: 1rem;
  color: rgb(66, 64, 64);
}

.about_subdescription .bx-star {
  margin-right: 3px;
}

.learn_more {
  margin-top: 1rem;
}

.learn_more a {
  color: #3b3939;
}

.learn_more a:hover {
  color: #3857d6;
}

.highlight_section {
  background-color: hsl(227, 100%, 95%);
}

.home_subtitle {
  margin-bottom: 6px;
  letter-spacing: 1px;
  color: hsl(228, 66%, 47%);
  font-weight: 600;
}

.bxs-circle {
  font-size: .80rem;
  color: hsl(226, 100%, 85%);
  margin-right: .20rem;
}



/* MAIN HERO SECTION CSS */


@media (min-width:768px) {
  .hero_wrapper {
    max-width: 768px;
    padding-right: 4rem;
    padding-left: 4rem
  }
}

@media (min-width:1024px) {
  .hero_wrapper {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    max-width: 1280px;
    padding-right: 6rem;
    padding-left: 6rem
  }
}

@media (min-width:768px) {
  .hero_wrapper {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-right: 6rem;
      padding-left: 6rem
    }
  }
}

@media (min-width:1024px) {
  .hero_wrapper {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-right: 6rem;
      padding-left: 6rem
    }
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-right: 4rem;
      padding-left: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-right: 6rem;
      padding-left: 6rem
    }
  }
}

.hero_wrapper {
  margin-left: auto;
  text-align: center;
}

.hero__pos_img {
  flex-basis: 100%
}

.hero_wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  margin-right: auto
}

@media (min-width:768px) {
  .hero__pos_img img {
    max-width: 35.375rem
  }

  .hero_wrapper {
    max-width: 768px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1024px) {
  .hero__pos_img img {
    margin-left: auto
  }

  .hero_wrapper {
    max-width: 1024px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    max-width: 1280px;
    padding-left: 6rem;
    padding-right: 6rem
  }
}

@media (min-width:768px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }
}

.hero__pos_img img {
  border-radius: .5rem;
  margin-left: 0;
  max-width: 100%
}

@media (min-width:1024px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  .hero__pos_img {
    flex-basis: 60%
  }

  .hero__pos_img img {
    margin-left: auto;
    max-width: 35.375rem
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }
}

.m_hero>.hero_wrapper>.section_heading {
  margin-bottom: 4rem;
  text-align: center
}

@media (min-width:768px) {
  .m_hero>.hero_wrapper>.section_heading {
    margin-bottom: 6rem
  }
}

@media (min-width:1024px) {
  .m_hero>.hero_wrapper>.section_heading {
    margin-bottom: 6rem
  }
}

.m_hero>.hero_wrapper>.section_heading>.titel_name {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

.m_hero>.hero_wrapper>.section_heading>.titel_dec {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.1394rem;
  margin-top: .5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity))
}

@media (min-width:768px) {
  .m_hero>.hero_wrapper>.section_heading>.titel_dec {
    font-size: 1.125rem;
    line-height: 1.75rem
  }
}

.m_hero {
  /* padding-top: 4rem */
  padding-top: 0;
}

@media (min-width:768px) {
  .m_hero {
    /* padding-top: 6rem; */
    padding-top: 0;
    /* padding-bottom: 4rem; */
    padding-bottom: 0;
  }
}

.h3_pos {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity))
}

@media (min-width:1024px) {
  .h3_pos {
    font-size: 2rem;
    line-height: 2.5rem
  }
}

.hero_wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%
}

@media (min-width:768px) {
  .hero_wrapper {
    max-width: 768px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1024px) {
  .hero_wrapper {
    max-width: 1024px;
    padding-left: 4rem;
    padding-right: 4rem
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    max-width: 1280px;
    padding-left: 6rem;
    padding-right: 6rem
  }
}

@media (min-width:1536px) {
  .hero_wrapper {
    max-width: 1536px;
    padding-left: 12.5rem;
    padding-right: 12.5rem
  }
}

.hero_wrapper {
  margin-left: auto;
  margin-right: auto
}

@media (min-width:768px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .hero_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1024px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .hero_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1280px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .hero_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

@media (min-width:1536px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%
  }

  @media (min-width:768px) {
    .hero_wrapper {
      max-width: 768px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1024px) {
    .hero_wrapper {
      max-width: 1024px;
      padding-left: 4rem;
      padding-right: 4rem
    }
  }

  @media (min-width:1280px) {
    .hero_wrapper {
      max-width: 1280px;
      padding-left: 6rem;
      padding-right: 6rem
    }
  }

  @media (min-width:1536px) {
    .hero_wrapper {
      max-width: 1536px;
      padding-left: 12.5rem;
      padding-right: 12.5rem
    }
  }
}

.hero__pos_img {
  flex-basis: 100%
}

@media (min-width:1024px) {
  .hero__pos_img {
    flex-basis: 60%
  }
}

.hero__pos_img img {
  border-radius: .5rem;
  margin-left: 0;
  max-width: 100%
}

@media (min-width:1024px) {
  .hero__pos_img img {
    margin-left: auto;
    max-width: 35.375rem
  }
}

.m_hero_image {
  border-radius: .75rem;
  margin-top: -2rem;

}

@media (max-width:1023px) {
  body:has(.navbar__items.active) {
    overflow-y: hidden
  }
}

[data-tab-content] {
  display: none
}

.add-ons_hero {
  /* margin-top: 3rem; */
}

.add-ons_subtitle {
  margin-bottom: .75rem;
}

.add-ons_app {
  margin-bottom: 2rem;
}

/* END MAIN HERO SECTION CSS */

.h2_pos {
  font-size: 2rem;
}





.home__title {
  margin-bottom: 25px;
}

.features__description p {
  margin-bottom: 20px;
  color: #5d5b56;
}

.bx-check-circle {
  color: hsl(228, 67%, 47%);
}

.new_button {
  color: hsl(228, 66%, 47%);
  background: white;
  font-size: 15px;
  padding: 12px 22px;
  border: 1px solid hsl(228, 66%, 53%);
}

.new_button:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

.certificate-home__title {
  margin-bottom: 13px;
}

#view-image-btn {
  border: none;
  box-shadow: none;
  padding-inline: 0;
  margin-top: 0;
}

#view-image-btn:hover {
  text-decoration: underline;
  background: none;
  color: hsl(228, 67%, 47%);
}

.button__header {
  font-size: 15px;
}


/*=============== STEPS ===============*/
.steps__bg {
  background-color: var(--first-color);
  padding: 3rem 2rem 2rem;
  border-radius: 20px;
}

.section__title-center {
  margin-bottom: 2rem;
}

.steps__container {
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title {
  color: #FFF;
}

.steps__card {
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 20px;
}

.steps__card-number {
  display: inline-block;
  background-color: var(--first-color-alt);
  color: #FFF;
  padding: .5rem .75rem;
  border-radius: .25rem;
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  transition: .3s;
}

.steps__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

.steps__card-description {
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number {
  transform: translateY(-.25rem);
}

/** Media Query for Steps */

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .steps__bg {
    padding: 2rem 1rem;
  }

  .steps__card {
    padding: 1.5rem;
  }

}

/* For medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* For large devices */
@media screen and (min-width: 992px) {
  .steps__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps__bg {
    padding: 3.5rem 2.5rem;
  }

  .steps__card-title {
    font-size: var(--normal-font-size);
  }
}

/****/


/* VIEW SAMPLE CERTIFICATE CSS */

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

@keyframes tmzon_sample_certificate {
  0% {
    opacity: 0;
    transform: scale(0.97) rotateX(2deg);
    transform-origin: center top;
  }

  100% {
    opacity: 1;
    transform: scale(1) rotateX(0);
    transform-origin: center top;
  }
}

#popup-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  animation: tmzon_sample_certificate 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: scale(0.97) rotateX(2deg);
  transform-origin: center top;
}

#popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: hsl(228, 66%, 53%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

/* END SAMPLE CERTIFICATE CSS */


/* DOCUMENTS REQUIRED SECTION */

.documents-required {
  background-color: #fff;
  margin: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.tabs {
  max-width: 800px;
  margin: 30px auto;
}

.buttons {
  display: flex;
  flex-wrap: nowrap;
  /* No wrapping for desktop and tablet */
  background-color: #fff;
  padding: 7px 10px 0;
  gap: 0;
  /* No gap for desktop view */
}

.buttons button {
  flex: 1;
  /* Evenly distribute tabs */
  padding: 19px 29px;
  text-transform: uppercase;
  border-radius: 0;
  background: #fff;
  border: none;
  border-bottom: 3px solid #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
}

.buttons button.active {
  color: hsl(228, 66%, 53%);
  border-bottom: 3px solid hsl(228, 66%, 53%);
}

.contents {
  position: relative;
  margin-top: 20px;
}

.contents .inner {
  padding: 25px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
  visibility: hidden;
  border-radius: 25px;
}

.contents .inner.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
  visibility: visible;
}

.contents .inner h3 {
  font-size: 20px;
  padding-bottom: 15px;
  font-family: inherit;
}

.contents .inner p {
  letter-spacing: 0.5px;
  line-height: 23px;
  color: #434343;
  font-family: inherit;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .buttons {
    flex-wrap: wrap;
    /* Allow tabs to wrap */
    gap: 10px;
    /* Add spacing between rows and columns */
  }

  .buttons button {
    flex: 1 1 calc(50% - 10px);
    /* Two tabs per row with spacing */
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 30px;
    /* Add rounded corners for mobile */
    border: 1px solid #ddd;
    /* Add border for mobile */
  }

  .buttons button.active {
    background-color: hsl(228, 66%, 53%);
    color: #fff;
    border-color: hsl(228, 66%, 53%);
  }

  .contents .inner {
    padding: 20px;
  }

  .contents .inner h3 {
    font-size: 18px;
  }

  .contents .inner p {
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .buttons button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .contents .inner h3 {
    font-size: 16px;
  }

  .contents .inner p {
    font-size: 14px;
  }
}

/* END DOCUMENTS REQUIRED SECTION CSS */

/* SECTION HEADING AND DESCRIPTION CSS */

.section_heading {
  margin-top: 12rem;
  text-align: center;
  margin-bottom: 5rem;
}

.section_heading .title_name {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.section_heading .title_dec {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75rem;
  margin-top: .8rem;
}

@media screen and (max-width: 767px) {
  .section_heading .title_name {
    font-size: 1.5rem;
  }

  .section_heading .title_dec {
    font-size: 0.95rem;
    line-height: 1.5rem;
  }

  .more_with_pp>.new_wrapper>.section_heading>.titel_name {
    font-size: 1.5rem;
  }

  .more_with_pp>.new_wrapper>.section_heading>.titel_dec {
    font-size: 0.95rem;
  }
}

/* END SECTION HEADING AND DESCRIPTION CSS */

/* NAV BAR FOR TABLETS */

/* @media (min-width: 768px) and (max-width: 1300px) {
  .wrapper .menu-icon {
    display: block;
  }

  .wrapper #show-menu:checked~.menu-icon i::before {
    content: "\f00d";
  }

  nav .content .links {
    display: block;
    position: fixed;
    background: #e0ebff;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.content .links {
    left: 0%;
  }

  .content .links li {
    margin: 15px 20px;
  }

  .content .links li a,
  .content .links li label {
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }

  .content .links li a.desktop-link {
    display: none;
  }
} */

/* END NAVBAR FOR TABLETS */

/* TYPE SECTION CSS */

.types_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.types_container .section_heading {
  margin-left: 2rem;
  margin-right: 2rem;
}


.types_features_container {
  padding: 0 1.5rem;
}

.types_features_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
}

.type_item {
  padding: 1rem;
  text-align: center;
  /* transition: all 0.4s ease;
  cursor: pointer; */
  padding: 40px 15px;
}

/* .type_item:hover {
  transform: translateY(-0.50rem);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
  border-radius: 25px;
} */

.type_item img {
  width: 100px;
  margin-bottom: 1rem;
}

.typeItem_info h4 {
  font-size: 1.40rem;
  color: #253C6A;
  margin-bottom: 0.6rem;
}

.typItem_info p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .types_features_container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .typeItem_info h4 {
    font-size: 1.1rem;
  }

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

/* TYPES END CSS */


/* POST REGISTRATION CSS */
.post_registration_renewal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  margin: 0 auto;
  max-width: 80%;
  padding: 10px 5%;
  gap: 20px;
}

.post_registration_content {
  flex: 1;
  min-width: 300px;
}

.post_renewal_container .section_heading {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.post_registration_renewal h3 {
  text-align: left;
  font-size: 1.9rem;
  margin-bottom: 1.3rem;
}

.post_registration_renewal ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}

.post_registration_renewal ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 2.0;
  color: #5d5b56;
}

.post_registration_image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post_registration_image img {
  max-width: 90%;
  height: auto;
}

@media (max-width: 991px) {
  .post_registration_renewal {
    max-width: 90%;
    padding: 10px 3%;
    flex-direction: column;
  }

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

  .post_registration_renewal ul li {
    font-size: 0.9rem;
  }

  .post_registration_content,
  .post_registration_image {
    min-width: 100%;
  }
}

/* END POST REGISTRATION CSS */


.time-line {
  margin-bottom: 6rem;
}

.time-line .section_heading {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}

::selection {
  color: #fff;
  background: #ff7979;
}

.time-wrapper {
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}

.time-wrapper .time-center-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: hsla(228, 66%, 45%, .1);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.time-wrapper .row {
  display: flex;
}

.time-wrapper .row-1 {
  justify-content: flex-start;
}

.time-wrapper .row-2 {
  justify-content: flex-end;
}

.time-wrapper .row section {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
  background: #fff;
  border-radius: 15px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}

.time-wrapper .row section::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}

.row-1 section::before {
  right: -7px;
}

.row-2 section::before {
  left: -7px;
}

.row section .icon {
  position: absolute;
  background: hsl(228, 100%, 97%);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: hsl(228, 66%, 53%);
  font-size: 17px;
}

.row-1 section .icon {
  top: 15px;
  right: -60px;
}

.row-2 section .icon {
  top: 15px;
  left: -60px;
}

.row section .time-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row section .time-details .time-title {
  font-size: 18px;
  font-weight: 600;
  color: #253C6A;
}

.row section p {
  margin: 10px 0 17px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #5d5b56;
}

@media(max-width: 790px) {
  .time-wrapper .time-center-line {
    left: 40px;
  }

  .time-wrapper .row {
    margin: 30px 0 3px 60px;
  }

  .time-wrapper .row section {
    width: 100%;
  }

  .row-1 section::before {
    left: -7px;
  }

  .row-1 section .icon {
    left: -60px;
  }
}

/* @media(max-width: 440px) {

  .time-wrapper .time-center-line,
  .row section::before,
  .row section .icon {
    display: none;
  }
  .time-wrapper .row {
    margin: 10px 0;
  }
} */

.time-line-section {
  margin-top: 4rem;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/*******/

/* CLASSSES CSS */


.classes_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.classes_container .section_heading {
  margin-left: 2rem;
  margin-right: 2rem;
}

.classes_selection_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
  padding: 0 1.5rem;
}

.classes_item {
  padding: 1rem;
  text-align: center;
  /* padding: 40px 15px; */
  margin-bottom: 3rem;
  /* transition: all 0.3s ease; */
  /* cursor: pointer; */
}

/* .classes_item:hover {
  transform: translateY(-0.50rem);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
  border-radius: 25px;
} */

.classes_item a p {
  color: #56585D;
}

/* .classes_item:hover {
  transform: translateY(-0.50rem);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
  border-radius: 25px;
} */

.classes_item img {
  width: 100px;
  margin-bottom: 1rem;
}

.classes_selection_info h4 {
  font-size: 1.40rem;
  color: var(--title-color);
  margin-bottom: 0.6rem;
}

@media (max-width: 998px) {
  .classes_selection_container {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .classes_selection_info h4 {
    font-size: 1.1rem;
  }

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

.title_dec a {
  color: hsl(228, 67%, 47%);
  font-weight: 500;
}

.title_dec a:hover {
  text-decoration: underline;
}

/* CLASSES END */

/* Styling for the form */
.home__form {
  flex: 1;
  align-self: flex-start;
  text-align: right;
  /* Align the form to the right */
  transition: all 0.5s ease;
}

.form {
  /* background-color: hsl(228, 100%, 97%); */
  padding: 1.80rem;
  border-radius: 25px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  /* Ensure labels and inputs are aligned properly */

}

.home__form:hover {
  transform: translateY(-0.75rem);
}

.form__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
  text-align: center;
  font-weight: 500;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
}


.form__group input[type="email"],
.form__group input[type="tel"],
.form__group input[type="text"] {
  font-family: 'Poppins', sans-serif;
  padding: 0.8rem;
  border: 1px solid var(--scroll-bar-color);
  border-radius: 5px;
  font-size: var(--normal-font-size);
  transition: all 0.2s ease;
}

/* Styling for input focus */
.form__group input[type="email"]:focus,
.form__group input[type="tel"]:focus,
.form__group input[type="text"]:focus {
  outline: none;
  border-color: hsl(226, 100%, 85%);
}

.form__group input[type="email"],
.form__group input[type="tel"],
.form__group input[type="text"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--scroll-bar-color);
  border-radius: 15px;
  font-size: var(--normal-font-size);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: -0.5rem;
}

.checkbox-group .checkbox-box {
  margin-right: 5px;
}

.checkbox-label strong {
  color: var(--first-color-alt);
}

.form button {
  font-size: 16px;
  padding: 10px 25px;
  font-family: 'Poppins', sans-serif;
}

.validation-message {
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.validation-message.success {
  color: green;
}

.validation-message.error {
  color: red;
}

@media screen and (max-width: 520px) {
  .new_section {
    padding: 5rem 0 1rem;
  }
}

/* HOME CONTACT SECTION END CSS */


/* SCROLLABLE TABS WITH CONTENT CSS */


/* Unique Tabs Container */
.unique-tabs-container {
  width: 98%;
  max-width: 1200px;
  margin: 50px auto;
  /* background: #ffffff; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 8rem;
}

/* Tabs Wrapper */
.unique-tabs-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* background: #444; */
  padding: 0 50px;
  /* Padding added to create space for arrows */
}

/* Arrow Buttons */
.unique-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsl(225, 77%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(228, 66%, 47%);
  border: none;
  padding: 11px 11px;
  cursor: pointer;
  z-index: 2;
  /* Ensures arrows are above the tabs */
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.unique-arrow.hidden {
  display: none;
}

.unique-arrow:hover {
  background: hsl(228, 66%, 53%);
  color: white;
}

.left-arrow {
  left: 10px;
  /* Positioned outside tabs */
}

.right-arrow {
  right: 10px;
  /* Positioned outside tabs */
}

/* Tabs */
.unique-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: all 0.3s ease;

}

.unique-tabs::-webkit-scrollbar {
  display: none;
}

.unique-tab {
  flex: 0 0 auto;
  padding: 12px 27px;
  background: white;
  color: hsl(228, 66%, 47%);
  font-weight: 500;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  border: 1px solid hsl(228, 66%, 47%);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 15px;
  border-radius: 50px;
}

.unique-tab:hover,
.unique-tab.active {
  background: hsl(228, 66%, 47%);
  color: #ffffff;
  /* box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25); */
}

/* Tab Content */
.unique-content {
  padding: 20px;
  padding-top: 70px;
  text-align: center;
  /* background: #f9f9f9; */
  font-size: 18px;
}

.unique-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.unique-tab-content.active {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-tabs-container {
    margin: 20px auto;
    margin-top: 5rem;
  }

  .unique-tab {
    font-size: 16px;
    padding: 12px 20px;
  }

  .unique-content {
    padding: 15px;
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .unique-tab {
    font-size: 15px;
    padding: 10px 15px;
  }

  .unique-content {
    font-size: 14px;
  }

  .unique-arrow {
    padding: 11px 11px;
    font-size: 14px;
  }
}

/* @media (max-width: 768px) {
  .unique-tabs-wrapper {
      display: none;
  }

  .unique-content .unique-tab-content {
      display: block;
  }
} */


/* END UNIQUE TAB SECTION CSS */

.new_button_header {
  font-size: 15px;
  padding: 10px 12px;
  background: none;
  border: 1px solid hsl(228, 66%, 47%);
  color: hsl(228, 66%, 47%);
}

.new_button_header:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

/* BUTTON HEADER CSS END */

/* TABLE SECTION CSS */

#table-section .section_heading {
  margin-left: 2rem;
  margin-right: 2rem;
}

.ip-scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 20px;
  /* scroll-behavior: smooth; */
  /* width: 98%;
  max-width: 1200px;
  margin: 50px auto;
  margin-top: -5px; */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 8rem;
}

.ip-scroll-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar in WebKit browsers */
}

.ip-table {
  width: 90%;
  min-width: 1200px;
  border-collapse: collapse;
  background-color: #f8f8f8;
  border-radius: 10px;
  margin: auto;
}

.ip-table th,
.ip-table td {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: left;
  font-size: 1rem;
}

.ip-table th {
  background-color: hsl(225, 77%, 92%);
  font-weight: bold;
}

.ip-navigation {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 20px;
}

.ip-nav-button {
  background-color: hsl(225, 77%, 92%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: hsl(228, 66%, 47%);
  padding: 8px 8px;
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: -75px;
}

.ip-nav-button:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

.ip-nav-button.visible {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {

  .ip-scroll-container {
    flex-direction: column;
    padding: 10px;
  }

  .ip-table {
    min-width: unset;
    font-size: 0.9rem;
  }

  /*
  .ip-table th,
  .ip-table td {
    padding: 15px;
  } */

  .ip-nav-button {
    padding: 10px;
  }
}

@media (max-width: 480px) {

  .ip-table th,
  .ip-table td {
    font-size: 0.85rem;
    /* padding: 10px; */
  }

  .ip-nav-button {
    padding: 8px;
  }
}

/*  END TABLE SECTION CSS */

/* TM CLASS SECTION CSS */
.search-container {
  position: relative;
  width: 75%;
  /* Adjusted to ensure search bar spans the full width */
  max-width: 100%;
  /* Adjusted for full width */
  margin: 0 auto;
  margin-top: -3rem;
}

#searchInput {
  width: 100%;
  padding: 22px 16px;
  font-size: 16px;
  border: 2px solid hsl(228, 12%, 75%);
  border-radius: 50px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
  padding-left: 80px;
  /* Space for the icon */
  padding-right: 15px;
  /* Padding for right side */
}

#searchInput:focus {
  outline: none;
  border: 2px solid hsl(228, 62%, 59%);
}

.search-icon {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: white;
  background-color: hsl(228, 66%, 47%);
  border-radius: 50%;
  padding: 13px 19px;
}

.clear-btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #888;
  cursor: pointer;
  display: none;
}

.suggestions {
  margin: 5px 0 0;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  opacity: 0;
  transform: scale(0.95) translateY(5px);
  visibility: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s linear;
}

.suggestions.show {
  max-height: min(350px, 80vh);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.suggestions li {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.suggestions li:hover {
  background-color: hsl(228, 100%, 97%);
}

.highlight {
  color: hsl(228, 66%, 47%);
}

@media (max-width: 767px) {
  .search-container {
    margin-top: -2rem;
    width: 100%;
  }

  #searchInput {
    padding: 19px 15px;
    font-size: 14px;
    padding-left: 67px;
  }

  .search-icon {
    left: 9px;
    font-size: 14px;
    padding: 13px 17px;
  }

  .suggestions {
    top: 65px;
  }
}

/* END CLASSES SEARCH CSS */

.section_heading .classes_dec {
  margin-left: 10rem;
  margin-right: 10rem;
  margin-bottom: -3rem;
}

@media only screen and (max-width: 768px) {
  .section_heading .classes_dec {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section_heading .classes_dec {
    margin-left: 0;
    margin-right: 0;
  }
}

.renewal_spacing {
  margin-bottom: 5rem;
}

/* Breadcrumb container styling */

/* .breadcrumb {
  margin-top: 7rem;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.breadcrumb-item {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: #005bb5;
}

.breadcrumb-item:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
      font-size: 14px;
      padding: 8px 15px;
  }

  .breadcrumb-item {
      font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .breadcrumb {
      font-size: 12px;
      padding: 6px 10px;
  }

  .breadcrumb-item {
      font-size: 12px;
  }
} */

/* BANNER SECTION CSS */

.banner {
  background-color: hsl(228, 100%, 97%);
  width: 68%;
  /* max-width: 1200px; */
  padding: 25px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  border-radius: 25px;
  margin-bottom: 8rem;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.banner-logo {
  font-size: 2.7rem;
  color: #111;
  margin-right: 17px;
  flex-shrink: 0;
}

.banner-text {
  flex-grow: 1;
}

.banner-text h4 {
  font-size: 2rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 5px;
}

.banner-text p {
  font-size: 1.2rem;
  color: #111;
}

.banner-cta {
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    padding: 18px 12px;
    margin-bottom: 0;
  }

  .banner-logo {
    font-size: 22px;
  }

  .banner-text h4 {
    font-size: 13px;
  }

  .banner-text p {
    font-size: 11px;
    max-width: 95%;
  }

  .banner-cta {
    font-size: 12px;
    padding: 7px 10px;
  }
}

@media (min-width: 1024px) {
  .banner {
    position: relative;
    margin-top: 3rem;
  }
}

/* END BANNER SECTION CSS */

/* TM PUBLIC SEARCH SECTION CSS */
.search-public-container {
  position: relative;
  width: 75%;
  /* Adjusted to ensure search bar spans the full width */
  max-width: 100%;
  /* Adjusted for full width */
  margin: 0 auto;
  margin-top: -3rem;
}

#search-public-Input {
  width: 100%;
  padding: 22px 20px;
  font-size: 1rem;
  border: 2px solid hsl(228, 12%, 75%);
  border-radius: 50px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

#search-public-Input:focus {
  outline: none;
  border: 2px solid hsl(228, 62%, 59%);
}

.search-public-icon {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: white;
  background-color: hsl(228, 66%, 47%);
  border-radius: 50%;
  padding: 13px 19px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .search-public-container {
    margin-top: -2rem;
    width: 100%;
  }

  #search-public-Input {
    padding: 18px 20px;
    font-size: 15px;
  }

  .search-public-icon {
    right: 8px;
    font-size: 15px;
    padding: 13px 17px;
  }

}


/* OTP VERIFICATION MODAL POPUP CSS */

body.modal-open {
  overflow: hidden;
}

.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
  z-index: 100;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-container {
  background-color: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  padding: 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  animation: scaleUp 0.3s ease forwards;
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.2rem;
  background-color: hsl(227, 100%, 97%);
  border-radius: 50%;
  padding: 0 8px;
  color: hsl(227, 67%, 47%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.modal-title {
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 30px;
  color: #253C6A;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-button {
  width: 50%;
  padding: 10px 0;
  background-color: white;
  border: 1px solid hsl(228, 66%, 47%);
  color: hsl(228, 67%, 47%);
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 5px;
}

/* .modal-button:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
} */

.modal-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.modal-button.loading {
  position: relative;
  pointer-events: none;
  color: transparent;
}

.modal-button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: hsl(228, 66%, 47%);
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/* OTP Input Styles */
.otp-input-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-otp-info {
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.otp-input {
  width: calc(16% - 10px);
  height: 56px;
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.otp-input:last-child {
  margin-right: 0;
}

.otp-input:focus {
  border: 1px solid hsl(228, 66%, 47%);
  outline: none;
}

.otp-input.error {
  border-color: crimson;
  animation: shake 0.5s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

.not-receive {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.resend-otp {
  color: hsl(228, 66%, 47%);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.resend-otp:hover {
  text-decoration: underline;
}

.resend-otp.disabled {
  color: #888484;
  cursor: not-allowed;
  pointer-events: none;
}

.timer {
  display: inline-block;
  margin-left: 5px;
  color: hsl(228, 67%, 47%);
}

.wrong-number {
  /* color: hsl(228, 66%, 47%); */
  cursor: pointer;
  margin-bottom: 30px;
  display: inline-block;
  font-size: 0.9rem;
}

.wrong-number:hover {
  text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 600px) {
  .otp-input-container {
    gap: 8px;
  }

  .otp-input {
    width: calc(16% - 8px);
    height: 48px;
    font-size: 1.3rem;
    border-radius: 10px;
  }
}

@media screen and (max-width: 400px) {
  .otp-input {
    width: calc(16% - 6px);
    height: 42px;
    font-size: 1.2rem;
    border-radius: 10px;
  }
}

/* END OTP MODAL POPUP */


.tm-class-search-features {
  margin-top: 8rem;
}

.about__description,
.security__description {
  text-align: left !important;
}





/* DROPDOWN TAB CLASSES CSS */

/* Trademark Classes Section */
.trademark-classes {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  margin-top: -4rem;
}

/* Dropdown Container */
.dropdown-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
}

/* Dropdown Styles */
.dropdown {
  width: 100%;
  max-width: 400px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  /* border: 1px solid #ccc; */
  border-radius: 30px;
  background-color: #fff;
}

#selectedClass {
  padding-left: 5px;
}

.dropdown-selected {
  /* background-color: hsl(228, 100%, 97%); */
  border: 1px solid hsl(228, 66%, 47%);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  border-radius: 30px;
  transition: border-color 0.2s, background-color 0.2s;
}

.dropdown-selected:hover {
  border-color: hsl(228, 66%, 47%);
}

.dropdown-arrow .bxs-chevron-down {
  font-size: 17px;
  color: hsl(228, 66%, 47%);
  transform: rotate(0deg);
  transition: transform 0.2s;
}

.dropdown.open .dropdown-arrow .bxs-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-height: 250px;
  overflow-y: auto;
}

.dropdown.open .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

/* Dropdown Item Styles */
.dropdown-item {
  padding: 13px 20px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-size: 1rem;
}

.dropdown-item:hover {
  background-color: hsl(228, 100%, 97%);
}

/* Selected Item Styles */
.dropdown-item.selected {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

.dropdown.selected-option .dropdown-selected {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

#classDetails {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-left: 15px;
  margin-right: 15px;
}

#classDetails h2 {
  font-size: 1.2rem;
  margin-top: 3rem;
  color: #253C6A;
}

#classDetails p {
  font-size: 1rem;
  margin-top: 1rem;
  color: #5d5b56;
}

#classDetails h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #253C6A;
}

#classDetails ul {
  margin-top: 1rem;
}

#classDetails ul li {
  padding-top: 5px;
  font-size: 1rem;
  color: #5d5b56;
}

#classDetails.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slipUp 0.5s ease-in-out;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slipUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .dropdown-selected {
    padding: 18px;
    font-size: 1.1rem;
  }

  .trademark-classes {
    padding: 15px;
  }

  .dropdown {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .dropdown-selected {
    padding: 16px;
    font-size: 1rem;
  }

  .dropdown {
    width: 100%;
    font-size: 14px;
  }

  .dropdown-item {
    padding: 13px 15px;
    font-size: 0.95rem;
  }
}

@media screen and (min-width: 1024px) {
  .dropdown-container {
    margin-bottom: 40px;
  }

  .trademark-classes {
    max-width: 900px;
  }

  .dropdown-selected {
    font-size: 17px;
    /* padding: 14px; */
  }
}


/* END DROPDOWN TAB CLASSES CSS */


/* CONTACT US PAGE CSS */


.contact-page-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  margin-top: 8rem;
}

.contact-page-container .section_heading {
  margin-top: 0;
}

.contact-page-container .section_heading .home_subtitle {
  margin-bottom: 0.8rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  gap: 25px;
  text-align: center;
}

.contact-page-grid div {
  border: 2px solid hsl(228, 99%, 98%);
  padding: 20px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-page-grid div:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.contact-page-grid div h4 {
  margin: 10px 0;
  color: #1F2F70;
  font-size: 1.2rem;
}

.contact-page-grid div p {
  color: #5D5B56;
  font-size: 1rem;
}

.contact-page-grid div i {
  font-size: 36px;
  color: hsl(228, 66%, 53%);
  margin-bottom: 10px;
}


.contact-page-grid .contact-page-card-button {
  margin-top: 20px;
  font-size: 14px;
  padding: 12px 0;
  width: 60%;
  border-radius: 30px;
  background: hsl(228, 100%, 97%);
  border: none;
  color: hsl(228, 66%, 47%);
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-page-grid .contact-page-card-button:hover {
  background-color: hsl(228, 66%, 47%);
  color: #fff;
}


.contact-page-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  margin-top: 5rem;
}

.contact-page-map {
  border: none;
  border-radius: 15px;
  width: 100%;
  height: 400px;
}

.contact-page-form {
  padding: 30px 40px;
  border-radius: 15px;
  border: 2px solid hsl(228, 99%, 98%);
}

.contact-page-form h3 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #4d4b49;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  margin-bottom: 22px;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.contact-page-form textarea {
  resize: none;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: hsl(228, 66%, 47%);
  outline: none;
  transition: all 0.5s ease;
}

.contact-page-form .button-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-page-form .contact_form_button {
  background-color: white;
  color: hsl(228, 66%, 47%);
  width: 50%;
  border: 1px solid hsl(228, 66%, 47%);
  font-family: 'Poppins', sans-serif;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
}

.contact-page-form .contact_form_button:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

.contact-page-form .attachment-button {
  padding: 10px 15px;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: #fff;
  width: 50%;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
}

/* .contact-page-form .attachment-button:hover {
  background: hsl(228, 66%, 47%);
} */

.contact-page-form .preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-page-form .preview div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: hsl(228, 100%, 97%);
  padding: 10px 18px;
  border-radius: 15px;
  width: 100%;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.contact-page-form .remove-image {
  cursor: pointer;
  color: hsl(228, 66%, 47%);
  font-size: 22px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.contact-page-form .preview div.fade-out {
  animation: fadeOut 0.3s forwards;
}


@media (max-width: 1100px) {
  .contact-page-section {
    grid-template-columns: none;
  }

  .contact-page-form .button-group {
    width: 50%;
  }
}


@media (max-width: 768px) {
  .contact-page-section {
    grid-template-columns: 1fr, 1fr;
  }

  .contact-page-map {
    height: 250px;
  }

  .contact-page-form .contact_form_button {
    font-size: 13px;
    padding: 11px 11px;
  }

  .contact-page-form .attachment-button {
    font-size: 13px;
    padding: 11px 11px;
  }

  .contact-page-form {
    padding: 20px 20px;
  }

  .contact-page-form .preview div {
    font-size: 13px;
  }

  .contact-page-form .remove-image {
    font-size: 15px;
  }

  .contact-page-form h3 {
    font-size: 1.8rem;
  }

  .contact-page-form input,
  .contact-page-form textarea {
    font-size: 15px;
  }

  .contact-page-grid div h4 {
    font-size: 1rem;
  }

  .contact-page-grid div p {
    font-size: 0.9rem;
  }

  .contact-page-grid div i {
    font-size: 2rem;
  }

  .contact-page-form .button-group {
    width: 100%;
  }
}

/* END CONTACT US PAGE CSS */




@media (max-width: 480px) {
  .mobile_section_heading {
    text-align: left !important;
  }

  .mobile_section_heading .section__title {
    text-align: left !important;
  }
}


/* SPINNER LOADING ANIMATION SUBMIT FORM BUTTON */

.button.new_button.loading {
  position: relative;
  pointer-events: none;
  color: transparent;
  background-color: hsl(228, 66%, 47%);
  width: 25%;
}

.button.new_button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* END SPINNER CSS */

/* CONTACT US PAGE SPINNER BUTTON */

/* Spinner CSS */
.contact_form_button.loading {
  position: relative;
  pointer-events: none;
  color: transparent;
  background-color: hsl(228, 66%, 47%);
  width: 50%;
}

.contact_form_button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* SCROLL UP */

.scrollup {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background-color: hsl(228, 66%, 53%);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: #fff;
  font-size: 1.25rem;
  z-index: 200;
  transition: .3s;
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  /* Initially hidden */
}

.scrollup.show {
  opacity: 1;
  /* Makes the button visible */
  visibility: visible;
  /* Makes the button visible */
}

.scrollup:hover {
  transform: translateY(-.25rem);
  color: hsl(228, 66%, 53%);
  color: #fff;
}

@media (max-width:1024px) {
  .scrollup {
    bottom: 10%;
    right: 1rem;
  }
}

/* END SCROLL UP CSS */

/* DOWNLOAD AS PDF BUTTON */

.printdownloadButtons {
  /* margin-top: 7rem;
  margin-bottom: -10rem;
  margin-left: auto;
  /* margin-right: auto; */
  /* max-width: 85%; */
  /* Ensure some space on the sides */
  /* text-align: center;  */
  display: flex;
  align-items: center;
  gap: 12px;
}

.download_button {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 6px 10px;
  box-shadow: none;
}

.btn-divider {
  width: 1px;
  height: 28px;
  background-color: #ccc;
}

/* END DOWNLOAD AS PDF BUTTON */


#results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#results th,
#results td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
}

#results th {
  background-color: #fff;
}

#results td {
  background-color: #fff;
}

.description-container {
  display: flex;
  flex-direction: column;
}

.description-text {
  max-width: 250px;
  /* Set a max-width for description text */
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more-text {
  color: hsl(228, 67%, 47%);
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}

.read-more-text:hover {
  text-decoration: underline;
}

.public-search-message {
  font-size: 16px;
  padding: 10px;
  margin-top: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

.public-search-message.available {
  color: green;
}

.public-search-message.not-available {
  color: crimson;
}


@media (max-width: 768px) {
  #results {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .result-box {
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 15px;
    background-color: #fff;
    text-align: left;
  }

  .result-box h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
  }

  .result-box p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
  }

  .description-container {
    margin-top: 10px;
  }

  .read-more-text {
    color: hsl(228, 67%, 47%);
    cursor: pointer;
    font-size: 14px;
  }
}

/* STICKY BUTTON CSS */

/* Keyframes for sliding up and down */
@keyframes slideUp {
  0% {
    transform: translateY(100px) translateX(-50%);
    opacity: 0;
  }

  100% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}

@keyframes slideD {
  0% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }

  100% {
    transform: translateY(100px) translateX(-50%);
    opacity: 0;
  }
}

/* .sticky-button {
  display: none;
  position: fixed;
  bottom: 27px;
  left: 50%;
  font-family: 'Poppins', Sans-Serif;
  transform: translateX(-50%);
  padding: 10px 20px;
  width: 265px; 
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  font-size: 1rem;
  z-index: 1000;
  white-space: normal; 
  overflow: hidden;  
  text-align: center; 
} */

.sticky-button {
  display: none;
  position: fixed;
  bottom: 23px;
  left: 50%;
  font-family: 'Poppins', Sans-Serif;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  font-size: 1rem;
  z-index: 1000;
  white-space: nowrap;
}

.sticky-button.visible {
  display: block;
  animation: slideUp 0.5s ease-in-out forwards;
}


.sticky-button.hidden {
  display: block;
  animation: slideD 0.5s ease-in-out forwards;
}

/* STICKY BUTTON CSS END */

.section_heading h2 {
  font-weight: 500;
}





/* FREE LEGAL DOCUMENTATION */


.legalhub-popular-tags {
  margin-top: 30px;
}

.legalhub-tags-title {
  font-size: 1rem;
  color: #8e9aaf;
  margin-bottom: 15px;
}

.legalhub-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legalhub-tag {
  padding: 8px 15px;
  background-color: hsl(228, 100%, 97%);
  color: hsl(228, 66%, 47%);
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 1px solid hsl(228, 66%, 47%); */
}

.legalhub-tag:hover {
  background-color: hsl(228, 66%, 47%);
  color: white;
}

.legalhub-search-box {
  position: relative;
  margin-bottom: 20px;
}

.legalhub-search-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid hsl(228, 12%, 75%);
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.legalhub-search-input:focus {
  outline: none;
  border: 2px solid hsl(228, 66%, 47%);
}

.legalhub-search-button {
  position: absolute;
  right: 6px;
  top: 5px;
  background: hsl(228, 66%, 47%);
  color: white;
  border: none;
  padding: 15px 17px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legalhub-search-button:hover {
  background: hsl(228, 66%, 53%);
}

/* Additional styles for search suggestions */
.legalhub-search-results {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.legalhub-search-results.show {
  display: block;
}

.search-suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-suggestion-item:hover {
  background: hsl(228, 100%, 97%);
}

.search-suggestion-link {
  color: #5D5B56;
  text-decoration: none;
  display: block;
  width: 100%;
}

/* Highlighted letters in blue */
.search-suggestion-link span {
  color: hsl(228, 66%, 47%);
}

.no-results {
  padding: 12px 20px;
  color: #5D5B56;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legalhub-search-section {
    min-width: 100%;
  }
}


/* END FREE LEGAL DOCUMENT SECTION */


.class-search-tags {
  display: flex;
  justify-content: center;
}

.legalhub-tag a {
  color: inherit;
}


/* TEMPLATE SECTION CSS */

.template-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.template-header {
  text-align: center;
  margin-bottom: 5rem;
}

.template-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

/* Custom Dropdown Styles */
.template-custom-dropdown {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.template-dropdown-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: 1px solid hsl(228, 66%, 47%);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-dropdown-arrow {
  transition: transform 0.3s ease;
  color: hsl(228, 66%, 47%);
  font-size: 0.9rem;
}

.template-custom-dropdown.active .template-dropdown-arrow {
  transform: rotate(180deg);
  color: hsl(228, 66%, 47%);
}

.template-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
}

.template-custom-dropdown.active .template-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.template-dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-dropdown-item:hover {
  background: hsl(228, 100%, 97%);
}

.template-dropdown-item.active {
  background: hsl(228, 100%, 97%);
  color: hsl(228, 66%, 47%);
}

/* Rest of your existing styles... */
.template-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.template-product {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  opacity: 0;
  transform: translateY(20px);
  animation: templateFadeIn 0.6s ease forwards;
  border: 1px solid #ddd;
  display: none;
}

@keyframes templateFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.template-product.visible {
  display: block;
}

.template-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.template-product-image-container {
  height: 200px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e0e6ed;
}

.template-document-icon {
  font-size: 4.5rem;
  color: hsl(228, 66%, 47%);
  opacity: 0.15;
  position: absolute;
  z-index: 1;
}

.template-product-image {
  /* width: 90px;
  height: 90px; */
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.template-product:hover .template-product-image {
  transform: scale(1.05);
}

.template-product-info {
  padding: 25px;
  position: relative;
}

.template-product-category {
  position: absolute;
  top: -15px;
  right: 20px;
  background: hsl(228, 66%, 47%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
  z-index: 2;
}

.template-product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
}

.template-product-description {
  color: #5D5B56;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Badge colors for categories */
.template-product[data-category="business"] .template-product-category {
  background: linear-gradient(to right, hsl(227, 67%, 47%), hsl(227, 75%, 60%));
  /* Indigo to light indigo */
}

.template-product[data-category="employment"] .template-product-category {
  background: linear-gradient(to right, hsl(220, 60%, 45%), hsl(220, 70%, 60%));
  /* Slightly cooler navy blues */
}

.template-product[data-category="realestate"] .template-product-category {
  background: linear-gradient(to right, hsl(215, 55%, 40%), hsl(215, 65%, 55%));
  /* Muted royal blue */
}

.template-product[data-category="intellectual"] .template-product-category {
  background: linear-gradient(to right, hsl(230, 60%, 50%), hsl(230, 70%, 65%));
  /* Violet-blue shades */
}

.template-product[data-category="personal"] .template-product-category {
  background: linear-gradient(to right, hsl(210, 65%, 55%), hsl(210, 75%, 68%));
  /* Sky blue to light azure */
}

.document-format-content {
  margin-top: 3rem;
}


/* Responsive adjustments */
/* Desktop - 4 cards */
@media (min-width: 1200px) {
  .template-products {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Laptop - 3 cards */
@media (min-width: 992px) and (max-width: 1199px) {
  .template-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet - 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
  .template-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .template-product-image-container {
    height: 270px;
  }
}

/* Mobile - 2 cards */
@media (max-width: 767px) {
  .template-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .template-product-image-container {
    height: 250px;
  }

  .template-product-info {
    padding: 20px;
  }

  .template-product-name {
    font-size: 1.1rem;
  }
}

/* Very small mobile - 1 card */
@media (max-width: 480px) {
  .template-products {
    grid-template-columns: 1fr;
  }
}

/* Animation for category change */
@keyframes templateCategoryChange {
  0% {
    opacity: 0.9;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.category-change-animation {
  animation: templateCategoryChange 0.4s ease;
}


/* NAVBAR */

:root {
  --header-height: 4rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(227, 67%, 47%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .83rem;
  --smaller-font-size: .83rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.06rem;
    --small-font-size: 0.92rem;
    --smaller-font-size: .813rem;
  }
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1); */
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

.header.scrolled {
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

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

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav__logo i {
  font-size: 1.25rem;
}

.logo a img {
  width: 130px;
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.5rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  /* .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  } */
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 1.75rem;
}

.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}

.dropdown__group:first-child {
  margin-top: 1.25rem;
}

.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  padding-bottom: 4px;
}

.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
  line-height: 1.75rem;
}

.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }

  .nav li {
    display: flex;
  }

  .nav__link {
    padding: 0;
  }

  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }

  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }

  .dropdown__list {
    row-gap: 0.75rem;
  }

  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }

  .dropdown__icon i {
    font-size: 2rem;
  }

  .dropdown__title {
    font-size: var(--normal-font-size);
  }

  .dropdown__link {
    font-size: var(--small-font-size);
  }

  .dropdown__link:hover {
    color: var(--first-color);
  }

  .dropdown__item {
    cursor: pointer;
  }

  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }

  .dropdown__item:hover>.dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}




/* GENERATE DOCUMENT */

body.generate-popup-open {
  overflow: hidden;
}

/* Container Styles */
.generate-container {
  max-width: 1200px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  min-height: 80vh;
  position: relative;
}

/* Form Popup */
.generate-form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow-y: auto;
}

.generate-form-popup::-webkit-scrollbar {
  display: none;
}

.generate-popup-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 95%;
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

.generate-form-popup.generate-active {
  display: block;
  animation: generate-fadeIn 0.3s ease;
}

.generate-form-popup.generate-active .generate-popup-content {
  transform: scale(1);
  opacity: 1;
}

.generate-popup-content h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 500;
  padding-right: 30px;
}

.generate-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(227, 67%, 47%);
  transition: all 0.2s ease;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.generate-close-btn:hover {
  color: #2c3e50;
  background: hsl(227, 100%, 97%);
}

/* Progress Bar */
.generate-progress-container {
  padding: 0 2.5rem;
  margin: 2rem 0 1rem;
  position: relative;
}

.generate-progress-bar {
  width: 100%;
  height: 6px;
  background: hsl(220, 68%, 97%);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.generate-progress {
  height: 100%;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  width: 0;
  transition: width 0.4s ease;
  border-radius: 3px;
}

/* Step Indicators */
.generate-step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 1.5rem;
}

.generate-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.generate-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #718096;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  margin-bottom: 8px;
  position: relative;
}

.generate-step-number.generate-completed {
  background: hsl(227, 67%, 47%);
  color: white;
  border-color: hsl(227, 67%, 47%);
}

.generate-step-number.generate-completed::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.generate-step-number.generate-active {
  background: white;
  color: hsl(227, 67%, 47%);
  border-color: hsl(227, 67%, 47%);
}

.generate-step-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
  position: absolute;
  bottom: -24px;
  white-space: nowrap;
}

.generate-step-label.generate-active {
  color: hsl(227, 67%, 47%);
  font-weight: 500;
}

/* Form Steps */
.generate-form-steps {
  position: relative;
  flex: 1;
  margin-top: 2rem;
  padding-bottom: 80px;
}

.generate-step {
  position: absolute;
  width: 100%;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  top: 0;
  left: 0;
}

.generate-step.generate-active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}

.generate-step h3 {
  margin-bottom: 1.5rem;
  color: hsl(227, 67%, 47%);
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}

/* Input Styles */
.generate-input-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.generate-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: #4a5568;
  font-size: 1rem;
}

.generate-input[type="text"],
.generate-input[type="number"],
.generate-input[type="date"],
.generate-input[type="select"] {
  width: 100%;
  padding: 16px 16px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.generate-select {
  width: 100%;
  padding: 16px 16px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 1em;
}

.generate-select:focus {
  border-color: hsl(227, 67%, 47%);
  outline: none;
}

.generate-input:focus {
  outline: none;
  border-color: hsl(227, 67%, 47%);
}

.generate-input.generate-error {
  border-color: #e74c3c;
  transition: border-color 0.3s ease;
}

.generate-error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

/* Navigation Buttons */
.generate-navigation {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin-top: auto;
}

.generate-navigation-buttons {
  display: flex;
  gap: 1.2rem;
  width: 100%;
  /* margin: 0 auto;
  justify-content: center; */
}

.generate-navigation button {
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  font-family: 'Poppins', sans-serif;
}

.generate-next-btn,
.generate-pdf-btn {
  background: hsl(227, 67%, 47%);
  color: white;
}

.generate-next-btn:hover,
.generate-pdf-btn:hover {
  background: hsl(228, 66%, 53%);
}

.generate-next-btn:active,
.generate-pdf-btn:active {
  transform: translateY(0);
}

.generate-back-btn {
  background: #f1f5f9;
  color: #5D5B56;
}

.generate-back-btn:hover {
  background: #e2e8f0;
  color: #475569;
}

/* Loading Spinner */
.generate-loading-spinner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.generate-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid hsl(217, 48%, 95%);
  border-top: 4px solid hsl(227, 67%, 47%);
  border-radius: 50%;
  animation: generate-spin 1s linear infinite;
}

.generate-loading-text {
  margin-top: 15px;
  color: #2c3e50;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .generate-container {
    flex-direction: column;
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }

  .generate-sample-section {
    display: none;
  }

  .generate-main-btn {
    bottom: 20px;
    right: 20px;
    left: auto;
    width: auto;
    padding: 1rem;
    font-size: 1rem;
  }

  .generate-popup-content {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 1.5rem;
    min-height: 100vh;
  }

  .generate-form-popup {
    padding: 0;
  }

  .generate-step-number {
    width: 32px;
    height: 32px;
  }

  .generate-step-label {
    font-size: 0.75rem;
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .generate-popup-content {
    padding: 1.5rem 1rem;
  }

  .generate-popup-content h2 {
    font-size: 1.3rem;
    margin-right: 10px;
  }

  .generate-step h3 {
    font-size: 1.2rem;
  }

  .generate-input[type="text"],
  .generate-input[type="number"],
  .generate-input[type="date"] {
    padding: 12px;
  }

  .generate-navigation button {
    padding: 10px;
    font-size: 0.9rem;
  }

  .generate-step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

/* Animations */
@keyframes generate-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes generate-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*  DOWNLOAD SAMPLE FORMAT */



/* Download Format Popup Styles */
.download-format-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.download-format-overlay.active {
  opacity: 1;
  visibility: visible;
}

.download-format-popup {
  background: white;
  border-radius: 20px;
  width: 350px;
  max-width: 90%;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-format-popup.show {
  transform: scale(1);
  opacity: 1;
}

.download-format-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.download-format-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #253C6A;
  font-weight: 500;
}

.download-format-close {
  font-size: 24px;
  cursor: pointer;
  color: #5d5b56;
  transition: 0.3s ease;
}

.download-format-close:hover {
  color: hsl(228, 67%, 47%);
}

.download-format-options {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.download-format-option {
  flex: 1;
  min-width: 120px;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-format-option:hover {
  border-color: hsl(228, 66%, 47%);
  transform: translateY(-3px);
}

.download-format-option.active {
  border-color: hsl(228, 67%, 47%);
  background: hsl(227, 100%, 99%);
}

/* .download-option-selected {
  animation: pulse 0.3s ease;
} */

.download-format-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.download-format-option[data-format="pdf"] .download-format-icon {
  color: #E74C3C;
}

.download-format-option[data-format="docx"] .download-format-icon {
  color: #2C3E50;
}

.download-format-button {
  width: 100%;
  padding: 12px;
  background: hsl(220, 60%, 45%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.download-format-button:hover {
  background: hsl(215, 55%, 40%);
}

.download-format-button:disabled {
  background: hsl(227, 100%, 97%);
  color: #5D5B56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.download-button-clicked {
  transform: scale(0.95);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 480px) {
  .download-format-options {
    flex-direction: row;
  }

  .download-format-option {
    width: 100%;
  }
}

/* END DOWNLOAD FORMAT  */

/* CARDS CSS */

#cards_templates {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  padding: 20px;
  margin-bottom: -4rem;
}

.cards_template-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.cards_template-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  perspective: 1000px;
}

.cards_template-card:nth-child(1) {
  background: linear-gradient(135deg, #27408b 0%, #1e56a0 100%);
}


.cards_template-card:nth-child(2) {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.cards_template-content {
  padding: 40px;
  position: relative;
  z-index: 2;
  color: white;
}

.cards_template-title {
  font-size: 28px;
  font-weight: 00;
  margin-bottom: 15px;
  color: white;
}

.cards_template-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cards_template-button {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cards_template-card:nth-child(1) .cards_template-button {
  color: hsl(228, 67%, 47%);
}

.cards_template-card:nth-child(2) .cards_template-button {
  color: hsl(215, 55%, 40%);
}

.cards_template-button:hover {
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  .cards_template-card {
    max-width: 100%;
  }

  .cards_template-content {
    padding: 30px;
  }

  .cards_template-title {
    font-size: 24px;
  }

  .cards_template-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cards_template-content {
    padding: 25px;
  }

  .cards_template-title {
    font-size: 22px;
  }

  .cards_template-description {
    font-size: 15px;
  }

  .cards_template-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* END CARDS TEMPLATE */



/* COMPANY REGISTRATION COST CALCULATOR */


#calculator-tmzon {
  font-family: 'Poppins', sans-serif;
  margin-top: 7rem;
}

.calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.calculator-main-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.calculator-form-container {
  width: 100%;
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.calculator-illustration-container {
  margin-top: 5rem;
  display: flex;
  background: white;
  border-radius: 30px;
  flex-direction: column;
  margin-bottom: 20px;
}

.calculator-illustration {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.calculator-results-container {
  width: 100%;
  background: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 3.5rem;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.calculator-results-container.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.calculator-results-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calculator-cost-section {
  flex: 1;
}

.calculator-timeline-section {
  flex: 1;
}

.calculator-form-title {
  font-size: 1.3rem;
  margin-bottom: 2.3rem;
  color: hsl(228, 66%, 47%);
}

.calculator-form-group {
  margin-bottom: 30px;
}

.calculator-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #253C6A;
}

/* Dropdown */
/* Dropdown Styles */
.calculator-dropdown {
  position: relative;
  width: 100%;
}

.calculator-dropdown-toggle {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #5d5b56;
}

.calculator-dropdown-toggle span {
  color: #5d5b56;
}

.calculator-dropdown-toggle.error {
  border-color: #dc143c;
}

/* Chevron icon styling */
.calculator-dropdown-toggle .calculator-arrow {
  font-size: 14px;
  color: #5d5b56;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Rotate icon when dropdown is active */
.calculator-dropdown.active .calculator-arrow {
  transform: rotate(180deg);
  color: hsl(228, 66%, 47%);
}

/* Dropdown menu styling */
.calculator-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease,
    border-color 0.3s ease;
  z-index: 10;
}

/* Show dropdown menu when active */
.calculator-dropdown.active .calculator-dropdown-menu {
  max-height: 250px;
  opacity: 1;
  pointer-events: auto;
  border-color: hsl(228, 66%, 47%);
  overflow-y: auto;
}

/* Dropdown items */
.calculator-dropdown-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #5d5b56;
}

.calculator-dropdown-item:hover {
  background-color: hsl(228, 100%, 97%);
}

/* Active state styling */
.calculator-dropdown.active .calculator-dropdown-toggle {
  border-color: hsl(228, 66%, 47%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}


/* Toggle Switches */
.calculator-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calculator-toggle-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: hsl(227, 100%, 97%);
  border-radius: 8px;
  color: #5d5b56;
}

.calculator-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.calculator-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.calculator-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: all 0.3s ease;
  border-radius: 24px;
}

.calculator-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 50%;
}

input:checked+.calculator-toggle-slider {
  background: hsl(228, 66%, 47%);
}

input:checked+.calculator-toggle-slider:before {
  transform: translateX(26px);
}

/* Capital Slider */
.calculator-capital-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calculator-capital-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: hsl(217, 48%, 95%);
  border-radius: 4px;
  outline: none;
}

.calculator-capital-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: hsl(228, 66%, 47%);
  border-radius: 50%;
  cursor: pointer;
}

.calculator-capital-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #5D5B56;
}

.calculator-capital-input:focus {
  outline: none;
  border: 1px solid hsl(228, 66%, 47%);
}

.calculator-capital-input.error {
  border-color: crimson;
}

.calculator-capital-value {
  font-size: 14px;
  color: #5D5B56;
  text-align: right;
  margin-top: 5px;
}

/* Form Input */
.calculator-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #5D5B56;
}

.calculator-form-input:focus {
  outline: none;
  border: 1px solid hsl(228, 66%, 47%);
}

.calculator-form-input.error {
  border-color: crimson;
}

/* Submit Button */
.calculator-submit-btn {
  width: 100%;
  padding: 15px 22px;
  background: hsl(227, 67%, 47%);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.calculator-submit-btn:hover {
  background: hsl(220, 60%, 45%);
}

/* Results Styling */
.calculator-results-title {
  color: hsl(227, 67%, 47%);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.calculator-company-type {
  color: #5D5B56;
  margin-bottom: 25px;
}

.calculator-cost-display {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(228, 66%, 47%);
  text-align: center;
  margin: 25px 0;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.calculator-breakdown {
  margin-top: 20px;
}

.calculator-breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #edf2f7;
}

.calculator-breakdown-item.total-item {
  border-bottom: none;
  font-weight: 600;
  color: hsl(228, 66%, 47%);
  padding-top: 1.7rem;
  font-size: 19px;
}

.calculator-service-details {
  margin-top: 15px;
  padding-left: 20px;
  font-size: 15px;
  color: #7a7872;
}

.calculator-service-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

/* Timeline Styles */
.calculator-timeline-title {
  font-size: 1.3rem;
  color: hsl(228, 67%, 47%);
  margin-bottom: 35px;
  font-weight: 600;
  text-align: center;
}

.calculator-timeline-container {
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
}

.calculator-timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
  z-index: 1;
}

.calculator-timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  height: 0;
  z-index: 2;
  transition: height 1s ease;
}

.calculator-timeline-steps {
  position: relative;
  z-index: 3;
}

.calculator-timeline-step {
  display: flex;
  margin-bottom: 15px;
  position: relative;
}

.calculator-timeline-step:last-child {
  margin-bottom: 0;
}

.calculator-timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid #edf2f7;
  position: absolute;
  left: -27px;
  top: 21px;
  transition: all 0.3s ease;
  z-index: 4;
}

.calculator-timeline-step.active .calculator-timeline-marker {
  border-color: hsl(227, 67%, 47%);
  background: hsl(227, 67%, 47%);
  transform: scale(1.2);
}

.calculator-timeline-step.completed .calculator-timeline-marker {
  border-color: hsl(227, 67%, 47%);
  background: hsl(227, 67%, 47%);
}

.calculator-timeline-content {
  flex: 1;
  padding-left: 15px;
  padding-top: 15px;
}

.calculator-timeline-label {
  font-weight: 500;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.calculator-timeline-step.active .calculator-timeline-label,
.calculator-timeline-step.completed .calculator-timeline-label {
  color: hsl(227, 67%, 47%);
}

.calculator-timeline-duration {
  font-size: 13px;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.calculator-timeline-step.active .calculator-timeline-duration,
.calculator-timeline-step.completed .calculator-timeline-duration {
  color: #5D5B56;
}

/* Desktop styles */
@media (min-width: 992px) {
  .calculator-main-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .calculator-form-container {
    flex: 1;
    min-width: 0;
  }

  .calculator-illustration-container {
    display: flex;
    flex: 1;
    min-width: 0;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .calculator-capital-container {
    flex-direction: row;
    align-items: center;
  }

  .calculator-capital-input {
    width: 150px;
  }

  .calculator-results-grid {
    flex-direction: row;
    gap: 40px;
  }

  .calculator-cost-section {
    border-right: 1px solid #edf2f7;
    padding-right: 20px;
  }

  .calculator-timeline-section {
    padding-left: 20px;
  }
}

/* Mobile styles */
@media (max-width: 991px) {
  .calculator-illustration {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
  }


  .calculator-illustration-container {
    margin-top: 0;
  }

  .calculator-dropdown-toggle .calculator-arrow {
    font-size: 12px;
  }
}

/* END CALCULATOR */

/* CSS FOR GST CALCULATOR */

.calculator-profit-sharing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calculator-profit-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 8px;
  background: hsl(217, 48%, 95%);
  border-radius: 4px;
  outline: none;
}

.calculator-profit-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: hsl(228, 66%, 47%);
  border-radius: 50%;
  cursor: pointer;
}

.calculator-profit-input {
  width: 70px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #5D5B56;
  transition: 0.3s ease-in-out;
}

.calculator-profit-input:focus {
  outline: none;
  border: 1px solid hsl(228, 66%, 47%);
}

.calculator-profit-percent {
  color: #5D5B56;
  font-weight: 500;
}

.calculator-profit-value {
  font-size: 14px;
  color: #5D5B56;
  text-align: right;
  margin-top: 5px;
}

.calculator-gst-info-section {
  flex: 1;
}

.calculator-gst-info-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculator-gst-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.calculator-gst-icon {
  font-size: 24px;
  color: hsl(228, 66%, 47%);
  margin-top: 3px;
}

.calculator-gst-info-title {
  color: #253C6A;
  margin-bottom: 5px;
  font-size: 16px;
}

.calculator-gst-info-desc {
  color: #5D5B56;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .calculator-gst-info-item {
    flex-direction: column;
    gap: 8px;
  }
}



/* CSS for income tax calculator */


.calculator-section-header {
  margin: 25px 0 15px;
  padding-bottom: 18px;
  border-bottom: 2px solid hsl(228, 66%, 90%);
}

.calculator-section-header h3 {
  color: hsl(228, 66%, 47%);
  font-size: 1.1rem;
}

.calculator-info-box {
  background: hsl(227, 100%, 97%);
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.calculator-info-box i {
  color: hsl(228, 66%, 47%);
  font-size: 20px;
  flex-shrink: 0;
}

.calculator-info-box span {
  font-size: 14px;
  color: #5D5B56;
}

.calculator-tax-slabs {
  background: hsl(227, 100%, 97%);
  border-radius: 10px;
  padding: 6px 15px 6px;
  margin-bottom: 20px;
}

.calculator-tax-slab {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid hsl(228, 66%, 90%);
}

.calculator-tax-slab:last-child {
  border-bottom: none;
}

.calculator-tax-slab.highlight {
  /* background: hsl(228, 66%, 95%); */
  margin: 0 -15px;
  padding: 12px 15px;
  border-radius: 5px;
  /* margin-top: 5px; */
}

.calculator-suggestions {
  margin-top: 30px;
}

.calculator-suggestions-list {
  background: hsl(227, 100%, 97%);
  border-radius: 10px;
  padding: 15px;
}

.calculator-suggestion {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed hsl(228, 66%, 85%);
}

.calculator-suggestion:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.calculator-suggestion-icon {
  color: hsl(120, 60%, 45%);
  margin-right: 10px;
  font-size: 18px;
  padding-top: 5px;
}

/* Fixed Tooltip and Collapsible Section */

.calculator-form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
  color: #253C6A;
  width: 100%;
  position: relative;
}

.calculator-form-label>span:first-child {
  flex: 1;
}

.calculator-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.calculator-tooltip i {
  color: hsl(228, 66%, 60%);
  font-size: 16px;
}

.calculator-tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #2C3E50;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 10px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  pointer-events: none;
}

.calculator-tooltip:hover .calculator-tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Collapsible Section */

.calculator-collapsible-section {
  margin-bottom: 20px;
  border: 1px solid hsl(228, 66%, 90%);
  border-radius: 15px;
  overflow: visible;
  position: relative;
}

.calculator-collapsible-header {
  padding: 15px;
  /* background: hsl(227, 100%, 98%); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}

.calculator-collapsible-header h3 {
  color: #253C6A;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.calculator-collapsible-icon {
  color: hsl(228, 66%, 47%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.calculator-collapsible-section.active .calculator-collapsible-icon {
  transform: rotate(180deg);
}

.calculator-collapsible-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  position: relative;
}

.calculator-collapsible-section.active .calculator-collapsible-content {
  max-height: 1000px;
  padding: 15px;
  overflow: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .calculator-tooltiptext {
    width: 200px;
    left: auto;
    right: 0;
    transform: none;
  }

  .calculator-collapsible-header {
    padding: 12px;
  }

  .calculator-collapsible-header h3 {
    font-size: 15px;
  }

  .calculator-collapsible-content {
    padding: 0 12px;
  }

  .calculator-collapsible-section.active .calculator-collapsible-content {
    padding: 12px;
  }
}


/* Newly added CSS classes for EMI calculator */
.calculator-tenure-container {
  margin-bottom: 15px;
}

.calculator-tenure-input-container {
  display: flex;
  margin-bottom: 10px;
}

.calculator-tenure-input-container input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.calculator-tenure-toggle {
  display: flex;
  border: 1px solid #ddd;
  border-left: none;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

.calculator-tenure-option {
  padding: 12px 15px;
  background: hsl(227, 100%, 97%);
  cursor: pointer;
  color: #5D5B56;
  font-size: 14px;
  transition: all 0.3s ease;
}

.calculator-tenure-option.active {
  background: hsl(228, 66%, 47%);
  color: white;
}

.calculator-tenure-option:not(.active):hover {
  background: hsl(228, 66%, 90%);
}

.calculator-emi-chart-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calculator-emi-chart {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
  background: #f5f5f5;
}

.calculator-emi-chart-slice {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
  transform: rotate(0deg);
  border-radius: 50%;
  transform-origin: center;
}

.calculator-emi-chart-principal {
  background: hsl(228, 66%, 70%);
}

.calculator-emi-chart-interest {
  background: hsl(228, 66%, 70%);
}

.calculator-emi-chart-center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calculator-emi-chart-center span:first-child {
  font-size: 14px;
  color: #5D5B56;
}

.calculator-emi-chart-center span:last-child {
  font-weight: 600;
  color: hsl(228, 66%, 47%);
  font-size: 16px;
}

.calculator-emi-chart-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.calculator-emi-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.calculator-emi-chart-legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.calculator-emi-chart-legend-color.calculator-emi-chart-principal {
  background: hsl(228, 66%, 70%);
}

.calculator-emi-chart-legend-color.calculator-emi-chart-interest {
  background: hsl(228, 66%, 47%);
}

.calculator-emi-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.calculator-emi-tab {
  padding: 10px 20px;
  cursor: pointer;
  color: #5D5B56;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.calculator-emi-tab.active {
  color: hsl(228, 66%, 47%);
  border-bottom: 2px solid hsl(228, 66%, 47%);
}

.calculator-emi-tab:not(.active):hover {
  color: hsl(228, 66%, 60%);
}

.calculator-emi-tab-content {
  display: none;
}

.calculator-emi-tab-content.active {
  display: block;
}

.calculator-emi-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
}

.calculator-emi-summary-item:last-child {
  border-bottom: none;
}

.calculator-emi-schedule-container {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.calculator-emi-schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.calculator-emi-schedule-table th,
.calculator-emi-schedule-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #edf2f7;
}

.calculator-emi-schedule-table th {
  font-weight: 500;
  color: #253C6A;
}

.calculator-emi-schedule-note {
  font-size: 12px;
  color: #5D5B56;
  text-align: center;
}


/* Additional options for the TDS container */

.calculator-additional-options {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}




/* EQUITY CALCULATOR CSS */

.calculator-founder-group {
  margin-bottom: 30px;
  /* padding: 20px; */
  /* background: hsl(228, 66%, 98%); */
  border-radius: 15px;
  /* border: 1px solid hsl(228, 66%, 90%); */
  transition: all 0.3s ease;
}

.calculator-suggestion-box {
  margin-bottom: 30px;
  background: hsl(228, 66%, 97%);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid hsl(228, 66%, 60%);
}

.calculator-suggestion-box h4 {
  color: hsl(228, 66%, 47%);
  margin-top: 0;
  margin-bottom: 15px;
}

.calculator-suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.5;
}

.calculator-suggestion-item i {
  color: hsl(228, 66%, 60%);
  font-size: 18px;
  margin-top: 2px;
}

.calculator-suggestion-item:last-child {
  margin-bottom: 0;
}

.calculator-equity-chart-container {
  position: relative;
  height: 300px;
  margin: 20px auto;
  width: 100%;
  max-width: 400px;
}

.calculator-risk-assessment {
  margin-bottom: 30px;
}

.calculator-risk-level {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.calculator-risk-bar {
  flex: 1;
  height: 10px;
  background: hsl(228, 66%, 96%);
  border-radius: 5px;
  overflow: hidden;
}

.calculator-risk-progress {
  height: 100%;
  width: 0;
  transition: width 0.5s ease;
}

.calculator-risk-label {
  font-weight: 500;
  min-width: 80px;
  text-align: right;
}

.calculator-risk-factors {
  background: hsl(228, 66%, 97%);
  padding: 15px;
  border-radius: 10px;
  color: #5d5b56;
}

.calculator-risk-factor {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.calculator-risk-factor i {
  color: crimson;
  font-size: 18px;
  margin-top: 2px;
}

.calculator-risk-factor:last-child {
  margin-bottom: 0;
}

.calculator-vesting-schedule {
  margin-bottom: 30px;
}

.calculator-vesting-timeline {
  background: hsl(228, 66%, 97%);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.calculator-vesting-event {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed hsl(228, 66%, 85%);
}

.calculator-vesting-event:last-child {
  border-bottom: none;
}

.calculator-vesting-time {
  font-weight: 500;
  color: hsl(228, 66%, 47%);
}

.calculator-vesting-desc {
  color: #5D5B56;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .calculator-equity-chart-container {
    height: 250px;
    max-width: 300px;
  }

  /* .calculator-risk-level {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .calculator-risk-bar {
    width: 100%;
  }
  
  .calculator-risk-label {
    text-align: left;
  }
   */
  .calculator-vesting-event {
    flex-direction: column;
    gap: 5px;
  }

  .calculator-vesting-time,
  .calculator-vesting-desc {
    width: 100%;
  }

}



/* Styling for the language change bar */

.language-change-bar {
  position: relative;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  border: 1px solid hsl(228, 66%, 47%);
  border-radius: 30px;
  max-width: 380px;
  margin: 20px 0;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.language-change-bar:hover {
  box-shadow: 0 0 15px rgba(37, 117, 252, 0.2);
}

.language-change-bar p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.language-change-bar .current-language {
  font-weight: 600;
  color: hsl(228, 66%, 47%);
}

.language-dropdown-arrow i {
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
}

.language-change-bar:hover .language-dropdown-arrow i {
  color: hsl(228, 66%, 57%);
}

.language-change-bar.active .language-dropdown-arrow i {
  transform: rotate(180deg);
}


/* Simple Slide-Up Dropdown - Template Style */
.magical-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
}

.language-change-bar.active .magical-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.magical-dropdown ul {
  list-style: none;
  padding: 5px 0;
  margin: 0;
}

.magical-dropdown li {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.magical-dropdown li:hover {
  background: hsl(228, 100%, 97%);
}

.magical-dropdown li.active {
  background: hsl(228, 100%, 97%);
  color: hsl(228, 66%, 47%);
}

.magical-dropdown .flag-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.magical-dropdown .language-name {
  flex-grow: 1;
}


/* Magical Animation Effects */
.magical-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 117, 252, 0.95) 0%, rgba(106, 17, 203, 0.95) 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-out;
}

.magical-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.magical-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 70%);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}

.magical-text {
  font-size: 1.5rem;
  margin-top: 30px;
  text-align: center;
  color: white;
  /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); */
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.magical-text.visible {
  opacity: 1;
}

.magic-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  opacity: 0;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.2);
  }
}

@keyframes particle-float {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(1);
    opacity: 0;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .language-change-bar {
    padding: 10px 15px;
    font-size: 14px;
  }

  .magical-text {
    font-size: 1.2rem;
  }
}




/* UNIQUE TAB CONTENT CSS */


.unique-tabs-container {
  width: 98%;
  max-width: 1200px;
  margin: 50px auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 8rem;
}

.unique-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
}

.unique-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsl(225, 77%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(228, 66%, 47%);
  border: none;
  padding: 11px 11px;
  cursor: pointer;
  z-index: 2;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.unique-arrow.hidden {
  display: none;
}

.unique-arrow:hover {
  background: hsl(228, 66%, 53%);
  color: white;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.unique-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}

.unique-tabs::-webkit-scrollbar {
  display: none;
}

.unique-tab {
  flex: 0 0 auto;
  padding: 12px 18px;
  background: white;
  color: hsl(228, 66%, 47%);
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: 1px solid hsl(228, 66%, 47%);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 15px;
  border-radius: 50px;
}

.unique-tab:hover,
.unique-tab.active {
  background: hsl(228, 66%, 47%);
  color: #ffffff;
}

.content-section {
  margin-bottom: 3rem;
  scroll-margin-top: 80px;
  /* Space for sticky header */
}


/* Responsive Design */
@media (max-width: 768px) {
  .unique-tabs-container {
    margin: 20px auto;
    margin-top: 5rem;
  }

  .unique-tab {
    font-size: 16px;
    padding: 12px 20px;
  }

}

@media (max-width: 480px) {
  .unique-tab {
    font-size: 15px;
    padding: 10px 15px;
  }

  .unique-arrow {
    padding: 11px 11px;
    font-size: 14px;
  }
}

.sticky-tabs-container {
  position: sticky;
  top: 0;
  background-color: white;
  padding: 1px 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}

@media (min-width: 1024px) {

  .sticky-tabs-container {
    transition-duration: 0.4s;
  }

}


/* BUSINESS NAME GENERATOR */
.business-name-generator-main-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  overflow: visible;
  /* Prevent clipping of dropdown */
  margin-bottom: -3rem;
}

/* Form wrapper */
.business-name-generator-form-wrapper {
  width: 100%;
  overflow: visible;
  /* Prevent clipping */
}

/* Form container */
.business-name-generator-form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: visible;
  /* Ensure dropdown isn’t clipped */
  width: 100%;
  position: relative;
}

.business-name-generator-header {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, hsl(227, 67%, 47%), #1a3a8f);
  color: white;
  border-radius: 20px 20px 0 0;
}

.business-name-generator-header h1 {
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.business-name-generator-header .business-name-generator-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.business-name-generator-steps-container {
  display: flex;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  scrollbar-width: none;
}

.business-name-generator-steps-container::-webkit-scrollbar {
  display: none;
}

.business-name-generator-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding: 10px 5px;
}

.business-name-generator-step-number {
  width: 36px;
  height: 36px;
  background: #f8f9fa;
  color: #6c757d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.business-name-generator-step.active .business-name-generator-step-number {
  background: white;
  color: hsl(227, 67%, 47%);
  border-color: hsl(227, 67%, 47%);
}

.business-name-generator-step.completed .business-name-generator-step-number {
  background: hsl(227, 67%, 47%);
  color: white;
  border-color: hsl(227, 67%, 47%);
}

.business-name-generator-step-title {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
  white-space: nowrap;
}

.business-name-generator-step.active .business-name-generator-step-title {
  color: hsl(227, 67%, 47%);
  font-weight: 600;
}

.business-name-generator-step.completed .business-name-generator-step-title {
  color: hsl(227, 67%, 47%);
}

.business-name-generator-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background: #f8f9fa;
  z-index: -1;
}

.business-name-generator-step.active:not(:last-child)::after {
  background: linear-gradient(to right, hsl(227, 67%, 47%), #f8f9fa);
}

.business-name-generator-step.completed:not(:last-child)::after {
  background: #28a745;
}

.business-name-generator-form-content {
  padding: 30px;
}

.business-name-generator-step-content {
  display: none;
}

.business-name-generator-step-content.active {
  display: block;
  animation: business-name-generator-fadeIn 0.4s ease;
}

@keyframes business-name-generator-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.business-name-generator-form-group {
  margin-bottom: 25px;
}

.business-name-generator-form-group label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: #253C6A;
  font-size: 1rem;
}

.business-name-generator-form-group i {
  padding-right: 5px;
}

.business-name-generator-form-group input,
.business-name-generator-form-group textarea {
  width: 100%;
  padding: 18px 18px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  background: white;
  font-family: 'Poppins', sans-serif;
}

.business-name-generator-form-group input:focus,
.business-name-generator-form-group textarea:focus {
  border-color: hsl(227, 67%, 47%);
}

.business-name-generator-form-group input.error,
.business-name-generator-form-group textarea.error {
  border-color: crimson;
}

.business-name-generator-form-group textarea {
  min-height: 140px;
  resize: none;
  line-height: 1.5;
  border-radius: 30px;
}

.business-name-generator-form-group textarea::-webkit-scrollbar {
  display: none;
}

.business-name-generator-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  gap: 20px;
  width: 100%;
  margin-left: auto;
}

.business-name-generator-btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.business-name-generator-btn-primary {
  background: hsl(227, 67%, 47%);
  color: white;
  font-family: 'Poppins', sans-serif;
}

.business-name-generator-btn-primary:hover {
  background: hsl(228, 66%, 53%);
}

.business-name-generator-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.business-name-generator-btn-outline {
  background: transparent;
  color: hsl(227, 67%, 47%);
  border: 1px solid hsl(227, 67%, 47%);
}

.business-name-generator-btn-outline:hover {
  background: hsl(227, 67%, 47%);
  color: white;
}

.business-name-generator-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  font-family: 'Poppins', sans-serif;
}

/* Results wrapper */
.business-name-generator-results-wrapper {
  margin-top: 4rem;
  width: 100%;
  display: none;
}

.business-name-generator-results-wrapper.show {
  display: block;
  animation: business-name-generator-slideUp 0.5s ease-out;
}

@keyframes business-name-generator-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Results container */
.business-name-generator-results-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.business-name-generator-results-header {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .business-name-generator-results-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.business-name-generator-results-content {
  padding: 30px;
}

.business-name-generator-name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

@media (max-width: 480px) {
  .business-name-generator-name-grid {
    grid-template-columns: 1fr;
  }
}

.business-name-generator-name-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-name-generator-name-card:hover {
  transform: translateY(-5px);
  border-color: hsl(227, 67%, 47%);
}

.business-name-generator-name-card:active {
  transform: translateY(-2px);
}

.business-name-generator-name-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: hsl(227, 67%, 47%);
}

.business-name-generator-name-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.business-name-generator-name-meta {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.business-name-generator-name-meta-item {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}

.business-name-generator-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

/* New Magical Animation */
.business-name-generator-magic-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  perspective: 1000px;
}

.business-name-generator-magic-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: business-name-generator-rotate 8s infinite linear;
}

.business-name-generator-magic-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(42, 82, 190, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2a52be;
  background: rgba(42, 82, 190, 0.05);
}

.business-name-generator-magic-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(60px);
}

.business-name-generator-magic-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(60px);
}

.business-name-generator-magic-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(60px);
}

.business-name-generator-magic-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(60px);
}

.business-name-generator-magic-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(60px);
}

.business-name-generator-magic-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(60px);
}

@keyframes business-name-generator-rotate {
  from {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  to {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.business-name-generator-loading-text {
  font-size: 1.3rem;
  color: #253C6A;
  margin-top: 30px;
  font-weight: 500;
}

.business-name-generator-loading-subtext {
  font-size: 1rem;
  color: #5d5b56;
  opacity: 0.8;
  margin-top: 10px;
  max-width: 400px;
}

.business-name-generator-hidden {
  display: none;
}

/* Improved Dropdown */
.business-name-generator-custom-dropdown {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: visible;
  /* Ensure dropdown isn’t clipped */
}

.business-name-generator-dropdown-btn {
  width: 100%;
  padding: 18px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background-color: white;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: 1px solid #e9ecef;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.business-name-generator-dropdown-btn.error {
  border-color: crimson;
}

.business-name-generator-dropdown-btn:hover {
  border-color: hsl(227, 67%, 47%);
}

.business-name-generator-dropdown-arrow {
  transition: transform 0.3s ease;
  color: #333;
  font-size: 0.9rem;
}

.business-name-generator-custom-dropdown.active .business-name-generator-dropdown-arrow {
  transform: rotate(180deg);
  color: hsl(227, 67%, 47%);
}

.business-name-generator-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  /* Revert to original positioning */
  width: fit-content;
  /* Size based on content */
  min-width: 100%;
  /* At least as wide as parent */
  max-width: 500px;
  /* Prevent excessive width */
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
  /* Higher z-index to ensure visibility */
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid #ddd;
  transform: translateY(10px);
  /* Original animation start */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Original animation */
}

.business-name-generator-custom-dropdown.active .business-name-generator-dropdown-menu {
  transform: translateY(0);
  /* Original animation end */
  opacity: 1;
  visibility: visible;
}

.business-name-generator-dropdown-item {
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  /* Prevent items from overflowing container */
}

.business-name-generator-dropdown-item:hover {
  background: rgba(42, 82, 190, 0.1);
}

.business-name-generator-dropdown-item.active {
  background: rgba(42, 82, 190, 0.1);
  color: hsl(227, 67%, 47%);
}

/* Modal */
.business-name-generator-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.business-name-generator-modal.active {
  opacity: 1;
  visibility: visible;
}

.business-name-generator-modal-content {
  background: white;
  border-radius: 25px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.business-name-generator-modal.active .business-name-generator-modal-content {
  transform: translateY(0);
}

.business-name-generator-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.business-name-generator-modal-close:hover {
  background: #f8f9fa;
  color: #1a1a2e;
}

.business-name-generator-modal-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: hsl(227, 67%, 47%);
  padding-right: 40px;
}

.business-name-generator-modal-section {
  margin-bottom: 25px;
}

.business-name-generator-modal-section-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #253C6A;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-name-generator-modal-section-title i {
  color: hsl(227, 67%, 47%);
}

.business-name-generator-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
}

.business-name-generator-modal-card {
  background: hsl(227, 100%, 99%);
  border-radius: 15px;
  padding: 18px;
  color: #444;
}

.business-name-generator-modal-card-title {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.business-name-generator-modal-card-value {
  font-size: 1.2rem;
  font-weight: 500;
}

.business-name-generator-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.business-name-generator-modal-actions .business-name-generator-btn {
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

#business-name-generator-modal-preferences li {
  padding-bottom: 10px;
}

/* Animations */
.business-name-generator-name-card {
  animation: business-name-generator-fadeIn 0.4s ease-out forwards;
  opacity: 0;
}

.business-name-generator-name-card:nth-child(1) {
  animation-delay: 0.1s;
}

.business-name-generator-name-card:nth-child(2) {
  animation-delay: 0.2s;
}

.business-name-generator-name-card:nth-child(3) {
  animation-delay: 0.3s;
}

.business-name-generator-name-card:nth-child(4) {
  animation-delay: 0.4s;
}

.business-name-generator-name-card:nth-child(5) {
  animation-delay: 0.5s;
}

.business-name-generator-name-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

  .business-name-generator-form-content,
  .business-name-generator-results-content {
    padding: 25px;
  }

  .business-name-generator-name-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .business-name-generator-form-container {
    border-radius: 20px;
  }

  .business-name-generator-header {
    padding: 25px 15px;
  }

  .business-name-generator-form-content,
  .business-name-generator-results-content {
    padding: 20px;
  }

  .business-name-generator-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .business-name-generator-name-text {
    font-size: 1.4rem;
  }

  .business-name-generator-modal-content {
    padding: 25px;
  }

  .business-name-generator-modal-title {
    font-size: 1.5rem;
  }

  .business-name-generator-modal-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .business-name-generator-main-container {
    padding: 0px;
  }

  .business-name-generator-form-container {
    border-radius: 15px;
  }

  .business-name-generator-steps-container {
    padding: 10px 5px;
  }

  .business-name-generator-step {
    min-width: 90px;
  }

  .business-name-generator-step-number {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .business-name-generator-step-title {
    font-size: 0.75rem;
  }

  .business-name-generator-form-actions {
    flex-direction: column;
  }

  .business-name-generator-btn {
    width: 100%;
  }

  .business-name-generator-modal-actions {
    flex-direction: column;
  }

  .business-name-generator-modal-grid {
    grid-template-columns: 1fr;
  }

  .business-name-generator-dropdown-menu {
    max-width: 100%;
  }

  .business-name-generator-subtitle {
    display: none;
  }

  .business-name-generator-header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
  }

  .business-name-generator-header .business-name-generator-subtitle {
    font-size: 0.95rem;
  }
}


/* Domain Availability Styles */
.business-name-generator-domain-results {
  display: none;
  margin: 20px 0;
  margin-top: 3rem;
  margin-bottom: -20px;
}

.business-name-generator-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.business-name-generator-domain-result {
  padding: 12px;
  border-radius: 15px;
  background: hsl(227, 100%, 98%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.business-name-generator-domain-name {
  color: #253C6A;
  font-weight: 500;
  font-size: 1rem;
}

.business-name-generator-domain-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.business-name-generator-domain-status i {
  margin-right: 6px;
  font-size: 0.9rem;
}

.business-name-generator-domain-status .available {
  color: #28a745;
}

.business-name-generator-domain-status .taken {
  color: crimson;
}

.business-name-generator-domain-error {
  color: #dc3545;
  padding: 10px;
  background: #f8d7da;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Loading spinner for the button */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .business-name-generator-domain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-name-generator-domain-result {
    padding: 12px 14px;
  }

  .business-name-generator-domain-results {
    margin-top: 2rem;
    margin-bottom: -15px;
  }
}

@media (max-width: 480px) {
  .business-name-generator-domain-name {
    font-size: 1rem;
  }

  .business-name-generator-domain-status,
  .business-name-generator-domain-status i {
    font-size: 0.9rem;
  }

  .business-name-generator-domain-error {
    font-size: 0.9rem;
    padding: 10px 11px;
  }
}


/* END BUSINESS NAME GENERATOR CSS */





/* TRADEMARK CLASS SEARCH CSS */


.tmzon-class-container {
  display: flex;
  flex: 1;
  background-color: white;
  margin-top: 6rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar styles */
.tmzon-class-sidebar {
  width: 260px;
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  position: sticky;
  top: 100px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  border-right: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.tmzon-class-sidebar::-webkit-scrollbar {
  display: none;
}

.tmzon-class-sidebar h3 {
  margin-bottom: 1.5rem;
  color: #253C6A;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tmzon-class-sidebar-nav {
  list-style: none;
}

.tmzon-class-sidebar-nav li {
  margin-bottom: 0.5rem;
}

.tmzon-class-sidebar-nav a {
  text-decoration: none;
  color: #5d5b56;
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.tmzon-class-sidebar-nav a:hover {
  background-color: hsl(227, 100%, 97%);
  color: hsl(227, 67%, 47%);
}

.tmzon-class-sidebar-nav a.active {
  background-color: hsl(227, 100%, 97%);
  color: hsl(227, 67%, 47%);
  font-weight: 500;
}

/* Main content styles */
.tmzon-class-main-content {
  flex: 1;
  padding: 2.5rem 3rem;
  margin: 0 auto;
  line-height: 2rem;
}

.tmzon-class-last-updated {
  font-style: italic;
  color: #5d5b56;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.tmzon-class-main-content h1 {
  color: #253C6A;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.tmzon-class-main-content h3 {
  color: #253C6A;
  margin: 2rem 0 1.2rem;
  padding-top: 1rem;
  scroll-margin-top: calc(70px + 1rem);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.tmzon-class-main-content h4 {
  margin: 1.5rem 0 0.8rem;
  color: #5d5b56;
  font-size: 1.2rem;
  font-weight: 600;
}

.tmzon-class-main-content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #5d5b56;
}

.tmzon-class-main-content ul,
.tmzon-class-main-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.tmzon-class-main-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #5d5b56;
}

.tmzon-class-main-content li a,
.tmzon-class-main-content p a {
  color: hsl(228, 67%, 47%);
  font-weight: 500;
}

.tmzon-class-main-content strong {
  font-weight: 600;
  color: #5d5b56;
}

.tmzon-class-last-updated {
  font-style: italic;
  color: #5d5b56;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* Mobile TOC styles */
.tmzon-class-mobile-toc {
  display: none;
  margin-bottom: 2rem;
  padding: 0;
  line-height: 1.6rem;
}

.tmzon-class-mobile-toc h4 {
  color: #253C6A;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tmzon-class-mobile-toc-nav {
  list-style: none;
}

.tmzon-class-mobile-toc-nav li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.tmzon-class-mobile-toc-nav li a {
  color: #5d5b56;
}

.tmzon-class-mobile-toc-nav li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: hsl(227, 67%, 47%);
}

.tmzon-class-mobile-toc-nav a {
  text-decoration: none;
  color: #5d5b56;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tmzon-class-mobile-toc-nav a:hover,
.tmzon-class-mobile-toc-nav a.active {
  color: hsl(227, 67%, 47%);
}


.tmzon-dashed-list {
  column-count: 2;
  column-gap: 30px;
  margin: 20px 0;
}

.tmzon-dashed-list-container {
  padding-right: 15px;
}

.tmzon-dashed-item {
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
  break-inside: avoid;
  font-size: 1rem;
  color: #5d5b56;
}

.tmzon-dashed-category {
  font-weight: bold;
  color: #2c7be5;
  margin: 15px 0 5px;
  break-after: avoid;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .tmzon-class-main-content {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .tmzon-class-sidebar {
    width: 240px;
    padding: 1.5rem 1rem;
  }

  .tmzon-class-main-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .tmzon-class-container {
    flex-direction: column;
  }

  .tmzon-class-sidebar {
    display: none;
  }

  .tmzon-class-mobile-toc {
    display: block;
  }

  .tmzon-class-main-content {
    padding: 1.8rem 1.5rem;
    max-width: 100%;
  }

  .tmzon-class-main-content h1 {
    font-size: 1.8rem;
  }

  .tmzon-class-main-content h2 {
    font-size: 1.4rem;
    scroll-margin-top: calc(70px + 60px + 1rem);
  }

  .tmzon-class-main-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .tmzon-class-header {
    padding: 0 1.5rem;
    height: 60px;
  }

  .tmzon-class-main-content {
    padding: 1.5rem 1.2rem;
  }

  .tmzon-class-main-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .tmzon-class-main-content h2 {
    font-size: 1.2rem;
    margin: 1.8rem 0 1rem;
  }

  .tmzon-class-main-content h3 {
    font-size: 1.2rem;
  }

  .tmzon-class-main-content li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 2;
  }

  .tmzon-class-main-content p {
    font-size: 0.9rem;
    line-height: 2;
  }

  .tmzon-dashed-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .tmzon-dashed-list {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .tmzon-dashed-list {
    column-count: 1;
  }
}

.tmzon-class-illustration {
  text-align: center;
  padding: 30px;
}

.tmzon-illustration-img {
  width: 45%;
}

@media (max-width: 480px) {
  .tmzon-illustration-img {
    width: 100%;
  }
}


/* CTA */
.tmzon-about-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 20px;
  margin: 80px auto;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.tmzon-about-cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.tmzon-about-cta-text {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.tmzon-about-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: white;
  color: hsl(228, 67%, 47%);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 850px) {
  .tmzon-about-cta {
    margin: 80px 20px;
  }
}

@media (max-width: 768px) {
  .tmzon-about-cta-title {
    font-size: 1.8rem;
  }

  .tmzon-about-cta-text {
    font-size: 0.9rem;
  }

  .tmzon-about-cta-button {
    font-size: 0.9rem;
  }
}


/* END TRADEMARK CLASSES CSS */





/* AI SUMMARIZE CSS */

.ai-summary-button {
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.ai-summary-button:hover {
  background-color: #234a8c;
}

.ai-summary-button i {
  font-size: 1.1rem;
  color: white;
}

/* AI Summary Tooltip */
.ai-summary-tooltip {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-width: 250px;
}

.ai-summary-tooltip.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ai-summary-tooltip-text {
  font-size: 0.9rem;
  color: #5d5b56;
  font-weight: 500;
}

.ai-summary-tooltip-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.ai-summary-tooltip-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.ai-summary-tooltip-close svg {
  width: 16px;
  height: 16px;
}

/* AI Summary Modal */
.ai-summary-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, visibility 0.3s;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  visibility: hidden;
}

@media (min-width: 768px) {
  .ai-summary-modal {
    max-width: 700px;
    transform: translate(0, 100%);
    border-radius: 16px;
    max-height: 70vh;
    bottom: 2%;
  }

  .ai-summary-modal.open {
    transform: translate(-50%, 0);
  }
}

.ai-summary-modal.open {
  transform: translateY(0);
  visibility: visible;
}

.ai-summary-modal-header {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.ai-summary-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #253C6A;
  margin: 0;
  padding-right: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-summary-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  padding: 0.5rem;
  line-height: 1;
}

.ai-summary-modal-close:hover {
  color: hsl(227, 67%, 47%);
}

.ai-summary-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.ai-summary-text {
  color: #5d5b56;
  line-height: 1.7;
  width: 100%;
  overflow-y: auto;
  padding: 0.5rem;
}

.ai-summary-modal-footer {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
  text-align: center;
}

.ai-summary-modal-footer small {
  color: #5d5b56;
  font-size: 0.8rem;
}

/* AI Summary Loader */

.tmzon-ai-summarize-loader {
  width: 100%;
  /* max-width: 600px; */
  height: auto;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.tmzon-ai-summarize-loader div ul {
  margin: 0;
  padding: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 10px;
}

.tmzon-ai-summarize-loader div ul li {
  position: relative;
  height: 20px;
  background: linear-gradient(90deg,
      rgba(220, 220, 255, 0.8) 0%,
      rgba(180, 220, 255, 0.9) 50%,
      rgba(220, 220, 255, 0.8) 100%);
  background-size: 400% 100%;
  border-radius: 10px;
  animation: fluidWave 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  overflow: hidden;
}

.tmzon-ai-summarize-loader div ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shine 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.tmzon-ai-summarize-loader div ul li:nth-child(1) {
  width: 100%;
  height: 32px;
}

.tmzon-ai-summarize-loader div ul li:nth-child(2) {
  width: 92%;
  animation-delay: 0.1s;
}

.tmzon-ai-summarize-loader div ul li:nth-child(3) {
  width: 88%;
  animation-delay: 0.2s;
}

.tmzon-ai-summarize-loader div ul li:nth-child(4) {
  width: 95%;
  animation-delay: 0.3s;
}

.tmzon-ai-summarize-loader div ul li:nth-child(5) {
  width: 90%;
  animation-delay: 0.4s;
}

.tmzon-ai-summarize-loader div ul li:nth-child(6) {
  width: 85%;
  animation-delay: 0.5s;
}

@keyframes fluidWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.ai-summary-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
}

/* Overlay */
.ai-summary-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.ai-summary-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Enhanced AI Summary Text Styling */
.ai-summary-text {
  color: #5d5b56;
  line-height: 1.7;
}

.ai-summary-text h4 {
  color: #253C6A;
  margin: 1.5rem 0 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.ai-summary-text p {
  margin-bottom: 1rem;
}

.ai-summary-text ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style-type: disc;
}

.ai-summary-text li {
  margin-bottom: 0.5rem;
}

.ai-summary-text .summary-header {
  font-size: 1.2rem;
  font-weight: 500;
  color: #253C6A;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.ai-summary-text .summary-section {
  margin-bottom: 1.8rem;
}

.ai-summary-text .summary-point {
  display: flex;
  margin-bottom: 0.8rem;
}

.ai-summary-text .summary-point-icon {
  color: hsl(227, 67%, 47%);
  margin-right: 0.8rem;
}

.ai-summary-text .disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.ai-summary-text .error {
  color: #d32f2f;
  font-weight: 500;
}

.ai-summary-text strong {
  font-weight: 500;
  color: #253C6A;
}

@media (max-width: 768px) {
  .ai-summary-button {
    right: 20px;
    bottom: 21px;
  }

  .ai-summary-tooltip {
    bottom: 5rem;
    right: 1.25rem;
    max-width: calc(100% - 3rem);
  }

  /* .tmzon-ai-summarize-loader {
    width: 160px;
    height: 112px;
  }

  .tmzon-ai-summarize-loader div ul li svg {
    width: 72px;
    height: 96px;
  } */
}

/* END AI SUMMARIZE CSS */






/* TRADEMARK CLASS FINDER MODAL CSS */


/* Responsive Modal Container */
.tmzon-class-finder {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, visibility 0.3s;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  visibility: hidden;
}

.tmzon-class-finder-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tmzon-class-finder-content::-webkit-scrollbar {
  display: none;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .tmzon-class-finder {
    max-width: 720px;
    border-radius: 16px;
    max-height: 85vh;
    bottom: 2%;
  }

  .tmzon-class-finder.open {
    transform: translate(-50%, 0);
  }
}

.tmzon-class-finder.open {
  transform: translateY(0);
  visibility: visible;
}

/* Modal Header */
.tmzon-class-finder-header {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.tmzon-class-finder-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding-right: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #253C6A;
}

.tmzon-class-finder-back {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-right: 0.6rem;
  padding: 0.25rem;
  line-height: 1;
  display: none;
  min-width: 30px;
}

.tmzon-class-finder-back:hover {
  color: hsl(228, 67%, 47%);
}

.tmzon-class-finder-back.visible {
  display: block;
}

.tmzon-class-finder-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  padding: 0.5rem;
  line-height: 1;
}

.tmzon-class-finder-close:hover {
  color: hsl(228, 67%, 47%);
}

/* Modal Content Area */
.tmzon-class-finder-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

.tmzon-class-finder.open .tmzon-class-finder-content {
  opacity: 1;
}

.tmzon-class-finder:not(.open) .tmzon-class-finder-content {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* Search Bar */
.tmzon-class-finder-search-container {
  position: relative;
  margin-bottom: 1rem;
}

.tmzon-class-finder-search-input {
  width: 100%;
  padding: 14px 22px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  font-family: 'Poppins', sans-serif;
}

.tmzon-class-finder-search-input:focus {
  outline: none;
  border-color: hsl(227, 67%, 47%);
}

.tmzon-class-finder-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.tmzon-class-finder-search-btn:hover {
  color: hsl(227, 67%, 47%);
}

.tmzon-class-finder-search-btn .spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid hsl(228, 100%, 97%);
  border-radius: 50%;
  border-top-color: hsl(228, 67%, 47%);
  animation: tmzon-spin 1s ease-in-out infinite;
}

.tmzon-class-finder-search-btn.searching .spinner {
  display: block;
}

.tmzon-class-finder-search-btn.searching .fa-search {
  display: none;
}

@keyframes tmzon-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Results Section */
.tmzon-class-finder-results {
  margin-top: 1rem;
}

.tmzon-class-finder-no-results {
  color: #5d5b56;
  text-align: center;
  padding: 2rem 0;
  display: none;
}

.tmzon-class-finder-no-results i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #ccc;
}

/* Result Items */
.tmzon-class-finder-result-item {
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
}

/* .tmzon-class-finder-result-item:hover {
    background-color: hsl(228, 100%, 98%);
} */

.tmzon-class-finder-result-content {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.tmzon-class-finder-result-title {
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.tmzon-class-finder-result-class {
  color: hsl(228, 67%, 47%);
  font-size: 0.8rem;
  white-space: nowrap;
  font-weight: 500;
}

.tmzon-class-finder-result-description {
  color: #5d5b56;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.65rem;
  word-break: break-word;
  max-width: 92%;
}

.tmzon-class-finder-result-examples {
  font-size: 0.85rem;
  color: #5d5b56;
  font-style: italic;
  background-color: hsl(228, 100%, 98%);
  padding: 0.5rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  line-height: 2;
}

.tmzon-class-finder-add-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: hsl(228, 67%, 47%);
  flex-shrink: 0;
  border: 1px solid hsl(228, 67%, 47%);
}

.tmzon-class-finder-add-btn:hover {
  background-color: hsl(227, 67%, 47%);
  color: white;
}

.tmzon-class-finder-add-btn.selected {
  background-color: hsl(227, 67%, 47%);
  color: white;
}

/* Selected Classes Section */
.tmzon-class-finder-selected-summary {
  display: none;
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: 20px;
  border: 2px dashed #ccc;
  position: relative;
}

.tmzon-class-finder-selected-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.tmzon-class-finder-selected-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #253C6A;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 6px;
}

.tmzon-class-finder-selected-title i {
  color: hsl(227, 67%, 47%);
  font-size: 1rem;
}

.tmzon-class-finder-selected-classes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.tmzon-class-finder-selected-class {
  color: #111;
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  word-break: break-word;
  border: 1px solid hsl(228, 67%, 47%);
  line-height: 1.6;
  white-space: normal;
  box-sizing: border-box;
  hyphens: auto;
}

.tmzon-class-finder-selected-class-remove {
  margin-left: 10px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.tmzon-class-finder-selected-class-remove:hover {
  color: #333;
}

.tmzon-class-finder-check-prices-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px 0;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  margin-left: auto;
  font-weight: 500;
}

.tmzon-class-finder-check-prices-btn:hover {
  background-color: hsl(220, 60%, 45%);
}

/* Pricing Section */
.tmzon-class-finder-pricing-section {
  display: none;
  margin: 1.5rem 0;
}

.tmzon-class-finder-pricing-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  margin-top: 3rem
}

.tmzon-class-finder-pricing-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: hsl(227, 67%, 47%);
  border-radius: 10px;
}

.tmzon-class-finder-pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.tmzon-class-finder-pricing-plan {
  padding: 1.25rem;
  background-color: white;
  border-radius: 20px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tmzon-class-finder-pricing-plan-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.tmzon-class-finder-pricing-plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 1rem;
}

.tmzon-class-finder-pricing-plan-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(227, 67%, 47%);
  margin-bottom: 0.25rem;
}

.tmzon-class-finder-pricing-plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
}

.tmzon-class-finder-pricing-plan-features {
  margin-bottom: 1.25rem;
}

.tmzon-class-finder-pricing-plan-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #5d5b56;
}

.tmzon-class-finder-pricing-plan-feature i {
  margin-right: 0.6rem;
  color: hsl(227, 67%, 47%);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.tmzon-class-finder-pricing-plan-button {
  display: block;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.9rem;
}

.tmzon-class-finder-pricing-plan-button:hover {
  background-color: hsl(228, 67%, 47%);
}

/* All Classes Grid */
.tmzon-class-finder-all-classes {
  margin-top: 1.7rem;
}

.tmzon-class-finder-all-classes-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.tmzon-class-finder-classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.tmzon-class-finder-class-item {
  padding: 0.9rem;
  background-color: hsl(228, 100%, 98%);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 80px;
}

.tmzon-class-finder-search-input {
  font-size: 0.9rem;
}

.tmzon-class-finder-class-item:hover {
  background-color: hsl(228, 100%, 97%);
}

.tmzon-class-finder-class-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tmzon-class-finder-class-item-class {
  font-weight: 600;
  color: hsl(227, 67%, 47%);
  font-size: 1rem;
}

.tmzon-class-finder-class-item-title {
  color: #253C6A;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.3;
  word-break: break-word;
}

.tmzon-class-finder-class-item-add {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: #64748b;
  font-size: 0.7rem;
}

.tmzon-class-finder-class-item-add:hover {
  background-color: hsl(227, 67%, 47%);
  color: white;
}

.tmzon-class-finder-class-item-add.selected {
  background-color: hsl(227, 67%, 47%);
  color: white;
}

/* Class Detail View */
.tmzon-class-finder-class-detail {
  display: none;
  animation: tmzon-fadeIn 0.3s ease-out;
}

.tmzon-class-finder-class-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tmzon-class-finder-class-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #253C6A;
  margin: 0;
  word-break: break-word;
}

.tmzon-class-finder-class-detail-class {
  background-color: hsl(227, 67%, 47%);
  color: white;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.tmzon-class-finder-class-detail-description {
  margin-bottom: 1.25rem;
  color: #5d5b56;
  word-break: break-word;
  font-size: 0.95rem;
  line-height: 1.7;
}

.tmzon-class-finder-class-detail-section {
  margin-bottom: 1.25rem;
}

.tmzon-class-finder-class-detail-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.tmzon-class-finder-class-detail-examples {
  font-style: italic;
  color: #5d5b56;
  background-color: hsl(228, 100%, 98%);
  padding: 0.5rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  word-break: break-word;
  font-size: 0.85rem;
  line-height: 2;
}

.tmzon-class-finder-class-detail-synonyms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.6rem;
}

.tmzon-class-finder-class-detail-synonym {
  background-color: hsl(228, 100%, 98%);
  color: #5d5b56;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  word-break: break-word;
}

.tmzon-class-finder-class-detail-add {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.tmzon-class-finder-class-detail-add-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background-color: white;
  color: hsl(228, 67%, 47%);
  border: 1px solid hsl(228, 67%, 47%);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.tmzon-class-finder-class-detail-add-btn:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.tmzon-class-finder-class-detail-add-btn.selected {
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
}

/* Footer */
.tmzon-class-finder-footer {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.tmzon-class-finder-footer-link {
  background: none;
  border: none;
  color: #5d5b56;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tmzon-class-finder-footer-link:hover {
  color: hsl(228, 67%, 47%);
}

/* Overlay */
.tmzon-class-finder-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tmzon-class-finder-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes tmzon-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes tmzon-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tmzon-fadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}


@keyframes tmzon-slideFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tmzon-slideFadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateX(-30%) scale(0.96);
  }
}


.tmzon-slide-enter-left {
  animation: tmzon-slideFadeInLeft 0.4s cubic-bezier(0.2, 0, 0.1, 1) forwards;
}



/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .tmzon-class-finder {
    max-height: 90vh;
    border-radius: 12px 12px 0 0;
  }

  .tmzon-class-finder-header {
    padding: 1.2rem 1.2rem;
  }

  .tmzon-class-finder-title {
    font-size: 1.15rem;
  }

  .tmzon-class-finder-result-description {
    max-width: 88%;
  }

  .tmzon-class-finder-all-classes-title {
    font-size: 0.97rem;
  }

  .tmzon-class-finder-close {
    right: 0.75rem;
  }

  .tmzon-class-finder-result-item {
    padding: 0.75rem;
  }

  .tmzon-class-finder-pricing-plans {
    grid-template-columns: 1fr;
  }

  .tmzon-class-finder-classes-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .tmzon-class-finder-class-item {
    padding: 0.75rem;
    min-height: 70px;
  }

  .tmzon-class-finder-class-detail-title {
    font-size: 1.1rem;
  }

  .tmzon-class-finder-class-detail-class {
    font-size: 0.8rem;
  }

  .tmzon-class-finder-class-detail-description {
    font-size: 0.9rem;
  }

  .tmzon-class-finder-result-title {
    font-size: 0.95rem;
  }

}

/* Very small screens */
@media (max-width: 360px) {
  .tmzon-class-finder-classes-grid {
    grid-template-columns: 1fr;
  }

  .tmzon-class-finder-result-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .tmzon-class-finder-result-class {
    margin-top: 0.25rem;
  }
}

/* View More Details Button Styles */
.tmzon-class-finder-view-details-btn {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: white;
  color: hsl(227, 67%, 47%);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.tmzon-class-finder-view-details-btn:hover {
  color: hsl(220, 60%, 45%);
}

.tmzon-class-finder-view-details-btn i {
  margin-right: 7px;
  font-size: 0.9rem;
}


/* Responsive adjustments */
@media (max-width: 480px) {
  .tmzon-class-finder-view-details-btn {
    font-size: 0.85rem;
  }
}

.tmzon-search-container {
  position: relative;
  margin: 25px auto 15px auto;
}

.tmzon-class-search-item {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid hsl(228, 12%, 75%);
  border-radius: 20px;
  font-size: .95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.tmzon-class-search-item:focus {
  outline: none;
  border: 1px solid hsl(228, 67%, 47%);
}

.tmzon-search-info {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 14px;
  color: #5d5b56;
  padding-left: 10px;
  padding-right: 10px;
}

.tmzon-search-highlight {
  background-color: hsl(228, 100%, 97%);
}

#tmzon-search-clear {
  color: hsl(228, 67%, 47%);
  cursor: pointer;
}

@media (min-width: 850px) {
  .tmzon-search-container {
    width: 50%;
    margin-left: 0;
    margin-right: auto;
  }
}

/* END CLASS FINDER TOOL */

.app__container {
  column-gap: 1rem;
}



/* PRICING CARDS CSS */


.tmzon_all_pricing_cards___container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.tmzon_all_pricing_cards___wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.tmzon_all_pricing_cards___card {
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
}

.tmzon_all_pricing_cards___upper_part {
  text-align: center;
  padding: 0 0 3px;
}

.tmzon_all_pricing_cards___upper_part h2 {
  color: #253C6A;
  font-size: 1.4rem;
  margin-bottom: 7px;
  font-weight: 500;
}

.tmzon_all_pricing_cards___upper_part small {
  color: #5d5b56;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 18px;
}

.tmzon_all_pricing_cards___discount {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.tmzon_all_pricing_cards___discount small {
  color: #a5a7ac;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.tmzon_all_pricing_cards___discount span {
  background-color: hsl(228, 100%, 97%);
  color: hsl(228, 67%, 47%);
  padding: 5px 10px;
  font-weight: 500;
  font-size: 0.75rem;
  border-radius: 20px;
}

.tmzon_all_pricing_cards___price {
  margin: 10px 0;
}

.tmzon_all_pricing_cards___price h3 {
  color: #253C6A;
  font-size: 1rem;
}

.tmzon_all_pricing_cards___price h3 i {
  font-size: 1.2rem;
  margin-right: 3px;
}

.tmzon_all_pricing_cards___price span {
  font-size: 2rem;
  font-weight: 600;
}

.tmzon_all_pricing_cards___button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 1px solid hsl(228, 67%, 47%);
  color: hsl(228, 67%, 47%);
  background-color: white;
  width: 100%;
  padding: 12px 0;
  border-radius: 30px;
  margin: 15px 0 15px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.tmzon_all_pricing_cards___button:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.tmzon_all_pricing_cards___emi {
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 500;
}

.tmzon_all_pricing_cards___divider {
  border: none;
  height: 1px;
  background-color: #e1e3e8;
  margin: 15px 0;
}

.tmzon_all_pricing_cards___feature {
  padding: 0 5px;
}

.tmzon_all_pricing_cards___feature h4 {
  color: #253C6A;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.tmzon_all_pricing_cards___feature_list {
  list-style: none;
}

.tmzon_all_pricing_cards___feature_list li {
  margin: 12px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #5d5b56;
}

.tmzon_all_pricing_cards___icon_green {
  color: hsl(228, 67%, 47%);
  margin-right: 10px;
  font-size: 0.93rem;
}

.tmzon_all_pricing_cards___icon_yellow {
  color: hsl(228, 67%, 47%);
  margin-right: 10px;
  font-size: 0.93rem;
}

.tmzon_all_pricing_cards___dropdown {
  margin: 25px 0 5px;
  text-align: center;
}

.tmzon_all_pricing_cards___dropdown_link {
  text-decoration: none;
  color: hsl(228, 67%, 47%);
  font-weight: 500;
  font-size: 0.93rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tmzon_all_pricing_cards___dropdown_link:hover {
  color: hsl(228, 67%, 55%);
}

.tmzon_all_pricing_cards___dropdown_icon {
  margin-left: 8px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.tmzon_all_pricing_cards___dropdown_icon.rotate {
  transform: rotate(180deg);
}

.tmzon_all_pricing_cards___more_details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.tmzon_all_pricing_cards___more_details ul {
  list-style: none;
  padding: 5px 0 10px;
}

.tmzon_all_pricing_cards___more_details li {
  margin: 12px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #5d5b56;
}

.tmzon_all_pricing_cards___more_details i {
  color: hsl(228, 67%, 47%);
  margin-right: 10px;
  font-size: 0.93rem;
}


/* Popular Card Styles */
.tmzon_all_pricing_cards___card_popular {
  border: 1px solid hsl(228, 67%, 47%);
}

.tmzon_all_pricing_cards___badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(228, 67%, 47%);
  border-radius: 20px;
  padding: 6px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
}

.tmzon_all_pricing_cards___card_popular .tmzon_all_pricing_cards___discount span {
  background-color: hsl(228, 100%, 97%);
  color: hsl(228, 67%, 47%);
}

.tmzon_all_pricing_cards___card_popular .tmzon_all_pricing_cards___button {
  border: 1px solid hsl(228, 67%, 47%);
  color: hsl(228, 67%, 47%);
  background-color: white;
}

.tmzon_all_pricing_cards___card_popular .tmzon_all_pricing_cards___button:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.tmzon_all_pricing_cards___free_offer {
  color: #673ee5;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Flexible Pay Later Card Styles */
.tmzon_all_pricing_cards___card_flexible .tmzon_all_pricing_cards___free_offer {
  color: #28a745;
}

.tmzon_all_pricing_cards___card_flexible .tmzon_all_pricing_cards___price h3 {
  color: #253C6A;
  font-size: 1.4rem;
  font-weight: 500;
}

.tmzon_all_pricing_cards___card_flexible .tmzon_all_pricing_cards___button {
  border: 1px solid hsl(228, 67%, 47%);
  color: hsl(228, 67%, 47%);
  background-color: white;
}

.tmzon_all_pricing_cards___card_flexible .tmzon_all_pricing_cards___button:hover {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

/* Hover Effects */
.tmzon_all_pricing_cards___card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tmzon_all_pricing_cards___wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .tmzon_all_pricing_cards___card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tmzon_all_pricing_cards___upper_part h2 {
    font-size: 1.3rem;
  }

  .tmzon_all_pricing_cards___price span {
    font-size: 1.7rem;
  }

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


/* END PRICING SECTION CSS */



/* TMZON PRICING QUICK BUTTONS CSS */

.tmzon_pricing_quick_buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  /* justify-content: center; */
  margin-top: 1.5rem;
}

.tmzon_pricing_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.tmzon_pricing_button.get_started {
  background-color: hsl(228, 67%, 47%);
  color: white;
}

.tmzon_pricing_button.get_started:hover {
  background-color: #214bbd;
}

.tmzon_pricing_button.watch_tutorial {
  background-color: transparent;
  color: hsl(228, 67%, 47%);
  border: 1px solid #d1d5db;
  cursor: pointer;
}

.tmzon_pricing_button.watch_tutorial:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

.tmzon_pricing_button .play_icon {
  margin-right: 8px;
}

@media screen and (min-width: 768px) {
  .tmzon_pricing_button {
    font-size: 1rem;
  }
}

/* END TMZON PRICING BUTTONS CSS */


/* YOUTUBE TUTORIAL MODAL CSS*/

.tmzon-universal-slide-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, visibility 0.3s;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  visibility: hidden;
}

@media (min-width: 768px) {
  .tmzon-universal-slide-modal {
    max-width: 700px;
    transform: translate(0%, 100%);
    border-radius: 16px;
    max-height: 85vh;
    bottom: 2%;
  }

  .tmzon-universal-slide-modal.open {
    transform: translate(-50%, 0);
  }
}

.tmzon-universal-slide-modal.open {
  transform: translateY(0);
  visibility: visible;
}

.tmzon-universal-slide-modal-header {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.tmzon-universal-slide-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #253C6A;
  margin: 0;
  padding-right: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tmzon-universal-slide-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  padding: 0.5rem;
  line-height: 1;
}

.tmzon-universal-slide-modal-close:hover {
  color: hsl(227, 67%, 47%);
}

.tmzon-universal-slide-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.tmzon-universal-slide-modal-footer {
  padding: 1.3rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.tmzon-universal-slide-modal-not-helpful {
  background: none;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0.5rem;
  transition: color 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.tmzon-universal-slide-modal-not-helpful a {
  color: #5B5D56;
}

.tmzon-universal-slide-modal-not-helpful i {
  margin-right: 0.4rem;
  font-size: 1rem;
  color: #5B5D56;
}

.tmzon-universal-slide-modal-not-helpful:hover {
  color: #3f3e3c;
}


/* Video Container */
.tmzon-universal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background: #000;
}

.tmzon-universal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



/* Content Styles */
.tmzon-universal-content-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #253C6A;
  margin-bottom: 1rem;
}

.tmzon-universal-content-description {
  color: #5d5b56;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tmzon-universal-content-list {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  list-style-position: inside;
}

.tmzon-universal-content-list li {
  color: #5d5b56;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* Overlay */
.tmzon-universal-slide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tmzon-universal-slide-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Body no-scroll when modal is open */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Custom Dropdown Styles */
.template-custom-dropdown {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

.template-dropdown-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: 1px solid hsl(228, 66%, 47%);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-dropdown-arrow {
  transition: transform 0.3s ease;
  color: hsl(228, 66%, 47%);
  font-size: 1rem;
}

.template-custom-dropdown.active .template-dropdown-arrow {
  transform: rotate(180deg);
  color: hsl(228, 66%, 47%);
}

.template-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.template-custom-dropdown.active .template-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.template-dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-dropdown-item:hover {
  background: hsl(228, 100%, 97%);
}

.template-dropdown-item.active {
  background: hsl(228, 100%, 97%);
  color: hsl(228, 66%, 47%);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tmzon-universal-slide-modal {
    max-height: 85vh;
  }

  .tmzon-universal-slide-modal-header {
    padding: 1.5rem 1.2rem;
  }

  .tmzon-universal-slide-modal-content {
    padding: 0.8rem 1.2rem;
  }

  .tmzon-universal-slide-modal-footer {
    padding: 0.8rem 1.2rem;
  }

  .template-dropdown-btn {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .tmzon-universal-slide-modal {
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
  }

  .tmzon-universal-content-title {
    font-size: 1rem;
  }

  .tmzon-universal-slide-modal-title {
    font-size: 1.15rem;
  }

  .tmzon-universal-content-description,
  .tmzon-universal-content-list li {
    font-size: 0.9rem;
  }
}

/* END YOUTUBE MODAL TUTORIAL CSS */

.commonly_filed_trademark_heading {
  margin-top: 8rem;
}

.commonly_filed_trademark_heading .titel_dec a {
  color: hsl(228, 67%, 47%);
  font-weight: 500;
}

.commonly_filed_trademark_heading .titel_dec a:hover {
  text-decoration: underline;
}


/* END COMMONLY FILED TRADEMARKS CSS */



/* FREE SEARCH REPORT CTA */

.tmzon_free_search_report_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.tmzon_free_search_report_overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal - Fixed Height */
.tmzon_free_search_report_modal {
  background-color: white;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  height: 600px;
  overflow-y: auto;
}

.tmzon_free_search_report_modal::-webkit-scrollbar {
  display: none;
}

.tmzon_free_search_report_overlay.active .tmzon_free_search_report_modal {
  transform: translateY(0);
  opacity: 1;
}

/* Success State - Fixed Height */
.tmzon_free_search_report_modal.success {
  height: 350px;
  /* Fixed height for success state */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Close Button */
.tmzon_free_search_report_close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #5d5b56;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}

.tmzon_free_search_report_close:hover {
  color: #555;
  background-color: #f5f5f5;
}

/* Form Content */
.tmzon_free_search_report_title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #253C6A;
  text-align: center;
}

.tmzon_free_search_report_subtitle {
  font-size: 0.9rem;
  color: #5d5b56;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

/* Form Elements */
.tmzon_free_search_report_form_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.tmzon_free_search_report_form_group {
  margin-bottom: 20px;
}

.tmzon_free_search_report_form_group label {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #253C6A;
  font-weight: 500;
}

.tmzon_free_search_report_input {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  color: #5d5b56;
}

.tmzon_free_search_report_input:focus {
  outline: none;
  border-color: hsl(228, 67%, 47%);
}

.tmzon_free_search_report_input_error {
  border-color: #ff5a5f !important;
}

.tmzon_free_search_report_textarea {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  min-height: 100px;
  resize: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  color: #5d5b56;
}

.tmzon_free_search_report_textarea::-webkit-scrollbar {
  display: none;
}

.tmzon_free_search_report_textarea:focus {
  outline: none;
  border-color: hsl(228, 67%, 47%);
}

.tmzon_free_search_report_important {
  font-size: 14px;
  color: #ff5a5f;
}

.tmzon_free_search_report_optional {
  font-size: 14px;
  color: #5d5b56;
  font-weight: normal;
}

/* Submit Button */
.tmzon_free_search_report_submit_btn {
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.tmzon_free_search_report_submit_btn:hover {
  box-shadow: 0 6px 20px rgba(110, 142, 251, 0.4);
}

.tmzon_free_search_report_submit_btn_loading .tmzon_free_search_report_btn_text {
  visibility: hidden;
  opacity: 0;
}

.tmzon_free_search_report_submit_btn_loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: tmzon_free_search_report_spinner 1s linear infinite;
}

@keyframes tmzon_free_search_report_spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/* Success Message */
.tmzon_free_search_report_success {
  text-align: center;
  padding: 40px 30px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  width: 100%;
}

.tmzon_free_search_report_success.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.tmzon_free_search_report_success_icon {
  font-size: 5rem;
  color: hsl(228, 67%, 47%);
  margin-bottom: 20px;
  animation: tmzon_free_search_report_icon_scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
  line-height: 1;
}

@keyframes tmzon_free_search_report_icon_scale {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.tmzon_free_search_report_success_message {
  font-size: 1.3rem;
  color: #5d5b56;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Responsive Adjustments - Fixed Height */
@media (max-width: 768px) {
  .tmzon_free_search_report_modal {
    height: 600px;
    /* Same fixed height */
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .tmzon_free_search_report_modal {
    height: 600px;
    /* Same fixed height */
    padding: 25px;
  }

  .tmzon_free_search_report_title {
    font-size: 1.3rem;
  }

  .tmzon_free_search_report_subtitle {
    font-size: 0.9rem;
  }

  .tmzon_free_search_report_form_group label {
    font-size: 0.95rem;
  }

  .tmzon_free_search_report_input,
  .tmzon_free_search_report_textarea {
    padding: 12px 15px;
  }

  .tmzon_free_search_report_submit_btn {
    padding: 14px;
  }

  .tmzon_free_search_report_modal.success {
    height: 350px;
    /* Same fixed height */
  }

  .tmzon_free_search_report_success_icon {
    font-size: 5rem;
    margin-bottom: 15px;
  }

  .tmzon_free_search_report_success_message {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

/* END REPORT CSS */

.tmzon-error-404 img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.tmzon-error-404-container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.tmzon-error-404-main {
  overflow: hidden;
}

/*=============== HOME ===============*/
.tmzon-error-404-home {
  padding: 9rem 0 2rem;
  height: 100vh;
  display: grid;
}

.tmzon-error-404-home__container {
  display: grid;
  align-content: center;
  row-gap: 2.5rem;
}

.tmzon-error-404-home__data {
  text-align: center;
}

.tmzon-error-404-home__title {
  font-size: 2.375rem;
  margin: .75rem 0;
  color: #253C6A;
  font-weight: 500;
}

.tmzon-error-404-home__description {
  margin-bottom: 1rem;
}

.tmzon-error-404-home__button {
  margin-top: 2rem;
  display: inline-block;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  color: #fff;
  padding: .80rem 1.5rem;
  border-radius: 3rem;
  transition: .4s;
}

.tmzon-error-404-home__img img {
  width: 230px;
  animation: tmzon-error-404-floaty 1.8s infinite alternate;
}

.tmzon-error-404-home__img {
  justify-self: center;
}

.tmzon-error-404-home__shadow {
  width: 130px;
  height: 24px;
  background-color: hsla(38, 21%, 19%, .16);
  margin: 0 auto;
  border-radius: 50%;
  filter: blur(7px);
  animation: tmzon-error-404-shadow 1.8s infinite alternate;
}

.tmzon-error-404-home__footer {
  display: flex;
  justify-content: center;
  column-gap: .5rem;
  font-size: 0.9rem;
  align-self: flex-end;
}

.tmzon-error-404 span a {
  color: #5d5b56;
}

/* Animate ghost */
@keyframes tmzon-error-404-floaty {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(15px);
  }
}

@keyframes tmzon-error-404-shadow {
  0% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(.85, .85);
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .tmzon-error-404-home {
    padding-top: 7rem;
  }
}


/* For large devices */
@media screen and (min-width: 1024px) {
  .tmzon-error-404-home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 2rem;
  }

  .tmzon-error-404-home__data {
    text-align: initial;
  }

  .tmzon-error-404-home__img img {
    width: 400px;
  }

  .tmzon-error-404-home__shadow {
    width: 250px;
    height: 40px;
  }

  .tmzon-error-404-home__title {
    font-size: 3.5rem;
  }

  .tmzon-error-404 body {
    font-size: 1rem;
  }

  .tmzon-error-404-home__footer {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1048px) {
  .tmzon-error-404-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px) {
  .tmzon-error-404 body {
    zoom: 1.7;
  }

  .tmzon-error-404-home {
    height: initial;
    row-gap: 4rem;
  }
}

/* For 4K resolutions (3840 x 2160, 4096 x 2160) */
@media screen and (min-width: 3840px) {
  .tmzon-error-404 body {
    zoom: 3.1;
  }
}

/* END PAGE NOT FOUND CSS */


/* Clickable text style */
.tmzon-clickable {
  color: hsl(228, 67%, 47%);
  cursor: pointer;
  transition: color 0.2s ease;
}

.tmzon-clickable:hover {
  color: hsl(228, 67%, 55%);
}

/* Popup Overlay */
.tmzon-universal-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.6s ease;
  padding: 15px;
}

.tmzon-universal-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.tmzon-universal-popup {
  background-color: white;
  border-radius: 25px;
  width: 100%;
  max-width: min(95vw, 900px);
  max-height: min(90vh, 800px);
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 25px;
  margin: 0 auto;
}

.tmzon-universal-popup-overlay.active .tmzon-universal-popup {
  transform: scale(1);
  opacity: 1;
}

/* Popup Content Layout */
.tmzon-universal-popup-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.tmzon-universal-popup-image-container {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  align-items: center;
}

.tmzon-universal-popup-content-container {
  flex: 1 1 45%;
  min-width: 250px;
  overflow: hidden;
}

/* Close Button */
.tmzon-universal-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: hsl(228, 100%, 97%);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  color: hsl(228, 67%, 47%);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.tmzon-universal-popup-close:hover {
  color: white;
  background: hsl(228, 67%, 47%);
}

.tmzon-universal-popup-close::before,
.tmzon-universal-popup-close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: currentColor;
}

.tmzon-universal-popup-close::before {
  transform: rotate(45deg);
}

.tmzon-universal-popup-close::after {
  transform: rotate(-45deg);
}

/* Content Styles */
.tmzon-universal-popup-title {
  margin: 0 0 15px 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #253C6A;
  font-weight: 500;
}

.tmzon-universal-popup-content {
  color: #5d5b56;
  margin-bottom: 20px;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Image Styles */
.tmzon-universal-popup-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 25px;
  display: block;
  object-fit: contain;
}

/* Action Button */
.tmzon-popup-action-btn {
  padding: 10px 18px;
  background: white;
  color: hsl(228, 67%, 47%);
  border: 1px solid hsl(228, 67%, 47%);
  border-radius: 50px;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.tmzon-popup-action-btn:hover {
  background: hsl(228, 67%, 47%);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 720px) {
  .tmzon-universal-popup {
    padding: 20px;
    max-width: 95vw;
    max-height: 90vh;
  }

  .tmzon-universal-popup-container {
    flex-direction: column;
    gap: 20px;
  }

  .tmzon-universal-popup-image-container,
  .tmzon-universal-popup-content-container {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .tmzon-universal-popup-image {
    max-height: 250px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .tmzon-universal-popup {
    padding: 20px;
    border-radius: 20px;
  }

  .tmzon-universal-popup-close {
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
  }

  .tmzon-universal-popup-content {
    margin-bottom: 15px;
  }

  .tmzon-popup-action-btn {
    padding: 8px 16px;
    margin-bottom: 0.5rem;
  }

  .tmzon-universal-popup-content {
    font-size: 0.9rem
  }
}


/* END UNIVERSAL POPUP */




