/* ==========================================================
   bcreciente - Market Research Company
   Custom Stylesheet
   ========================================================== */

:root {
  --bc-primary: #1B2CFF;
  --bc-primary-dark: #1320C4;
  --bc-purple: #6A3EFF;
  --bc-teal: #1ECBB0;
  --bc-lime: #C7F04F;
  --bc-dark: #0B0F2A;
  --bc-dark-2: #151A3D;
  --bc-navy: #232A54;
  --bc-body: #5A6079;
  --bc-gray: #F5F6FA;
  --bc-gray-2: #EDEFF7;
  --bc-border: #E4E7F0;
  --bc-white: #ffffff;
  --bc-grad: linear-gradient(120deg, #1B2CFF 0%, #6A3EFF 100%);
  --bc-grad-soft: linear-gradient(120deg, rgba(27,44,255,.08) 0%, rgba(106,62,255,.08) 100%);
  --bc-shadow: 0 18px 45px rgba(11, 15, 42, .08);
  --bc-shadow-lg: 0 30px 70px rgba(11, 15, 42, .14);
  --bc-radius: 16px;
  --bc-font-head: 'Montserrat', sans-serif;
  --bc-font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bc-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--bc-body);
  background: var(--bc-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bc-font-head);
  color: var(--bc-dark);
  font-weight: 700;
  line-height: 1.2;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.bc-locked {
  overflow: hidden;
}

.bc-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.bc-section {
  padding: 100px 0;
}

.bc-section-sm {
  padding: 70px 0;
}

.bc-bg-gray {
  background: var(--bc-gray);
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 16px 30px;
  border-radius: 50px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.bc-btn-primary {
  background: var(--bc-grad);
  color: var(--bc-white);
  box-shadow: 0 12px 28px rgba(27, 44, 255, .32);
}

.bc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(27, 44, 255, .4);
  color: var(--bc-white);
}

.bc-btn-outline {
  background: transparent;
  color: var(--bc-primary);
  border: 2px solid var(--bc-primary);
}

.bc-btn-outline:hover {
  background: var(--bc-primary);
  color: var(--bc-white);
}

.bc-btn-white {
  background: var(--bc-white);
  color: var(--bc-primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.bc-btn-white:hover {
  transform: translateY(-3px);
  color: var(--bc-primary);
}

.bc-btn-sm {
  padding: 11px 22px;
  font-size: 14px;
}

/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */
.bc-topbar {
  background: var(--bc-dark);
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
}

.bc-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 16px;
}

.bc-topbar-contact,
.bc-topbar-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bc-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
}

.bc-topbar a:hover {
  color: var(--bc-lime);
}

.bc-topbar i {
  color: var(--bc-lime);
  font-size: 15px;
}

.bc-topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bc-nav-wrap {
  background: var(--bc-white);
  border-bottom: 1px solid var(--bc-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .3s ease;
}

.bc-nav-wrap.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 15, 42, .1);
}

.bc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.bc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-logo-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.bc-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.bc-logo-text b {
  font-family: var(--bc-font-head);
  font-size: 23px;
  font-weight: 800;
  color: var(--bc-dark);
  letter-spacing: -.5px;
}

.bc-logo-text b span {
  color: var(--bc-primary);
}

.bc-logo-text small {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bc-primary);
  font-weight: 600;
}

/* Nav menu */
.bc-nav {
  display: flex;
  align-items: center;
}

.bc-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bc-menu > li {
  position: relative;
}

.bc-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 28px 14px;
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--bc-dark);
  position: relative;
}

.bc-menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 22px;
  height: 2px;
  background: var(--bc-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.bc-menu > li:hover > a,
.bc-menu > li.active > a {
  color: var(--bc-primary);
}

.bc-menu > li:hover > a::after,
.bc-menu > li.active > a::after {
  transform: scaleX(1);
}

.bc-menu > li > a i {
  font-size: 14px;
  transition: transform .3s ease;
}

.bc-menu > li:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown */
.bc-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bc-white);
  border-radius: 14px;
  box-shadow: var(--bc-shadow-lg);
  border: 1px solid var(--bc-border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s ease;
  z-index: 1200;
}

.bc-menu > li:hover > .bc-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-drop li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bc-dark);
}

.bc-drop li a i {
  font-size: 18px;
  color: var(--bc-primary);
  background: var(--bc-grad-soft);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

.bc-drop li a:hover {
  background: var(--bc-grad);
  color: var(--bc-white);
  padding-left: 18px;
}

.bc-drop li a:hover i {
  background: rgba(255, 255, 255, .18);
  color: var(--bc-white);
}

/* Nav actions */
.bc-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.bc-burger span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--bc-dark);
  transition: all .3s ease;
}

