/* ============================================================
   Graph css start
   ============================================================ */
.diagram {
  position: relative;
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "steps pipeline"
    "note  final";
  gap: 0px 20px;
  align-items: center;


}


.steps-wrap {
  grid-area: steps;
  position: relative;
  padding-right: 72px;
}

.steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
  padding-left: 0;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateX(-12px);
  animation: slideIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  border: 1px solid #ededed;
  padding: 10px;
  border-radius: 20px;
  background-color: #f5fbff;
  max-width: 240px;
}

.step__branch {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, #7dd3fc 0%, #00c3fe 100%);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  animation: growX 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.15s
}

.step__branch::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c3fe;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.spine {
  position: absolute;
  top: 43px;
  bottom: 17px;
  right: 39px;
  width: 2px;
  height: 72%;
  background: linear-gradient(180deg, #7dd3fc 0%, #00c3fe 100%);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  animation: growY 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.05s;
  z-index: -1;
}

.bridge {
  position: absolute;
  top: 50%;
  left: calc(90% - 6px);
  height: 2px;
  width: calc(50px + 16px);
  background: linear-gradient(90deg, #00c3fe 0%, #7dd3fc 100%);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  animation: growX 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.85s;
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #0284c7;
  background: #e0f2fe;
  border: 1.5px solid #bfe4f8;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px #fff;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.step__label {
  font-weight: 600;
  color: #0b1b2b;
  font-size: 16px;
}

.step:hover .step__num {
  background: #00c3fe;
  color: #fff;
  transform: scale(1.08);
}

@keyframes growX {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes growY {
  to {
    transform: scaleY(1);
  }
}

.pipeline {
  grid-area: pipeline;
  display: flex;
  align-items: center;
  gap: 90px;
  flex-wrap: nowrap;
  padding-bottom: 10px;
}

.card {
  position: relative;
  background: #ffffff;
  border: 3px solid #00c3fe;
  border-radius: 14px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(14, 50, 85, 0.06),
    0 2px 6px rgba(14, 50, 85, 0.04);
  min-width: 140px;
  width: 100%;
  opacity: 1;
  transform: translateY(10px) scale(0.96);
  animation: pop 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
}

.card:hover::before {
  opacity: 1;
  animation: shadowRotate 1s linear infinite;
}

.card:hover .card__title {
  color: #0284c7;
}

@keyframes shadowRotate {
  0% {
    box-shadow: 8px 0 18px rgba(14, 165, 233, 0.35);
  }

  25% {
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
  }

  50% {
    box-shadow: -8px 0 18px rgba(14, 165, 233, 0.35);
  }

  75% {
    box-shadow: 0 -8px 18px rgba(14, 165, 233, 0.35);
  }

  100% {
    box-shadow: 8px 0 18px rgba(14, 165, 233, 0.35);
  }
}

.card__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #0b1b2b;
  letter-spacing: -0.01em;
  margin: 0;
}

.card__sub {
  color: #4b6074;
  font-size: 14px;
  margin: 0px;
}

.card--accent {
  border-color: #00c3fe;
  background: linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
  box-shadow: 0 6px 18px rgba(14, 50, 85, 0.08),
    0 2px 6px rgba(14, 50, 85, 0.05);
}

.card--accent .card__title {
  color: #0284c7;
}

.card--final {
  grid-area: final;
  justify-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 18px 24px;
  max-width: 300px;
  margin-top: -85px;
}

.card__check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.35));
}

.card__text {
  min-width: 0;
}

.card--points-right::after {
  content: "";
  position: absolute;
  left: calc(100% + 1px);
  top: 50%;
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 100px solid #00c3fe;
  transform: translate(-6px, -50%);
  opacity: 0;
  animation: arrowInRight 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--delay, 0s) + 0.15s);
  filter: drop-shadow(0 2px 3px rgba(14, 165, 233, 0.25));
  pointer-events: none;
}

.card--points-down::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 0px);
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-top: 80px solid #00c3fe;
  transform: translate(-50%, -6px);
  opacity: 0;
  animation: arrowInDown 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--delay, 0s) + 0.15s);
  filter: drop-shadow(0 2px 3px rgba(14, 165, 233, 0.25));
  pointer-events: none;
}

