/* ==========================================================================
   RSOWA — Retired Signals Officers' Welfare Association
   Design system stylesheet
   Namespace: every custom class is prefixed "quickTech-" as required.
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --qt-navy-950: #24432b;
  --qt-navy-900: #24432b;
  --qt-navy-800: #24432b;
  --qt-navy-700: #24432b;
  --qt-steel-600: #24432b96;
  --qt-gold-600: #e6b946;
  --qt-gold-500: #e6b946;
  --qt-gold-300: #e6b946;
  --qt-signal-red: #a63d2f;
  --qt-signal-red-dark: #7e2e23;
  --qt-parchment: #f3efe4;
  --qt-parchment-dark: #e9e2cd;
  --qt-ink-900: #161a1f;
  --qt-ink-700: #3a4148;
  --qt-ink-500: #6b737b;
  --qt-white: #ffffff;
  --qt-line: rgba(15, 34, 56, 0.12);
  --qt-line-light: rgba(255, 255, 255, 0.16);

  /* Type */
  --qt-font-display: "Poppins", sans-serif;
--qt-font-body: "Poppins", sans-serif;
--qt-font-mono: "Poppins", sans-serif;

  /* Layout */
  --qt-radius-sm: 2px;
  --qt-radius-md: 4px;
  --qt-radius-lg: 6px;
  --qt-container-max: 1200px;
  --qt-shadow-card:
    0 1px 2px rgba(10, 26, 44, 0.06), 0 8px 24px -12px rgba(10, 26, 44, 0.18);
  --qt-shadow-lift: 0 12px 32px -8px rgba(10, 26, 44, 0.28);
  --qt-transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--qt-font-body);
  color: var(--qt-ink-900);
  background: var(--qt-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--qt-font-display);
  color: var(--qt-navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
:focus-visible {
  outline: 2px solid var(--qt-gold-500);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.quickTech-container {
  width: 100%;
  max-width: var(--qt-container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .quickTech-container {
    padding-inline: 2rem;
  }
}

.quickTech-section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.quickTech-section--tight {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.quickTech-section--navy {
  background: #24432b96;
  color: rgba(255, 255, 255, 0.86);
}
.quickTech-section--navy h1,
.quickTech-section--navy h2,
.quickTech-section--navy h3 {
  color: var(--qt-white);
}
.quickTech-section--parchment {
  background: var(--qt-parchment);
}
.quickTech-section--white {
  background: var(--qt-white);
}

/* ---------- Eyebrow / morse signature ---------- */
.quickTech-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--qt-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--qt-gold-600);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.quickTech-section--navy .quickTech-eyebrow {
  color: var(--qt-gold-300);
}
.quickTech-eyebrow__morse {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.quickTech-eyebrow__morse span {
  display: inline-block;
  background: currentColor;
  height: 3px;
  border-radius: 2px;
  opacity: 0.85;
}
.quickTech-eyebrow__morse span.dot {
  width: 3px;
}
.quickTech-eyebrow__morse span.dash {
  width: 12px;
}

/* Transmission line divider — signature element */
.quickTech-transmission {
  position: relative;
  height: 2px;
  margin-block: 2.5rem;
  background-image: repeating-linear-gradient(
    90deg,
    var(--qt-line) 0 10px,
    transparent 10px 18px
  );
}
.quickTech-transmission::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--qt-gold-500);
  transform: translateY(-50%);
  animation: qtTransmit 5.5s linear infinite;
}
.quickTech-section--navy .quickTech-transmission {
  background-image: repeating-linear-gradient(
    90deg,
    var(--qt-line-light) 0 10px,
    transparent 10px 18px
  );
}
@keyframes qtTransmit {
  0% {
    left: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ---------- Header / Nav ---------- */
.quickTech-topbar {
  background: var(--qt-navy-950);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--qt-font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}
.quickTech-topbar .quickTech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.45rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.quickTech-topbar a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--qt-transition);
}
.quickTech-topbar a:hover {
  color: var(--qt-gold-300);
}
.quickTech-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.quickTech-topbar__item svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.quickTech-header {
  background: var(--qt-white);
  border-bottom: 1px solid var(--qt-line);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.quickTech-navbar {
  padding-block: 0.85rem;
}
.quickTech-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.quickTech-brand__mark {
  width: 44px;
  height: 44px;
  flex: none;
}
.quickTech-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.quickTech-brand__title {
  font-family: var(--qt-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--qt-navy-900);
}
.quickTech-brand__sub {
  font-family: var(--qt-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--qt-gold-600);
  text-transform: uppercase;
}

.quickTech-nav .nav-link {
  font-family: var(--qt-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--qt-ink-700);
  padding: 0.6rem 0.9rem !important;
  position: relative;
}
.quickTech-nav .nav-link:hover {
  color: var(--qt-navy-900);
}
.quickTech-nav .nav-link.quickTech-active {
  color: var(--qt-navy-900);
}
.quickTech-nav .nav-link.quickTech-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--qt-gold-500);
}
.quickTech-nav .quickTech-btn {
  margin-left: 0.5rem;
}

/* ---------- Buttons ---------- */
.quickTech-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--qt-font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.72rem 1.5rem;
  border-radius: var(--qt-radius-sm);
  border: 1px solid transparent;
  transition:
    transform var(--qt-transition),
    background var(--qt-transition),
    color var(--qt-transition),
    border-color var(--qt-transition);
  cursor: pointer;
  white-space: nowrap;
}
.quickTech-btn:hover {
  transform: translateY(-1px);
}
.quickTech-btn--gold {
  background: var(--qt-gold-500);
  color: var(--qt-navy-950);
}
.quickTech-btn--gold:hover {
  background: var(--qt-gold-300);
  color: var(--qt-navy-950);
}
.quickTech-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--qt-white);
}
.quickTech-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--qt-white);
  color: var(--qt-white);
}
.quickTech-btn--outline-navy {
  background: transparent;
  border-color: var(--qt-navy-900);
  color: var(--qt-navy-900);
}
.quickTech-btn--outline-navy:hover {
  background: var(--qt-navy-900);
  color: var(--qt-white);
}
.quickTech-btn--navy {
  background: var(--qt-navy-900);
  color: var(--qt-white);
}
.quickTech-btn--navy:hover {
  background: var(--qt-navy-700);
  color: var(--qt-white);
}
.quickTech-btn--sm {
  padding: 5px 1rem;
  font-size: 0.78rem;
}
.quickTech-btn--block {
  width: 100%;
}
.quickTech-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Hero ---------- */
.quickTech-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 520px at 85% -10%,
      rgba(200, 155, 60, 0.18),
      transparent 60%
    ),
    var(--qt-navy-900);
  color: var(--qt-white);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.quickTech-hero__signal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.quickTech-hero__kicker {
  font-family: var(--qt-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qt-gold-300);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.quickTech-hero__title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  color: var(--qt-white);
  margin-bottom: 1rem;
  max-width: 16ch;
}
.quickTech-hero__lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.quickTech-hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.quickTech-hero__stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.quickTech-stat__num {
  font-family: var(--qt-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--qt-gold-300);
}
.quickTech-stat__label {
  font-family: var(--qt-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* small page hero for interior pages */
.quickTech-pagehero {
  background: var(--qt-navy-900);
  color: var(--qt-white);
  padding-block: 3.2rem;
}
.quickTech-pagehero h1 {
  color: var(--qt-white);
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}
.quickTech-breadcrumb {
  font-family: var(--qt-font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}
.quickTech-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.quickTech-breadcrumb a:hover {
  color: var(--qt-gold-300);
}

/* ---------- Section headings ---------- */
.quickTech-sectionhead {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.quickTech-sectionhead h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
.quickTech-sectionhead p {
  color: var(--qt-ink-500);
  font-size: 1.02rem;
}
.quickTech-sectionhead--center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Cards ---------- */
.quickTech-card {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  overflow: hidden;
  transition:
    box-shadow var(--qt-transition),
    transform var(--qt-transition);
  height:auto;
  display: flex;
  flex-direction: column;
}
.quickTech-card:hover {
  box-shadow: var(--qt-shadow-lift);
  transform: translateY(-3px);
}
.quickTech-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--qt-parchment-dark);
  position: relative;
}
.quickTech-card__media img {
  width: 100%;
  height: 100%;
}
.quickTech-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.quickTech-card__meta {
  font-family: var(--qt-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--qt-gold-600);
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}
.quickTech-card__title {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}
.quickTech-card__title a {
  transition: color var(--qt-transition);
}
.quickTech-card__title a:hover {
  color: var(--qt-gold-600);
}
.quickTech-card__text {
  color: var(--qt-ink-500);
  font-size: 0.94rem;
  margin-bottom: 1rem;
}
.quickTech-card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--qt-navy-900);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.quickTech-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--qt-transition);
}
.quickTech-card__link:hover svg {
  transform: translateX(3px);
}