.bc-burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bc-burger.open span:nth-child(2) {
  opacity: 0;
}

.bc-burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.bc-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(106, 62, 255, .35) 0%, transparent 60%),
    radial-gradient(700px 480px at -10% 110%, rgba(27, 44, 255, .35) 0%, transparent 55%),
    linear-gradient(135deg, #0B0F2A 0%, #151A3D 55%, #1B1F4B 100%);
  color: var(--bc-white);
  overflow: hidden;
  padding: 120px 0 90px;
}

.bc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.bc-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.bc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--bc-lime);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.bc-hero h1 {
  color: var(--bc-white);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.bc-hero h1 span {
  background: linear-gradient(120deg, var(--bc-lime) 0%, #7FE3C8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bc-hero p.lead {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 34px;
}

.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.bc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 640px;
}

.bc-hero-stat {
  border-left: 2px solid rgba(255, 255, 255, .16);
  padding-left: 16px;
}

.bc-hero-stat b {
  font-family: var(--bc-font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--bc-white);
  display: block;
  line-height: 1.1;
}

.bc-hero-stat b em {
  font-style: normal;
  color: var(--bc-lime);
}

.bc-hero-stat span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual */
.bc-hero-visual {
  position: relative;
}

.bc-hero-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  border: 1px solid rgba(255, 255, 255, .12);
}

.bc-hero-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.bc-float-card {
  position: absolute;
  background: var(--bc-white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--bc-shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: bcFloat 5s ease-in-out infinite;
}

.bc-float-card .bx {
  font-size: 30px;
  color: var(--bc-primary);
  background: var(--bc-grad-soft);
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bc-float-card b {
  font-family: var(--bc-font-head);
  color: var(--bc-dark);
  font-size: 15px;
  display: block;
  line-height: 1.3;
}

.bc-float-card small {
  font-size: 12.5px;
  color: var(--bc-body);
}

.bc-float-card.fc-1 {
  top: 24px;
  left: -46px;
}

.bc-float-card.fc-2 {
  bottom: 30px;
  right: -30px;
  animation-delay: 1.2s;
}

@keyframes bcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ----------------------------------------------------------
   Section headings
   ---------------------------------------------------------- */
.bc-section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.bc-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bc-section-head .bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bc-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bc-section-head .bc-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--bc-grad);
  border-radius: 2px;
}

.bc-section-head.center .bc-tag::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--bc-grad);
  border-radius: 2px;
}

.bc-section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.bc-section-head h2 span {
  background: var(--bc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bc-section-head p {
  font-size: 16.5px;
}

/* ----------------------------------------------------------
   About preview / split sections
   ---------------------------------------------------------- */
.bc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.bc-split-img {
  position: relative;
}

.bc-split-img .main-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--bc-shadow);
}

.bc-split-img .main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.bc-split-img .sub-img {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 46%;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--bc-white);
  box-shadow: var(--bc-shadow-lg);
}

.bc-split-img .sub-img img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.bc-exp-badge {
  position: absolute;
  top: -30px;
  left: -24px;
  background: var(--bc-grad);
  color: var(--bc-white);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: var(--bc-shadow-lg);
  text-align: center;
}

.bc-exp-badge b {
  font-family: var(--bc-font-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.bc-exp-badge span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .85;
}

.bc-split-content h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.bc-split-content h2 span {
  background: var(--bc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bc-split-content p {
  margin-bottom: 16px;
}

.bc-check-list {
  margin: 26px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.bc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--bc-dark);
  font-size: 15px;
}

.bc-check-list i {
  color: var(--bc-teal);
  font-size: 20px;
  margin-top: 1px;
}

/* ----------------------------------------------------------
   Services cards
   ---------------------------------------------------------- */
.bc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bc-services-grid.two {
  grid-template-columns: repeat(3, 1fr);
}

.bc-service-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 34px 28px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.bc-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--bc-grad);
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.bc-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--bc-shadow-lg);
  border-color: transparent;
}

.bc-service-card:hover::before {
  transform: scaleX(1);
}

.bc-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bc-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .35s ease;
}

.bc-service-icon .bx {
  font-size: 32px;
  color: var(--bc-primary);
  transition: all .35s ease;
}

.bc-service-card:hover .bc-service-icon {
  background: var(--bc-grad);
}

