/*
==================================================
BTS SOFTWARE CSS - CLEANED V2
- Duplicate selector blocks removed
- Formatting cleaned
- Existing classes preserved
==================================================
*/

/* ==================================================
   BTS SOFTWARE SERVICE PAGE
   Uses the same BTS palette as the home page
================================================== */

:root {
  --bts-blue: #4A74E8;
  --bts-blue-dark: #3763D8;
  --bts-soft: #F0F3FA;
  --bts-soft-2: #F5F7FB;
  --bts-text: #626262;
  --bts-muted: #7A7A7A;
  --bts-dark: #222A35;
}

/* ==================================================
   HERO
================================================== */

.service-hero {
  position: relative;

  min-height: 690px;

  color: #ffffff;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 76% 45%,
      rgba(255, 255, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #B5C9E8 0%,
      #94AFD8 52%,
      #7D9CCB 100%
    );
}

/* Soft overlay */

.service-hero-overlay {

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:

/* Soft overlay */

.service-hero-overlay {

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:

 background: linear-gradient(
    90deg,
    rgba(49, 66, 105, 0.48) 0%,
    rgba(67, 84, 126, 0.30) 55%,
    rgba(45, 58, 96, 0.18) 100%
  ) !important;
}


}

}

/* ==================================================
   HERO LAYOUT
================================================== */
.service-hero-shell {
  position: relative;
  z-index: 2;

  width: calc(100% - 180px);
  max-width: 1120px;

  margin: 0 auto;

  padding: 105px 0 115px;

  display: grid;

  grid-template-columns: 1.08fr 0.92fr;

  gap: 75px;

  align-items: center;
}

.service-hero-copy h1 {
  margin: 0 0 28px;

  max-width: 590px;

  color: #ffffff;

  font-size: clamp(46px, 3.6vw, 60px);

  line-height: 1.06;

  font-weight: 500;

  letter-spacing: -0.04em;
}

/* ==================================================
   EYEBROW / KICKER
================================================== */

.service-eyebrow,
.service-kicker {
  display: inline-block;

  /* Slightly stronger blue */
  color: #3763D8;

  font-size: 13px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

/* ==================================================
   MAIN HEADING
================================================== */

.service-hero-copy h1 {
  margin: 22px 0 24px;

  max-width: 720px;

  color: #ffffff;

  /* Slightly smaller and more balanced */
  font-size: clamp(44px, 4.2vw, 68px);

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -0.04em;
}

/* ==================================================
   HERO COPY
================================================== */

.service-hero-copy p {
  max-width: 610px;

  margin: 0;

  color: rgba(255, 255, 255, 0.92);

  font-size: 18px;

  line-height: 1.7;
}

/* ==================================================
   HERO ACTIONS
================================================== */

.service-hero-actions {
  /* Pulled slightly closer to the paragraph */
  margin-top: 26px;

  display: flex;

  align-items: center;

  gap: 26px;
}

/* ==================================================
   EXPLORE RANGE LINK
================================================== */

.service-text-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #ffffff;

  font-size: 15px;

  /* Slightly stronger */
  font-weight: 600;

  transition:
    gap 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-text-link:hover {
  gap: 14px;

  color: #ffffff;

  transform: translateX(2px);
}

/* ==================================================
   PRODUCT VISUAL PANEL
================================================== */

.service-hero-visual {
  position: relative;

  width: 100%;
  max-width: 455px;

  min-height: 420px;

  justify-self: end;

  border-radius: 34px;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(255, 255, 255, 0.98);

  box-shadow:
    0 22px 52px rgba(55, 70, 105, 0.11);

  overflow: hidden;
}

/* Soft BTS glow behind products */

.service-hero-visual::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(74, 116, 232, 0.09),
      transparent 44%
    );
}

/* ==================================================
   DEVICES
================================================== */

.service-device {
  position: absolute;

  display: flex;

  align-items: center;

  justify-content: center;

  transition:
    transform 0.55s cubic-bezier(.22,.61,.36,1);
}

.service-device img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 20px rgba(45, 55, 80, 0.12)
    );
}

/* ==================================================
   LEFT DEVICE
================================================== */

.service-device-one {
  width: 190px;

  height: 340px;

  left: 8%;

  bottom: 34px;

  transform: rotate(-4deg);
}

/* ==================================================
   CENTRE DEVICE
================================================== */

.service-device-two {
  width: 210px;

  height: 385px;

  left: 35%;

  bottom: 44px;

  z-index: 3;
}

/* ==================================================
   RIGHT DEVICE
================================================== */

.service-device-three {
  width: 180px;

  height: 320px;

  right: 7%;

  bottom: 45px;

  transform: rotate(4deg);
}

/* ==================================================
   PRODUCT HOVER
================================================== */

.service-hero-visual:hover .service-device-one {
  transform:
    translateY(-10px)
    rotate(-6deg);
}

.service-hero-visual:hover .service-device-two {
  transform:
    translateY(-14px)
    scale(1.03);
}

.service-hero-visual:hover .service-device-three {
  transform:
    translateY(-9px)
    rotate(6deg);
}

/* ==================================================
   SHARED INNER PAGE SHELLS
================================================== */