/* dossier-style badge stamp on cards, e.g. status/category */
.quickTech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--qt-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.28rem 0.6rem;
  border-radius: 100px;
  border: 1px solid currentColor;
}
.quickTech-badge--gold {
  color: var(--qt-gold-600);
  background: rgba(200, 155, 60, 0.1);
}
.quickTech-badge--navy {
  color: var(--qt-navy-800);
  background: rgba(15, 34, 56, 0.06);
}
.quickTech-badge--red {
  color: var(--qt-signal-red);
  background: rgba(166, 61, 47, 0.08);
}
.quickTech-badge--green {
  color: #2e6b4e;
  background: rgba(46, 107, 78, 0.09);
}

/* ---------- Value / feature blocks ---------- */
.quickTech-value {
  padding: 1.6rem;
  border-left: 2px solid var(--qt-gold-500);
}
.quickTech-value__icon {
  width: 38px;
  height: 38px;
  color: var(--qt-gold-600);
  margin-bottom: 1rem;
}
.quickTech-value h3 {
  font-size: 1.1rem;
}
.quickTech-value p {
  color: var(--qt-ink-500);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- Chairman / profile ---------- */
.quickTech-profile__photo {
  aspect-ratio: 3/4;
  border-radius: var(--qt-radius-md);
  overflow: hidden;
  background: var(--qt-navy-900);
  border: 6px solid var(--qt-white);
  box-shadow: var(--qt-shadow-card);
}
.quickTech-profile__rank {
  font-family: var(--qt-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--qt-gold-600);
}

/* ---------- Members directory ---------- */
.quickTech-member {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--qt-transition);
}
.quickTech-member:hover {
  box-shadow: var(--qt-shadow-card);
}
.quickTech-member__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: none;
  background: var(--qt-navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qt-gold-300);
  font-family: var(--qt-font-display);
  font-weight: 700;
}
.quickTech-member__name {
  font-weight: 700;
  color: var(--qt-navy-900);
  margin-bottom: 0.15rem;
}
.quickTech-member__rank {
  font-family: var(--qt-font-mono);
  font-size: 0.72rem;
  color: var(--qt-ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quickTech-member__contact {
  font-size: 0.82rem;
  color: var(--qt-ink-500);
  margin-top: 0.4rem;
}

/* ---------- Forms ---------- */
.quickTech-form-card {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--qt-shadow-card);
}
.quickTech-label {
  font-family: var(--qt-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--qt-ink-700);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.quickTech-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-sm);
  font-family: var(--qt-font-body);
  font-size: 0.94rem;
  background: var(--qt-white);
  color: var(--qt-ink-900);
  transition:
    border-color var(--qt-transition),
    box-shadow var(--qt-transition);
}
.quickTech-control:focus {
  border-color: var(--qt-gold-500);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.18);
  outline: none;
}
.quickTech-control.quickTech-invalid {
  border-color: var(--qt-signal-red);
}
.quickTech-error {
  color: var(--qt-signal-red);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}
