/* ==========================================================================
   Bdevs Elementor Widgets — Frontend Styles
   ========================================================================== */

/* ── Shared Utilities ────────────────────────────────────────────────────── */
.bdevs-cols-1 { display: grid; grid-template-columns: 1fr; }
.bdevs-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.bdevs-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.bdevs-cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.bdevs-cols-5 { display: grid; grid-template-columns: repeat(5, 1fr); }
.bdevs-cols-6 { display: grid; grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
  .bdevs-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .bdevs-cols-5 { grid-template-columns: repeat(4, 1fr); }
  .bdevs-cols-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .bdevs-cols-2,
  .bdevs-cols-3,
  .bdevs-cols-4,
  .bdevs-cols-5,
  .bdevs-cols-6 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .bdevs-cols-2,
  .bdevs-cols-3,
  .bdevs-cols-4,
  .bdevs-cols-5,
  .bdevs-cols-6 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services Card
   ========================================================================== */
.bdevs-services-grid {
  gap: 24px;
}

.bdevs-service-card {
  display: block;
  padding: 40px 30px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.bdevs-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.bdevs-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #DCFCE7;
  color: #22C55E;
  font-size: 30px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bdevs-service-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.bdevs-service-title {
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.bdevs-service-desc {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

.bdevs-layout-list .bdevs-service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  align-items: start;
}

.bdevs-layout-list .bdevs-service-icon {
  grid-row: 1 / 3;
  margin-bottom: 0;
}

/* ==========================================================================
   Portfolio Grid
   ========================================================================== */
.bdevs-portfolio-wrap {}

.bdevs-portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.bdevs-portfolio-filter button {
  background: #F1F5F9;
  border: none;
  cursor: pointer;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  color: #475569;
  transition: background-color 0.25s, color 0.25s;
}

.bdevs-portfolio-filter button:hover,
.bdevs-portfolio-filter button.active {
  background: #22C55E;
  color: #fff;
}

.bdevs-portfolio-grid {
  gap: 20px;
}

.bdevs-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
  cursor: pointer;
}

.bdevs-portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bdevs-portfolio-item:hover img {
  transform: scale(1.05);
}

.bdevs-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 10px;
}

.bdevs-portfolio-item:hover .bdevs-portfolio-overlay {
  opacity: 1;
}

.bdevs-portfolio-overlay-inner {
  text-align: center;
  padding: 20px;
  line-height: 1.4;
}

.bdevs-portfolio-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.bdevs-portfolio-subtitle {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 14px;
}

.bdevs-portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.bdevs-portfolio-link:hover {
  background: rgba(255,255,255,0.4);
  color: #fff;
}

.bdevs-portfolio-item.is-hidden {
  display: none;
}

/* ==========================================================================
   Pricing Table
   ========================================================================== */
.bdevs-pricing-card {
  position: relative;
  padding: 40px 36px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bdevs-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.bdevs-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bdevs-pricing-header {
  margin-bottom: 24px;
}

.bdevs-pricing-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 6px;
}

.bdevs-pricing-card.is-featured .bdevs-pricing-plan-name {
  color: rgba(255,255,255,0.95);
}

.bdevs-pricing-plan-subtitle {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
}

.bdevs-pricing-card.is-featured .bdevs-pricing-plan-subtitle {
  color: rgba(255,255,255,0.7);
}

.bdevs-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F1F5F9;
}

.bdevs-pricing-card.is-featured .bdevs-pricing-price {
  border-bottom-color: rgba(255,255,255,0.2);
}

.bdevs-price-currency {
  font-size: 20px;
  font-weight: 600;
  color: #64748B;
  align-self: flex-start;
  margin-top: 10px;
}

.bdevs-price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
}

.bdevs-price-period {
  font-size: 14px;
  color: #94A3B8;
  align-self: flex-end;
  margin-bottom: 8px;
}

.bdevs-pricing-card.is-featured .bdevs-price-currency,
.bdevs-pricing-card.is-featured .bdevs-price-period {
  color: rgba(255,255,255,0.7);
}

.bdevs-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.bdevs-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: #475569;
  border-bottom: 1px dashed #F1F5F9;
}

.bdevs-pricing-card.is-featured .bdevs-pricing-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.15);
}

.bdevs-pricing-features li:last-child {
  border-bottom: none;
}

.bdevs-pricing-features li.is-included i {
  color: #22C55E;
}

