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

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: #5B5D56;
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

input,
textarea,
button,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus,
a:visited,
a:active {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s;
  /* For animation dark mode */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.body-no-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.body-no-scroll {
  scrollbar-width: none;
}

/* Ensure scrolling is disabled */
.body-no-scroll {
  overflow: hidden;
}



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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

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


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

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

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: #253C6A;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal */
}

/*=============== HEADER & NAV ===============*/

/* Change background header */

/* Active link */

/*=============== HOME ===============*/
.home {
  /* background: linear-gradient(170deg,
  hsl(0, 0%, 22%) 0%,
  hsl(0, 0%, 6%) 30%); */
  padding-bottom: 0;
}

.home__container {
  padding-top: 4rem;
  row-gap: 3.5rem;
}

.home__title,
.home__value-number {
  color: #373643;
}

.home__title {
  font-size: 2.7rem;
  line-height: 120%;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.home__description {
  color: #5D5B56;
  margin-bottom: 2rem;
}

.home__search {
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .75rem;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 2px solid var(--text-color-light);
  margin-bottom: 2rem;
  transition: all .3s ease;
}

.home__search i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home__search-input {
  width: 90%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 .5rem;
}

.need-help-link {
  color: var(--first-color);
}

.home__value {
  display: flex;
  column-gap: 2.5rem;
}

.home__value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.home__value-number span {
  color: var(--second-color);
}

.home__value-description {
  display: flex;
  color: #5D5B56;
  font-size: var(--smaller-font-size);
}

.home__images {
  position: relative;
  display: flex;
  justify-content: center;
}

/* .home__orbe {
  width: 258px;
  height: 281px;
  background: linear-gradient(180deg,
  hsl(0, 0%, 16%) 93%,
  hsl(0, 0%, 67%) 100%);
  background: #5D5B56;
  border-radius: 135px 135px 0 0;
} */

/* .home__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
} */

/*=============== BUTTON ===============*/
.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: var(--font-medium);
  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);
}

/*=============== LOGOS ===============*/
.logos__container {
  padding-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
}

.logos__img img {
  height: 45px;
  opacity: .2;
  transition: .3s;
}

.logos__img img:hover {
  opacity: .6;
}

/*=============== POPULAR ===============*/
.popular__container {
  padding: 1rem 0 5rem;
}

.popular__card {
  width: 290px;
  background-color: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
}

.popular__img {
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.popular__data {
  padding: 0 1rem 0 .5rem;
}

.popular__price {
  font-size: var(--h2-font-size);
  color: hsl(228, 15%, 50%);
  margin-bottom: .25rem;
}

.popular__price span {
  color: var(--second-color);
}

.popular__title {
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

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

.popular__card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
}

.swiper-button-next,
.swiper-button-prev {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: calc(50% - 3rem);
}

.swiper-button-next {
  right: calc(50% - 3rem);
}

/*=============== VALUE ===============*/
.value__container {
  row-gap: 3rem;
}

.value__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.value__orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}

.value__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.value__description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

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

.value__accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: 30px;
  padding: 1rem .75rem;
}

.value__accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value__accordion-icon {
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: 30px;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}

.value__accordion-title {
  font-size: var(--small-font-size);
}

.value__accordion-arrow {
  display: inline-flex;
  /* background-color: var(--first-color-lighten); */
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}

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

.value__accordion-content {
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}



/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 2rem;
}

.contact__images {
  position: relative;
  display: flex;
  justify-content: center;
}

.contact__orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}

.contact__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.contact__description {
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}

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

.contact__card-box {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem .75rem;
  border-radius: 20px;
  transition: .3s;
}

.contact__card-info {
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
}

.contact__card i {
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 30px;
  font-size: 1.25rem;
  color: var(--first-color);
}

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

.contact__card-description {
  font-size: var(--smaller-font-size);
}

.contact__card-button {
  font-size: var(--small-font-size);
  padding: 14px 0;
  width: 100%;
  border-radius: 30px;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
}

.contact__card-button:hover {
  background-color: var(--first-color);
  color: #fff;
}

.contact__card-box:hover {
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}

/*=============== SUBSCRIBE ===============*/

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer_we_accept {
  margin-top: 1.5rem;
}

.footer_we_accept_title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer_we_accept img {
  width: 46px;
  margin-right: 5px;
}

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