.quickTech-error.quickTech-show {
  display: block;
}
.quickTech-fieldnote {
  font-size: 0.78rem;
  color: var(--qt-ink-500);
  margin-top: 0.3rem;
}
.quickTech-upload {
  border: 1.5px dashed var(--qt-line);
  border-radius: var(--qt-radius-sm);
  padding: 1.4rem;
  text-align: center;
  color: var(--qt-ink-500);
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    border-color var(--qt-transition),
    background var(--qt-transition);
}
.quickTech-upload:hover {
  border-color: var(--qt-gold-500);
  background: rgba(200, 155, 60, 0.05);
}
.quickTech-upload__filename {
  font-family: var(--qt-font-mono);
  font-size: 0.78rem;
  color: var(--qt-navy-900);
  margin-top: 0.5rem;
}

/* ---------- Notice / list rows ---------- */
.quickTech-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  background: var(--qt-white);
  margin-bottom: 0.9rem;
  transition: box-shadow var(--qt-transition);
}
.quickTech-notice:hover {
  box-shadow: var(--qt-shadow-card);
}
.quickTech-notice__icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--qt-radius-sm);
  background: var(--qt-parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qt-navy-800);
}
.quickTech-notice__title {
  font-weight: 700;
  color: var(--qt-navy-900);
  margin-bottom: 0.15rem;
}
.quickTech-notice__date {
  font-family: var(--qt-font-mono);
  font-size: 0.74rem;
  color: var(--qt-ink-500);
}

/* ---------- Gallery / lightbox ---------- */
.quickTech-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--qt-radius-md);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.quickTech-gallery__item svg {
  transition: transform 400ms ease;
}
.quickTech-gallery__item:hover svg {
  transform: scale(1.08);
}
.quickTech-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 26, 44, 0.78), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
  opacity: 0;
  transition: opacity var(--qt-transition);
  color: #fff;
  font-family: var(--qt-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.quickTech-gallery__item:hover .quickTech-gallery__overlay {
  opacity: 1;
}
.quickTech-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 28, 0.92);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.quickTech-lightbox.quickTech-open {
  display: flex;
}
.quickTech-lightbox__frame {
  max-width: 900px;
  width: 100%;
}
.quickTech-lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Filters / tabs ---------- */
.quickTech-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.quickTech-chip {
  font-family: var(--qt-font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--qt-line);
  background: var(--qt-white);
  color: var(--qt-ink-700);
  cursor: pointer;
  transition: all var(--qt-transition);
}
.quickTech-chip:hover {
  border-color: var(--qt-gold-500);
}
.quickTech-chip.quickTech-active {
  background: var(--qt-navy-900);
  border-color: var(--qt-navy-900);
  color: #fff;
}

/* ---------- CTA band ---------- */
.quickTech-cta {
  background: linear-gradient(120deg, var(--qt-navy-950), var(--qt-navy-800));
  color: #fff;
  border-radius: var(--qt-radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.quickTech-cta h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.quickTech-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ---------- Footer ---------- */
.quickTech-footer {
  background: var(--qt-navy-950);
  color: rgba(255, 255, 255, 0.68);
  padding-block: 3.5rem 1.5rem;
}
.quickTech-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--qt-font-mono);
  margin-bottom: 1.1rem;
}
.quickTech-footer a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--qt-transition);
}
.quickTech-footer a:hover {
  color: var(--qt-gold-300);
}
.quickTech-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.quickTech-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.quickTech-footer__title {
  font-family: var(--qt-font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.quickTech-footer__desc {
  font-size: 0.88rem;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.55);
}
.quickTech-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.quickTech-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.quickTech-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--qt-transition);
}
.quickTech-social a:hover {
  background: var(--qt-gold-500);
  border-color: var(--qt-gold-500);
  color: var(--qt-navy-950);
}
.quickTech-social svg {
  width: 15px;
  height: 15px;
}

/* ---------- Back to top ---------- */
.quickTech-totop {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--qt-navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--qt-shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--qt-transition);
  z-index: 900;
  border: none;
  cursor: pointer;
}
.quickTech-totop.quickTech-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Reveal on scroll ---------- */
.quickTech-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}
.quickTech-reveal.quickTech-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.quickTech-text-gold {
  color: var(--qt-gold-600);
}
.quickTech-text-muted {
  color: var(--qt-ink-500);
}
.quickTech-mono {
  font-family: var(--qt-font-mono);
}

/* ==========================================================================
   Mobile / Responsive refinements
   Breakpoints follow Bootstrap's grid (992 / 768 / 576px) so custom
   components fall in step with the column stacking already in the markup.
   ========================================================================== */

/* Prevent any accidental horizontal scroll on small viewports */
html,
body {
  overflow-x: hidden;
}

/* ---------- ≤991.98px : tablet / nav collapse ---------- */
@media (max-width: 991.98px) {
  .quickTech-topbar .quickTech-container {
    padding-block: 0.4rem;
    font-size: 0.72rem;
  }
  .quickTech-topbar__item span {
    white-space: nowrap;
  }

  .quickTech-navbar {
    padding-block: 5px;
  }
  .quickTech-brand__mark {
    width: 38px;
    height: 38px;
  }
  .quickTech-brand__title {
    font-size: 0.94rem;
  }
  .quickTech-brand__sub {
    font-size: 0.58rem;
  }

  .navbar-toggler {
    padding: 0.4rem 0.55rem;
  }

  /* Collapsed menu panel */
  .navbar-collapse {
    margin-top: 0.85rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid var(--qt-line);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .quickTech-nav {
    width: 100%;
  }
  .quickTech-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--qt-line);
  }
  .quickTech-nav .nav-link {
    padding: 0.85rem 0.1rem !important;
    width: 100%;
  }
  .quickTech-nav .nav-link.quickTech-active::after {
    left: 0.1rem;
    right: auto;
    width: 1.4rem;
    bottom: 0.6rem;
  }
  .quickTech-nav .nav-item:last-child {
    border-bottom: 0;
    margin-top: 0.75rem;
  }
  .quickTech-nav .quickTech-btn {
    margin-left: 0;
    width: 100%;
  }

  .quickTech-hero__stats {
    gap: 1.4rem;
    margin-top: 2.2rem;
  }

  /* Sidebar cards using inline sticky positioning (e.g. become-member.html)
     shouldn't stay pinned once they stack full-width above other content */
  .col-lg-4 > .quickTech-card[style*="sticky"] {
    position: static !important;
    top: auto !important;
  }
}