@keyframes arrowInRight {
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes arrowInDown {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.note {
  grid-area: note;
  background: #fbfdff;
  border: 1px dashed #cfe4f5;
  border-radius: 14px;
  padding: 16px 20px;
  opacity: 0;
  animation: fadeUp 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  margin-top: 20px;
}

.note__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1b2b;
  margin-bottom: 4px;
}

.note__body {
  color: #4b6074;
  font-size: 14px;
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeUp {
  from {
    transform: translateY(6px);
  }

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

@media (max-width: 960px) {
  .diagram {
    grid-template-columns: 1fr;
    grid-template-areas:
      "steps"
      "pipeline"
      "final"
      "note";
    gap: 40px 24px;
  }

  .steps-wrap {
    padding-right: 0;
    min-height: 0;
  }

  .step__branch,
  .spine,
  .bridge {
    display: none;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 0;
    height: auto;
    gap: 14px 22px;
  }

  .step {
    flex: 1 1 220px;
  }

  .pipeline {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .card--points-right::after {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 45px solid #00c3fe;

  }

  .card--points-down::after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #00c3fe;
  }

  .card--final {
    justify-self: end;
    max-width: 230px;
    width: 100%;
    margin-top: 0px !important;
  }

  .card {
    max-width: 240px;
    width: fit-content;
  }
}

@media (max-width: 620px) {
   .card--final , .card{
    margin: auto;
  }

  .pipeline {
    flex-direction: column;
    gap: 44px;
    padding-bottom: 0;
  }

  .card--points-right::after,
  .card--points-down::after {
    left: 50%;
    top: calc(100% + 3px);
    border-top: 42px solid #00c3fe;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 0;
    transform: translate(-50%, -6px);
    animation-name: arrowInDown;
  }

  .card {
    width: 100%;
    margin: auto;
  }

  .steps {
    flex-direction: column;
    padding: 0 !important;
    align-content: center;
  }

  .step {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   Graph css end
   ============================================================ */


/* COMMON CSS  */

.btn-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  height: 100% !important;
}

.btn-shadow span.kt-btn-inner-text {
  color: white !important;
}

.bottom-border>.kt-row-column-wrap {
  border-bottom: 1.5px solid #44424241 !important;
}

.kb-button {
  border-radius: 50px !important;
}

/* HOME PAGE ALL CSS START FROM HERE  */
li.bg-blue {
  background: var(--primary-color);
  border-radius: 40px;
  padding: 2px 16px !important;
}

.stroke-h2 {
  font-size: 76px;
  line-height: 86px;
  font-weight: 500;
}

.stroke-h2 span,
.stroke-h2 .kt-highlight {
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke-width: 1px !important;
  -webkit-text-stroke-color: #333333 !important;
}

p.home-usp-num {
  font-size: 36px;
  line-height: 46px;
  margin-top: auto;
  font-weight: 600;
  color: #ddddde;
  transition:
    all 0.5s ease-in-out;
}

.about-us-cards:hover p.home-usp-num {
  color: #6B7280 !important;
  transition:
    all 0.5s ease-in-out;
}

/* HOME PAGE ALL CSS ENDS HERE  */

/* ABOUT US CSS START FROM HERE  */

.inner-box-shadow>.kt-inside-inner-col {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
}

figure.about-usp-icon {
  width: 50px;
  height: 50px;
  /* background: red; */
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 10px;
}

figure.review-plus-bg {
  width: 64px;
  height: 64px;
  background: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}

figure.bg-round {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}

.bg-round {
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: #374151;
}

.bg-light-blue {
  background: #eff6ff;
  /* THIS BG COLOR IS USED IN KONTAKT PAGE MAIL ICON */
}

.bg-light-orange {
  background: #fff7ed;
  /* THIS BG COLOR IS USED IN KONTAKT PAGE location ICON */
}

figure.blue-tick {
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
  background: var(--primary-color);
}

.about-usp-icon.about-icon-1 {
  background: #eff6ff;
}

.about-usp-icon.about-icon-2 {
  background: #dcfce7;
}

.about-usp-icon.about-icon-3 {
  background: #f3e8ff;
}

.about-usp-icon.about-icon-4 {
  background: #ffedd5;
}

/* ABOUT US CSS ENDS HERE  */

.flex-equal>.kt-inside-inner-col>.wp-block-kadence-column {
  flex: 1 !important;
  display: flex !important;
}

.flex-equal>.kt-inside-inner-col>.wp-block-kadence-column>.kt-inside-inner-col {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* KONTAKT PAGE CSS START FROM HERE  */

figure.email-box-arrow img {
  position: absolute;
  right: 25px;
}

/* CONTACT FORM CSS START FROM HERE  */

div.wpforms-container-full:not(:empty) {
  margin: unset;
}

/* .wpforms-container .wpforms-field{
    padding-bottom: 0 !important;
} */

.common-form .wpforms-form .wpforms-field-container input,
select#wpforms-310-field_52 {
  height: 55px;
}

.common-form .wpforms-form .wpforms-field-container input,
textarea#wpforms-310-field_30,
select#wpforms-310-field_52,
.common-form .wpforms-uploader.dz-clickable {
  border-radius: 10px !important;
  /* height: 55px !important; */
  background-color: #e5e7eb42 !important;
  color: #adaebc;
  border: 1px solid #e5e7eba4 !important;
}

button#wpforms-submit-310 {
  width: 100%;
  height: 55px;
  border-radius: 10px;
  background: var(--text);
}

button#wpforms-submit-310:hover {
  background: var(--primary-color);
}

h2.form-h2 {
  margin: 0px !important;
}

div#wpforms-310-field_50-container {
  padding-top: 0px !important;
}

/* CONTACT FORM CSS ENDS  */

/* KONTACT PAGE CSS ENDS  */

@media only screen and (max-width: 1400px) {
  .stroke-h2 {
    font-size: 46px;
    line-height: 56px;
  }
}

@media only screen and (max-width: 1024px) {
  .stroke-h2 {
    font-size: 36px;
    line-height: 46px;
  }
}

@media only screen and (max-width: 766px) {
  .stroke-h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* GurleenSingh css */
.forms-cards, .fp-card {
  background: linear-gradient(138.9deg, #00bfff -233.45%, #ffffff 102.06%);
  border-radius: 10px;
  position: relative;
  transition: all .6s ease-in-out;

  /* FIXED */
}
.fp-card{
    box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.forms-cards::before , .fp-card::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(200.92deg,
      rgba(0, 191, 255, 0.4) -136.17%,
      #ffffff 62.96%);
  opacity: 0;
  transition: opacity .6s ease-in-out;
}

.forms-cards:hover::before , .fp-card:hover::before{
  transition: opacity .6s ease-in-out;
  opacity: 1;
}

.fp-card:hover{
    background: transparent !important;
  transition: all .6s ease-in-out;

}
.fp-card::before{
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 10px;

}
.forms-cards .kt-inside-inner-col {
  height: 100%;
}


.about-us-cards {
  transition: all 0.5s ease-in-out;

  transform: translateY(0px) !important;
}

.about-us-cards:hover {
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-10px) !important;
  transition:
    all 0.5s ease-in-out;

  border-radius: 10px;
}

.services-outer-cards {
  padding: 0px 70px !important;
}

@media (max-width: 1024px) {
  .services-outer-cards {
    padding: 0px 40px !important;
  }
}

.wc-block-mini-cart.wp-block-woocommerce-mini-cart {
  visibility: visible !important;
}

@media (max-width: 768px) {
  .hero-slider h1 {
    line-height: 38px !important;
  }

  .testimonial-cards-new {
    max-width: calc(100vw - 20px) !important;
  }

  .kb-splide .splide__slide {
    width: auto !important;
  }

  .services-outer-cards {
    padding: 0px 20px !important;
  }

  .services-outer-cards .product-container,
  .services-outer-cards .wc-block-product-template__responsive.columns-4 {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .services-outer-cards {
    padding: 0px 10px !important;
  }
}

.protection-blur-card {
  backdrop-filter: blur(37px);
  background: #FFFFFF2B;
  border-radius: 10px;
  padding: 10px 30px;
  width: 380px;
}

.graph-bold-text {
  font-weight: 800 !important;
  margin-right: 20px;
}

.graph-text:first-child {
  margin-left: 20px;
  height: 30px;
  width: 8px;

}

.graph-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.faq-outer-container {
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #44424280;
  padding: 40px 50px;
}

.faq-outer-container .wp-block-accordion-heading__toggle {
  font-size: 18px;
  padding: 15px 0;
}

.faq-outer-container .wp-block-accordion-item {
  border-bottom: 1px solid #44424280;

}

.faq-outer-container .wp-block-accordion-item:last-child {
  border-bottom: unset !important;

}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none !important;
}

.faq-outer-container p {
  margin-top: 0px !important;
  font-size: 16px !important;
}

.testimonial-cards-new {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  user-select: none;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: start !important;

}

.testimonial-cards-new:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 25px 0px #0000001A;
}

.testimonial-cards-new .kt-testimonial-meta-wrap {
  justify-content: flex-start !important;
}

.testimonial-cards-new .kt-svg-testimonial-global-icon-wrap {
  position: absolute;
  right: 0;
}

.banner-image,
.banner-image figure,
.banner-image figure img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* .testimonial-cards-new .kt-testimonial-media-inner-wrap {
  width: 40px !important;
}

@media (max-width: 768px) {
  .testimonial-cards-new .kt-testimonial-media-inner-wrap {
    width: 32px !important;
  }
}

@media (max-width: 480px) {
  .testimonial-cards-new .kt-testimonial-media-inner-wrap {
    width: 28px !important;
  }
} */

.hero-video {
  border-radius: 10px 10px 0 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider span {
  height: fit-content;
}

.hero-slider h1 {
  line-height: 64px;
}

/* Hero Text */
#hero-text {
  font-size: 52px;
  line-height: 56px;
  font-family: 'Poppins custom', sans-serif;
  font-weight: 700;
  color: #00c3fe;
  transition: transform 0.8s ease, opacity 0.4s ease;
  display: inline-block;
  margin: 0;
}


.chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.chart-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.chart-title {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: -50px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.chart-container {
  position: relative;
  width: 480px;
  height: 480px;
}

.chart-container svg {
  width: 100%;
  height: 100%;
}

.donut-segment {
  transition: stroke-width 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  transform-origin: 240px 240px;
}

.donut-segment:hover {
  filter: drop-shadow(0 0 10px rgba(51, 187, 255, 0.4));
}

.chart-label {
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
}

.chart-label .name {
  fill: #000000;
  font-size: 14px;
  font-weight: 400;
}

.chart-label .value {
  fill: #000000;
  font-size: 15px;
  font-weight: 700;
}

.tooltip {
  position: absolute;
  background: #1C2836;
  border: 1px solid #2A3A4E;
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
}

.tooltip.show {
  opacity: 1;
}

/* ===== Step Cards Section ===== */
#step-card-outer {
  padding: 0 60px !important;
}

/* --- Step Column --- */
.step-card-lines {
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 3;
}

/* --- Gray Base Line --- */
.step-card-lines::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(68, 66, 66, 0.3);
  top: 20px;
  z-index: 1;
}

/* --- Number Circle --- */
.step-card-lines .kt-inside-inner-col .step-number {
  position: relative;
  z-index: 5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  font-weight: 700;
  background: white;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* --- Circle Active State (blue) --- */
.step-card-lines .kt-inside-inner-col .step-number.step-active {
  background: var(--primary-color, #1ea7c7) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(30, 167, 199, 0.4);
  transition: background 0.4s ease, color 0.3s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.step-card-lines .kt-inside-inner-col .step-number.step-active.pulse {
  animation: circlePulse 0.5s ease;
}

/* --- Circle Sky-Blue State --- */
.step-card-lines .kt-inside-inner-col .step-number.step-skyblue {
  background: #00c6ff !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(0, 198, 255, 0.45);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

/* --- Traveling Dot --- */
.step-traveler {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color, #1ea7c7);
  box-shadow:
    0 0 10px rgba(30, 167, 199, 0.6),
    0 0 25px rgba(30, 167, 199, 0.3);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.step-traveler.visible {
  opacity: 1;
}

/* --- Title & Description --- */

/* --- Keyframes --- */
@keyframes circlePulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1);
  }

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

@keyframes dotGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(30, 167, 199, 0.6), 0 0 25px rgba(30, 167, 199, 0.3);
  }

  50% {
    box-shadow: 0 0 16px rgba(30, 167, 199, 0.8), 0 0 35px rgba(30, 167, 199, 0.5);
  }
}

.step-traveler.visible {
  animation: dotGlow 0.8s ease-in-out infinite;
}

@media (max-width: 1024px) {
  #hero-text {
    font-size: 42px !important;
  }

}

/* ===== Responsive ===== */
@media (max-width: 767px) {

  #hero-text {
    font-size: 32px !important;
  }

  #step-card-outer {
    padding: 0 20px !important;
  }

  .step-card-lines::before {
    display: none;
  }

  .step-traveler {
    display: none;
  }


}