.footer__content,
.footer__links {
  display: grid;
}

.footer__content {
  /* grid-template-columns: repeat(2, max-content); */
  gap: 2.5rem 4rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

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

.footer__link {
  color: var(--text-color);
  transition: .3s;
}

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

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

.footer__social-link {
  font-size: 1.25rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover {
  color: var(--title-color);
}

.footer__info,
.footer__privacy {
  display: flex;
}

.footer__info {
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.footer__privacy {
  justify-content: center;
  column-gap: 1.25rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

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

  .home {
    padding-bottom: 0;
  }

  .contact__card {
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }
}

@media screen and (max-width: 320px) {

  .home__value {
    column-gap: 1rem;
  }

  .home__img {
    width: 220px;
    height: 280px;
  }

  .home__orbe {
    width: 240px;
    height: 264px;
  }

  .logos__container {
    gap: 2rem 1rem;
  }

  .popular__card {
    width: 230px;
    padding: .5rem .5rem .75rem;
  }

  .value__img,
  .contact__img {
    width: 220px;
    height: 260px;
  }

  .value__orbe,
  .contact__orbe {
    width: 236px;
    height: 280px;
  }

  .footer__content {
    gap: 2.5rem;
  }
}

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

  .home__search {
    width: 412px;
  }

  .contact__card {
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 767px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }

  .home__orbe {
    align-self: flex-end;
  }

  .home__data {
    padding-bottom: 2rem;
  }

  .logos__container {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .value__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__images {
    order: 1;
  }

  .contact__card {
    justify-content: initial;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}

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

  .section__title {
    font-size: 2.25rem;
  }

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

  .home {
    padding-bottom: 0;
  }

  .home__container {
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home__data {
    padding-bottom: 4rem;
  }

  .home__title {
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .home__description,
  .home__search {
    margin-bottom: 3rem;
  }

  .home__value {
    column-gap: 3.5rem;
  }

  /* .home__orbe {
    width: 490px;
    height: 603px;
    border-radius: 256px 256px 0 0;
  } */

  .home__img {
    width: 535px;
    /* height: 634px; */
    /* border-radius: 236px 236px 12px 12px; */
    bottom: -2.5rem;
  }

  .logos__img img {
    height: 100px;
  }

  .popular__container {
    padding-top: 2rem;
  }

  .popular__card {
    width: 320px;
    padding: .75rem .75rem 2rem;
  }

  .popular__data {
    padding: 0 .25rem 0 .75rem;
  }

  .value__container,
  .contact__container {
    align-items: flex-start;
    column-gap: 5rem;
  }

  .value__orbe,
  .contact__orbe {
    width: 501px;
    height: 641px;
    border-radius: 258px 258px 16px 16px;
  }

  .value__img,
  .contact__img {
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }

  .value__img img,
  .contact__img img {
    max-width: initial;
    width: 490px;
  }

  .value__description,
  .contact__description {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

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

  .value__accordion-item {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-description {
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .contact__card {
    grid-template-columns: repeat(2, 200px);
  }

  .contact__card-box {
    padding: 28px 1.5rem 1.5rem;
  }

  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links {
    row-gap: 1rem;
  }

  .footer__info {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }
}

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

  .home__container {
    column-gap: 4rem;
  }
}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.5;
  }
}

@media screen and (min-width: 3840px) {
  body {
    zoom: 2;
  }
}

/*** Accordion **/

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


.questions {
  background-color: var(--first-color-lighten);
}

.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*/


/* 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;
  }
}



/*=============== 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: 1.1rem;
  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);
  }
}

/****/


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

::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: var(--first-color-lighten);
  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-bottom: 0.5rem;
}

/*******/

.documents-required {
  background-color: #fff;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

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

.buttons {
  width: fit-content;
  background-color: #fff;
  padding: 7px 10px 0 0px;
}

.buttons button {
  padding: 19px 29px;
  text-transform: uppercase;
  border-radius: 0px;
  background: #fff;
  border: none;
  border-bottom: 3px solid #fff;
  /*box-shadow: 4px 3px 10px #ddd; */
  margin-right: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 500ms;
}

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

.content {
  position: relative;
}

.content .inner {
  padding: 25px;
  box-shadow: 4px 3px 10px #ddd;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  opacity: 0;
  transform: rotateX(-70deg);
  transform-origin: 0%;
  transition: all 400ms;
}

.content .inner.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  transform: rotateX(0deg);
}

.content .inner h1 {
  font-size: 20px;
  padding-bottom: 15px;
}

.content .inner p {
  letter-spacing: 0.5px;
  line-height: 23px;
  color: #434343;
}

/*****/

/*** 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;
}

/**** End Loading CSS ***/

@media screen and (min-width: 1300px) {
  .documents-required .section__subtitle {
    margin-left: 19.5rem;
  }

  .documents-required .section__title {
    margin-left: 19.5rem;
  }
}

/***/


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

.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: #5d5b56;
  transition: .3s;
}

.new_contact__area {
  height: 7rem;
}

.new_contact__area textarea {
  resize: none;
  font-family: 'Poppins', sans-serif;
}

/*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;
}

/*******/
/*  */

.header {
  width: 100%;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .5s;
}

/* 
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: white;
  padding: .75rem 1.5rem;
  border-radius: 3rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
} */

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


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

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

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

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


/*=============== MEDIA QUERIES ===============*/
/* For small devices */

/* For medium devices */

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

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

  .button__header {
    display: block;
  }
}


/* DROPDOWN NAVBAR */


.wrapper {
  /* background: #171c24; */
  position: fixed;
  width: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 2rem;
  transition: .4s;
  z-index: 100;
}

.wrapper nav {
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}

nav .content {
  display: flex;
  align-items: center;
}

nav .content .links {
  margin-left: 80px;
  display: flex;
}

.content .logo img {
  margin-top: 4px;
}

.content .logo a {
  color: black;
  font-size: 28px;
  font-weight: 600;
}

.content .links li {
  list-style: none;
  line-height: 70px;
}

.content .links li a,
.content .links li label {
  color: black;
  font-size: 17px;
  /* font-weight: 500; */
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.content .links li label {
  display: none;
}

.content .links li a:hover,
.content .links li label:hover {
  background: #c9dafc;
}


.wrapper .menu-icon {
  color: black;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.wrapper .menu-icon {
  display: none;
}

.wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */
.content .links ul {
  position: absolute;
  background: hsl(225, 77%, 92%);
  border-radius: 5px;
  top: 90px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.content .links li:hover>ul {
  top: 80px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.content .links ul li a {
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 5px !important;
}

.content .links ul li {
  position: relative;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }

  nav .content .links {
    margin-left: 30px;
  }

  .content .links li a {
    padding: 8px 13px;
  }

}

@media screen and (max-width: 1100px) {
  .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;
  }

  /* dropdown responsive code start */
  .content .links ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .content .links #show-features:checked~ul,
  .content .links #show-services:checked~ul,
  .content .links #show-outlet:checked~ul {
    max-height: 100vh;
  }

  .content .links ul li {
    margin: 7px 20px;
  }

  .content .links ul li a {
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}

@media screen and (max-width: 400px) {
  .wrapper nav {
    padding: 0 10px;
  }

  .content .logo a {
    font-size: 27px;
  }
}

.bx-chevron-down {
  font-weight: initial;
}

.rotate:hover .bx-chevron-down {
  transition: .3s ease;
  transform: rotate(180deg);
}


/*=============== CONTACT ===============*/

/*Input focus move up label*/

/*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;
}


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

/* END  NEW CSS */

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

/* END MAIN HERO SECTION CSS */

@media (max-width:460px) {
  .home__title {
    font-size: 2rem;
  }
}

.button__header {
  font-size: 15px;
}

/* AUTO COMPLETE SUGGESTIONS CSS */

.home__search {
  position: relative;
  width: 100%;
  max-width: 414px;
}

.home__search-input {
  width: calc(100% - 80px);
  /* padding: 10px; */
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  font-size: 15px;
}

#autocomplete-suggestions {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 10;
  border-radius: 15px;
  max-height: 180px;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Modern animation properties */
  opacity: 0;
  transform: scale(0.95) translateY(5px);
  visibility: hidden;
  transition:
    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;
}

#autocomplete-suggestions.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
}

#autocomplete-suggestions::-webkit-scrollbar {
  display: none;
}

#autocomplete-suggestions div {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#autocomplete-suggestions div:hover {
  background-color: hsl(228, 100%, 97%);
}