/* ---------- ≤767.98px : phones (landscape and up) ---------- */
@media (max-width: 767.98px) {
  .quickTech-section {
    padding-block: clamp(2.4rem, 8vw, 3.5rem);
  }
  .quickTech-section--tight {
    padding-block: clamp(1.6rem, 6vw, 2.5rem);
  }

  .quickTech-hero {
    padding-block: 2.75rem;
  }
  .quickTech-hero__title {
    max-width: none;
  }
  .quickTech-hero__lede {
    max-width: none;
  }
  .quickTech-hero__actions .quickTech-btn {
    flex: 1 1 auto;
    text-align: center;
  }
  .quickTech-hero__stats {
    gap: 1.6rem 2rem;
  }

  .quickTech-pagehero {
    padding-block: 2.2rem;
  }

  .quickTech-sectionhead {
    margin-bottom: 1.8rem;
  }
  .quickTech-sectionhead--center {
    text-align: left;
    margin-inline: 0;
  }

  /* CTA band stacks and centers */
  .quickTech-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
  .quickTech-cta .quickTech-btn {
    width: 100%;
  }

  /* Notice rows: icon+text on top, action button full-width below */
  .quickTech-notice {
    flex-wrap: wrap;
  }
  .quickTech-notice__icon {
    width: 38px;
    height: 38px;
  }
  .quickTech-notice .quickTech-btn {
    width: 100%;
    margin-top: 0.4rem;
  }

  /* Member cards: tighten padding, shrink avatar slightly */
  .quickTech-member {
    padding: 1rem;
    gap: 0.85rem;
  }
  .quickTech-member__avatar {
    width: 50px;
    height: 50px;
    font-size: 0.85rem;
  }

  /* Footer: center brand/text blocks that sit alone on a row */
  .quickTech-footer {
    padding-block: 2.75rem 1.25rem;
  }
  .quickTech-footer__bottom {
    justify-content: center;
    text-align: center;
  }

  /* Small news/event thumbnails no longer eat half the row */
  .quickTech-card__meta {
    font-size: 0.66rem;
  }

  /* Lightbox needs its padding back for the close button + image */
  .quickTech-lightbox {
    padding: 1rem;
  }
  .quickTech-lightbox__close {
    top: 0.6rem;
    right: 0.75rem;
    font-size: 1.6rem;
  }

  /* Chairman / profile: photo isn't oversized above the bio on phones */
  .quickTech-profile__photo {
    max-width: 280px;
    margin-inline: auto;
  }

  .quickTech-totop {
    width: 40px;
    height: 40px;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ---------- ≤575.98px : small phones ---------- */
@media (max-width: 575.98px) {
  .quickTech-topbar .quickTech-container {
    justify-content: flex-start;
    gap: 0.6rem 0.9rem;
  }
  .quickTech-topbar__item svg {
    width: 12px;
    height: 12px;
  }

  .quickTech-brand__sub {
    display: none;
  }

  .quickTech-hero__title {
    font-size: 1.7rem;
  }
  .quickTech-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .quickTech-hero__stats {
    flex-direction: column;
    gap: 0.9rem;
  }

  .quickTech-btn {
    padding: 0.68rem 1.2rem;
  }

  /* Article/event thumbnails shrink so text has room to breathe */
  .quickTech-section article[class*="d-flex"] > div:first-child,
  .quickTech-section .d-flex.gap-3 > div[style*="width:96px"] {
    width: 72px !important;
    height: 54px !important;
  }

  .quickTech-filterbar {
    gap: 0.45rem;
    margin-bottom: 1.6rem;
  }
  .quickTech-chip {
    padding: 0.42rem 0.8rem;
    font-size: 0.72rem;
  }

  .quickTech-form-card {
    padding: 1.25rem;
  }
  .quickTech-upload {
    padding: 1.1rem;
  }

  .quickTech-notice {
    padding: 0.9rem 1rem;
  }
  .quickTech-notice__title {
    font-size: 0.94rem;
  }

  .quickTech-gallery__overlay {
    padding: 0.55rem;
    font-size: 0.66rem;
  }
}

/* Touch devices can't hover — surface gallery captions without it */
@media (hover: none) {
  .quickTech-gallery__overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(10, 26, 44, 0.82), transparent 65%);
  }
}

/* ==========================================================================
   HOME PAGE REDESIGN — layout matching approved reference design
   New block namespace: "quickTech-home-*"
   ========================================================================== */

