 
 @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-scroll-up {
  animation: scroll-up 15s linear infinite;
  will-change: transform;
}

.animate-scroll-down {
  animation: scroll-down 15s linear infinite;
  will-change: transform;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.animate-scroll-up {
  animation: scrollUp 10s linear infinite;
}
.custom-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .custom-scroll::-webkit-scrollbar-track {
    background: #e5e7eb;
  }

  .custom-scroll::-webkit-scrollbar-thumb {
    background: #4633F3;
    border-radius: 10px;
  }

  /* Firefox */
  .custom-scroll {
    scrollbar-color: #000    #e5e7eb;
    scrollbar-width: thin;
  }
  /* .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: #000 !important;
  } */
  .gradient-text {
  background: linear-gradient(89.7deg, #FE743C 10.14%, #CE3EC9 89.33%, #B29DE6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-parent > div{ transition: 0.5s;}
.steps-parent > div:hover{ transform:rotate(0deg); top: 0px; }
.steps-parent > .step-one:hover + .step-two{  margin-left: 30px !important;  margin-right: -30px !important; }
.steps-parent:has(.step-two:hover) > .step-one { margin-right: 30px !important; margin-left: -30px !important; }
.steps-parent:has(.step-three:hover) > .step-two { margin-right: 30px !important; margin-left: -30px !important; }
.steps-parent:has(.step-four:hover) > .step-three { margin-right: 30px !important; margin-left: -30px !important; }
.steps-parent > .step-two:hover + .step-three{  margin-left: 50px !important;  margin-right: -50px !important; }
.steps-parent > .step-three:hover + .step-two{  margin-left: -50px !important;  margin-right: 50px !important;}
.steps-parent > .step-three:hover + .step-four{  margin-left: 30px !important;  margin-right: -30px !important;}
.steps-parent > .step-four:hover + .step-three{  margin-left: -50px !important;  margin-right: 50px !important;}



/* Main Section */
.gcb-calculator {
  background: #fff;
  padding: 50px 20px;
}

.gcb-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
 background-color: #E7F4FF;
  border-radius: 24px;
  padding: 42px 20px;
}

@media (min-width: 768px) {
  .gcb-calculator {
    padding: 30px 40px 40px 20px;
  }

  .gcb-wrap {
    padding: 50px 40px;
  }
}

@media (min-width: 1024px) {
  .gcb-wrap {
    padding: 50px 45px;
  }
}

/* Heading */
.gcb-header {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.gcb-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.gcb-header h2 {
  margin: 18px 0 14px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #000;
  font-weight: 600;
}

.gcb-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #383F53;
  font-weight: 400;
}

/* Grid */
.gcb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: start;
}

@media (max-width: 900px) {
  .gcb-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.gcb-card {
  background: var(--gcb-card);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--gcb-shadow);
  transition: all 0.25s ease;
  background-color: #fff;
}

.gcb-card:hover {
  box-shadow: var(--gcb-shadow-hover);
}

.gcb-inputs,
.gcb-results {
  padding: 28px;
}

@media (max-width: 640px) {
  .gcb-inputs,
  .gcb-results {
    padding: 20px;
  }
}

/* Card Typography */
.gcb-card-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.gcb-card-copy {
  margin: 0 0 24px;
  color: #383F53;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* Form Fields */
.gcb-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .gcb-field-grid {
    grid-template-columns: 1fr;
  }
}

.gcb-field {
  display: grid;
  gap: 8px;
}

.gcb-field label,
.gcb-slider-label {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* Inputs */
.gcb-input-shell {
  position: relative;
}

.gcb-prefix,
.gcb-suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6B7280;
  font-size: 14px;
  pointer-events: none;
}

.gcb-prefix {
  left: 14px;
}

.gcb-suffix {
  right: 14px;
}

.gcb-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #DCE7F2;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  padding: 12px 16px;
  transition: all 0.2s ease;
}

.gcb-input.with-prefix {
  padding-left: 34px;
}

.gcb-input.with-suffix {
  padding-right: 40px;
}

.gcb-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Tabs */
.gcb-mode {
  margin-top: 22px;
}

.gcb-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #F3F6FA;
  border-radius: 12px;
  padding: 6px;
}

.gcb-tab {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.gcb-tab[aria-selected="true"] {
  background: #4f46e5;
  color: #fff;
}

/* Slider */
.gcb-slider-box {
  margin-top: 24px;
  padding: 20px;
  background: #F8FBFF;
  border-radius: 16px;
  border: 1px solid #DCE7F2;
}

.gcb-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.gcb-lift-value {
  color: #4f46e5;
  font-size: 28px;
  font-weight: 700;
}

.gcb-range {
  width: 100%;
  accent-color: #4f46e5;
}

.gcb-hints {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #6B7280;
  font-size: 12px;
  font-weight: 500;
}

/* Results */
.gcb-summary {
  display: grid;
  gap: 14px;
}

.gcb-main-result {
  padding: 26px;
  border-radius: 18px;
background: linear-gradient(90deg, #FE743C 0%, #CE3EC9 50%, #B29DE6 100%);
  color: #fff;
}

.gcb-main-result span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

.gcb-main-result strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1;
  font-weight: 700;
}

/* Metrics */
.gcb-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 640px) {
  .gcb-metric-grid {
    grid-template-columns: 1fr;
  }
}

.gcb-metric {
  min-height: 110px;
  padding: 18px;
  border-radius: 16px;
  background: #F8FBFF;
  border: 1px solid #E4EDF6;
}

.gcb-metric span {
  display: block;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.gcb-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

/* CTA */
.gcb-cta {
  display: grid;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.gcb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #4f46e5;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.gcb-button:hover {
  transform: translateY(-1px);
  background: #4338ca;
}

.gcb-note {
  flex: 1 1 220px;
  color: #383F53;
    font-size: 15px;
  line-height: 1.6;
}

/* Bottom Sources */
.gcb-source-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .gcb-source-list {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

@media (max-width: 640px) {
  .gcb-source-list {
    grid-template-columns: 1fr;
  }
}

.gcb-source {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  color: #111827;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

/* Error */
.gcb-error {
  margin-top: 14px;
  color: #DC2626;
  font-size: 13px;
  font-weight: 500;
}
.hide-contents {
  display: none;
}

.group:hover .hide-contents {
  display: block;
}
.our-ser-box > div{  position: relative; height: fit-content; }

.our-ser-box > div:hover{ border-radius: 0px 0px 15px 15px; border-top: 0px !imoportant; }

.our-ser-box > div:before {
    content: "";
    background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    width: 100%;
    height: 13px;
    border-radius: 10px 10px 0px 0px;
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    transition: 0.7s;
}

.our-ser-box > div:hover:before{ top: -14px; background-image: linear-gradient(90deg, #FE743C 0%, #CE3EC9 50%, #B29DE6 100%);  }