/* --- Grid Layout --- */


/* --- Card Container --- */
.all-products-home .wc-block-product {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.all-products-home .wc-block-product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}


.all-products-home .wc-block-components-product-image {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



/* --- Title --- */
.all-products-home .wp-block-post-title {
  text-align: left !important;
  margin-bottom: 8px !important;
  width: 100%;
}

.all-products-home .wp-block-post-title a {
  color: #1a2332 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Price: hide only the amount, keep badges --- */
.all-products-home .wp-block-woocommerce-product-price {
  text-align: left !important;
  width: 100%;
  margin-bottom: 12px;
}

.all-products-home .wc-block-components-product-price {
  display: none !important;
}

/* --- Badges area — using price block::after for time/secure badges --- */
.all-products-home .wp-block-woocommerce-product-price::after {
  content: "🤖 AI-checked";
  display: block;
  margin-top: 12px;
  background: #DBEAFE;
  border-radius: 20px;
  font-size: 12px;
  color: #6b7b8d;
  letter-spacing: 0.02em;
  width: fit-content;
  padding: 2px 5px;
}

.all-products-home .wp-block-woocommerce-product-price::before {
  content: "⏱ 5-10 min  |  🔒 Secure";
  display: block;
  margin-top: 12px;
  background: #F3F4F6;
  border-radius: 20px;
  font-size: 12px;
  color: #374151;
  letter-spacing: 0.02em;
  width: fit-content;
  padding: 2px 5px;
}

/* --- Short Description --- */
.all-products-home .hp-product-short-desc {
  color: #6b7b8d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 12px 0;
  text-align: left;
  width: 100%;
}

/* --- CTA Button --- */
.all-products-home .wp-block-woocommerce-product-button,
.all-products-home>li>a.button[data-block-name="woocommerce/product-button"] {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  /*   background: linear-gradient(180deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%); */

}

.all-products-home .wc-block-components-product-button__button,
.all-products-home .wp-block-button__link,
.all-products-home a.button[data-block-name="woocommerce/product-button"] {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.all-products-home .wc-block-components-product-button__button:hover,
.all-products-home .wp-block-button__link:hover,
.all-products-home a.button[data-block-name="woocommerce/product-button"]:hover {
  background: #0091BC !important;
  box-shadow: 0 10px 15px rgba(0, 188, 212, 0.3) !important;
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* hidden by default */
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scrollTop:hover {
  background: #00c3fe;
}

.border-none .kt-blocks-accordion-header {
  border: unset !important;
}

.header-menu-main #menu-menu {
  display: flex;
  gap: 20px;
  list-style: none;

}

.header-menu-main #menu-menu .menu-item-object-page.current-menu-item {
  color: #00c3fe !important;
}

.header-menu-main #menu-menu li ::marker {
  display: none;
}

.header-menu-main #menu-menu li a,
.header-menu-main #menu-menu .menu-item-object-page {
  color: #4B5563 !important;

}