.highlight {
  font-weight: 600;
  color: hsl(228, 62%, 59%);
}

/* END AUTO COMPLETE SUGGESTIONS CSS */

/* POPULAR SEARCHES CSS */

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  margin-top: -35px;
}

.popular-row {
  display: flex;
  /* justify-content: center; */
  gap: 10px;
  width: 100%;
}

.popular-button {
  flex: 1 1 calc(50% - 20px);
  /* Each button takes 50% width minus gap space */
  max-width: 200px;
  /* Optional: set a max width for larger screens */
  padding: 10px 12px;
  text-align: center;
  font-size: 11px;
  color: black;
  /* background-color: #f1f1f1; */
  border: 1.3px solid #ccc;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.popular-button:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {

  .popular-searches {
    margin-top: -18px;
  }

  .popular-button {
    flex: 1 1 100%;
    /* On smaller screens, buttons take full width */
  }
}

@media (min-width: 250px) and (max-width: 768px) {
  .popular-button {
    font-size: 10px;
  }
}


@media (min-width: 768px) and (max-width: 1200px) {
  .popular-searches {
    margin-top: -10px;
  }

  .popular-button {
    flex: 1 1 calc(50% - 10px);
    /* For medium screens, two buttons per row */
    font-size: 10px;
  }
}

