/* =============================================
   BizCode Testimonials Slider — slider.css
   Single-slide horizontal layout: photo left, quote right
   Brand: #C8102E red accent
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bct-red:      #6A1115;
  --bct-red-dark: #6A1115; /*  #a00d24 */
  --bct-dark:     #1a1a1a; /*  #1a1a1a */
  --bct-mid:      #555555;
  --bct-bg:       #F9F9F9;
  --bct-serif:    'Poppins';
  --bct-sans:     'Poppins';
}

/* ── Outer wrapper ── */
.bct-wrapper {
  background: var(--bct-bg);
  padding: 30px;
  box-sizing: border-box;
  font-family: var(--bct-sans);
  outline: none;
}

/* ── Each slide: hidden by default, JS shows active ── */
.bct-slide {
  display: none;
  align-items: center;
  gap: 56px;
}

/* ── Photo column ── */
.bct-photo-wrap {
  flex: 0 0 301px;
  width: 301px;
  height: 301px;
  position: relative;
}

/* Red offset border frame */
.bct-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--bct-red);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.bct-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
  border-radius: 2px;
}

/* Silhouette placeholder (no featured image) */
.bct-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #b8b8b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.bct-photo-placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.45;
  fill: #fff;
}

/* ── Quote column ── */
.bct-quote-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

/* Quote text */
.bct-text {
  width: 80%;
  font-family: var(--bct-serif);
  font-weight:400;
  font-size: 16px;
  line-height: 40px;
  color: var(--bct-dark);
  margin: 0;
  padding: 0;
  border: none;
}
.bct-text p { margin: 0; }

/* Author block */
.bct-author {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bct-name {
  display: block;
  font-family: var(--bct-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--bct-red);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bct-role {
  display: block;
  font-family: var(--bct-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--bct-dark);
  line-height: 1.5;
}

.bct-company {
  display: block;
  font-family: var(--bct-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--bct-mid);
  line-height: 1.5;
}

/* ── Hide unused elements ── */
.bct-stars,
.bct-quote-icon,
.bct-track-outer,
.bct-track,
.bct-dots {
  display: none !important;
}

/* ── Controls: red circular arrows ── */
.bct-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  /* indent to align under quote column: photo(301) + gap(56) = 357px */
  padding-left: 35%;
}
@media(min-width:1290px){
.bct-controls {
padding-left: 23%;
}
.elementor-6653 .elementor-element.elementor-element-18dc7a7 .elementor-heading-title {
    font-family: Poppins, sans-serif;
    font-size: 64px!important;
	line-height:78px!important;
}
.elementor-5429 .elementor-element.elementor-element-017d633, .elementor-element.elementor-element-017d633.e-con-full.contact-hero.e-flex.wpr-particle-no.wpr-jarallax-no.wpr-parallax-no.wpr-sticky-section-no.wpr-column-slider-no.wpr-equal-height-no.e-con.e-child {
    padding: 0 30% !important;
}
}

.bct-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bct-red);
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.14s;
  flex-shrink: 0;
}
.bct-btn:hover  { background: var(--bct-red-dark); transform: scale(1.08); }
/* No disabled state — both arrows always active in infinite loop */
.bct-btn:focus-visible { outline: 3px solid var(--bct-red); outline-offset: 3px; }

/* ── Empty state ── */
.bct-empty {
  font-family: var(--bct-sans);
  color: var(--bct-mid);
  font-size: 15px;
  padding: 24px;
  background: #ece9e4;
  border-radius: 8px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .bct-wrapper { padding: 40px 28px 36px; }
  .bct-slide   { gap: 32px; }
  .bct-photo-wrap { flex: 0 0 170px; width: 170px; height: 204px; }
  .bct-controls   { padding-left: 32% !important; }
}

@media (max-width: 560px) {
  .bct-wrapper { padding: 32px 0px 28px; }
  .bct-slide   { flex-direction: column; align-items: flex-start; gap: 24px; }
  .bct-photo-wrap { flex: none; width: 150px; height: 180px; left: 25px; bottom: 30px; }
  .bct-text    { font-size: 20px; font-weight: 300; line-height: 26px; width:100%; }
  .bct-btn     { width: 42px; height: 42px; font-size: 17px; }
}