.bc-service-card:hover .bc-service-icon .bx {
  color: var(--bc-white);
}

.bc-service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.bc-service-card h3 a:hover {
  color: var(--bc-primary);
}

.bc-service-card p {
  font-size: 14.5px;
  margin-bottom: 18px;
}

.bc-service-link {
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--bc-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bc-service-link .bx {
  transition: transform .3s ease;
}

.bc-service-link:hover .bx {
  transform: translateX(6px);
}

/* ----------------------------------------------------------
   Methodology / steps
   ---------------------------------------------------------- */
.bc-process {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(106, 62, 255, .22) 0%, transparent 60%),
    linear-gradient(135deg, #0B0F2A, #151A3D);
  color: var(--bc-white);
}

.bc-process .bc-section-head h2 {
  color: var(--bc-white);
}

.bc-process .bc-section-head p {
  color: rgba(255, 255, 255, .7);
}

.bc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.bc-step {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--bc-radius);
  padding: 34px 28px;
  position: relative;
  transition: all .35s ease;
}

.bc-step:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-8px);
}

.bc-step-num {
  font-family: var(--bc-font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--bc-lime), #7FE3C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.bc-step .bx {
  font-size: 30px;
  color: var(--bc-lime);
  position: absolute;
  top: 34px;
  right: 28px;
}

.bc-step h3 {
  color: var(--bc-white);
  font-size: 19px;
  margin-bottom: 10px;
}

.bc-step p {
  color: rgba(255, 255, 255, .68);
  font-size: 14.5px;
}

/* ----------------------------------------------------------
   Industries
   ---------------------------------------------------------- */
.bc-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bc-industry-card {
  position: relative;
  border-radius: var(--bc-radius);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--bc-shadow);
}

.bc-industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.bc-industry-card:hover img {
  transform: scale(1.08);
}

.bc-industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 42, 0) 30%, rgba(11, 15, 42, .88) 100%);
}

.bc-industry-card .bc-industry-info {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
  width: 100%;
}

.bc-industry-card .bc-industry-info i {
  font-size: 26px;
  color: var(--bc-lime);
  margin-bottom: 8px;
  display: block;
}

.bc-industry-card .bc-industry-info h3 {
  color: var(--bc-white);
  font-size: 18px;
}

.bc-industry-card .bc-industry-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ----------------------------------------------------------
   Why choose us
   ---------------------------------------------------------- */
.bc-why {
  background: var(--bc-gray);
}

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

.bc-why-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 32px 28px;
  transition: all .35s ease;
  position: relative;
}

.bc-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bc-shadow);
}

.bc-why-card .bc-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bc-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bc-why-card .bc-why-icon .bx {
  font-size: 28px;
  color: var(--bc-white);
}

.bc-why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bc-why-card p {
  font-size: 14.5px;
}

/* ----------------------------------------------------------
   Testimonials
   ---------------------------------------------------------- */
.bc-testi-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.bc-testi-slider {
  position: relative;
}

.bc-testi-slide {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 44px;
  box-shadow: var(--bc-shadow);
  text-align: center;
}

.bc-testi-stars {
  color: #FFB400;
  font-size: 20px;
  margin-bottom: 20px;
}

.bc-testi-slide blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: var(--bc-dark);
  font-weight: 500;
  font-family: var(--bc-font-head);
  margin-bottom: 26px;
}

.bc-testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bc-testi-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.bc-testi-author b {
  font-family: var(--bc-font-head);
  color: var(--bc-dark);
  display: block;
  font-size: 15px;
}

.bc-testi-author span {
  font-size: 13.5px;
}

.bc-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.bc-slider-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bc-border);
  background: var(--bc-white);
  color: var(--bc-dark);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.bc-slider-nav button:hover {
  background: var(--bc-grad);
  color: var(--bc-white);
  border-color: transparent;
}

.bc-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.bc-testi-dots button {
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background: var(--bc-gray-2);
  transition: all .3s ease;
}

.bc-testi-dots button.active {
  width: 26px;
  background: var(--bc-grad);
}

/* ----------------------------------------------------------
   CTA band
   ---------------------------------------------------------- */
.bc-cta {
  border-radius: 24px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(199, 240, 79, .25) 0%, transparent 55%),
    var(--bc-grad);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--bc-shadow-lg);
  position: relative;
  overflow: hidden;
}

.bc-cta::before {
  content: "\ea51";
  font-family: 'boxicons';
  position: absolute;
  right: 40px;
  bottom: -30px;
  font-size: 220px;
  color: rgba(255, 255, 255, .08);
}