/* POPULAR SEARCHES CSS END */

/* NAVBAR 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 */

.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;
}


/* CHATBOT CSS  */

#chatbot-toggler {
  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: 100;
}

body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}

#chatbot-toggler span {
  color: #fff;
  position: absolute;
}

#chatbot-toggler span:last-child,
body.show-chatbot #chatbot-toggler span:first-child {
  opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child {
  opacity: 1;
}

.chatbot-popup {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  opacity: 0;
  height: 75%;
  pointer-events: none;
  transform: scale(0.2);
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 200;
}

body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  justify-content: space-between;
}

.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-info .chatbot-logo {
  width: 45px;
  height: 45px;
  padding: 6px;
  fill: hsl(228, 66%, 47%);
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}

.header-info .logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.31rem;
  letter-spacing: 0.02rem;
}

.chat-header .header-controls {
  display: flex;
  align-items: center;
}

.chat-header .header-controls button {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header #delete-chat {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.chat-header #delete-chat:hover {
  background: hsl(228, 66%, 53%);
}

.chat-header #close-chatbot {
  padding-top: 2px;
  margin-right: -5px;
}

.chat-header #close-chatbot:hover {
  background: hsl(228, 66%, 53%);
}

.chat-body {
  padding: 25px 22px;
  gap: 20px;
  display: flex;
  height: 70%;
  overflow-y: auto;
  margin-bottom: 82px;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: hsl(228, 66%, 53%) transparent;
}

.chat-body,
.chat-form .message-input:hover {
  scrollbar-color: none;
}

.chat-body .message {
  display: flex;
  gap: 11px;
  align-items: center;
}

.chat-body .message .bot-avatar {
  width: 38px;
  height: 38px;
  padding: 6px;
  fill: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
  align-self: flex-end;
  border-radius: 50%;
  /* background: hsl(228, 100%, 97%); */
}

.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}

.chat-body a {
  color: var(--first-color);
}

.chat-body a:hover {
  color: hsl(228, 67%, 55%);
}

.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}

.chat-body .bot-message .message-text {
  background: hsl(228, 100%, 98%);
  color: black;
  border-radius: 20px 20px 20px 5px;
}

.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .user-message .message-text {
  color: #fff;
  background: hsl(228, 66%, 53%);
  border-radius: 20px 20px 5px 20px;
}

.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}

.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 5px;
  padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot {
  height: 6px;
  width: 6px;
  opacity: 1;
  border-radius: 50%;
  background: hsl(228, 70%, 50%);
  /* box-shadow: 0 0 8px hsla(228, 70%, 50%, 0.4); */
  animation: dotGlow 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    background: hsl(228, 70%, 50%);
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
    background: hsl(228, 70%, 60%);
  }
}

.chat-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: hsl(228, 100%, 97%);
  padding: 15px 22px 18px;
}

.chat-footer .chat-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #CCCCE5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease, border-radius 0.2s;
}

/* .chat-footer .chatbot-footer-warning {
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.6rem;
} */

.chat-form:focus-within {
  outline: 1px solid hsl(228, 66%, 47%);
}