.service-shell {
  width: calc(100% - 180px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.service-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--bts-blue);
}

.service-section-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.service-section-heading .service-line {
  margin-left: auto;
  margin-right: auto;
}

.service-section-heading h2,
.service-intro-heading h2,
.support-strip-inner h2 {
  color: var(--bts-text);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-section-heading h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.08;
}

.service-section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bts-muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-section-heading.compact {
  margin-bottom: 45px;
}

/* ==================================================
   INTRO
================================================== */

.service-intro {
  padding: 110px 0;
  background: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.service-intro-heading h2 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
}

.service-intro-copy {
  padding-top: 14px;
}

.service-intro-copy p {
  margin: 0 0 25px;
  color: var(--bts-muted);
  font-size: 16px;
  line-height: 1.8;
}

.service-intro-copy .service-lead {
  color: var(--bts-text);
  font-size: 21px;
  line-height: 1.65;
}

/* ==================================================
   BENEFITS
================================================== */

/* ==================================================
   BENEFITS
================================================== */

.service-benefits {
  padding: 100px 0 110px;

  background: var(--bts-soft);
}

/* ==================================================
   BENEFIT GRID
================================================== */

.benefit-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}

/* ==================================================
   BENEFIT CARD
================================================== */

.benefit-card {
  position: relative;

  min-height: 285px;

  padding: 36px 32px 34px;

  background: #ffffff;

  border:
    1px solid rgba(74, 116, 232, 0.08);

  border-radius: 24px;

  box-shadow:
    0 14px 35px rgba(35, 45, 70, 0.06);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Small BTS blue line appears on hover */

.benefit-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  transform: translateX(-50%);

  background: #4A74E8;

  border-radius: 0 0 8px 8px;

  transition:
    width 0.45s cubic-bezier(.22,.61,.36,1);
}

.benefit-card:hover::before {
  width: 70px;
}

/* Card hover */

.benefit-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(74, 116, 232, 0.20);

  box-shadow:
    0 24px 46px rgba(35, 45, 70, 0.11);
}

/* ==================================================
   ICON
================================================== */

.benefit-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 26px;

  display: grid;

  place-items: center;

  color: #4A74E8;

  background: #EEF3FF;

  border-radius: 18px;

  font-size: 21px;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform:
    translateY(-4px)
    scale(1.05);

  background: #E8EEFF;
}

/* ==================================================
   CARD TITLE
================================================== */

.benefit-card h3 {
  margin: 0 0 13px;

  color: #626262;

  font-size: 20px;

  line-height: 1.3;

  font-weight: 500;

  transition:
    color 0.3s ease;
}

.benefit-card:hover h3 {
  color: #4A74E8;
}

/* ==================================================
   CARD COPY
================================================== */

.benefit-card p {
  margin: 0;

  color: #707070;

  font-size: 15px;

  line-height: 1.65;

  font-weight: 400;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

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

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

}

/* ==================================================
   PROCESS
================================================== */

.service-process {
  padding: 105px 0;
  background: #ffffff;
}

/* ==================================================
   PROCESS GRID
================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ==================================================
   PROCESS CARD
================================================== */

.process-step {
  position: relative;

  min-height: 220px;

  padding: 42px 38px 38px;

  background: #ffffff;

  border: 1px solid #E8ECF4;
  border-radius: 24px;

  box-shadow:
    0 10px 26px rgba(35, 45, 70, 0.025);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* ==================================================
   BLUE LINE
================================================== */

.process-step::before {
  content: "";

  position: absolute;

  top: 0;
  left: 38px;

  width: 0;
  height: 4px;

  background: #4A74E8;

  border-radius: 0 0 6px 6px;

  transition:
    width 0.5s cubic-bezier(.22,.61,.36,1);
}

/* ==================================================
   CARD HOVER
================================================== */

.process-step:hover {
  transform: translateY(-5px);

  border-color:
    rgba(74, 116, 232, 0.18);

  box-shadow:
    0 18px 38px rgba(35, 45, 70, 0.08);
}

.process-step:hover::before {
  width: 72px;
}

/* ==================================================
   STEP NUMBER
================================================== */

.process-number {
  display: inline-block;

  margin-bottom: 28px;

  color: #4A74E8;

  font-size: 13px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.12em;

  transition:
    transform 0.3s ease;
}

.process-step:hover .process-number {
  transform: translateY(-2px);
}

/* ==================================================
   TITLE
================================================== */

.process-step h3 {
  margin: 0 0 12px;

  color: #626262;

  font-size: 22px;
  line-height: 1.3;

  font-weight: 500;

  transition:
    color 0.3s ease;
}

.process-step:hover h3 {
  color: #4A74E8;
}

/* ==================================================
   COPY
================================================== */

.process-step p {
  margin: 0;

  max-width: 340px;

  color: #707070;

  font-size: 15px;
  line-height: 1.7;

  font-weight: 400;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

}

/* ==================================================
   PRODUCT RANGE
================================================== */

.facial-range {
  padding: 110px 0 120px;
  background: var(--bts-soft-2);
}

.range-filters {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 52px;
  padding: 6px;
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid #E9EDF5;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(35, 45, 70, 0.05);
}

.range-filter {
  border: 0;
  padding: 12px 20px;
  border-radius: 13px;
  background: transparent;
  color: var(--bts-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.range-filter:hover,
.range-filter.active {
  color: #fff;
  background: var(--bts-blue);
  box-shadow: 0 8px 18px rgba(74, 116, 232, 0.22);
}

.facial-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.facial-product-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
}

.facial-product-card[hidden] {
  display: none !important;
}

.facial-product-image {
  position: relative;

  width: 100%;

  height: 335px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 22px;

  border-radius: 24px;

  background: #EEF1F7;

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.facial-product-image img {
  max-width: 92%;

  max-height: 295px;

  width: auto;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 14px 20px rgba(30,40,60,0.11));

  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1);
}

.facial-product-card:hover .facial-product-image {
  transform: translateY(-7px);
  background: #E9EEF8;
  box-shadow: 0 24px 42px rgba(35,45,70,0.10);
}

.facial-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 10px 0;
}