/* ---------- Topbar call button (redesign) ---------- */
.quickTech-topbar__callbtn {
  background: var(--qt-gold-500);
  color: var(--qt-navy-950) !important;
  font-family: var(--qt-font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.32rem 0.95rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.quickTech-topbar__callbtn:hover {
  background: var(--qt-gold-300);
  color: var(--qt-navy-950) !important;
}
.quickTech-topbar__auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quickTech-topbar__auth a {
  color: rgba(255, 255, 255, 0.72);
}
.quickTech-topbar__auth a:hover {
  color: var(--qt-gold-300);
}
.quickTech-topbar__auth .quickTech-loginbtn {
  background: var(--qt-navy-700);
  color: #fff !important;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
}
.quickTech-topbar__auth .quickTech-loginbtn:hover {
  background: var(--qt-navy-600, #26496e);
}

/* ---------- Home hero (redesign) ---------- */
.quickTech-home-hero {
  background: var(--qt-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.quickTech-home-hero__eyebrow {
  font-family: var(--qt-font-mono);
  color: var(--qt-gold-300);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.quickTech-home-hero__title {
  font-family: var(--qt-font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--qt-gold-300);
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
  line-height: 1.08;
}
.quickTech-home-hero__lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 1.8rem;
}
.quickTech-home-hero__art {
  position: relative;
}
.quickTech-home-hero__art svg {
  width: 100%;
  height: auto;
}

/* ---------- Advantages strip ---------- */
.quickTech-adv {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--qt-white);
}
.quickTech-adv__item {
  text-align: center;
  padding: 0 0.6rem;
}
.quickTech-adv__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--qt-navy-900);
  color: var(--qt-gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  transition:
    background var(--qt-transition),
    transform var(--qt-transition);
}
.quickTech-adv__icon svg {
  width: 32px;
  height: 32px;
  color: white;
}
.quickTech-adv__item:hover .quickTech-adv__icon {
  background: var(--qt-gold-500);
  color: var(--qt-navy-950);
  transform: translateY(-4px);
}
.quickTech-adv__title {
  font-family: var(--qt-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--qt-navy-900);
  margin: 0;
}

/* ---------- We provide ---------- */
.quickTech-provide {
  background: var(--qt-parchment);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.quickTech-provide__card {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition:
    box-shadow var(--qt-transition),
    transform var(--qt-transition);
}
.quickTech-provide__card:hover {
  box-shadow: var(--qt-shadow-lift);
  transform: translateY(-4px);
}
.quickTech-provide__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2e6b4e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.quickTech-provide__check svg {
  width: 26px;
  height: 26px;
}
.quickTech-provide__card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}
.quickTech-provide__card p {
  color: var(--qt-ink-500);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

/* ---------- Through the lens (video) ---------- */
.quickTech-lens {
  background: var(--qt-steel-600);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.quickTech-lens h2,
.quickTech-lens .quickTech-eyebrow {
  color: #fff;
}
.quickTech-lens .quickTech-sectionhead p {
  color: rgba(255, 255, 255, 0.78);
}
.quickTech-lens__item {
  background: var(--qt-navy-950);
  border-radius: var(--qt-radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quickTech-lens__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--qt-signal-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--qt-transition);
  position: relative;
  z-index: 2;
}
.quickTech-lens__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.quickTech-lens__item:hover .quickTech-lens__play {
  transform: scale(1.1);
}
.quickTech-lens__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  font-family: var(--qt-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ---------- About us (redesign navy panel) ---------- */
.quickTech-home-about {
  background: var(--qt-navy-900);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.quickTech-home-about h2 {
  color: #fff;
}
.quickTech-home-about p {
  max-width: 70ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Find our experts (member search) ---------- */
.quickTech-find {
  background: var(--qt-steel-600);
  color: #fff;
  padding-block: clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.quickTech-find h2 {
  color: #fff;
}
.quickTech-find p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin-inline: auto;
}
.quickTech-find__bar {
  max-width: 640px;
  margin: 1.8rem auto 0;
  display: flex;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--qt-shadow-card);
}
.quickTech-find__bar input {
  flex: 1;
  border: 0;
  padding: 0.95rem 1.2rem;
  font-family: var(--qt-font-body);
  font-size: 0.95rem;
  color: var(--qt-ink-900);
}
.quickTech-find__bar input:focus {
  outline: none;
}
.quickTech-find__bar button {
  border: 0;
  background: var(--qt-gold-500);
  color: var(--qt-navy-950);
  padding: 0 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--qt-transition);
}
.quickTech-find__bar button:hover {
  background: var(--qt-gold-300);
}
.quickTech-find__bar button svg {
  width: 20px;
  height: 20px;
}

/* ---------- Portfolio / Activities slider ---------- */
.quickTech-portfolio2 {
  background: var(--qt-white);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.quickTech-portfolio2__track {
  position: relative;
}
.quickTech-portfolio2__item {
  border-radius: var(--qt-radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* padding: 1.6rem; */
}
.quickTech-portfolio2__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 26, 44, 0.86),
    rgba(10, 26, 44, 0.15)
  );
  z-index: 0;
}
.quickTech-portfolio2__item > * {
  position: relative;
  z-index: 1;
}
.quickTech-portfolio2__item svg.quickTech-portfolio2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.quickTech-portfolio2__cat {
  font-family: var(--qt-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--qt-gold-300);
  margin-bottom: 0.4rem;
}
.quickTech-portfolio2__title {
  font-family: var(--qt-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
}
.quickTech-portfolio2__nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.quickTech-portfolio2__nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--qt-line);
  background: #fff;
  color: var(--qt-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--qt-transition);
}
.quickTech-portfolio2__nav button:hover {
  background: var(--qt-navy-900);
  color: #fff;
  border-color: var(--qt-navy-900);
}
.quickTech-portfolio2__nav svg {
  width: 18px;
  height: 18px;
}

/* ---------- Work process ---------- */
.quickTech-process2 {
  background: var(--qt-gold-500);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.quickTech-process2 .quickTech-eyebrow {
  color: var(--qt-navy-950);
}
.quickTech-process2 h2 {
  color: var(--qt-navy-950);
}
.quickTech-process2__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  position: relative;
  margin-top: 2.5rem;
}
.quickTech-process2__row::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(15, 34, 56, 0.35) 0 8px,
    transparent 8px 15px
  );
  z-index: 0;
}
.quickTech-process2__step {
  flex: 1 1 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quickTech-process2__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--qt-navy-950);
  color: var(--qt-gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  border: 3px solid var(--qt-gold-500);
}
.quickTech-process2__icon svg {
  width: 28px;
  height: 28px;
}
.quickTech-process2__label {
  font-family: var(--qt-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--qt-navy-950);
}

/* ---------- Testimonials (People about us) ---------- */
.quickTech-testim {
  background: var(--qt-parchment);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.quickTech-testim__card {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem;
  background: var(--qt-white);
  border-radius: var(--qt-radius-md);
  border: 1px solid var(--qt-line);
  height: 100%;
}
.quickTech-testim__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--qt-navy-800);
  color: var(--qt-gold-300);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quickTech-testim__avatar svg {
  width: 26px;
  height: 26px;
}
.quickTech-testim__name {
  font-weight: 700;
  color: var(--qt-navy-900);
  margin-bottom: 0.1rem;
  font-size: 0.98rem;
}
.quickTech-testim__role {
  font-family: var(--qt-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--qt-gold-600);
  margin-bottom: 0.5rem;
}
.quickTech-testim__text {
  color: var(--qt-ink-500);
  font-size: 0.9rem;
  margin: 0;
}
.quickTech-testim__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
}
.quickTech-testim__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--qt-line);
  display: inline-block;
}
.quickTech-testim__dots span.quickTech-active {
  background: var(--qt-gold-500);
}