.bdevs-pricing-features li.is-excluded {
  opacity: 0.5;
}

.bdevs-pricing-features li.is-excluded i {
  color: #EF4444;
}

.bdevs-pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 30px;
  background: #DCFCE7;
  color: #22C55E;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
  cursor: pointer;
  border: none;
}

.bdevs-pricing-btn:hover {
  background: #22C55E;
  color: #fff;
  transform: translateY(-1px);
}

.bdevs-pricing-card.is-featured .bdevs-pricing-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.bdevs-pricing-card.is-featured .bdevs-pricing-btn:hover {
  background: #fff;
  color: #22C55E;
  border-color: #fff;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.bdevs-process-steps {}

.bdevs-process-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.bdevs-process-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bdevs-process-step {}

.bdevs-process-horizontal .bdevs-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bdevs-process-vertical .bdevs-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bdevs-step-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.bdevs-process-horizontal .bdevs-step-icon-wrap {
  flex-direction: row;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.bdevs-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #22C55E;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.bdevs-step-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.bdevs-step-number {
  font-size: 18px;
  font-weight: 800;
}

.bdevs-step-connector {
  flex: 1;
  border-top: 2px dashed #CBD5E1;
  margin: 0 6px;
  align-self: center;
}

.bdevs-process-vertical .bdevs-step-connector {
  display: none;
}

.bdevs-step-content {}

.bdevs-step-title {
  font-size: 17px;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 8px;
}

.bdevs-process-horizontal .bdevs-step-title {
  margin-top: 0;
}

.bdevs-step-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .bdevs-process-horizontal {
    grid-template-columns: 1fr;
  }

  .bdevs-process-horizontal .bdevs-step-icon-wrap {
    justify-content: flex-start;
    margin-bottom: 10px;
    flex-direction: column;
  }

  .bdevs-step-connector { display: none; }

  .bdevs-process-horizontal .bdevs-process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .bdevs-process-horizontal .bdevs-step-icon-wrap {
    width: auto;
  }
}

/* ==========================================================================
   Clients Logo
   ========================================================================== */
.bdevs-clients-logo-wrap {
  overflow: hidden;
}

/* Grid layout */
.bdevs-clients-grid {
  align-items: center;
  gap: 30px;
}

/* Marquee / Slider layout */
.bdevs-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.bdevs-marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: bdevs-marquee 30s linear infinite;
}

.bdevs-marquee:hover .bdevs-marquee-track {
  animation-play-state: paused;
}

@keyframes bdevs-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Shared */
.bdevs-client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bdevs-client-logo img {
  max-width: 140px;
  height: 60px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.bdevs-client-logo.is-grayscale img {
  filter: grayscale(100%);
}

.bdevs-client-logo:hover img {
  opacity: 1;
  filter: none;
}

.bdevs-client-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  padding: 10px 20px;
  background: #F1F5F9;
  border-radius: 6px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.bdevs-faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bdevs-faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bdevs-faq-item.is-active {
  border-color: #86EFAC;
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
}

.bdevs-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
}

.bdevs-faq-header:hover {
  background: #FAFAFA;
}

.bdevs-faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.4;
  transition: color 0.2s;
}

.bdevs-faq-item.is-active .bdevs-faq-question {
  color: #22C55E;
}

.bdevs-faq-toggle-icon {
  flex-shrink: 0;
  color: #94A3B8;
  font-size: 14px;
  transition: color 0.2s;
}

.bdevs-faq-item.is-active .bdevs-faq-toggle-icon {
  color: #22C55E;
}

.bdevs-faq-item.is-active .bdevs-icon-plus { display: none; }
.bdevs-faq-item:not(.is-active) .bdevs-icon-minus { display: none; }

.bdevs-faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
}

.bdevs-faq-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Tab Content
   ========================================================================== */
.bdevs-tabs-wrap {}

/* Top layout */
.bdevs-tabs-pos-top {}

.bdevs-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}

.bdevs-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #F8FAFC;
  color: #64748B;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #E2E8F0;
  border-bottom-color: transparent;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.bdevs-tab-btn:hover {
  background: #F1F5F9;
  color: #22C55E;
}

.bdevs-tab-btn.is-active {
  background: #fff;
  color: #22C55E;
  border-bottom-color: #fff;
  font-weight: 600;
}

.bdevs-tab-btn svg {
  width: 16px;
  height: 16px;
}

.bdevs-tabs-content {}