.product-type {
  margin-bottom: 10px;
  color: var(--bts-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facial-product-content h3 {
  margin: 0 0 17px;
  color: var(--bts-text);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.facial-product-content ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.facial-product-content li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 20px;
  color: var(--bts-muted);
  font-size: 13px;
  line-height: 1.5;
}

.facial-product-content li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bts-blue);
}

.product-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--bts-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(74,116,232,0.18);
  transition: gap 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-read-more:hover {
  gap: 12px;
  transform: translateY(-2px);
  background: var(--bts-blue-dark);
  box-shadow: 0 12px 24px rgba(74,116,232,0.25);
}

/* ==================================================
   SUPPORT STRIP
================================================== */

.service-support-strip {
  padding: 74px 0;
  background: #fff;
}

.support-strip-inner {
  padding: 48px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-radius: 28px;
  background: var(--bts-soft);
}

.support-strip-inner h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.support-strip-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 18px;
  background: var(--bts-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(74,116,232,0.22);
  transition: gap 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.support-strip-button:hover {
  gap: 13px;
  transform: translateY(-2px);
  background: var(--bts-blue-dark);
}

/* ==========================
   BUSINESS PARTNERS SECTION
========================== */


.partners-section {

    background: #ffffff;

    padding: 90px 0 160px !important;

    overflow: hidden;

}


/* Main container */

.partners-container {

    width: calc(100% - 160px) !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

}



/* Heading */

.partners-header {

    max-width: 900px !important;

    margin: 0 auto 70px !important;

    text-align: center !important;

}



.partners-header .section-label {

    display: block;

    margin-bottom: 20px;

    color: #5B73E8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}



.partners-header h2 {

    margin: 0 0 25px !important;

    font-size: 52px !important;

    line-height: 1.1 !important;

    font-weight: 400 !important;

    letter-spacing: -0.04em !important;

    color: #252B3A !important;

}



.partners-header p {

    margin: 0 auto !important;

    max-width: 800px !important;

    font-size: 18px;

    line-height: 1.7;

    color: #667085;

}



/* Logo scrolling wrapper */

.partners-slider {

    width: 100%;

    overflow: hidden;

    margin-top: 20px !important;

    padding-bottom: 100px !important;   /* space below logos */

}



/* Moving logos */

.partners-track {

    display: flex;

    align-items: center;

    gap: 90px;

    width: max-content;

    animation: partnerScroll 35s linear infinite;

}



.partners-track img {

    height: 55px;

    width: auto;

    max-width: 160px;

    object-fit: contain;

    opacity: .55;

    filter: grayscale(100%);

    transition: .3s ease;

}



.partners-track img:hover {

    opacity: 1;

    filter: grayscale(0);

}



@keyframes partnerScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* ==================================================
   RESPONSIVE
================================================== */

/* ==================================================
   TABLET / SMALL DESKTOP
================================================== */

@media (max-width: 1100px) {

  .service-hero-shell {
    width: calc(100% - 60px);

    grid-template-columns: 1fr;

    gap: 55px;

    padding-top: 70px;
  }

  .service-hero-copy {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
  }

  .service-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-hero-actions {
    justify-content: center;
  }

  .service-hero-visual {
    width: min(760px, 100%);

    margin: 0 auto;
  }

  .service-intro-grid {
    gap: 60px;
  }

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

  .facial-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 800px) {

  .service-shell,
  .service-hero-shell {
    width: calc(100% - 36px);
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero-copy h1 {
    font-size: 46px;
  }

  .service-hero-visual {
    min-height: 390px;
  }

  .service-device-one {
    width: 145px;
    height: 270px;
  }

  .service-device-two {
    width: 160px;
    height: 305px;
  }

  .service-device-three {
    width: 135px;
    height: 250px;
  }

  .service-intro-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-intro-grid {
    gap: 40px;
  }

  .range-filters {
    width: 100%;

    overflow-x: auto;

    justify-content: flex-start;
  }

  .range-filter {
    white-space: nowrap;
  }

  .support-strip-inner {
    padding: 38px 32px;

    flex-direction: column;

    align-items: flex-start;
  }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {

  .service-hero-shell {
    padding: 55px 0 65px;
  }

  background-size: cover;
background-position: right center;

  .service-hero-copy h1 {
    font-size: 38px;
  }

  .service-hero-copy p {
    font-size: 16px;
  }

  .service-hero-actions {
    flex-direction: column;

    gap: 18px;
  }

  .service-hero-visual {
    min-height: 310px;

    border-radius: 24px;
  }

  .service-device-one {
    width: 105px;
    height: 205px;

    left: 4%;
  }

  .service-device-two {
    width: 120px;
    height: 230px;

    left: 34%;
  }

  .service-device-three {
    width: 100px;
    height: 190px;

    right: 4%;
  }

  .service-intro,
  .service-benefits,
  .service-process,
  .facial-range {
    padding: 78px 0;
  }

  .benefit-grid,
  .facial-product-grid {
    grid-template-columns: 1fr;
  }

  .facial-product-card {
    min-height: 0;
  }

  .facial-product-image {
    height: 300px;
  }

  .support-strip-inner h2 {
    font-size: 32px;
  }

}

/* ==================================================
   SCROLL REVEAL ANIMATION
================================================== */

.bts-scroll-reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);

  transition-delay:
    var(--reveal-delay, 0ms);

  will-change:
    opacity,
    transform;
}

.bts-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slightly softer movement for larger sections */

.service-intro-heading.bts-scroll-reveal,
.service-intro-copy.bts-scroll-reveal,
.service-section-heading.bts-scroll-reveal {
  transform: translateY(22px);
}

.service-intro-heading.bts-scroll-reveal.is-visible,
.service-intro-copy.bts-scroll-reveal.is-visible,
.service-section-heading.bts-scroll-reveal.is-visible {
  transform: translateY(0);
}

/* Keep accessibility settings respected */

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

  .bts-scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}

/* ==================================================
   SOFTWARE HERO - FULL BACKGROUND IMAGE
================================================== */

.service-hero {

    position: relative !important;
    width: 100% !important;
    height: 600px !important;
    min-height: 600px !important;

    color: #ffffff !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(30,50,110,0.65) 0%,
            rgba(30,50,110,0.35) 45%,
            rgba(30,50,110,0.05) 100%
        ),
        url("../assets/software bts.png") !important;

    background-size: cover !important;

    background-position: center right !important;

    background-repeat: no-repeat !important;

    overflow: hidden !important;

}