.chat-form .message-input {
  width: 100%;
  height: 50px;
  outline: none;
  resize: none;
  border: none;
  max-height: 180px;
  scrollbar-width: thin;
  font-family: 'Poppins', sans-serif;
  border-radius: inherit;
  font-size: 0.95rem;
  padding: 14px 0 12px 18px;
  scrollbar-color: transparent transparent;
}

.chat-form .message-input::-webkit-scrollbar {
  display: none;
}

.chat-form .chat-controls {
  gap: 3px;
  height: 50px;
  display: flex;
  padding-right: 6px;
  align-items: center;
  align-self: flex-end;
}

.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  cursor: pointer;
  color: hsl(228, 66%, 47%);
  border-radius: 50%;
  font-size: 1.15rem;
  background: none;
  transition: 0.3s ease;
}

.chat-form .chat-controls button:hover,
body.show-emoji-picker .chat-controls #emoji-picker {
  color: hsl(228, 66%, 47%);
  background: #f1f1ff;
}

.chat-form .chat-controls #send-message {
  color: #fff;
  display: none;
  background: hsl(228, 66%, 47%);
}

.chat-form .chat-controls #send-message:hover {
  background: hsl(228, 66%, 47%);
}

.chat-form .message-input:valid~.chat-controls #send-message {
  display: block;
}

.chat-form .file-upload-wrapper {
  position: relative;
  height: 35px;
  width: 35px;
}

.chat-form .file-upload-wrapper :where(button, img) {
  position: absolute;
}

.chat-form .file-upload-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-form .file-upload-wrapper #file-cancel {
  color: hsl(228, 66%, 47%);
  background: #fff;
}

.chat-form .file-upload-wrapper :where(img, #file-cancel),
.chat-form .file-upload-wrapper.file-uploaded #file-upload {
  display: none;
}

.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}

em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  visibility: hidden;
  max-height: 330px;
  transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}

/* Delete chat confirmation styles */
.delete-confirmation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 300px;
  text-align: center;
  animation: tmzon_clear_chat 0.25s ease-out forwards;
  opacity: 0;
}

@keyframes tmzon_clear_chat {
  0% {
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  100% {
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
}

.delete-confirmation h3 {
  margin: 0 0 15px 0;
  color: #253C6A;
  font-size: 1.2rem;
  font-weight: 500;
}

.delete-confirmation p {
  margin: 0 0 20px 0;
  color: #5d5b56;
  font-size: 0.95rem;
  line-height: 1.4;
}

.delete-confirmation .confirmation-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.delete-confirmation button {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.delete-confirmation .confirm-delete {
  background: hsl(228, 66%, 47%);
  color: #fff;
}

.delete-confirmation .confirm-delete:hover {
  background: hsl(228, 66%, 55%);
}

.delete-confirmation .cancel-delete {
  background: #e9ecef;
  color: #495057;
}

.delete-confirmation .cancel-delete:hover {
  background: #dee2e6;
}

.delete-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Responsive media query for mobile screens */
@media (max-width: 520px) {
  #chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }

  .chatbot-popup {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }

  .chatbot-popup .chat-header {
    padding: 12px 15px;
  }

  .header-info .logo-text {
    font-size: 1.1rem;
  }

  .chat-header .header-controls button {
    height: 35px;
    width: 35px;
    font-size: 1.2rem;
  }

  .chat-header #delete-chat {
    font-size: 1.2rem;
  }

  .chat-body {
    height: calc(90% - 55px);
    padding: 25px 15px;
  }

  .chat-footer {
    padding: 10px 15px 15px;
  }

  .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
    opacity: 0;
  }

  .delete-confirmation {
    /* margin: 20px;
    min-width: auto; */
    max-width: 90vw;
  }

  .delete-confirmation .confirmation-buttons {
    flex-direction: column;
  }

  .delete-confirmation button {
    width: 100%;
  }
}

/* END CHATBOX CSS  */

/* BLOG SECTION CSS */

#blog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* padding: 40px; */
  margin-top: 5rem;

}

.blog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.blog-box {
  width: 350px;
  background-color: #fff;
  border-radius: 20px;
  margin: 17px;
  cursor: pointer;
  transition: box-shadow 0.3s ease-in-out;
}

.blog-box:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.blog-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-text {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
}

.blog-text span {
  color: hsl(228, 66%, 47%);
  margin-bottom: 7px;
  font-size: 0.93rem;
}

