/* Base Root */
:root {

  /* Hero */
  --hero-title: #000000;
  --hero-list-text: #0132fa;
  --black: #000;
  
  
    /* FAQ marquee */
  --question-border: #fff;
  --question-width: 0;
  --question-negated-width: 0;
  --glowEffect: #0132fa;
  --question-background: #050e18;
  
  
    /* AI assistance */
  --text-color: white;
  --paragraph-text-color: #e6e6e6;
  --review-section: #04072a;
  --course-box: #20223e;
  --glow-effect-thin-border: #0312fa;

  
 
    /* Course Demo */
  --course-demo-text-color: #fff;
  --course-demo-text-color-faded: #ffffff99;
  --course-demo-text-active-color: #e6e6e6;
  --logo-color: #0312fa;
  
  
  
  /* Course curriculum */
  --tab-comp-background: #0e0c14;
  --tab-comp-text: #000000;
  --tab-comp-btn-disabled: #ffffff80;
  --tab-comp-border: #ffffff80;
  --tab-comp-scroll: #DEDFF1;
  --tab-comp-scroll-piece: #010066;
  --tab-comp-border-hover: #ffffff33;
  --arrows-color: #0132fa;
  
  
  

  /* Course Features */
  --course-details-bg-color: #000;
  --course-details-img-color: #ffffff;
  --course-details-img-border-color: #0132fa;
  --course-details-title-color: #ffffff;
  --course-details-description-color: #e6e6e6;
  
  


}

/***********************************************************
 * Make shadow text for Course certificate section
 ***********************************************************/

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}



/***********************************************************
 * HIDE DIV CONTAINER
 ***********************************************************/

#iframe-container {
position: relative;
}

.bottom-overlay {
height: 50px;
position: absolute;
/*bottom: 0;*/
top: 50;
background-color: #000000;
width: 100%;
}



/***********************************************************
 * Hero CSS (Updated for Inline + Mobile Variants)
 ***********************************************************/
.hero__content__head__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 4vw;
  width: fit-content;
  padding: 0 1.5%;
  color: var(--hero-title) !important;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}
.hero__content__head__title h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.hero__mobile__view {
  display: none;
}


.hero__desktop__view {
  display: flex;
  justify-content: center;
  text-align: center;
}



.hero__content__head__list-animate-text-scroll,
.hero-animate-text-scroll-mobile {
  display: inline-flex;
  align-items: baseline; /* aligns animated text with surrounding text */
  justify-content: flex-start;
  width: 12ch; /* or 14ch if needed */
  height: auto;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: baseline;
}



.hero__content__head__list-animate-text-scroll span,
.hero-animate-text-scroll-mobile span {
  display: none;
  color: var(--hero-list-text);
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}




.hero__content__head__list-animate-text-scroll span.add,
.hero-animate-text-scroll-mobile span.add {
  display: inline;
  opacity: 1;
}

.hero__content__head__list-animate-text-scroll span.remove,
.hero-animate-text-scroll-mobile span.remove {
  animation: fadeOut 0.5s ease;
}

.hero p {
  padding: 0 1.5%;
  color: var(--hero-title) !important;
  text-transform: uppercase;
  margin: 0;
  font-family: "Hind", sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 5px !important;
}

.hero__content__head {
  margin: 1.5% 0;
}

.hero__content__footer {
  font-size: 1.7vw !important;
}


.js-hidden {
  visibility: hidden;
}


/* =========================
   Responsive Typography
========================= */
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .hero__content__head__title {
    font-size: 4.3125rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  .hero__content__head__title {
    font-size: 3.8rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.6rem !important;
  }
}

@media screen and (max-width: 768px) and (min-width: 600px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 3rem;
  }
  .hero p {
    letter-spacing: 5px !important;
  }
  .hero__content__footer {
    font-size: 1.1rem !important;
  }
}

@media screen and (max-width: 599px) and (min-width: 426px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 2.1rem;
  }
  .hero p {
    letter-spacing: 2.5px !important;
  }
  .hero__content__footer {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 425px) {
  .hero__mobile__view {
    display: block;
  }
  .hero__desktop__view {
    display: none;
  }
  .hero__content__head__title {
    font-size: 8vw;
    padding-left: 3.5vw;
    width: 100%;
  }
  .hero p {
    padding-left: 3.5vw;
    letter-spacing: 2.5px !important;
  }
  .hero__content__footer {
    font-size: 3.5vw !important;
  }
}

/* =========================
   Animations
========================= */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/***********************************************************
 * Hero END
 ***********************************************************/
 
 
 
 
/*
**************************** FAQ marquee CSS ***************************
*/

.questions {
  /* Only keep responsive overrides if needed */
}

.question_content {
  background-color: var(--question-background) !important;
  border-top: 2px solid var(--glowEffect) !important;
  border-bottom: 2px solid var(--glowEffect) !important;
  box-shadow: 
    0 2px 7.5px 2px var(--glowEffect),
    0 -2px 7.5px 2px var(--glowEffect) !important;
}