/* Keep header above image */

.service-hero .site-header {

    position: relative !important;

    z-index: 10 !important;

}

/* Hero layout */

.service-hero .service-hero-shell {

    position: relative !important;

    z-index: 3 !important;

    width: calc(100% - 180px) !important;

    max-width: 1120px !important;

    height: 100% !important;

    margin: 0 auto !important;

    display: flex !important;

    align-items: center !important;

}

/* Copy */

.service-hero .service-hero-copy {

    width: 55% !important;

    max-width: 600px !important;

}

/* Hide the old image box */

.software-hero-screen {

    display:none !important;

}

/* ==================================================
   SOFTWARE HERO
================================================== */

.service-hero .service-hero-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr) !important;
  gap: 70px !important;
}

.service-hero .service-hero-copy {
  width: 100% !important;
  max-width: 650px !important;
}

.software-hero-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(31, 52, 94, 0.22);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
}

.software-hero-screen::after {
  content: "";
  position: absolute;
  inset: 12% -5% -10% 14%;
  z-index: -1;
  border-radius: 30px;
  background: rgba(49, 91, 194, 0.24);
  filter: blur(24px);
}

.software-hero-screen img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 17px;
}

/* ==================================================
   SOFTWARE OVERVIEW
   IMAGE LEFT / COPY RIGHT
================================================== */

.software-overview {

    padding:115px 0;
    background:#ffffff;

}


.software-overview-grid {

    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap:95px;
    align-items:center;

    /* Swap visual position only */
    direction:rtl;

}


/* Reset text direction so copy remains normal */

.software-overview-grid > * {

    direction:ltr;

}



/* ==================================================
   COPY SECTION
================================================== */

.software-overview-copy h2,
.software-module-copy h2,
.software-integration-inner h2 {

    margin:18px 0 24px;
    color:var(--bts-dark);
    font-size:clamp(36px, 3.5vw, 54px);
    line-height:1.12;
    font-weight:500;
    letter-spacing:-0.035em;

}


.software-overview-copy p,
.software-module-copy p {

    margin:0 0 19px;
    color:var(--bts-text);
    font-size:16px;
    line-height:1.8;

}


.software-overview-copy .software-lead {

    color:#3d4654;
    font-size:19px;
    line-height:1.7;

}



.software-inline-link {

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    color:var(--bts-blue-dark);
    font-size:15px;
    font-weight:700;
    transition:gap 0.25s ease;

}


.software-inline-link:hover {

    gap:15px;

}



/* ==================================================
   IMAGE SECTION
   KEEP EXISTING STYLE
================================================== */


.software-overview-visual {

    position:relative;
    padding:22px 22px 92px;
    border-radius:32px;
    background:var(--bts-soft);

}