.blog-text .blog-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #253C6A;
}

.blog-text .blog-title:hover {
  color: hsl(228, 62%, 35%);
  transition: all 0.4s ease;
}

.blog-text p {
  color: #5D5B56;
  font-size: 0.93rem;
  display: --webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 16px 0;
}

.blog-text a {
  color: #5D5B56;
}

.blog-text a:hover {
  color: #3d3d3d;
  transition: all 0.3s ease;
}

.read-more-blog {
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
}

@media (max-width:1250px) {
  .blog-box {
    width: 300px;
  }
}

@media (max-width:1100px) {
  .blog-box {
    width: 100%;
  }
}

@media (max-width:550px) {
  .blog-box {
    width: 100%;
  }
}

/* END BLOG SECTION CSS */

/* SCROLL UP CSS */


/* SCROLL UP */

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 10%;
  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;
  visibility: hidden;
}

.scrollup.show {
  opacity: 1;
  visibility: 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 */


/* PULSE ANIMATION FOR CHATBOT TOGGLE */

#chatbot-toggler::before,
#chatbot-toggler::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228, 66%, 47%));
  ;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

#chatbot-toggler::before {
  animation: pulse 2s ease-out infinite;
}

#chatbot-toggler::after {
  animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* 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;
}

.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;
  }
}



/* FEATURES CHOOSE PRICE CONTAINER CSS */

.feature-choose-price-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%
}

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

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

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

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



/* END FEATURES CHOOSE PRICE CSS */


/* CTA SECTION CSSS */


/* 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 CTA SECTION CSS */

/* ==================== REFINED TAB ANIMATIONS ==================== */
.popular__tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 1rem;
  scrollbar-width: none;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.popular__tabs::-webkit-scrollbar {
  display: none;
}

.popular__tab {
  padding: 0.6rem 1.2rem;
  border-radius: 1.5rem;
  background-color: var(--container-color);
  color: var(--text-color);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--text-color-light);
  flex: 0 0 auto;
  scroll-snap-align: center;
  white-space: nowrap;
  font-size: 1rem;
}

.popular__tab.active-tab {
  background-color: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.popular__tab-content {
  display: none;
}

.popular__tab-content.active-tab-content {
  display: block;
  animation: subtleAppear 0.35s ease-out forwards;
}

@keyframes subtleAppear {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    will-change: opacity, transform;
  }

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

/* Button hover effects */
.popular__tab:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Card hover effects */
.popular__card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popular__card:hover {
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .popular__tabs {
    justify-content: flex-start;
  }

  .popular__tab {
    font-size: 0.9rem;
  }
}


/* CLIENTS SECTION */

.tmzon-leading-brands {
  padding: 0 20px;
}

.tmzon-about-section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: #253c6a;
  position: relative;
  display: inline-block
}

.tmzon-about-text {
  font-size: 1rem;
  color: #5d5b56;
  margin-bottom: 1.8rem;
  line-height: 1.8
}

.tmzon-about-container {
  max-width: 1150px;
  margin: 0 auto;
}

.tmzon-about-section {
  padding: 80px 0;
  position: relative;
  margin-top: 8.5rem;
}

.tmzon-about-section-dark {
  background: linear-gradient(135deg, #27408b 0, #1e56a0 100%);
  color: #fff
}

.tmzon-about-section-dark .tmzon-about-text {
  color: rgba(255, 255, 255, .9)
}

.tmzon-about-section-dark .tmzon-about-section-title {
  color: #fff
}

.tmzon-about-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 5rem
}

.tmzon-about-client-logo {
  filter: brightness(0) invert(1)
}

.tmzon-about-client-logo {
  height: 60px;
  opacity: .6;
  transition: opacity .3s ease
}

.tmzon-about-client-logo:hover {
  opacity: 1
}

@media (max-width:768px) {
  .tmzon-about-section-title {
    font-size: 1.6rem
  }

  .tmzon-about-text {
    font-size: .9rem
  }
}

@media (max-width:576px) {
  .tmzon-about-section-title {
    font-size: 1.25rem
  }

  .tmzon-about-client-logo {
    height: 40px
  }
}

/* END CLIENT SECTION CSS */

#popular .section__title,
#popular .section__subtitle,
.time-line-section {
  text-align: center;
}

/* TMZON PRICING QUICK BUTTONS CSS */