.marquee {
  --gap: 1rem;
  position: relative;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  gap: var(--gap);
}

body:not(.no-marquee) .marquee__content {
  opacity: 1;
  visibility: visible;
}

.marquee ul {
  padding-inline-start: 0 !important;
  margin: 0;
}

.marquee__content > * {
  list-style: none;
  color: var(--question-border) !important;
  font-size: 1.7vw;
  white-space: nowrap;
  margin: 7px 0;
  align-items: center;
  border-radius: 12px;
  padding: 0 1rem;
  display: flex;
  font-family: "Archivo", sans-serif !important;
  font-weight: 500 !important;
}

/* Animation keyframes */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

/* ========== Responsive adjustments ========== */

@media screen and (min-width: 1440px) {
  .question_content {
    padding: 1% 0;
    border-top: 2px solid var(--glowEffect) !important;
    border-bottom: 2px solid var(--glowEffect) !important;
    box-shadow: 
      0 0.175vw 7.5px 0.175vw var(--glowEffect),
      0 -0.175vw 7.5px 0.175vw var(--glowEffect) !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .questions {
    height: 11em;
  }

  .marquee__content > * {
    font-size: 1.3rem;
  }

  .marquee_container {
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .questions {
    height: 11em;
  }

  .marquee__content > * {
    font-size: 1.35rem;
  }
}

@media screen and (min-width: 424px) and (max-width: 768px) {
  .questions {
    height: 10em;
  }

  .marquee__content > * {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 424px) {
  .questions {
    height: 10em;
  }

  .marquee__content > * {
    font-size: 1rem;
  }

  .marquee_container {
    padding: 0;
  }
}

/*
*************************** FAQ marquee END *************************** 








/**
* Course Curriculum CSS
*/
.tab-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tabs-comp {
  width: 75%;
  height: fit-content;
  display: flex;
  color: var(--tab-comp-text) !important;
  border: 1px solid #0132fa;
  border-radius: 12px;
  padding: 1.2rem 0.5rem 0.5rem 0%;
}

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

.active-content[data-tab-content] {
  position: relative;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tab_item-header {
  height: 100%;
}

.tab_item-header h1 {
  margin: 0;
  font-size: 2vw;
  padding-left: 2%;
}
.tab_item-description section h3 {
  margin: 0;
  font-size: 1.75vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section ul {
  margin: 0;
  font-size: 1vw;
  padding-left: 6%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section h4 {
  margin: 0;
  font-size: 1vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description section p {
  margin: 0;
  font-size: 1vw;
  padding-left: 2%;
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
}
.tab_item-description {
  position: relative;
  margin: 0;
  font-size: 0.7rem;
  overflow: auto;
  overflow-x: hidden;
  height: 29em;
}

.tab_item-description::-webkit-scrollbar {
  width: 15px !important;
}

.tab_item-description::-webkit-scrollbar-track {
  background-color: var(--tab-comp-scroll-piece) !important;
}

.tab_item-description::-webkit-scrollbar-thumb {
  background-color: var(--tab-comp-scroll);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* Firefox */
.tab_item-description {
  scrollbar-width: thin;
  scrollbar-color: var(--tab-comp-scroll) var(--tab-comp-scroll-piece);
}

.tab_item-description::-webkit-scrollbar-thumb:vertical {
  height: 30px;
  background-color: var(--tab-comp-border) !important;
}

.tab_item-btn {
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab_item-btn button {
  background-color: transparent;
  border: none;
  color: var(--tab-comp-text) !important;
  font-size: 2.25vw;
  height: fit-content;
  margin: 1rem 0 0;
  cursor: pointer;
}

.tab_item-btn button:disabled {
  color: var(--tab-comp-btn-disabled) !important;
  cursor: default;
}

.tabs-comp-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0 1%;
  width: 130px;
}

.tab_item {
  cursor: pointer;
  padding: 1% 1% 1% 5%;
  font-size: 1.25vw;
  border-right: 0.125rem solid var(--tab-comp-border);
  margin: 0;
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
}

.tab_item-header > h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.tab_item.active-content {
  color: white !important; /* or any color you prefer */
  border-right: 0.125rem solid var(--arrows-color);
    background-image: linear-gradient(70deg, #0132fa, black);
}

.tab_item:hover {
  background-color: var(--tab-comp-border);
}


.tabs-comp-contents {
  margin-top: 2%;
  width: 85%;
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
}

@media (min-width: 3300px) {
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 15%;
  }
  .tabs-comp-list > li {
    font-size: 2.6rem;
  }
  .tab_item-description {
    height: 84em;
  }

  .tab_item-description section {
    padding: 0 1% 1% 1%;
  }
  .tab_item-btn button {
    font-size: 4rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 1em;
  }
  .tab_item-header > h1 {
    font-size: 2.85rem;
    padding-bottom: 2%;
    margin: 0;
    padding-left: 3%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 2.35rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 2.35rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 2.475rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 2.35rem;
  }
}
@media (min-width: 2560px) and (max-width: 3300px) {
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 15%;
  }
  .tabs-comp-list > li {
    font-size: 1.75rem;
  }
  .tab_item-description {
    height: 56em;
  }

  .tab_item-description section {
    padding: 0 1% 1% 1%;
  }
  .tab_item-btn button {
    font-size: 2.5rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 1em;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 2%;
    margin: 0;
    padding-left: 3%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1.5rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1.5rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.625rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1.5rem;
  }
}
@media (min-width: 1441px) and (max-width: 2560px) {
  .tabs-comp {
    padding: 1.2rem 1rem 1rem 0%;
  }
  .tabs-comp-contents {
    width: 90%;
  }
  .tabs-comp-list {
    width: 11em;
  }
  .tabs-comp-list > li {
    font-size: 1.5rem;
  }
  .tab_item-description {
    height: 45em;
  }
  .tab_item-description section {
    padding: 0 2% 2% 2%;
  }
  .tab_item-btn button {
    margin-top: 0em;
    font-size: 2.5rem;
  }
  .tab_item-btn:last-child button {
    margin-right: 0.5em;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 1.5%;
    margin: 0;
    padding-left: 4%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1.25rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1.25rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.375rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .tabs-comp-list {
    width: 10em;
  }
  .tab_item-description {
    height: 38em;
  }
  .tab_item-description section {
    padding: 0 2% 2% 2%;
  }
  .tab_item {
    font-size: 1.25rem;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-header > h1 {
    font-size: 1.75rem;
    padding-bottom: 3%;
    padding-left: 4%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .tabs-comp-list {
    width: 9em;
  }

  .tab_item-description section {
    padding: 0 3% 3% 3%;
  }
  .tab_item {
    font-size: 1rem;
  }
  .tab_item-btn button {
    font-size: 1.75rem;
  }
  .tab_item-header > h1 {
    font-size: 2rem;
    padding-bottom: 3%;
    padding-left: 5%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 4em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .tabs-comp {
    width: 95%;
  }
  .tabs-comp-list {
    width: 9em;
  }
  .tab_item-description section {
    padding: 0 3% 3% 3%;
  }

  .tab_item {
    font-size: 1rem;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-header > h1 {
    font-size: 1.75rem;
    padding-bottom: 3%;
    padding-left: 5%;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 3em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .tabs-comp {
    margin: 0;
    padding: 0;
    flex-direction: column;
    width: 95%;
  }
  .tabs-comp-contents {
    margin: 0;
    width: 100%;
  }
  .tab_item-description section {
    padding: 0 5% 5% 5%;
  }
  .tab_item-header {
    padding-bottom: 5%;
  }
  .tab_item-header h1 {
    font-size: 1.328125rem;
    text-align: center;
    padding: 0;
  }
  .tabs-comp-list {
    padding: 0;
    width: 100%;
    flex-direction: row;
    overflow: auto;
    display: none;
  }
  .tab_item-description section h3 {
    margin: 0;
    font-size: 1rem;
    padding-left: 0;
  }
  .tab_item-description section ul {
    margin: 0;
    font-size: 1rem;
    padding-left: 2.5em;
  }
  .tab_item-description section h4 {
    margin: 0;
    font-size: 1.125rem;
    padding-left: 0;
  }
  .tab_item-description section p {
    margin: 0;
    font-size: 1rem;
    padding-left: 0;
  }

  .tab_item {
    padding: 2%;
    font-size: 1rem;
  }
  .tab_item:first-child.active-content {
    border-radius: 10% 0 0 0;
  }
  .tab_item:last-child.active-content {
    border-radius: 0 10% 0 0;
  }
  .tab_item-btn button {
    font-size: 2rem;
  }
  .tab_item-btn {
    margin-top: 5%;
    margin-bottom: 2%;
    padding: 0;
    position: static;
    width: 100%;
    justify-content: space-between;
  }

  .tab_item-btn button {
    margin: 0;
  }
}
/**
* Course Curriculum END
*/







/*Pricing Table CSS*/
:root {
  --price-cell-seperator: rgba(213, 210, 222, 1);
  --price-data-seperator: rgba(172, 165, 189, 0.5);
  --pricing-header: rgba(76, 66, 102, 1);
  --sky-blue: #84c4ff;
  --payment-trial: #77b8f8;
  --payment-starter: #5271FF;
  --payment-free: #9716db;
  --payment-pro: #012AB3;
  --payment-enterprise: #9716db;
  
  --logo-blue: #4b86f6;
  --logo-grey: #7a748a;
  --logo-off: #7a748ab3;
  --white: #ffffff;
  --black: #000;
  --pricing--border-color: #4696f3;
  --payment-text: #808080;
  --payment-btn-text: #ffffff;
  --card-cell-bg: #e6e6e680;
}
.price-section h1 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  font-size: 2vw;
  margin: 0 15%;
  text-align: center;
  padding: 2%;
}

.card_data--text p {
  font-family: "Archivo", sans-serif !important;
  font-weight: 700;
}

.price-active button,
.price_container_content_card_header button,
.card_benefit p,
.card_data_heading p,
.triangle,
.triangle-left {
  font-family: "Archivo", sans-serif !important;
  font-weight: 400;
}
.data_module p,
.payment__price-text p,
.price_container_content_card_brand p {
  font-family: "Hind", sans-serif !important;
}
/*colored border*/
.price_container {
  /* background: var(--pricing--border-color);
  border-radius: 0.75rem;
  padding: 0.25vw;
  width: 75%;
  margin: auto; */
}

/*cards grid container*/
.price_container_content {
  border-radius: 0.75rem;
  background: white;
  width: 60%;
  margin: auto;
  display: grid;
  grid-template-rows: auto;
  border: 0.25rem solid var(--pricing--border-color);
}

/*card*/
.price_container_content_card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* First column is wider */
}

.price_container_content_card p,
h2,
h3 {
  margin: 0;
  padding: 0;
  color: var(--black) !important;
}

.card-logo-grey {
  color: var(--logo-grey) !important;
}

.card-logo-off {
  color: var(--logo-off) !important;
}


.payment__button-trial {
  background-color: var(--payment-trial);
}

.payment__button-free {
  background-color: var(--payment-free);
}


.payment__button-starter {
  background-color: var(--payment-starter);
}

.payment__button-pro {
  background: var(--payment-pro);
}

.payment__button-entreprise {
  background: var(--payment-enterprise);
}

.card__cell-background {
  background: var(--card-cell-bg) !important;
}
/* card container header legend*/
.card_header--title {
  justify-content: center !important;
  align-items: center;
  border-left: none !important;
}
.card_header--title h2 {
  text-transform: uppercase;
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-weight: 600 !important;
}

/*card header*/
.price_container_content_card_header {
  border-bottom: 0.125rem solid var(--price-data-seperator);
  border-left: 0.125rem solid var(--price-data-seperator);
  text-align: center;
  padding: 5% 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* new code */
.payment__price-section-title {
  height: 2em;
}

.payment--centering {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.payment__price-new-price {
  height: 6rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  transform: translate(0, -0.6rem);
  
}
.payment__price-text > p {
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
  margin: 0;
  color: var(--payment-text) !important;
  opacity: 0.8;
}
.price_container_content_card_header button {
  border: none;
  border-radius: 5px;
  color: var(--payment-btn-text) !important;
  font-size: 1.2rem;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.5rem;
  margin: 0.4rem auto;
  cursor: pointer;
}
.payment__companies-icons {
  display: flex;
  justify-content: center;
}
.payment__companies-icons > * {
  width: 1.5em;
}

.payment__price-lets-talk {
  height: 7rem;
  margin: 1rem 0;
}

/*end new code*/

/*card body data*/
/* .price_container_content_card_data:last-child {
  border-bottom: none;
} */
.price_container_content_card_data {
  position: relative;
  border-bottom: 0.125rem solid var(--price-data-seperator);
  display: flex;
  align-items: center;
}
/* .price_container_content_card_data_mobile {
  display: none;
} */

.card-logo-ticks {
  color: var(--logo-grey) !important;
}

.card_data--text {
  text-align: center;
  font-weight: 800;
  justify-content: center;
  border-left: 0.125rem solid var(--price-data-seperator);
}
.card_data--text--content {
  display: none;
  align-items: center;
  width: 100%;
}

/*card brand*/
.price_container_content_card_brand_header {
  border-top: 0.125rem solid var(--price-data-seperator);
  border-bottom: none;
}
.price_container_content_card_brand {
  border-top: 0.125rem solid var(--price-data-seperator);
  border-left: 0.125rem solid var(--price-data-seperator);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2%;
}
.price_card-branding {
  height: 6rem;
}

.price_container_content_card:last-child {
  border: none;
}

.card_data_heading {
  display: flex;
  /* justify-content: space-between; */
  position: relative;
  padding: 0 5%;
}
/* 
.info-display {
  margin-left: 5%;
} */

.payment__description-section-information {
  display: flex;
  position: relative;
}

.data-info {
  font-weight: 400 !important;
  font-family: "Hind", sans-serif !important;
  display: none;
  position: absolute;
  /* background: var(--white) !important;
  box-shadow: 0 0 2px var(--black); */
  width: 8em;
  height: fit-content;
  right: 0;
  /* padding: 2%; */
  transform: translate(42%, -106%);
  z-index: 2;
}

/*card benefits section*/
.data_heading_benefits {
  border: none;
}

.price_container_content_card_benefits {
  display: flex;
  flex-direction: column;
  border-left: 0.125rem solid var(--price-data-seperator);
}

.price_container_content_card_benefits_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2% 0;
  margin: 0 auto;
  width: 90%;
}
.price_container_content_card_benefits_item_heading {
  display: flex;
  justify-content: space-between;
}

.card_benefit {
  display: flex;
  width: 90%;
  align-items: center;
    margin-left: 15%;
}

.card_benefit_title {

    margin-left: 10%;
}

.card_benefit_format {
    
        margin-left: 1.5%;
}


.card_benefit p {
  margin-left: 2%;
}
.card_benefit i {
  margin: 0;
}
/*information display for each feature*/

.data-info-mobile {
  background: transparent;
  padding: 3% 7%;
}

.data_module p {
  color: var(--black) !important;
}
.data-module-entreprise {
  transform: translate(0, -100%) !important;
}
.payment-switch {
  background: var(--sky-blue);
  border: none;
  border-radius: 20px;
  width: fit-content;
  margin: 1rem auto;
  cursor: pointer;
  display: flex;
}

.payment-option {
  background: inherit;
  color: white;
  padding: 10px;
  border-radius: 20px;
  border: 0 transparent;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.payment-active {
  background: var(--logo-blue);
}

.price-content {
  display: none;
}

.price-info-icons {
  display: none !important;
}


@media (min-width: 2561px) {
  .card_header--title h2 {
    font-size: 4.5rem;
  }
  .payment__price-lets-talk {
    height: 11rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 10rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }
  .payment__price-section-title {
    height: 4rem;
  }
  .payment__companies-icons > * {
    width: 2.5em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 2rem; */
    width: 20rem;
    padding: 1rem 1.5rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.9rem;
  } */
  /* .price_container_content_card_data p {
  } */
  /* .card_data--text p {
    font-size: 2rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 2.375rem;
  }
  .card_data--text p {
    font-size: 2.5rem;
  }
  .card_benefit p {
    font-size: 1vw;
  }
  
  
    .card_benefit_format p strong {
    font-size: 1.75rem !important; /* or any size that looks balanced */
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1.9rem;
  }

  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .data-info {
    width: 20em;
  }
  .info-display {
    width: 3rem;
    height: 3rem;
  }
  .price_card-branding {
    height: 10rem;
  }
  .card-data-height {
    height: 6rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.9vw;
    padding: 0.75em;
  }
  .soon-btn {
    width: 3vw;
  }
}
@media (min-width: 1880px) and (max-width: 2560px) {
  .price_container_content {
    width: 70%;
  }
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 1.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 1rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 14em;
    transform: translate(45%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.875rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .price_container_content {
    width: 85%;
  }
  
  .card_benefit_format {
    
        margin-left: 0.5%;
}

  .card_header--title h2 {
    font-size: 3rem;
  }
  .payment__price-section-title {
  }
  .payment__price-lets-talk {
    height: 4.75rem;
    margin: 1rem 0;
  }
  .payment__price-new-price {
    height: 3.75rem;
    margin: 0.5rem 0;
    transform: translate(0, -0.6rem);
  }


  .payment__companies-icons > * {
    width: 1.2em;
  }
  .price_container_content_card_header button,
  .price-active button {
    /* font-size: 1.5rem; */
    width: 10rem;
  }
  /* .price_container_content_card p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus,
  .card_data_heading p {
    font-size: 1.4rem;
  }

  .card_data--text p {
    font-size: 1.5rem;
  } */
  .price-active button,
  .price_container_content_card_header button,
  .card_data_heading p {
    font-size: 1rem;
  }
  .card_data--text p {
    font-size: 1.0625rem;
  }
  .card_benefit p {
    font-size: 0.8rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }

  .info-display {
    width: 2rem;
    height: 2rem;
  }
  .data-info {
    width: 12em;
    transform: translate(44%, -106%);
  }
  .price_card-branding {
    height: 3.438rem;
  }
  .card-data-height {
    height: 2.5rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.75rem;
    padding: 0.5em;
  }
  .info-display {
    width: 1.25rem;
    height: 1.25rem;
  }
  .triangle-enterprise {
    transform: translate(2.5%, -106%) !important;
  }
  .soon-btn {
    width: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .price_container_content {
    width: 95%;
  }
  .payment__price-section-title {
    height: 1.5em;
  }
  .payment__companies-icons > * {
    width: 1.25rem;
  }
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
  }
  .price_container_content_card_header {
    padding: 0.25rem 0;
  }
  .card_header--title h2 {
    font-size: 1.5rem;
    width: auto;
  }
  .payment__price-lets-talk {
    height: 4rem;
    margin: 0.5rem 0;
  }
  .payment__price-new-price {
    height: 3rem;
    margin: 0.5rem 0;
    transform: translate(0, -0.6rem);
  }

  .price-active button,
  .price_container_content_card_header button {
    width: 8rem;
  }
  .price_container_content_card_header button {
    padding: 0.4rem;
  }
  .price_container_content_card_benefits_item {
    width: 97%;
  }
  .data-info {
    width: 8em;
  }
  .price-active button,
  .price_container_content_card_header button,
  .card_data--text p,
  .card_data_heading p {
    font-size: 0.9rem;
  }
  .card_benefit p {
    font-size: 0.875rem;
  }
  
    .card_benefit_format {
    
        margin-left: 0.2%;
}
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 0.8rem;
  }
  .card-data-height {
    height: 4rem;
  }
  .triangle-left,
  .triangle {
    font-size: 0.8125rem;
    padding: 0.5em;
  }
  .price_card-branding {
    height: 3rem;
  }
  .soon-btn {
    width: 2.5rem;
  }
}

@media (min-width: 769px) {
  .payment-switch {
    display: none;
  }
  .price_container_content-mobile {
    display: none;
  }
  .price_container_content-desktop {
    display: grid;
  }
  .triangle {
    position: relative;
    padding: 1em;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #fafafa;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4);
    color: var(--black) !important;
    text-align: center;
  }
  .triangle::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 0;
    left: calc(50% - 5px);
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid #fff;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);

    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  .triangle::before {
    z-index: 10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 0;
    left: calc(50% - 5px);
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid black;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);
  }
  .triangle-enterprise {
    transform: translate(0, -106%);
  }
  .triangle-left {
    position: relative;
    padding: 1em;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #fafafa;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4);
    color: var(--black) !important;
    text-align: center;
  }
  .triangle-left::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 5%;
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid #fff;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);

    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.4);
  }
  .triangle-left::before {
    z-index: 10;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 0;
    right: 5%;
    bottom: -9px;
    box-sizing: border-box;

    border: 5px solid black;
    border-color: transparent transparent #fff #fff;

    transform-origin: 0 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .price_container_content-desktop {
    display: none;
  }
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
  }
  .price_container_content {
    grid-template-columns: 1fr;
  }
  .payment-switch {
    width: fit-content;
  }
  .payment-option {
    width: auto;
  }
  .price_container {
    padding: 0.25rem;
    margin: auto;
    width: 22em;
  }
  .price_container_content_card {
    display: none;
    overflow: hidden;
    border: none !important;
  }
  .price-active {
    display: flex;
    flex-direction: column;
  }
  .price-active button,
  .card_data--text p,
  .card_benefit p {
    font-size: 1.2rem;
  }
  .data_module p,
  .payment__price-text p,
  .price_container_content_card_brand p,
  .card-logo-grey,
  .card-logo-ticks,
  .card-logo-plus {
    font-size: 1.1rem;
  }
  .price_container_content_card_data {
    justify-content: space-between;
    padding: 0 3%;
  }
  .payment__price-section-title {
    height: 3em;
  }
  .price_container_content_card_header button {
    width: 12rem;
    margin: 0.8rem auto;
  }

  .price_container_content_card_header {
    padding: 0.5rem;
    border-left: none;
  }
  .price_container_content_card_benefits {
    padding: 3%;
    border-left: none;
  }
  .price_container_content_card_benefits_item {
    padding: 0;
    width: 100%;
  }
  
    .price_container_content_card_data,
  .price_container_content_card_benefits_item {
    padding: 0.3rem ;
  }



  .price-content {
    display: block;
    text-align: left;
    justify-content: flex-start;
    font-weight: 400 !important;
  }
  .price-info-icons {
    display: block !important;
    justify-content: flex-end;
  }
  .info-display {
    margin-left: 0;
  }
  .card_data--text {
    padding: 3%;
    border-left: none;
  }
  .card_data--text--content {
    display: flex;
  }
  .price_container_content_card_brand {
    border-left: none;
  }
  .data_module p {
    font-size: 1rem !important;
  }
  .soon-btn {
    width: 2.5rem;
  }
}
@media (max-width: 480px) {
  .price-section h1 {
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
  }
  .payment-switch {
    width: fit-content;
  }
  .payment-option {
    width: auto;
    font-size: 0.7rem;
  }
  .price_container {
    width: 100%;
  }
}






@media (max-width: 768px) {
  .price_container {
    width: 100% !important;
    padding: 1rem !important;
    box-sizing: border-box;
  }

  .price_container_content {
    width: 100% !important;
    padding: 0;
    box-sizing: border-box;
  }

  .price_container_content_card {
    width: 100%;
    padding: 0; /* Remove padding */
    box-sizing: border-box;
  }

  .price_container_content_card_header {
    padding: 0; /* Remove padding to let image span full width */
  }

  .price_container_content_card_header button {
    width: 100%;
    max-width: 300px;
  }


  .card_benefit p,
  .price_container_content_card_header p,
  .payment__price-text p {
    font-size: 1.1rem;
  }
  
    .payment__price-text {
        padding: 1rem !important;
  }

  .price_container_content_card_brand {
    padding: 1rem;
  }

  .payment-switch {
    margin: 1rem auto;
  }
}


.price_container--two-columns .price_container_content {
  width: 50%;
}



.price_container--two-columns .price_container_content_card {
  grid-template-columns: 1fr 1fr !important;
}





@media screen and (min-width: 600px) and (max-width: 1023px) {
  .price_container--two-columns .price_container_content {
    width: 75% !important;  /* Nearly full width for smaller tablets */
    transform-origin: top center;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .price_container--two-columns .price_container_content {
    width: 70% !important;  /* Wider view for compact laptops like MacBook Air 13" */
    transform-origin: top center;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .price_container--two-columns .price_container_content {
    width: 60% !important;  /* Typical desktop range (1080p and 1440p displays) */
    transform-origin: top center;
  }
}

@media (min-width: 1441px) and (max-width: 1880px) {
  .price_container--two-columns .price_container_content {
    width: 50% !important;  /* Large monitors, white space adds balance */
    transform-origin: top center;
  }
}




/*Pricing Table END*/






/*============================================================================
  #PILLS BUTTONS - TAB SCROLL & ACTIVE STYLING
==============================================================================*/

/* Active tab styling */
.nav-pills.policy-list .nav-link.active,
.nav-pills.policy-list .show > .nav-link {
  color: #fff;
  background-color: #0d6efd !important;
}

/* Better hit area for tabs and consistent spacing */
.nav-pills.policy-list .nav-link {
  min-width: 80px;
  text-align: center;
  padding: 8px 12px;
}

/* Horizontal scroll styling for tab list */
#pills-tab {
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 5px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #0d6efd transparent;
}

/* Webkit scrollbar styling */
.nav-pills.policy-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.nav-pills.policy-list::-webkit-scrollbar-thumb {
  background-color: #0d6efd;
  border-radius: 10px;
}

/* Responsive padding adjustment */
@media screen and (max-width: 600px) {
  #pills-tab {
    padding-bottom: 13px;
  }
}

/*============================================================================
  #VIDEO WRAPPER & CUSTOM PLAY BUTTON
==============================================================================*/

.video-wrapper {
  padding: 0;
  background-color: #102694;
  border: 3px solid #0132fa;       /* 🔵 Thinner blue line */
  border-radius: 12px;             /* 🔄 Rounded border */
  overflow: hidden;                /* 🛑 Ensures child elements like video obey border-radius */
  box-shadow: 0 0 6px rgba(1, 50, 250, 0.2); /* 🔆 Softer glow */
}

.wistia_responsive_wrapper,
.wistia_embed {
  border-radius: 8px;             /* ⤵ Match wrapper */
  overflow: hidden;
}


.wistia_responsive_wrapper {
  will-change: opacity, transform;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 6s ease-in-out 1s, transform 4s ease-in-out 1s;
}



/* When video starts */
.wistia_responsive_wrapper.playing {
  opacity: 1;
  transform: scale(1);
}


.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps full video visible */
  background-color: #000; /* Fallback */
  cursor: pointer;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: url('https://cdn.blockready.com/website/images/landing/wistia-play-button.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;
  background-color: transparent;
  z-index: 2;
  transition: filter 0.3s ease;
}

.custom-play-button:hover,
.custom-play-button:focus {
  filter: brightness(1.2);
  outline: none;
}


/*============================================================================
  #THUMBNAIL IMAGE & PLAY ICON FOR TAB VIDEOS
==============================================================================*/

.custom-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px; /* Matches your video styling */
}




/* Play button styling for thumbnails */



.custom-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 30px solid white;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 11;
  transition: transform 0.2s ease-in-out;
}

.custom-play-icon:hover,
.custom-play-icon:focus {
  filter: brightness(1.2);
}

.custom-thumbnail.hidden,
.custom-play-icon.hidden {
  display: none;
}








.wistia_responsive_wrapper .wistia_click_to_play,
.wistia_responsive_wrapper .w-css-reset-click-to-play,
.wistia_responsive_wrapper button[title="Play"] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}






/**
 * AI assistance CSS (Optimized + Responsive)
 */

/* Base layout styles */
.reviews--flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews {
  display: flex;
  width: auto;
  flex-direction: row;
  padding: 2% 0 2% 5%;
}

.reviews__description {
  width: 40%;
  flex-direction: column;
  justify-content: space-around;
  margin: auto 0;
  text-align: left;
  padding-right: 3%;
}

.reviews__description h2 {
  color: var(--text-color) !important;
}

.reviews__description p {
  font-family: "Hind", sans-serif !important;
  font-weight: 200 !important;
  font-size: 1vw;
  margin: 1rem 0;
  color: var(--paragraph-text-color) !important;
}

.review_desc_first h2 {
  font-size: 1.2rem;
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
}

.review_desc_first,
.swiper-buttonsection,
.swiper-wrapper-3,
.reviews__description p {
  width: 100%;
}

.swiper-buttonsection {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.swiper-buttonsection svg {
  opacity: 0.5;
  width: 25%;
}

.swiper-buttonsection svg:hover {
  opacity: 1;
}

.swiper-3 {
  width: 70%;
  height: 100%;
}

/* ✅ Consolidated Base Slide Styles */
.swiper-slide-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 12px;
  border: 2px solid var(--glow-effect-thin-border);
  background: linear-gradient(to top right, #1a1c2f, #20223e, rgba(3, 18, 250, 0.2));
  box-shadow: 0 0 15px rgba(3, 18, 250, 0.3);

  color: var(--text-color);
  font-family: "Archivo", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;

  height: 300px !important;
  width: 320px !important;
  padding: 1.5rem 2.5rem; /* top/bottom 1.5rem, left/right 2rem */
  box-sizing: border-box;
}







.swiper-slide-3 h3 {
  font-family: "Archivo", sans-serif !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
  margin: 1.1rem 0;
}

.swiper-slide-3 p {
  font-family: "Hind", sans-serif !important;
  font-weight: 400 !important;
  color: var(--paragraph-text-color) !important;
  margin: 1.1rem 0;
}

.swiper-slide-3 h4 {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}


/* Lazy image transition */
.swiper-slide img.swiper-lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide img.swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
}

/* ---------------- MEDIA QUERIES ---------------- */

/* Mobile screens */
@media (max-width: 479px) {
  .reviews {
    flex-direction: column;
    padding-left: 0;
    margin: 0;
  }

  .reviews__description {
    width: 100%;
    padding: 1% 0;
  }

  .reviews__description p {
    width: 90%;
    font-size: 1rem;
  }

  .swiper-3 {
    width: 100%;
  }

  .swiper-buttonsection svg {
    width: 6.5em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1rem 0.8rem 0 0.9875rem;
    font-size: 0.9em;
  }
  
  .swiper-slide-3 h4 {
    font-size: 1.7rem;
    line-height: 1.4;
  }

}

/* Small tablets */
@media (min-width: 480px) and (max-width: 768px) {
  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1.3rem 0.5rem;
    font-size: 1em;
  }
}

/* Medium tablets to small desktops */
@media (min-width: 769px) and (max-width: 1023px) {
  .reviews {
    flex-direction: column;
    padding: 2% 0;
  }

  .reviews__description {
    width: 100%;
    margin: 2% 0;
    padding: 1%;
  }

  .reviews__description p {
    font-size: 18px;
    margin: 1% 3%;
  }

  .swiper-3 {
    width: 100%;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3,
  .swiper-slide-3 p {
    margin: 1.2rem 0.3rem;
  }
}

/* Desktops 1024px to 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .reviews__description p {
    font-size: 18px;
  }

  .swiper-3 {
    padding: 2% 0;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }

  .swiper-slide-3 h3 {
    font-size: 1.5rem;
  }

  .swiper-slide-3 p {
    font-size: 1.2rem;
  }
}

/* Large desktops 1440px to 1840px */
@media (min-width: 1440px) and (max-width: 1840px) {
  .review_desc_first h2 {
    font-size: 1.6rem;
  }

  .swiper-slide-3 h3 {
    font-size: 1.4rem;
  }

  .swiper-slide-3 p {
    font-size: 1.1rem;
  }

  .swiper-buttonsection svg {
    width: 7em;
  }
}

/* Extra-large desktops 1841px to 2560px */
@media (min-width: 1841px) and (max-width: 2560px) {
  .review_desc_first h2 {
    font-size: 2.4rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.1rem;
  }

  .swiper-buttonsection svg {
    width: 8em;
  }
}

/* Ultra-wide 2561px to 3900px */
@media (min-width: 2561px) and (max-width: 3900px) {
  .review_desc_first h2 {
    font-size: 3.5rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.5rem;
  }

  .swiper-buttonsection svg {
    width: 10em;
  }
}

/* Retina & large 4K+ */
@media (min-width: 3901px) {
  .review_desc_first h2 {
    font-size: 3.5rem;
  }

  .swiper-slide-3 h3 {
    font-size: 2rem;
  }

  .swiper-slide-3 p {
    font-size: 1.8rem;
  }

  .swiper-buttonsection svg {
    width: 15%;
  }
}







/**
 * TESTIMONIALS
 */



.t-card {
  padding: 1.8125rem 2.5rem !important;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1.25rem;
  color: #fff;
  height: auto;
}

.t-card img:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.rounded-circle:hover {
  opacity: 0.85;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


.controls .btn-outline-light:hover,
.controls .btn-outline-light:focus {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #fff;
}

@media (max-width: 767.98px) {
  .testimonial-photo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    height: 150px;
  }
}



.controls svg {
  width: 2rem;
  height: 2rem;
}


.fa-linkedin:hover {
  color: #0A66C2; /* LinkedIn blue */
}



/**
 * END TESTIMONIALS
 */