/* ---------- Start your membership (gold form band) ---------- */
.quickTech-startproject {
  background: #24432b96;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.quickTech-startproject h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0.4rem;
}
.quickTech-startproject p {
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.quickTech-startproject__form {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.quickTech-startproject__form input {
  flex: 1 1 200px;
  border: 0;
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  font-family: var(--qt-font-body);
  font-size: 0.92rem;
}
.quickTech-startproject__form input:focus {
  outline: 2px solid var(--qt-gold-500);
}
.quickTech-startproject__form button {
  flex: 0 0 auto;
}

/* ---------- Contacts strip ---------- */
.quickTech-contactstrip {
  background: var(--qt-navy-900);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(2.6rem, 5vw, 3.8rem);
  text-align: center;
}
.quickTech-contactstrip h2 {
  color: #fff;
}
.quickTech-contactstrip__row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  font-size: 0.95rem;
}
.quickTech-contactstrip__row > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.quickTech-contactstrip__row svg {
  width: 18px;
  height: 18px;
  color: var(--qt-gold-300);
  flex: none;
}
.quickTech-contactstrip__row a {
  color: rgba(255, 255, 255, 0.85);
}
.quickTech-contactstrip__row a:hover {
  color: var(--qt-gold-300);
}

/* ---------- Responsive tweaks for redesigned blocks ---------- */
@media (max-width: 991.98px) {
  .quickTech-process2__row::before {
    display: none;
  }
  .quickTech-process2__step {
    flex: 1 1 30%;
  }
}
@media (max-width: 767.98px) {
  .quickTech-home-hero__title {
    font-size: 2rem;
  }
  .quickTech-adv__item {
    padding: 0;
  }
  .quickTech-testim__card {
    flex-direction: column;
    text-align: center;
  }
  .quickTech-testim__avatar {
    margin: 0 auto;
  }
  .quickTech-startproject__form {
    flex-direction: column;
  }
  .quickTech-startproject__form button {
    width: 100%;
  }
  .quickTech-contactstrip__row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .quickTech-find__bar {
    flex-direction: column;
    border-radius: 6px;
  }
  .quickTech-find__bar button {
    padding: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .quickTech-adv .row > div {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.6rem;
  }
}

/* ==========================================================================
   MEMBER DASHBOARD (dashboard.html)
   Namespace: "quickTech-dash-*"
   ========================================================================== */

.quickTech-dash-body {
  background: var(--qt-parchment);
}
.quickTech-dash-wrap {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - 1px);
}

/* ---------- Sidebar ---------- */
.quickTech-dash-sidebar {
  flex: 0 0 264px;
  width: 264px;
  background: var(--qt-navy-950);
  color: rgba(255, 255, 255, 0.78);
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  z-index: 50;
}
.quickTech-dash-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.4rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.quickTech-dash-sidebar__brand svg {
  width: 38px;
  height: 38px;
  flex: none;
}
.quickTech-dash-sidebar__brand span {
  font-family: var(--qt-font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
}
.quickTech-dash-profile {
  padding: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.quickTech-dash-profile__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--qt-navy-800);
  color: var(--qt-gold-300);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--qt-font-display);
  font-weight: 700;
  border: 2px solid var(--qt-gold-500);
}
.quickTech-dash-profile__name {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
}
.quickTech-dash-profile__rank {
  font-family: var(--qt-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--qt-gold-300);
}

.quickTech-dash-nav {
  list-style: none;
  margin: 0;
  padding: 0.9rem;
  flex: 1;
  overflow-y: auto;
}
.quickTech-dash-nav li {
  margin-bottom: 0.2rem;
}
.quickTech-dash-nav button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: 0;
  text-align: left;
  padding: 0.68rem 0.8rem;
  border-radius: var(--qt-radius-sm);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--qt-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--qt-transition);
}
.quickTech-dash-nav button svg {
  width: 18px;
  height: 18px;
  flex: none;
  opacity: 0.85;
}
.quickTech-dash-nav button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.quickTech-dash-nav button.quickTech-active {
  background: var(--qt-gold-500);
  color: var(--qt-navy-950);
}
.quickTech-dash-nav button.quickTech-active svg {
  opacity: 1;
}
.quickTech-dash-nav__badge {
  margin-left: auto;
  background: var(--qt-signal-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.05rem 0.45rem;
  font-family: var(--qt-font-mono);
}
.quickTech-dash-sidebar__logout {
  padding: 1rem 1.3rem 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.quickTech-dash-sidebar__logout a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
}
.quickTech-dash-sidebar__logout a:hover {
  color: var(--qt-gold-300);
}
.quickTech-dash-sidebar__logout svg {
  width: 17px;
  height: 17px;
}

/* ---------- Main area ---------- */
.quickTech-dash-main {
  flex: 1;
  min-width: 0;
  padding: 1.8rem clamp(1rem, 3vw, 2.6rem) 4rem;
}
.quickTech-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.quickTech-dash-topbar h1 {
  font-size: 1.5rem;
  margin: 0;
}
.quickTech-dash-topbar__date {
  font-family: var(--qt-font-mono);
  font-size: 0.78rem;
  color: var(--qt-ink-500);
}
.quickTech-dash-burger {
  display: none;
  background: var(--qt-navy-900);
  color: #fff;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--qt-radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quickTech-dash-panel {
  display: none;
}
.quickTech-dash-panel.quickTech-active {
  display: block;
  animation: qtDashFade 320ms ease;
}
@keyframes qtDashFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Stat cards ---------- */
.quickTech-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.quickTech-dash-stat {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--qt-gold-500);
}
.quickTech-dash-stat__label {
  font-family: var(--qt-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--qt-ink-500);
  margin-bottom: 0.4rem;
}
.quickTech-dash-stat__value {
  font-family: var(--qt-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--qt-navy-900);
}