.bdevs-tab-panel {
  border: 1px solid #E2E8F0;
  border-radius: 0 8px 8px 8px;
  padding: 30px;
  background: #fff;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.bdevs-tab-panel p:last-child { margin-bottom: 0; }

/* Left layout */
.bdevs-tabs-pos-left {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.bdevs-tabs-pos-left .bdevs-tabs-nav {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 0;
  margin-right: -1px;
  min-width: 200px;
}

.bdevs-tabs-pos-left .bdevs-tab-btn {
  border-radius: 6px 0 0 6px;
  border-right-color: transparent;
  border-bottom-color: #E2E8F0;
  justify-content: flex-start;
}

.bdevs-tabs-pos-left .bdevs-tab-btn.is-active {
  border-right-color: #fff;
  border-bottom-color: #E2E8F0;
}

.bdevs-tabs-pos-left .bdevs-tabs-content {
  flex: 1;
}

.bdevs-tabs-pos-left .bdevs-tab-panel {
  border-radius: 0 8px 8px 8px;
}

@media (max-width: 640px) {
  .bdevs-tabs-pos-left {
    flex-direction: column;
  }

  .bdevs-tabs-pos-left .bdevs-tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: unset;
    margin-right: 0;
    margin-bottom: -1px;
  }

  .bdevs-tabs-pos-left .bdevs-tab-btn {
    border-radius: 6px 6px 0 0;
    border-right-color: #E2E8F0;
    border-bottom-color: transparent;
  }

  .bdevs-tabs-pos-left .bdevs-tab-btn.is-active {
    border-right-color: #E2E8F0;
    border-bottom-color: #fff;
  }

  .bdevs-tabs-pos-left .bdevs-tab-panel {
    border-radius: 0 8px 8px 8px;
  }
}

/* ==========================================================================
   Shared Button Styles
   ========================================================================== */
.bdevs-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  line-height: 1;
}

.bdevs-btn:hover {
  transform: translateY(-2px);
}

.bdevs-btn-primary {
  background: #22C55E;
  color: #fff;
  border-color: #22C55E;
}

.bdevs-btn-primary:hover {
  background: #16A34A;
  border-color: #16A34A;
  color: #fff;
  box-shadow: 0 8px 25px rgba(34,197,94,0.35);
}

.bdevs-btn-secondary {
  background: #F59E0B;
  color: #fff;
  border-color: #F59E0B;
}

.bdevs-btn-secondary:hover {
  background: #D97706;
  border-color: #D97706;
  color: #fff;
}

.bdevs-btn-outline {
  background: transparent;
  color: #22C55E;
  border-color: #22C55E;
}

.bdevs-btn-outline:hover {
  background: #22C55E;
  color: #fff;
}

.bdevs-btn-white {
  background: #fff;
  color: #22C55E;
  border-color: #fff;
}

.bdevs-btn-white:hover {
  background: #DCFCE7;
  border-color: #DCFCE7;
  color: #22C55E;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.bdevs-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.bdevs-btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.bdevs-btn-outline-dark {
  background: transparent;
  color: #1E293B;
  border-color: #1E293B;
}

.bdevs-btn-outline-dark:hover {
  background: #1E293B;
  color: #fff;
}

/* ==========================================================================
   Hero Banner
   ========================================================================== */
.bdevs-hero-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.bdevs-hero-layout-image-left {
  flex-direction: row;
}

.bdevs-hero-layout-image-right {
  flex-direction: row;
}

.bdevs-hero-centered {
  flex-direction: column;
  text-align: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

/* floating tech icons */
.bdevs-hero-has-icons {
  position: relative;
  max-width: 100%;
  min-height: 480px;
  padding: 100px 0;
}

.bdevs-hero-has-icons .bdevs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.bdevs-hero-float-icon {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  animation: bdevs-float 4s ease-in-out infinite;
  z-index: 1;
}

.bdevs-hero-float-icon:nth-child(odd)  { animation-delay: 0s; }
.bdevs-hero-float-icon:nth-child(even) { animation-delay: 2s; }
.bdevs-hfi-1 { animation-delay: 0.5s; }
.bdevs-hfi-2 { animation-delay: 1.0s; }
.bdevs-hfi-3 { animation-delay: 1.5s; }
.bdevs-hfi-4 { animation-delay: 2.0s; }
.bdevs-hfi-5 { animation-delay: 2.5s; }
.bdevs-hfi-6 { animation-delay: 3.0s; }
.bdevs-hfi-7 { animation-delay: 3.5s; }
.bdevs-hfi-8 { animation-delay: 0.8s; }
.bdevs-hfi-9 { animation-delay: 1.8s; }

@keyframes bdevs-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .bdevs-hero-float-icon { display: none; }
}