.bc-cta h2 {
  color: var(--bc-white);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.bc-cta p {
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
}

/* ----------------------------------------------------------
   Page hero (inner pages)
   ---------------------------------------------------------- */
.bc-page-hero {
  position: relative;
  background:
    radial-gradient(800px 380px at 90% -10%, rgba(106, 62, 255, .4) 0%, transparent 60%),
    radial-gradient(600px 360px at -10% 120%, rgba(27, 44, 255, .4) 0%, transparent 55%),
    linear-gradient(135deg, #0B0F2A 0%, #151A3D 60%, #1B1F4B 100%);
  color: var(--bc-white);
  padding: 96px 0 84px;
  text-align: center;
}

.bc-page-hero h1 {
  color: var(--bc-white);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.bc-page-hero p {
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16.5px;
}

.bc-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--bc-font-head);
  font-size: 14px;
  font-weight: 600;
}

.bc-breadcrumb a {
  color: var(--bc-lime);
}

.bc-breadcrumb span {
  color: rgba(255, 255, 255, .5);
}

/* ----------------------------------------------------------
   Generic grids & blocks
   ---------------------------------------------------------- */
.bc-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-feature {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 30px 26px;
  transition: all .3s ease;
}

.bc-feature:hover {
  box-shadow: var(--bc-shadow);
  transform: translateY(-6px);
}

.bc-feature .bx {
  font-size: 34px;
  color: var(--bc-primary);
  margin-bottom: 16px;
  display: block;
}

.bc-feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bc-feature p {
  font-size: 14.5px;
}

/* Steps (detail pages) */
.bc-steps-list {
  display: grid;
  gap: 20px;
}

.bc-step-row {
  display: flex;
  gap: 22px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 28px;
}

.bc-step-row .bc-step-num {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--bc-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bc-primary);
  font-weight: 800;
  font-family: var(--bc-font-head);
}

.bc-step-row h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.bc-step-row p {
  font-size: 15px;
}

/* Sidebar (detail pages) */
.bc-sidebar {
  display: grid;
  gap: 28px;
}

.bc-side-box {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 28px;
}

.bc-side-box h3 {
  font-size: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bc-border);
}

.bc-side-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--bc-dark);
  font-size: 15px;
  margin-bottom: 6px;
  background: var(--bc-gray);
}

.bc-side-menu li a .bx {
  font-size: 16px;
}

.bc-side-menu li a:hover,
.bc-side-menu li a.active {
  background: var(--bc-grad);
  color: var(--bc-white);
}

.bc-side-contact {
  background: var(--bc-dark);
  color: var(--bc-white);
}

.bc-side-contact h3 {
  color: var(--bc-white);
}

.bc-side-contact p {
  color: rgba(255, 255, 255, .7);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.bc-side-contact .bc-btn {
  width: 100%;
}

.bc-contact-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bc-contact-mini .bx {
  font-size: 22px;
  color: var(--bc-lime);
}

.bc-contact-mini small {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bc-contact-mini a,
.bc-contact-mini b {
  color: var(--bc-white);
  font-weight: 600;
  font-family: var(--bc-font-head);
  font-size: 14.5px;
}

/* ----------------------------------------------------------
   Data / facts band
   ---------------------------------------------------------- */
.bc-stats-band {
  background:
    radial-gradient(700px 340px at 10% 0%, rgba(199, 240, 79, .18) 0%, transparent 55%),
    var(--bc-grad);
  color: var(--bc-white);
  padding: 70px 0;
}

.bc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.bc-stat b {
  font-family: var(--bc-font-head);
  font-size: 46px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.bc-stat b span {
  color: var(--bc-lime);
}

.bc-stat span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .85;
}

/* ----------------------------------------------------------
   Tables (booklets)
   ---------------------------------------------------------- */
.bc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
}

.bc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.bc-table th {
  background: var(--bc-dark);
  color: var(--bc-white);
  font-family: var(--bc-font-head);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 15px 20px;
}

.bc-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--bc-border);
  font-size: 14.5px;
  color: var(--bc-dark);
}

.bc-table tbody tr:nth-child(even) {
  background: var(--bc-gray);
}

/* ----------------------------------------------------------
   Careers / job cards
   ---------------------------------------------------------- */
.bc-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 28px 30px;
  transition: all .3s ease;
}

.bc-job-card:hover {
  box-shadow: var(--bc-shadow);
  border-color: transparent;
  transform: translateY(-4px);
}