/* ---------- Panel card shell ---------- */
.quickTech-dash-card {
  background: var(--qt-white);
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}
.quickTech-dash-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.quickTech-dash-card__head h2 {
  font-size: 1.15rem;
  margin: 0;
}

/* ---------- Profile fields (readonly toggle) ---------- */
.quickTech-dash-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.quickTech-dash-field-grid .quickTech-control[readonly] {
  background: var(--qt-parchment);
  color: var(--qt-ink-700);
  cursor: default;
}

/* ---------- Timeline / stepper (membership status) ---------- */
.quickTech-dash-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 1rem 0 2rem;
}
.quickTech-dash-timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--qt-line);
}
.quickTech-dash-timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quickTech-dash-timeline__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--qt-white);
  border: 2px solid var(--qt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  color: var(--qt-ink-500);
}
.quickTech-dash-timeline__step.quickTech-done .quickTech-dash-timeline__dot {
  background: #2e6b4e;
  border-color: #2e6b4e;
  color: #fff;
}
.quickTech-dash-timeline__step.quickTech-current .quickTech-dash-timeline__dot {
  background: var(--qt-gold-500);
  border-color: var(--qt-gold-500);
  color: var(--qt-navy-950);
}
.quickTech-dash-timeline__dot svg {
  width: 18px;
  height: 18px;
}
.quickTech-dash-timeline__label {
  font-family: var(--qt-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--qt-ink-700);
}

/* ---------- Tables ---------- */
.quickTech-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.quickTech-dash-table th {
  text-align: left;
  font-family: var(--qt-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--qt-ink-500);
  padding: 0.7rem 0.6rem;
  border-bottom: 1px solid var(--qt-line);
}
.quickTech-dash-table td {
  padding: 0.85rem 0.6rem;
  border-bottom: 1px solid var(--qt-line);
  color: var(--qt-ink-700);
  vertical-align: middle;
}
.quickTech-dash-table tr:last-child td {
  border-bottom: 0;
}

/* ---------- Event / request list rows ---------- */
.quickTech-dash-event {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.quickTech-dash-event__date {
  width: 56px;
  text-align: center;
  flex: none;
  background: var(--qt-navy-950);
  color: #fff;
  border-radius: 4px;
  padding: 0.4rem 0;
  font-family: var(--qt-font-mono);
}
.quickTech-dash-event__date b {
  display: block;
  font-size: 1.05rem;
}
.quickTech-dash-event__date span {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}
.quickTech-dash-event__body {
  flex: 1;
  min-width: 180px;
}
.quickTech-dash-event__title {
  font-weight: 700;
  color: var(--qt-navy-900);
  margin-bottom: 0.15rem;
}
.quickTech-dash-event__meta {
  font-size: 0.82rem;
  color: var(--qt-ink-500);
}

/* ---------- Document cards ---------- */
.quickTech-dash-doc {
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  padding: 1rem;
  text-align: center;
  background: var(--qt-white);
}
.quickTech-dash-doc__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--qt-parchment);
  color: var(--qt-navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}
.quickTech-dash-doc__icon svg {
  width: 24px;
  height: 24px;
}
.quickTech-dash-doc__name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--qt-navy-900);
  margin-bottom: 0.2rem;
}
.quickTech-dash-doc__meta {
  font-size: 0.74rem;
  color: var(--qt-ink-500);
  margin-bottom: 0.8rem;
}

/* ---------- Quick links (overview) ---------- */
.quickTech-dash-quicklink {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--qt-line);
  border-radius: var(--qt-radius-md);
  background: var(--qt-white);
  height: 100%;
  transition:
    box-shadow var(--qt-transition),
    transform var(--qt-transition);
  cursor: pointer;
}
.quickTech-dash-quicklink:hover {
  box-shadow: var(--qt-shadow-card);
  transform: translateY(-2px);
}
.quickTech-dash-quicklink__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--qt-navy-900);
  color: var(--qt-gold-300);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quickTech-dash-quicklink__icon svg {
  width: 20px;
  height: 20px;
}
.quickTech-dash-quicklink__label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--qt-navy-900);
}

/* ---------- Sidebar overlay (mobile) ---------- */
.quickTech-dash-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 28, 0.55);
  z-index: 40;
}
.quickTech-dash-overlay.quickTech-open {
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .quickTech-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .quickTech-dash-field-grid {
    grid-template-columns: 1fr;
  }
  .quickTech-dash-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform var(--qt-transition);
    box-shadow: var(--qt-shadow-lift);
  }
  .quickTech-dash-sidebar.quickTech-open {
    transform: translateX(0);
  }
  .quickTech-dash-burger {
    display: flex;
  }
  .quickTech-dash-timeline {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .quickTech-dash-timeline::before {
    display: none;
  }
  .quickTech-dash-timeline__step {
    flex: 1 1 30%;
  }
}
@media (max-width: 575.98px) {
  .quickTech-dash-stats {
    grid-template-columns: 1fr 1fr;
  }
  .quickTech-dash-main {
    padding: 1.4rem 1rem 3rem;
  }
  .quickTech-dash-card {
    padding: 1.2rem;
  }
  .quickTech-dash-event {
    flex-direction: column;
    align-items: flex-start;
  }
}



.quickTech-brand img{
  height: 53px;
}

.quickTech-footer__brand img{
  background: white;
  /* border-radius: 50%; */
  height: 77px;
}