.bdevs-hero-content {
  flex: 1;
}

.bdevs-hero-image {
  flex: 1;
}

.bdevs-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.bdevs-hero-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #22C55E;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.bdevs-hero-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #1E293B;
  line-height: 1.15;
  margin: 0 0 20px;
}

.bdevs-hero-desc {
  font-size: 17px;
  color: #64748B;
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 540px;
}

.bdevs-hero-centered .bdevs-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.bdevs-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.bdevs-hero-centered .bdevs-hero-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .bdevs-hero-wrap {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }

  .bdevs-hero-buttons {
    justify-content: center;
  }

  .bdevs-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.bdevs-section-title-wrap {
  margin-bottom: 50px;
}

.bdevs-st-subtitle {
  display: inline-block;
  background: #DCFCE7;
  color: #22C55E;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bdevs-st-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
  margin: 0 0 16px;
}

.bdevs-st-desc {
  font-size: 16px;
  color: #64748B;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   About
   ========================================================================== */
.bdevs-about-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.bdevs-about-img-left {
  flex-direction: row;
}

.bdevs-about-img-right {
  flex-direction: row-reverse;
}

.bdevs-about-img {
  flex: 1;
  position: relative;
}

.bdevs-about-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.bdevs-about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #22C55E;
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

.bdevs-exp-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.bdevs-exp-label {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}

.bdevs-about-content {
  flex: 1;
}

.bdevs-about-subtitle {
  display: inline-block;
  background: #DCFCE7;
  color: #22C55E;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bdevs-about-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
  margin: 0 0 16px;
}

.bdevs-about-desc {
  font-size: 15px;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 24px;
}

.bdevs-about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bdevs-about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

.bdevs-about-feature-icon {
  flex-shrink: 0;
  color: #22C55E;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.bdevs-about-feature-icon svg {
  width: 16px;
  height: 16px;
  fill: #22C55E;
}

@media (max-width: 768px) {
  .bdevs-about-wrap {
    flex-direction: column !important;
    gap: 40px;
  }

  .bdevs-about-exp-badge {
    right: 10px;
    bottom: -10px;
  }
}

/* ==========================================================================
   Team Member — Hexagonal Style
   ========================================================================== */
.bdevs-team-grid {
  gap: 30px;
  justify-items: center;
}

.bdevs-team-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  text-align: center;
  transition: transform 0.3s ease;
}

.bdevs-team-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

/* Hexagon wrapper */
.bdevs-team-photo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  line-height: 0;
}

.bdevs-team-hex-wrap {
  width: 150px;
  height: 150px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  overflow: hidden;
  background: #22C55E;
  transition: transform 0.3s ease;
}

.bdevs-team-card:hover .bdevs-team-hex-wrap {
  transform: scale(1.05);
}

.bdevs-team-hex-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bdevs-team-card:hover .bdevs-team-hex-wrap img {
  transform: scale(1.08);
}