.software-screen-frame {

    padding:13px;
    border:1px solid rgba(74,116,232,0.12);
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 20px 45px rgba(52,67,99,0.12);

}



.software-screen-frame img {

    display:block;
    width:100%;
    height:340px;
    object-fit:cover;
    object-position:center top;
    border-radius:13px;

}



/* ==================================================
   QUICK LIST
================================================== */


.software-quick-list {

    position:absolute;
    right:42px;
    bottom:28px;
    left:42px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 22px;
    padding:20px 24px;
    border-radius:19px;
    background:#ffffff;
    box-shadow:0 16px 36px rgba(52,67,99,0.13);

}


.software-quick-list span {

    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#515966;
    font-size:12px;
    line-height:1.45;
    font-weight:600;

}



/* ==================================================
   MOBILE
================================================== */

@media(max-width:900px){

    .software-overview-grid {

        grid-template-columns:1fr;
        direction:ltr;

    }


    .software-quick-list {

        position:static;
        margin-top:20px;

    }

}

/* ==================================================
   SOFTWARE CAPABILITIES
================================================== */

.software-capabilities {
  padding: 110px 0 120px;
  background: var(--bts-soft-2);
}

.software-heading-centred {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.software-heading-centred .service-line {
  margin-right: auto;
  margin-left: auto;
}

.software-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.software-feature-card {
  position: relative;
  min-height: 275px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(57, 72, 102, 0.08);
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(48, 61, 88, 0.055);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--bts-blue);
  transition: width 0.3s ease;
}

.software-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(48, 61, 88, 0.10);
}

.software-feature-card:hover::before {
  width: 100%;
}

.software-feature-icon {
  display: flex;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--bts-blue-dark);
  background: rgba(74, 116, 232, 0.10);
  font-size: 22px;
}

.software-feature-card h3 {
  margin: 0 0 13px;
  color: var(--bts-dark);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.software-feature-card p {
  margin: 0;
  color: var(--bts-text);
  font-size: 14px;
  line-height: 1.75;
}

/* ==================================================
   SOFTWARE WORKFLOW
================================================== */

.software-flow {
  padding: 110px 0 118px;
  color: #ffffff;
  background: linear-gradient(135deg, #365FC7 0%, #4A74E8 55%, #668BE9 100%);
}

.software-flow .service-kicker,
.software-flow .service-section-heading h2 {
  color: #ffffff;
}

.software-flow .service-line {
  background: rgba(255, 255, 255, 0.65);
}

.software-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.software-flow-step {
  position: relative;
  min-height: 290px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.software-flow-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.software-flow-icon {
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--bts-blue-dark);
  background: #ffffff;
  font-size: 21px;
}

.software-flow-step h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
}

.software-flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.75;
}

/* ==================================================
   SOFTWARE MODULES
================================================== */

.software-modules {
  padding: 120px 0;
  background: #ffffff;
}

.software-module-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
  align-items: center;
  padding: 78px 0;
  border-bottom: 1px solid rgba(53, 68, 94, 0.10);
}

.software-module-row:first-child {
  padding-top: 0;
}

.software-module-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.software-module-row.reverse .software-module-copy {
  order: 2;
}

.software-module-row.reverse .software-module-image {
  order: 1;
}

.software-check-list {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.software-check-list li {
  position: relative;
  padding-left: 29px;
  color: #515966;
  font-size: 14px;
  line-height: 1.65;
}

.software-check-list li::before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--bts-blue);
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
}

.software-module-image {
  padding: 18px;
  border-radius: 29px;
  background: var(--bts-soft);
}

/* ==================================================
   SUPPORT STRIP
================================================== */


.service-support-strip {
  padding: 74px 0;
  background: #fff;
}

.support-strip-inner {
  padding: 48px 54px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  border-radius: 28px;

  background: linear-gradient(
    135deg,
    #4A74E8 0%,
    #5B73E8 55%,
    #6F86E8 100%
  );
}

.support-strip-inner .service-kicker {
  color: #fff;
}