.wp-container-core-columns-is-layout-9d6595d7,
.kb-imagec05bfb-9a {
  margin-bottom: 0px;
}

/* ===== Mobile Menu Inner Styling ===== */


#mymenu #menu-header-menu-1 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
  width: 100%;
}

#mymenu #menu-header-menu-1 li {
  width: 100%;
  list-style: none;
  border-bottom: 1px solid #e5e7eb;
}

#mymenu #menu-header-menu-1 li:last-child {
  border-bottom: none;
}

#mymenu #menu-header-menu-1 li a {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #4B5563 !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
}

#mymenu #menu-header-menu-1 li a:hover,
#mymenu #menu-header-menu-1 li a:focus {
  color: #00c3fe !important;
  background: rgba(0, 195, 254, 0.08);
  padding-left: 28px;
}

#mymenu #menu-header-menu-1 li.current-menu-item>a,
#mymenu #menu-header-menu-1 li.current_page_item>a {
  color: #00c3fe !important;
  font-weight: 600;
  background: rgba(0, 195, 254, 0.06);
  border-left: 3px solid #00c3fe;
}

.wp-block-woocommerce-cart {
  background-color: #F8F8F7 !important;
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-text-input.is-active label {
  color: #6b7280db !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
  opacity: 0;
}

.wc-block-components-sidebar {
  padding-left: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  border-radius: 16px !important;
}

.product-price-display del .woocommerce-Price-amount.amount,
.product-price-display del {
  font-size: 18px !important;
  color: gray;
}

.product-price-display ins {
  text-decoration: none !important;
}

.wc-block-components-product-image a {
  height: 100% !important;
  width: 100% !important;
}

.woocommerce-products-header__title.page-title {
  display: none;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 0 !important;
  font-size: 18px;
}

.gtranslate_wrapper .gt_float_switcher,
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  box-shadow: unset !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent) !important;
}