.bdevs-team-overlay {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: rgba(34,197,94,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bdevs-team-card:hover .bdevs-team-overlay {
  opacity: 1;
}

.bdevs-team-bio {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 10px;
  display: none;
}

.bdevs-team-social {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.bdevs-team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  transition: background 0.2s;
}

.bdevs-team-social a:hover {
  background: rgba(255,255,255,0.4);
  color: #fff;
}

.bdevs-team-info {
  padding: 20px 22px;
  text-align: center;
  line-height: 1;
}

.bdevs-team-name {
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 6px;
}

.bdevs-team-designation {
  font-size: 13px;
  color: #22C55E;
  font-weight: 500;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.bdevs-testi-wrap {}

.bdevs-testi-grid {
  gap: 24px;
}

.bdevs-testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bdevs-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.bdevs-testi-stars {
  display: flex;
  gap: 4px;
}

.bdevs-testi-star {
  color: #F59E0B;
  font-size: 14px;
}

.bdevs-testi-quote {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.bdevs-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.bdevs-testi-author-photo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.bdevs-testi-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 3px;
}

.bdevs-testi-author-role {
  font-size: 13px;
  color: #94A3B8;
}

.bdevs-testi-slider .bdevs-testi-card {
  min-width: 0;
}

/* ==========================================================================
   Counter
   ========================================================================== */
.bdevs-counter-grid {
  gap: 24px;
}

.bdevs-counter-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.bdevs-counter-item:hover {
  transform: translateY(-3px);
}

.bdevs-counter-icon {
  font-size: 40px;
  color: #22C55E;
  margin-bottom: 16px;
  line-height: 1;
}

.bdevs-counter-icon svg {
  width: 40px;
  height: 40px;
  fill: #22C55E;
}

.bdevs-counter-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.bdevs-counter-number {
  font-size: 52px;
  font-weight: 800;
  color: #22C55E;
  line-height: 1;
}

.bdevs-counter-suffix {
  font-size: 32px;
  font-weight: 700;
  color: #22C55E;
  line-height: 1;
}

.bdevs-counter-label {
  font-size: 15px;
  color: #64748B;
  font-weight: 500;
  margin: 0;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.bdevs-cta-wrap {
  background: transparent;
  border-radius: 0;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.bdevs-cta-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.bdevs-cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.bdevs-cta-layout-centered {
  text-align: center;
}

.bdevs-cta-layout-centered .bdevs-cta-content {
  max-width: 680px;
  margin: 0 auto 36px;
}

.bdevs-cta-layout-left-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bdevs-cta-layout-left-right .bdevs-cta-content {
  flex: 1;
}

.bdevs-cta-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.bdevs-cta-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.bdevs-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.bdevs-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.bdevs-cta-layout-centered .bdevs-cta-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .bdevs-cta-wrap {
    padding: 50px 30px;
  }

  .bdevs-cta-layout-left-right {
    flex-direction: column;
    text-align: center;
  }

  .bdevs-cta-buttons {
    justify-content: center;
  }
}

/* ==========================================================================
   Contact Info
   ========================================================================== */
.bdevs-ci-wrap {}

.bdevs-ci-layout-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bdevs-ci-layout-grid {
  gap: 24px;
}

.bdevs-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bdevs-ci-layout-grid .bdevs-ci-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bdevs-ci-layout-grid .bdevs-ci-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.bdevs-ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #DCFCE7;
  color: #22C55E;
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
}

.bdevs-ci-icon svg {
  width: 20px;
  height: 20px;
  fill: #22C55E;
}

.bdevs-ci-text {}

.bdevs-ci-label {
  display: block;
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.bdevs-ci-value {
  font-size: 15px;
  color: #1E293B;
  font-weight: 500;
  line-height: 1.5;
}

.bdevs-ci-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bdevs-ci-value a:hover {
  color: #22C55E;
}

/* ── Job Listing ─────────────────────────────────────────────────────────── */
.bdevs-job-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.bdevs-job-sidebar {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 80px;
}

.bdevs-job-filter {
  width: 100%;
  text-align: left;
  padding: 10px 18px;
  border: 1px solid #E2E8F0;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.bdevs-job-filter:hover,
.bdevs-job-filter.is-active {
  background-color: #22C55E;
  color: #fff;
  border-color: #22C55E;
}

.bdevs-job-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bdevs-job-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 20px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.bdevs-job-card:hover {
  border-color: #22C55E;
  box-shadow: 0 4px 16px rgba(34,197,94,0.10);
}

.bdevs-job-card.is-hidden {
  display: none;
}

.bdevs-job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bdevs-job-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bdevs-job-title {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}

.bdevs-job-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #22C55E;
}

.bdevs-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #64748B;
}

.bdevs-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bdevs-job-meta i {
  color: #22C55E;
  font-size: 12px;
}

.bdevs-job-apply {
  display: inline-block;
  padding: 9px 22px;
  background: #22C55E;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.bdevs-job-apply:hover {
  background: #16A34A;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .bdevs-job-wrap {
    flex-direction: column;
  }
  .bdevs-job-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    flex: none;
    position: static;
  }
  .bdevs-job-filter {
    width: auto;
  }
}

/* ── Team Gallery (Life Behind the Scenes) ───────────────────────────────── */
.bdevs-gallery-section {
  display: flex;
  gap: 40px;
  align-items: center;
}

.bdevs-gallery-section.reverse {
  flex-direction: row-reverse;
}

.bdevs-gallery-content {
  flex: 1;
}

.bdevs-gallery-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
  line-height: 1.35;
}