/* Enable horizontal scrolling and smooth snap behavior */
#quickTechPortfolioSlides {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
#quickTechPortfolioSlides::-webkit-scrollbar {
  display: none;
}

/* Ensure columns retain their width without shrinking */
#quickTechPortfolioSlides > [class*="col-"] {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Mobile responsive full-width slides */
@media (max-width: 767.98px) {
  #quickTechPortfolioSlides > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



.quicktechactivity-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 30px;
}

/* Slide item layout */
.quicktechactivity-slide .quickTech-portfolio2__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.quicktechactivity-slide svg.quickTech-portfolio2__bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation buttons container (Centered at the bottom) */
.quicktechactivity-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* Circular arrow buttons */
.quicktechactivity-prev,
.quicktechactivity-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quicktechactivity-prev:hover,
.quicktechactivity-next:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quicktechactivity-prev svg,
.quicktechactivity-next svg {
  width: 16px;
  height: 16px;
}

/* Swiper disabled state styling */
.quicktechactivity-prev.swiper-button-disabled,
.quicktechactivity-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}


.quicktech-bottom-activity{
  position: absolute;
  bottom: 20px;
  left: 20px;
}


.quicktech-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0b131f;
}

.quicktech-banner__swiper {
  width: 100%;
  height: 100%;
}

.quicktech-banner__slide {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Background image & gradient overlay */
.quicktech-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.quicktech-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 60%, rgba(15, 23, 42, 0.2) 100%);
}

/* Container & text content */
.quicktech-banner__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.quicktech-banner__content {
  max-width: 620px;
  color: #ffffff;
}

.quicktech-banner__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.4);
  color: #c89b3c;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.quicktech-banner__title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.quicktech-banner__desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 28px;
}

/* Buttons */
.quicktech-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quicktech-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.quicktech-banner__btn--primary {
  background-color: #c89b3c;
  color: #0f172a;
}

.quicktech-banner__btn--primary:hover {
  background-color: #dfae4b;
  transform: translateY(-2px);
}

.quicktech-banner__btn--outline {
  border: 1px solid #cbd5e1;
  color: #ffffff;
}

.quicktech-banner__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Side navigation arrows */
.quicktech-banner__prev,
.quicktech-banner__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quicktech-banner__prev { left: 20px; }
.quicktech-banner__next { right: 20px; }

.quicktech-banner__prev:hover,
.quicktech-banner__next:hover {
  background: #c89b3c;
  border-color: #c89b3c;
  color: #0f172a;
}

.quicktech-banner__prev svg,
.quicktech-banner__next svg {
  width: 20px;
  height: 20px;
}

/* Pagination bullets */
.quicktech-banner__pagination {
  position: absolute;
  bottom: 24px !important;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.quicktech-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.quicktech-banner .swiper-pagination-bullet-active {
  background: #c89b3c;
  width: 28px;
}

/* Mobile responsive layout */
@media (max-width: 768px) {

.quicktech-img-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: unset !important;
	display: block;
}

  .quicktech-banner__slide {
    min-height: 480px;
  }
  .quicktech-banner__title {
    font-size: 2rem;
  }
  .quicktech-banner__prev,
  .quicktech-banner__next {
    display: none;
  }
}





.quicktech-img-slider {
  position: relative;
  width: 100%;
  
  overflow: hidden;
}

.quicktech-img-slider__swiper {
	width: 100%;
	height: 566px;
	object-fit: cover;
}

.quicktech-img-slider__slide {
  width: 100%;
  height: 100%;
}

/* Image scaling and layout */
.quicktech-img-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.quicktech-img-slider__prev { left: 16px; }
.quicktech-img-slider__next { right: 16px; }

.quicktech-img-slider__prev:hover,
.quicktech-img-slider__next:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.quicktech-img-slider__prev svg,
.quicktech-img-slider__next svg {
  width: 20px;
  height: 20px;
}

/* Pagination Dots */
.quicktech-img-slider__pagination {
  position: absolute;
  bottom: 16px !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.quicktech-img-slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.quicktech-img-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  background: #ffffff;
}

/* Mobile height adjustment */
@media (max-width: 768px) {
.quicktech-img-slider__swiper {
	height: 152px;
}
.quickTech-startproject__form input {
	flex: 0;
	border: 0;
	border-radius: 3px;
	padding: 5px !important;
	font-family: var(--qt-font-body);
	font-size: 0.92rem;
}
}


@media (min-width: 1000px) and (max-width: 1400px) {
.quicktech-img-slider__swiper {
	width: 100%;
	height: 498px;
}
}

@media (min-width: 576px) and (max-width: 766.98px) {
  .quicktech-img-slider__swiper {
	width: 100%;
	height: 400px;
}
}


@media (min-width: 767px) and (max-width: 991.98px) {
    .quicktech-img-slider__swiper {
	width: 100%;
	height: 400px;
}
}




.quicktech-testi {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  padding-bottom: 20px;
}

.quicktech-testi__swiper {
  width: 100%;
  padding-bottom: 20px;
}

/* Ensure slides match height across columns */
.quicktech-testi-slide {
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

/* Testimonial Card Layout */
.quicktech-testi__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quicktech-testi__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Avatar Styling */
.quicktech-testi__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quicktech-testi__avatar svg {
  width: 24px;
  height: 24px;
}

/* Text & Typography */
.quicktech-testi__info {
  flex: 1;
}

.quicktech-testi__name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.quicktech-testi__role {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 12px 0;
}

.quicktech-testi__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}

/* Centered Circular Arrow Navigation */
.quicktech-testi__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.quicktech-testi__prev,
.quicktech-testi__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quicktech-testi__prev:hover,
.quicktech-testi__next:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quicktech-testi__prev svg,
.quicktech-testi__next svg {
  width: 16px;
  height: 16px;
}

.quicktech-testi__prev.swiper-button-disabled,
.quicktech-testi__next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}


.quickTech-lens__item iframe{
  width: 100% !important;
  height: 100% !important;
}