.support-strip-inner h2 {
  max-width: 760px;
  margin: 10px 0 0;

  color: #fff;

  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.support-strip-button {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 52px;

  padding: 13px 24px;

  border-radius: 18px;

  background: rgba(255,255,255,0.14);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.35);

  font-size: 14px;
  font-weight: 600;

  box-shadow: none;

  transition:
    gap 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.support-strip-button:hover {
  gap: 13px;

  transform: translateY(-2px);

  background: #fff;
  color: var(--bts-blue);
}

/* ==================================================
   SOFTWARE RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  .service-hero .service-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr) !important;
    gap: 45px !important;
  }

  .software-hero-screen img {
    height: 310px;
  }

  .software-overview-grid,
  .software-module-row {
    gap: 55px;
  }

  .software-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-hero .service-hero-shell {
    display: flex !important;
    min-height: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding-top: 75px !important;
  }

  .software-hero-screen {
    max-width: 620px;
    transform: none;
  }

  .software-overview-grid,
  .software-module-row {
    grid-template-columns: 1fr;
  }

  .software-module-row.reverse .software-module-copy,
  .software-module-row.reverse .software-module-image {
    order: initial;
  }

  .software-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-integration-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .software-overview,
  .software-capabilities,
  .software-flow,
  .software-modules {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .software-hero-screen {
    padding: 10px;
    border-radius: 20px;
  }

  .software-hero-screen img,
  .software-screen-frame img,
  .software-module-image img {
    height: 245px;
  }

  .software-overview-visual {
    padding: 14px;
  }

  .software-quick-list {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .software-feature-grid,
  .software-flow-grid {
    grid-template-columns: 1fr;
  }

  .software-feature-card,
  .software-flow-step {
    min-height: 0;
  }

  .software-module-row {
    gap: 35px;
    padding: 58px 0;
  }

  .software-module-image {
    padding: 11px;
  }
}

/* ==================================================
   BTS SOFTWARE PAGE - FINAL CARD POLISH
   Remove heavy borders / add premium movement
================================================== */

/* Product image cards */

.facial-product-image {

    background: #ffffff !important;

    border: none !important;

    border-radius: 28px !important;

    box-shadow:
        0 18px 45px rgba(35,45,70,0.08) !important;

    transition:
        transform 0.45s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.45s ease !important;

}

/* Product hover movement */

.facial-product-card:hover .facial-product-image {

    transform: translateY(-10px) !important;

    box-shadow:
        0 30px 60px rgba(35,45,70,0.14) !important;

}

/* Make product images feel like they float */

.facial-product-image img {

    filter:
        drop-shadow(0 18px 25px rgba(30,40,60,0.14)) !important;

    transition:
        transform 0.45s cubic-bezier(.22,.61,.36,1) !important;

}

.facial-product-card:hover .facial-product-image img {

    transform:
        translateY(-8px)
        scale(1.04) !important;

}

/* ==================================================
   PAYROLL WORKFLOW SECTION
================================================== */

/* More breathing room */

.software-flow {

    padding: 120px 0 !important;

}

/* Heading movement */

.software-flow .service-section-heading {

    margin-bottom: 70px !important;

}

/* Workflow cards */

.software-flow-step {

    position: relative !important;

    background:
        rgba(255,255,255,0.08) !important;

    border:
        1px solid rgba(255,255,255,0.25) !important;

    border-radius: 26px !important;

    padding: 42px 32px !important;

    transition:
        transform 0.45s cubic-bezier(.22,.61,.36,1),
        background 0.35s ease,
        box-shadow 0.35s ease !important;

}

/* Hover movement */

.software-flow-step:hover {

    transform:
        translateY(-10px) !important;

    background:
        rgba(255,255,255,0.15) !important;

    box-shadow:
        0 25px 50px rgba(30,50,120,0.18) !important;

}

/* Step icons */

.software-flow-icon {

    transition:
        transform 0.35s ease !important;

}

.software-flow-step:hover .software-flow-icon {

    transform:
        translateY(-5px)
        scale(1.05) !important;

}

/* Numbers */

.software-flow-number {

    opacity: 0.75 !important;

}

/* ==================================================
   REMOVE OLD HEAVY CARD LOOK
================================================== */

.software-feature-card,
.software-module-image,
.software-screen-frame {

    border: none !important;

}
/* ==================================================
   SOFTWARE VISUALS - CLEAN FLOATING STYLE
================================================== */

/* Remove outer card frame */
.software-overview-visual,
.software-screen-frame {

    background: transparent !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    padding: 0 !important;

}

/* Image styling */

.software-screen-frame img {

    width: 100% !important;

    max-width: 560px;

    display: block;

    border-radius: 22px;

    box-shadow:
        0 30px 60px rgba(30, 45, 80, 0.15);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

/* Floating movement */

.software-overview-visual:hover img {

    transform: translateY(-12px);

    box-shadow:
        0 45px 75px rgba(30, 45, 80, 0.20);

}

/* Remove quick list box styling */

.software-quick-list {

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    border-radius: 0 !important;

}

/* If the quick list is inside a white card */

.software-quick-list::before {

    display:none !important;

}

/* ==================================================
   SOFTWARE MODULE IMAGES - FLOATING STYLE
================================================== */

.software-module-image {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.software-module-image img {
    width: 100% !important;
    display: block;
    border-radius: 24px !important;

    /* invisible border so layout doesn't shift on hover */
    border: 1px solid transparent;

    box-shadow: 0 25px 60px rgba(35, 50, 90, 0.15);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.software-module-image:hover img {
    transform: translateY(-12px);
    box-shadow: 0 45px 80px rgba(35, 50, 90, 0.22);

    /* very faint light grey border */
    border-color: rgba(210, 216, 228, 0.8);
}

/* ==========================================
   SOFTWARE HERO ONLY
========================================== */

.software-hero {

    height: 600px;
    min-height: 600px;

    position: relative;

}

/* Keep content positioning */

.software-hero .service-hero-shell {

    height: 100%;

    display: flex;
    align-items: center;

    padding-top: 35px;
    padding-bottom: 35px;

}

/* Software image */

.software-hero-image {

    width: 48%;

    margin-left: auto;

    position: relative;

    z-index: 2;

}

.software-hero-image img {

    width: 100%;

    display: block;

    border-radius: 28px;

    box-shadow:
    0 30px 70px rgba(40,60,120,0.18);

}

/* Heading smaller */

.software-hero .service-hero-copy h1 {

    font-size: 52px;

    line-height: 1.08;

    max-width: 620px;

}

/* Paragraph */

.software-hero .service-hero-copy p {

    font-size:18px;

    line-height:1.6;

    max-width:620px;

}

/* Buttons */

.software-hero .service-hero-actions {

    margin-top:25px;

}

/* ==========================================
   HERO CONTENT POSITION
========================================== */

.service-hero .service-hero-shell {

    position: relative !important;

    z-index: 3 !important;

    width: calc(100% - 180px) !important;

    max-width: 1120px !important;

    height: 600px !important;

    margin: 0 auto !important;

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    padding: 0 !important;

}

/* Copy area */

.service-hero .service-hero-copy {

    width: 50% !important;

    max-width: 600px !important;

    margin-top: -190px !important;

    

}



/* Heading */

.service-hero .service-hero-copy h1 {

    margin-bottom: 25px !important;

}

/* Paragraph */

.service-hero .service-hero-copy p {

    margin-bottom: 0 !important;

}

/* Buttons */

.service-hero .service-hero-actions {

    margin-top: 30px !important;

    display: flex !important;

    align-items: center !important;

    gap: 30px !important;

}


/* ==========================
   FIX PARTNER LOGO BOTTOM GAP
========================== */

.partners-section {
    padding-bottom: 180px !important;
    position: relative !important;
}


/* Create breathing room below logos */
.partners-slider {
    padding-bottom: 120px !important;
    margin-bottom: 0 !important;
}


/* Keep logos vertically centred */
.partners-track {
    padding-bottom: 40px !important;
}


/* ==================================================
   REFINED QUOTE SECTION
================================================== */

.quote-section,
.quote-section * {
  box-sizing: border-box;
}

.quote-section {
  width: calc(100% - 80px);
  max-width: 1500px;
  min-height: 720px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(560px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(74, 116, 232, 0.10);
  border-radius: 32px;
  background: #F4F6FB;
  box-shadow:
    0 32px 80px rgba(35, 49, 83, 0.10),
    0 8px 24px rgba(35, 49, 83, 0.05);
}

.quote-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-size: cover;
  background-position: 47% center;
  background-repeat: no-repeat;
}

.quote-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(37, 50, 78, 0.02) 45%,
      rgba(37, 50, 78, 0.15) 100%
    );
}

.quote-panel {
  display: flex;
  align-items: center;
  padding: 58px 62px;
  background:
    linear-gradient(
      145deg,
      #F7F9FD 0%,
      #EEF2FA 100%
    );
}

.quote-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.quote-kicker {
  display: block;
  margin-bottom: 16px;
  color: #5572E5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.quote-inner h2 {
  max-width: 650px;
  margin: 0 0 18px;
  color: #292E39;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-intro {
  max-width: 630px;
  margin: 0 0 32px;
  color: #657084;
  font-size: 17px;
  line-height: 1.65;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(57, 72, 104, 0.16);
  border-radius: 14px;
  outline: none;
  color: #343B49;
  background: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(35, 49, 83, 0.025);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quote-form input,
.quote-form select {
  height: 58px;
  padding: 0 20px;
}

.quote-form select {
  cursor: pointer;
}

.quote-form textarea {
  min-height: 138px;
  padding: 17px 20px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #929AAA;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #5A76E8;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(90, 118, 232, 0.11),
    0 8px 22px rgba(42, 61, 109, 0.07);
}

.quote-submit-row {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.submit-button {
  min-width: 235px;
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #5572E5 0%, #6683ED 100%);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(74, 105, 215, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4666DB 0%, #5A78E7 100%);
  box-shadow: 0 19px 35px rgba(74, 105, 215, 0.29);
}

.submit-button i {
  transition: transform 0.3s ease;
}

.submit-button:hover i {
  transform: translateX(5px);
}

.quote-small-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7D8798;
  font-size: 13px;
  line-height: 1.5;
}

.quote-small-print::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5572E5;
  background: rgba(85, 114, 229, 0.10);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .quote-section {
    width: calc(100% - 50px);
    grid-template-columns: minmax(330px, 0.8fr) minmax(450px, 1.2fr);
  }

  .quote-panel {
    padding: 54px 42px;
  }
}

@media (max-width: 820px) {
  .quote-section {
    width: calc(100% - 30px);
    min-height: 0;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
  }

  .quote-image {
    min-height: 420px;
    background-position: center center;
  }

  .quote-panel {
    padding: 50px 30px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .quote-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quote-image {
    min-height: 330px;
  }

  .quote-panel {
    padding: 42px 22px;
  }

  .quote-inner h2 {
    font-size: 38px;
  }
}


/* ==================================================
   CONSISTENT TEXT COLOURS
================================================== */

h1,
h2,
h3,
h4 {
  color: #666666 !important;
}

p {
  color: #7A7A7A !important;
}

/* Keep text white over hero and blue backgrounds */
.service-hero h1,
.service-hero h2,
.service-hero h3,
.service-hero h4,
.service-hero p,
.software-flow h1,
.software-flow h2,
.software-flow h3,
.software-flow h4,
.software-flow p,
.support-strip-inner h1,
.support-strip-inner h2,
.support-strip-inner h3,
.support-strip-inner h4,
.support-strip-inner p,
.contact-strip h1,
.contact-strip h2,
.contact-strip h3,
.contact-strip h4,
.contact-strip p {
  color: #FFFFFF !important;
}
/* ==================================================
   BTS WHATSAPP BUTTON
================================================== */


/* Floating WhatsApp Button */

.whatsapp-button {

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    border:none;

    border-radius:50%;

    color:#ffffff;

    font-size:30px;

    cursor:pointer;

    z-index:9999;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        background .3s ease;

}


.whatsapp-button:hover {

    background:#20bd5a;

    transform:translateY(-5px);

}



/* ==================================================
   WHATSAPP POPUP
================================================== */


.whatsapp-popup {

    position:fixed;

    right:30px;

    bottom:105px;

    width:320px;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 25px 70px rgba(0,0,0,.20);

    z-index:9998;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:

        opacity .35s ease,

        transform .35s ease,

        visibility .35s ease;

}



/* Popup active state */

.whatsapp-popup.active {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* Small pointer */

.whatsapp-popup::after {

    content:"";

    position:absolute;

    right:48px;

    bottom:-10px;

    width:22px;

    height:22px;

    background:#ffffff;

    transform:rotate(45deg);

}



/* ==================================================
   POPUP HEADER
================================================== */


.whatsapp-popup-header {

    position:relative;

    padding:25px 28px;

    background:#6675D9;

    color:#ffffff;

}



.whatsapp-popup-header h3 {

    margin:0;

    font-size:22px;

    line-height:1.35;

    font-weight:500;

}



/* Close button */

.whatsapp-close {

    position:absolute;

    top:15px;

    right:18px;

    background:none;

    border:none;

    color:#ffffff;

    font-size:28px;

    cursor:pointer;

    line-height:1;

}



.whatsapp-close:hover {

    opacity:.7;

}



/* ==================================================
   POPUP BODY
================================================== */


.whatsapp-popup-body {

    padding:28px;

    color:#46505f;

    font-size:16px;

    line-height:1.65;

}



.whatsapp-popup-body h4 {

    margin:0 0 12px;

    font-size:20px;

    color:#111111;

    font-weight:700;

}



.whatsapp-popup-body p {

    margin:0 0 20px;

}



/* ==================================================
   WHATSAPP ACTION BUTTON
================================================== */


.whatsapp-popup-link {

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    padding:14px 20px;

    border-radius:50px;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s ease;

}



.whatsapp-popup-link:hover {

    background:#20bd5a;

    color:#ffffff;

    transform:translateY(-3px);

}



.whatsapp-popup-link i {

    font-size:25px;

}



/* ==================================================
   BACK TO TOP BUTTON
================================================== */


.back-to-top {

    position:fixed;

    left:30px;

    bottom:30px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#586FE5;

    color:#ffffff;

    border:none;

    border-radius:50%;

    font-size:18px;

    cursor:pointer;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.3s ease;

    box-shadow:

        0 12px 30px rgba(0,0,0,.15);

}



.back-to-top:hover {

    background:#4359d2;

    transform:translateY(-5px);

}



/* Visible state */

.back-to-top.show {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* ==================================================
   MOBILE RESPONSIVE
================================================== */


@media(max-width:600px){


    .whatsapp-button {

        width:55px;

        height:55px;

        right:20px;

        bottom:20px;

        font-size:28px;

    }



    .whatsapp-popup {

        width:calc(100% - 40px);

        right:20px;

        bottom:90px;

    }



    .whatsapp-popup-header {

        padding:22px;

    }



    .whatsapp-popup-header h3 {

        font-size:20px;

    }



    .whatsapp-popup-body {

        padding:24px;

    }



    .back-to-top {

        width:48px;

        height:48px;

        left:20px;

        bottom:20px;

    }


}

/* ==================================================
   WHATSAPP POPUP HEADER TITLE
================================================== */

.whatsapp-popup-header h3 {
    color: #ffffff !important;
}

/* ==================================================
   BACK TO TOP BUTTON
================================================== */


.back-to-top {

    position:fixed;

    left:30px;

    bottom:30px;


    width:52px;

    height:52px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#586FE5;


    color:#ffffff;


    border:none;


    border-radius:50%;


    font-size:18px;


    cursor:pointer;


    z-index:9999;


    opacity:0;

    visibility:hidden;


    transform:translateY(20px);


    transition:.3s ease;


    box-shadow:
        0 12px 30px rgba(0,0,0,.15);

}



.back-to-top:hover {


    background:#4359d2;


    transform:translateY(-5px);

}



/* Show button */

.back-to-top.show {


    opacity:1;


    visibility:visible;


    transform:translateY(0);

}




@media(max-width:600px){


    .back-to-top {


        width:48px;

        height:48px;


        left:20px;


        bottom:20px;

    }

}