.bdevs-gallery-content h3 span {
  color: #22C55E;
}

.bdevs-gallery-content p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.bdevs-gallery-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.bdevs-gallery-images .bdevs-gallery-main {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
}

.bdevs-gallery-images img,
.bdevs-gallery-images .bdevs-gallery-thumb {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.bdevs-gallery-images img {
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .bdevs-gallery-section,
  .bdevs-gallery-section.reverse {
    flex-direction: column;
  }
}

/* ==========================================================================
   Global Enhancements — Spacing, Images, Brand Consistency
   ========================================================================== */

/* Ensure all widget images render properly */
.bdevs-about-img img,
.bdevs-hero-image img,
.bdevs-gallery-images img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* About image: add subtle shadow + border treatment */
.bdevs-about-img img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Experience badge — use brand green */
.bdevs-about-exp-badge {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
}

/* Section title — reduce bottom margin on light-bg sections */
.bdevs-section-title-wrap {
  margin-bottom: 48px;
}

/* Service cards — stronger card feel */
.bdevs-service-card {
  border: 1px solid rgba(0,0,0,0.05);
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}
.bdevs-service-card:hover {
  border-bottom-color: #22C55E;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* Stats / counter — green accent ring */
.bdevs-counter-item {
  border: 1px solid rgba(34,197,94,0.15);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.bdevs-counter-item:hover {
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 8px 32px rgba(34,197,94,0.12);
}
.bdevs-counter-number,
.bdevs-counter-suffix {
  color: #22C55E;
}
.bdevs-counter-icon {
  color: #22C55E;
}

/* Team card — rounded photo variant fallback */
.bdevs-team-hex-wrap {
  border-radius: 20px;
  clip-path: none;
  background: #DCFCE7;
}
.bdevs-team-overlay {
  clip-path: none;
  border-radius: 20px;
  background: rgba(34,197,94,0.88);
}
.bdevs-team-photo {
  border-radius: 20px;
  overflow: hidden;
}

/* Team designation — green */
.bdevs-team-designation {
  color: #22C55E;
}

/* Testimonial card border accent */
.bdevs-testi-card {
  border-top: 3px solid #22C55E;
}

/* FAQ active state — green */
.bdevs-faq-item.is-active {
  border-color: #86EFAC;
  box-shadow: 0 4px 20px rgba(34,197,94,0.10);
}
.bdevs-faq-item.is-active .bdevs-faq-question,
.bdevs-faq-item.is-active .bdevs-faq-toggle-icon {
  color: #16A34A;
}

/* Portfolio overlay — green */
.bdevs-portfolio-overlay {
  background: rgba(34,197,94,0.88);
}
.bdevs-portfolio-filter button:hover,
.bdevs-portfolio-filter button.active {
  background: #22C55E;
}

/* Process step icon — green */
.bdevs-step-icon {
  background: #22C55E;
}

/* Pricing button */
.bdevs-pricing-btn {
  background: #DCFCE7;
  color: #16A34A;
}
.bdevs-pricing-btn:hover {
  background: #22C55E;
  color: #fff;
}
.bdevs-pricing-card.is-featured .bdevs-pricing-btn:hover {
  color: #22C55E;
}

/* Hero — larger heading on desktop */
.bdevs-hero-heading {
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.02em;
}

/* Hero — badge uses brand colors */
.bdevs-hero-badge {
  background: #DCFCE7;
  color: #16A34A;
  border: 1px solid #86EFAC;
}

/* Buttons — primary is now brand green */
.bdevs-btn-primary {
  background: #22C55E;
  border-color: #22C55E;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}
.bdevs-btn-primary:hover {
  background: #16A34A;
  border-color: #16A34A;
  box-shadow: 0 8px 25px rgba(34,197,94,0.40);
}
.bdevs-btn-outline {
  color: #22C55E;
  border-color: #22C55E;
}
.bdevs-btn-outline:hover {
  background: #22C55E;
  color: #fff;
}
.bdevs-btn-white {
  color: #16A34A;
}
.bdevs-btn-white:hover {
  color: #16A34A;
  background: #DCFCE7;
  border-color: #DCFCE7;
}

/* Section-level responsive */
@media (max-width: 768px) {
  .bdevs-about-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .bdevs-about-exp-badge {
    right: 10px;
    bottom: 10px;
  }
}

/* AI Feature highlight strip */
.bdevs-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