.bc-job-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.bc-job-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.bc-job-info ul li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bc-job-info ul li i {
  color: var(--bc-primary);
}

/* ----------------------------------------------------------
   Forms
   ---------------------------------------------------------- */
.bc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-form-group.full {
  grid-column: 1 / -1;
}

.bc-form-group label {
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--bc-dark);
}

.bc-form-group input,
.bc-form-group select,
.bc-form-group textarea {
  border: 1px solid var(--bc-border);
  background: var(--bc-gray);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--bc-dark);
  outline: none;
  transition: all .3s ease;
  width: 100%;
}

.bc-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.bc-form-group input:focus,
.bc-form-group select:focus,
.bc-form-group textarea:focus {
  border-color: var(--bc-primary);
  background: var(--bc-white);
  box-shadow: 0 0 0 4px rgba(27, 44, 255, .08);
}

.bc-form-group input::placeholder,
.bc-form-group textarea::placeholder {
  color: #9AA0B4;
}

/* ----------------------------------------------------------
   Contact info cards
   ---------------------------------------------------------- */
.bc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-contact-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 34px 28px;
  text-align: center;
  transition: all .3s ease;
}

.bc-contact-card:hover {
  box-shadow: var(--bc-shadow);
  transform: translateY(-6px);
}

.bc-contact-card .bc-why-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--bc-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.bc-contact-card .bc-why-icon .bx {
  font-size: 30px;
  color: var(--bc-white);
}

.bc-contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bc-contact-card p {
  font-size: 15px;
}

.bc-contact-card a {
  font-weight: 600;
  color: var(--bc-primary);
}

/* ----------------------------------------------------------
   Team
   ---------------------------------------------------------- */
.bc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bc-team-card {
  border-radius: var(--bc-radius);
  overflow: hidden;
  border: 1px solid var(--bc-border);
  transition: all .3s ease;
  background: var(--bc-white);
}

.bc-team-card:hover {
  box-shadow: var(--bc-shadow-lg);
  transform: translateY(-8px);
}

.bc-team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.bc-team-card .bc-team-info {
  padding: 22px;
  text-align: center;
}

.bc-team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.bc-team-card span {
  font-size: 13.5px;
  color: var(--bc-primary);
  font-weight: 500;
}

/* ----------------------------------------------------------
   Gallery / image rows
   ---------------------------------------------------------- */
.bc-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bc-img-row img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.bc-footer {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(106, 62, 255, .18) 0%, transparent 55%),
    var(--bc-dark);
  color: rgba(255, 255, 255, .72);
  padding-top: 84px;
}

.bc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}

.bc-footer .bc-logo-text b {
  color: var(--bc-white);
}

.bc-footer-about p {
  font-size: 14.5px;
  margin: 20px 0 24px;
}

.bc-social {
  display: flex;
  gap: 12px;
}

.bc-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-white);
  font-size: 18px;
  transition: all .3s ease;
}

.bc-social a:hover {
  background: var(--bc-grad);
  transform: translateY(-4px);
}

.bc-footer h4 {
  color: var(--bc-white);
  font-size: 18px;
  margin-bottom: 24px;
}

.bc-footer-links li {
  margin-bottom: 12px;
}

.bc-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .72);
}

.bc-footer-links li a .bx {
  font-size: 13px;
  color: var(--bc-lime);
}

.bc-footer-links li a:hover {
  color: var(--bc-white);
  padding-left: 6px;
}

.bc-footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.bc-footer-contact li .bx {
  font-size: 20px;
  color: var(--bc-lime);
  margin-top: 3px;
}

.bc-footer-contact li a {
  color: rgba(255, 255, 255, .72);
}

.bc-footer-contact li a:hover {
  color: var(--bc-white);
}

.bc-copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.bc-copyright b {
  color: var(--bc-lime);
}

.bc-copyright-links {
  display: flex;
  gap: 22px;
}

.bc-copyright-links a:hover {
  color: var(--bc-white);
}

/* ----------------------------------------------------------
   Back to top
   ---------------------------------------------------------- */
.bc-top-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bc-grad);
  color: var(--bc-white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .35s ease;
  box-shadow: 0 14px 30px rgba(27, 44, 255, .4);
}

.bc-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-top-btn:hover {
  transform: translateY(-4px);
}

/* ----------------------------------------------------------
   Content layout (detail pages)
   ---------------------------------------------------------- */
.bc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.bc-main-content .bc-prose h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 34px 0 16px;
  letter-spacing: -.5px;
}