.tmzon_pricing_quick_buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.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 */


/* TMZON TESTIMONIALS CSS */

.tmzon_testimonial_heading {
  margin-top: 8.5rem;
}

.tmzon_testimonial_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.tmzon_testimonial_container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.4) 40%,
      rgba(255, 255, 255, 0.8) 80%);
  pointer-events: none;
  z-index: 2;
}

.tmzon_testimonial_card:nth-child(3n+2) {
  transform: translateY(30px);
}

.tmzon_testimonial_card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.tmzon_testimonial_profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.tmzon_testimonial_profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tmzon_testimonial_name {
  font-weight: 600;
  color: #253C6A;
  font-size: 18px;
}

.tmzon_testimonial_role {
  font-size: 14px;
  color: #666;
}

.tmzon_testimonial_content {
  color: #5d5b56;
  line-height: 1.6;
  font-size: 15px;
}

.tmzon_testimonial_icon {
  color: hsl(228, 67%, 47%);
  font-size: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .tmzon_testimonial_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .tmzon_testimonial_card:nth-child(3n+2) {
    transform: none;
  }

  .tmzon_testimonial_card:nth-child(odd) {
    transform: translateY(30px);
  }
}

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

  .tmzon_testimonial_card:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 480px) {
  .tmzon_testimonial_heading {
    margin-top: 6rem;
    margin-bottom: 3rem;
  }

  .tmzon_testimonial_container {
    padding: 0 20px;
  }

  .tmzon_testimonial_profile img {
    width: 35px;
    height: 35px;
  }

  .tmzon_testimonial_profile {
    gap: 12px;
    margin-bottom: 12px;
  }

  .tmzon_testimonial_name {
    font-size: 16px;
  }

  .tmzon_testimonial_icon {
    font-size: 16px;
  }

  .tmzon_testimonial_content {
    font-size: 14px;
  }
}


/* END TESTIMONIALS CSS */


/* COMPARISON TABLE CSS */

.tmzon_comparison_others_wrapper {
  width: 1150px;
  max-width: calc(100% - 40px);
  margin: 40px auto;
  border-radius: 35px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-top: 8rem;
}

.tmzon_comparison_others_header {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.tmzon_comparison_others_header>div:first-child {
  flex: 3.1;
  font-size: 14px;
  text-align: left;
}

.tmzon_comparison_others_logo,
.tmzon_comparison_others_other {
  flex: 1;
  text-align: center;
  font-size: 1.2rem;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #253C6A;
}

.tmzon_comparison_others_logo img {
  height: 60px;
  width: auto;
  margin: 0 auto;
}

.tmzon_comparison_others_row {
  display: flex;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid #eaeaea;
}

.tmzon_comparison_others_feature {
  flex: 1.5;
  padding-right: 10px;
}

.tmzon_comparison_others_feature h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #253C6A;
}

.tmzon_comparison_others_feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #5B5D56;
  line-height: 1.5;
}

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

.tmzon_comparison_others_value {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  color: #5B5D56;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  justify-content: center;
}

.tmzon_comparison_others_icon {
  font-size: 24px;
}

.tmzon_comparison_others_check {
  color: #28c76f;
}

.tmzon_comparison_others_cross {
  color: #ea5455;
}

/* Mobile styles */
@media (max-width: 768px) {
  .tmzon_comparison_others_header {
    justify-content: center;
    gap: 40px;
    text-align: center;
  }

  .tmzon_comparison_others_header>div:first-child {
    display: none;
  }

  .tmzon_comparison_others_row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .tmzon_comparison_others_feature {
    flex: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .tmzon_comparison_others_values_row {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
  }

  .tmzon_comparison_others_value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 100px;
    gap: 6px;
  }

  .tmzon_comparison_others_icon {
    font-size: 26px;
    margin-bottom: 4px;
    line-height: 1;
  }

  .tmzon_comparison_others_value div {
    font-size: 0.83rem;
    line-height: 1.3;
    margin-top: 0;
  }

  .tmzon_comparison_others_feature h4 {
    font-size: 1rem;
    padding-bottom: 3px;
  }

  .tmzon_comparison_others_feature p {
    font-size: 0.83rem;
  }
}

@media screen and (max-width: 480px) {
  .tmzon_comparison_others_wrapper {
    margin-top: 6rem;
  }
}

/* END COMPARISON TABLE 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 */