.wc-gzd-checkout .is-large .wc-gzd-checkout-submit .wc-block-checkout__actions {
  padding: 0 !important;
  margin: 0 !important;
}

.wc-block-mini-cart__button .wc-block-mini-cart__icon {
  width: 2.5em !important;
  height: 2.5em !important;
  color: #4B5563 !important;

}

span:where(.wc-block-mini-cart__badge) {
  background: #4B5563 !important;

}

.wc-block-components-radio-control .wc-block-components-radio-control__input {
  opacity: 0;
}

.wc-block-mini-cart__badge {
  color: white !important;
}

.woocommerce-notices-wrapper {
  max-width: 1240px;
  margin: auto;
}

.woocommerce-notices-wrapper .woocommerce-message::before {
  top: 1.3em !important;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-error {
  border-top-color: #eff6ff00 !important;
  border-radius: 20px;
  background-color: #eff6ff !important;
}

.woocommerce-notices-wrapper .button.wc-forward {
  background: #00c3fe !important;
  color: white !important;
  border-radius: 50px !important;
}

@media (max-width: 768px) {

  .woocommerce-message {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 15px 20px;
  }
}

.wp-block-woocommerce-empty-cart-block {
  padding-top: 0 !important
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
  padding-top: 20px;
  background: white !important;
  border: 1px solid #e8ecf1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {

  flex-wrap: nowrap !important;
  gap: 5px;
}

.wp-block-woocommerce-checkout-order-summary-block .coupon .wc-block-components-totals-coupon,
.wc-gzd-checkout .wc-block-components-order-summary,
.wc-gzd-checkout .wc-block-components-order-summary.is-large,
.sf-breadcrumb {
  padding-left: 0px !important;
  padding-right: 0px !important;
}


.wc-gzd-checkout-has-custom-submit .wc-block-components-checkout-step__heading {
  margin-bottom: 0 !important;
}

.wp-block-woocommerce-checkout-order-summary-totals-block {
  padding-bottom: 0 !important;
}

.wp-block-accordion-heading__toggle-title a {
  font-weight: bold;
  color: #00c3fe;
}

.page-id-10 #content{
   max-width: 1300px; 
   margin: auto;
}