.bc-main-content .bc-prose h2:first-child {
  margin-top: 0;
}

.bc-main-content .bc-prose p {
  margin-bottom: 16px;
}

.bc-highlight {
  background: var(--bc-grad-soft);
  border-left: 4px solid var(--bc-primary);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin: 26px 0;
}

.bc-highlight p {
  margin: 0;
  color: var(--bc-dark);
  font-weight: 500;
}

/* ----------------------------------------------------------
   FAQ accordion
   ---------------------------------------------------------- */
.bc-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.bc-faq-item {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  transition: all .3s ease;
}

.bc-faq-item.open {
  box-shadow: var(--bc-shadow);
  border-color: transparent;
}

.bc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--bc-dark);
}

.bc-faq-q .bx {
  font-size: 24px;
  color: var(--bc-primary);
  transition: transform .3s ease;
  flex: 0 0 auto;
}

.bc-faq-item.open .bc-faq-q .bx {
  transform: rotate(45deg);
}

.bc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.bc-faq-a p {
  padding: 0 26px 24px;
  font-size: 15px;
}

/* ----------------------------------------------------------
   Download cards (booklets)
   ---------------------------------------------------------- */
.bc-download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-download-card {
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 34px 28px;
  text-align: center;
  background: var(--bc-white);
  transition: all .3s ease;
}

.bc-download-card:hover {
  box-shadow: var(--bc-shadow);
  transform: translateY(-6px);
}

.bc-download-card .bx {
  font-size: 44px;
  color: var(--bc-primary);
  margin-bottom: 14px;
  display: block;
}

.bc-download-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bc-download-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.bc-download-card .bc-btn {
  width: 100%;
}

/* ----------------------------------------------------------
   Booklets highlight strip
   ---------------------------------------------------------- */
.bc-booklet-strip {
  background: var(--bc-gray);
  border-radius: var(--bc-radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bc-booklet-strip .bc-booklet-strip-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bc-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
}

.bc-booklet-strip .bc-booklet-strip-icon .bx {
  font-size: 32px;
  color: var(--bc-white);
}

.bc-booklet-strip h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.bc-booklet-strip p {
  font-size: 14px;
  margin: 0;
}

.bc-booklet-strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 360px;
}

/* ----------------------------------------------------------
   Reveal animations
   ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="left"].is-visible {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="right"].is-visible {
  transform: translateX(0);
}

[data-reveal="zoom"] {
  transform: scale(.9);
}

[data-reveal="zoom"].is-visible {
  transform: scale(1);
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
  .bc-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bc-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .bc-layout {
    grid-template-columns: 1fr;
  }

  .bc-sidebar {
    order: -1;
  }
  .bc-hero-inner,
  .bc-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bc-hero-visual {
    max-width: 560px;
  }

  .bc-float-card.fc-1 {
    left: 10px;
  }

  .bc-float-card.fc-2 {
    right: 10px;
  }

  .bc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-nav-actions .bc-btn {
    display: none;
  }

  .bc-burger {
    display: flex;
  }

  .bc-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 88vw);
    height: 100vh;
    background: var(--bc-white);
    z-index: 1300;
    padding: 26px;
    box-shadow: -20px 0 60px rgba(11, 15, 42, .2);
    transition: right .4s ease;
    overflow-y: auto;
  }

  .bc-nav.open {
    right: 0;
  }

  .bc-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bc-menu > li > a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--bc-border);
    width: 100%;
    justify-content: space-between;
  }

  .bc-menu > li > a::after {
    display: none;
  }

  .bc-menu > li.active > a {
    color: var(--bc-primary);
  }

  .bc-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 6px 12px;
    display: none;
  }

  .bc-drop.open {
    display: block;
  }

  .bc-menu > li > a i {
    transform: none !important;
  }

  .bc-why-grid,
  .bc-feature-list,
  .bc-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-stats-grid,
  .bc-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bc-section {
    padding: 70px 0;
  }

  .bc-topbar-right {
    display: none;
  }

  .bc-services-grid.two,
  .bc-services-grid,
  .bc-industry-grid,
  .bc-contact-cards,
  .bc-why-grid,
  .bc-feature-list,
  .bc-team-grid,
  .bc-img-row,
  .bc-download-cards {
    grid-template-columns: 1fr;
  }

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

  .bc-check-list {
    grid-template-columns: 1fr;
  }

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

  .bc-cta {
    padding: 44px 30px;
  }

  .bc-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bc-hero {
    padding: 70px 0 60px;
  }

  .bc-split-img .sub-img {
    right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
