
body{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

/* Unique Component Scoping: Blue Hero Section */
.blue-hero-section {
    position: relative;
    overflow: hidden;
  padding:  45px 0px;
  background: 
    radial-gradient(circle at 85% 15%, rgba(29, 78, 216, 0.08), transparent 35%),
    linear-gradient(135deg, #f0f6fc 0%, #ffffff 60%, #e6f0fa 100%);
}

.blue-hero-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  border: 60px solid rgba(29, 78, 216, 0.04);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.bh-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.bh-content-col {
  display: flex;
  flex-direction: column;
}

.bh-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bh-eyebrow::before {
    content: "✓";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-right: 6px;
    flex-shrink: 0;
}
.bh-main-title {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.bh-lead-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 32px 0;
}
.bh-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bh-btn-primary {
  background: #1d4ed8;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
}

.bh-btn-primary:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.bh-btn-outline {
  background: transparent;
  color: #1d4ed8;
  border: 2px solid #cbd5e1;
}

.bh-btn-outline:hover {
  background: rgba(29, 78, 216, 0.04);
  border-color: #1d4ed8;
  text-decoration: none;
  transform: translateY(-2px);
}
.bh-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 15px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 24px;
}

.bh-badge-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #1e293b;
  font-weight: 600;
}

.bh-badge-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  background: #dbeafe; 
  color: #2563eb; 
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.bh-media-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.bh-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.bh-hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Floating Technical Design Overlay Grid Accent */
.bh-floating-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#2563eb 15%, transparent 15%);
  background-size: 10px 10px;
  z-index: -1;
  opacity: 0.4;
}

/* Responsive Structural Breakdown (Mobile Layout optimization) */
@media (max-width: 991px) {
  .blue-hero-section {
    padding: 80px 0 60px;
  }
  
  .bh-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .bh-content-col {
    align-items: center;
  }
  
  .bh-action-row {
    justify-content: center;
  }
  
  .bh-trust-badges {
    justify-content: center;
  }
  
  .bh-main-title {
    font-size: 34px;
  }
}


.premium-stats-section {
  padding: 50px 0;
}

.premium-stats-container {
  padding: 0 24px;
  box-sizing: border-box;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ps-card {
  background: #ffffff;
  padding: 20px 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ps-card:hover {
    background: linear-gradient(135deg,rgb(239, 251, 255),rgb(246, 246, 255));
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.05), 0 8px 10px -6px rgba(29, 78, 216, 0.05);
}

.ps-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  transition: background 0.3s ease, color 0.3s ease;
}

.ps-card:hover .ps-icon-wrapper {
  background: #2563eb;
  color: #ffffff;
}

.ps-icon {
  width: 24px;
  height: 24px;
}

.ps-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ps-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.ps-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .ps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-stats-section {
    padding: 60px 0;
  }
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }
  .ps-card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }
  .ps-icon-wrapper {
    flex-shrink: 0;
  }
}




.odoo-solutions-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.odoo-solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(37, 99, 235, 0.03) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.oss-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.oss-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}


.oss-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.oss-main-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.oss-lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 32px 0;
}

.oss-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oss-link-btn:hover {
  color: #1e40af;
}

.oss-btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.oss-link-btn:hover .oss-btn-icon {
  transform: translateX(4px);
}

.oss-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.oss-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -2px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.oss-feature-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.05), 0 8px 10px -6px rgba(29, 78, 216, 0.05);
}

.oss-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.oss-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.oss-feature-card:hover .oss-icon-box {
  background: #2563eb;
  color: #ffffff;
}

.oss-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.oss-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

@media (max-width: 991px) {
  .odoo-solutions-section {
    padding: 70px 0;
  }
  .oss-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .oss-main-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .oss-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .oss-feature-card {
    padding: 24px;
  }
}
.odoo-concept-matrix {
  padding: 60px 0;
  background: #090d16;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.odoo-concept-matrix::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ocm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ocm-header-block {
  margin-bottom: 20px;
}

.ocm-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.ocm-main-heading {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 32px 0;
  letter-spacing: -1px;
  line-height: 1.15;
}

.ocm-lead-split {
  display: grid;
  grid-template-columns: 0.8fr;
  gap: 40px;
  border-left: 2px solid #1e293b;
  padding-left: 32px;
}

.ocm-lead-p {
  font-size: 16px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0;
}

.ocm-timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  padding-top: 40px;
}

.ocm-track-line {
  position: absolute;
  top: 51px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, #1e293b, #2563eb, #1e293b);
  z-index: 1;
}

.ocm-timeline-node {
  position: relative;
  z-index: 2;
}

.ocm-marker-system {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocm-center-dot {
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  z-index: 3;
}

.ocm-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid #3b82f6;
  border-radius: 50%;
  z-index: 2;
}

.ocm-node-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ocm-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ocm-node-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.ocm-node-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.ocm-tech-tag {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  background: #1f2937;
  padding: 4px 12px;
  border-radius: 6px;
}

.ocm-node-card:hover {
  transform: translateY(-8px);
  background: #1e293b;
  border-color: #3b82f6;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 99, 235, 0.1);
}

.ocm-node-card:hover .ocm-tech-tag {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 991px) {
  .odoo-concept-matrix {
    padding: 80px 0;
  }
  .ocm-lead-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ocm-timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 0;
  }
  .ocm-track-line {
    top: 20px;
    bottom: 20px;
    left: 31px;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, #1e293b, #2563eb, #1e293b);
  }
  .ocm-timeline-node {
    display: flex;
    gap: 32px;
  }
  .ocm-marker-system {
    margin-left: 20px;
    margin-bottom: 0;
    margin-top: 32px;
    flex-shrink: 0;
  }
  .ocm-node-card {
    flex-grow: 1;
  }
  .ocm-main-heading {
    font-size: 34px;
  }
}


.blue-matrix-section {
  padding: 50px 0;
  background: radial-gradient(100% 100% at 50% 0%, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 0) 100%), #ffffff;
}


.bm-header-group {
  max-width: 850px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.bm-eyebrow-container {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}

.bm-main-title {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.bm-lead-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

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

.bm-interactive-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.01), 0 2px 4px -2px rgba(15, 23, 42, 0.01);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}



.bm-step-indicator {
  font-size: 12px;
  font-weight: 800;
  color: #3b82f6;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.bm-card-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.bm-card-body-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.bm-interactive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.04), 0 8px 10px -6px rgba(29, 78, 216, 0.04);
}

.bm-interactive-card:hover .bm-card-top-accent {
  background: #2563eb;
}

.bm-interactive-card:hover .bm-step-indicator {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 1120px) {
  .bm-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .blue-matrix-section {
    padding: 80px 0;
  }
  .bm-main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .bm-cards-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bm-interactive-card {
    padding: 28px;
  }
  .bm-main-title {
    font-size: 28px;
  }
} 


.blue-deliverables-section {
  padding: 50px 0;
}

.blue-deliverables-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.bd-split-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.bd-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.bd-main-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.bd-lead-paragraph {
  font-size: 17px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.bd-showcase-card {

  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.04), 0 8px 16px -6px rgba(37, 99, 235, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bd-showcase-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 25px 50px -12px rgba(29, 78, 216, 0.06);
}

.bd-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bd-list-item {
  font-size: 15.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bd-list-item::before {
  content: "✓";
  font-weight: 900;
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .blue-deliverables-section {
    padding: 80px 0;
  }
  .bd-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bd-main-title {
    font-size: 34px;
  }
  .bd-showcase-card {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .bd-main-title {
    font-size: 28px;
  }
  .bd-list-item {
    font-size: 14.5px;
  }
}


.blue-services-section {
  padding: 50px 0;
  background: #f8fafc;
}

.bs-header-block {
  max-width: 750px;
  margin-bottom: 64px;
}

.bs-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}



.bs-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.bs-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.bs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bs-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bs-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 14px;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.bs-icon-box svg {
  width: 26px;
  height: 26px;
}

.bs-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.bs-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.bs-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.bs-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States */
.bs-service-card:hover {
background: linear-gradient(135deg, rgb(237, 237, 255),rgb(240, 251, 255));
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.05), 0 8px 16px -6px rgba(37, 99, 235, 0.03);
}

.bs-service-card:hover .bs-icon-box {
  background: #2563eb;
  color: #ffffff;
}

.bs-service-card:hover .bs-text-link {
  color: #1e40af;
}

.bs-service-card:hover .bs-arrow {
  transform: translateX(6px);
}

@media (max-width: 1100px) {
  .bs-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .blue-services-section {
    padding: 80px 0;
  }
  .bs-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .bs-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bs-service-card {
    padding: 32px;
  }
  .bs-main-heading {
    font-size: 28px;
  }
}



.blue-challenges-section {
  padding: 50px 0;
  background: #ffffff;
}

.bc-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.bc-split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.bc-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.bc-main-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.bc-lead-paragraph {
  font-size: 17px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 32px 0;
}

.bc-btn-wrapper {
  display: flex;
}

.bc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -2px rgba(37, 99, 235, 0.1);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.bc-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.15);
}

.bc-btn-primary:hover svg {
  transform: translateX(4px);
}

.bc-list-wrapper {
  background: #fdfeff;
  border: 1px solid #d7e9ff;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.bc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-list-item {
  font-size: 15.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bc-list-item::before {
  content: "✓";
  font-weight: 900;
  color: #ef4444; /* Standard sharp crimson alert check color */
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .bc-split-layout {
    gap: 40px;
  }
  .bc-list-wrapper {
    padding: 36px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .blue-challenges-section {
    padding: 80px 0;
  }
  .bc-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bc-main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .bc-list-wrapper {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 20px;
  }
  .bc-main-title {
    font-size: 28px;
  }
}


.dark-tech-section {
  padding: 50px 0;
  background: #0f2446; 
  overflow: hidden;
}

.dt-header-block {
  max-width: 850px;
  margin-bottom: 64px;
}

.dt-eyebrow-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dt-eyebrow-line {
  width: 24px;
  height: 2px;
  background: #f97316; /* Clean brand matching orange accent line */
  border-radius: 2px;
}

.dt-eyebrow-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f97316;
}

.dt-main-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.dt-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.dt-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dt-proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px 20px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dt-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dt-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.dt-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.dt-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Enhancements on Hover States */
.dt-proof-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.dt-proof-card:hover .dt-icon-wrap {
  background: #3b82f6;
  color: #ffffff;
}

@media (max-width: 1120px) {
  .dt-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .dark-tech-section {
    padding: 80px 0;
  }
  .dt-main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .dt-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dt-proof-card {
    padding: 32px 24px;
  }
  .dt-main-title {
    font-size: 28px;
  }
}


.blue-functions-section {
  padding: 50px 0;
  background: #f8fafc;
}

.bf-header-block {
  max-width: 750px;
  text-align: center;
 margin: auto;
}

.bf-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}



.bf-main-heading {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.bf-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 10px 0px;
}

.bf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bf-functional-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bf-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.bf-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.bf-icon-circle svg {
  width: 22px;
  height: 22px;
}

.bf-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.bf-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bf-feature-list li {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bf-feature-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover Adjustments */
.bf-functional-card:hover {
  border-color: #bfdbfe;
  text-decoration: none;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.05);
}

.bf-functional-card:hover .bf-icon-circle {
  background: #2563eb;
  color: #ffffff;
}

.bf-functional-card:hover .bf-feature-list li::before {
  background: #2563eb;
  transform: scale(1.2);
}

@media (max-width: 1100px) {
  .bf-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .blue-functions-section {
    padding: 80px 0;
  }
  .bf-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .bf-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bf-functional-card {
    padding: 32px;
  }
  .bf-main-heading {
    font-size: 28px;
  }
}

.industry-experience-section {
  padding: 50px 0;
  background: #ffffff;
}

.ie-header-block {
  max-width: 800px;
  margin-bottom: 64px;
}

.ie-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.ie-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.ie-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.ie-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.ie-industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ie-icon-badge {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ie-icon-badge svg {
  width: 22px;
  height: 22px;
}

.ie-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ie-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* Hover States Interaction */
.ie-industry-card:hover {
  background: linear-gradient(135deg,rgb(239, 239, 255),rgb(242, 253, 255));
  border-color: #cbd5e1;
  text-decoration: none;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
}

.ie-industry-card:hover .ie-icon-badge {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

@media (max-width: 1200px) {
  .ie-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ie-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ie-main-heading {
    font-size: 34px;
  }
  .industry-experience-section {
    padding: 80px 0;
  }
}

@media (max-width: 550px) {
  .ie-grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ie-industry-card {
    padding: 28px 20px;
  }
  .ie-main-heading {
    font-size: 28px;
  }
}

.process-delivery-section {
  padding: 50px 0;
  background: #f8fafc;
}

.pds-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.pds-header-block {
  max-width: 760px;
  margin: 0 auto 72px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pds-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.pds-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.pds-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* 3-Column Modern Grid with connected sequential elements */
.pds-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.pds-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 36px 40px 36px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pds-step-number {
  position: absolute;
  top: -20px;
  left: 36px;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.35);
  transition: background 0.3s ease, transform 0.3s ease;
}

.pds-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.pds-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Hover States & Micro-interactions */
.pds-step-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.06);
}

.pds-step-card:hover .pds-step-number {
  background: #1d4ed8;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .pds-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 24px;
  }
}

@media (max-width: 991px) {
  .process-delivery-section {
    padding: 80px 0;
  }
  .pds-main-heading {
    font-size: 34px;
  }
  .pds-header-block {
    margin-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .pds-timeline-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pds-step-card {
    padding: 40px 28px 32px 28px;
  }
  .pds-step-number {
    left: 28px;
  }
  .pds-main-heading {
    font-size: 28px;
  }
}


.dark-quality-section {
  padding: 50px 0;
  background: #11274c;
  overflow: hidden;
}

.dq-header-block {
  max-width: 850px;
  margin-bottom: 64px;
}

.dq-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}
.dq-main-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.dq-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.dq-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dq-proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px 20px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dq-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dq-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.dq-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.dq-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Fluid Hover Dynamic Micro-Interactions */
.dq-proof-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.dq-proof-card:hover .dq-icon-wrap {
  background: #3b82f6;
  color: #ffffff;
}

@media (max-width: 1120px) {
  .dq-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .dark-quality-section {
    padding: 80px 0;
  }
  .dq-main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .dq-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dq-proof-card {
    padding: 32px 24px;
  }
  .dq-main-title {
    font-size: 28px;
  }
}


.maintainability-value-section {
  padding:50px 0;
  background: #ffffff;
}


.mv-split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.mv-eyebrow-wrapper {
      display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}



.mv-main-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.mv-lead-paragraph {
  font-size: 17px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.mv-list-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.mv-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.mv-list-item {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mv-list-item::before {
  content: "✓";
  font-weight: 900;
  color: #10b981; /* Premium solid emerald check mark variant for long-term values */
  font-size: 14px;
  background: #ecfdf5;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .mv-split-layout {
    gap: 40px;
  }
  .mv-list-card {
    padding: 36px;
  }
  .mv-check-list {
    gap: 16px 20px;
  }
}

@media (max-width: 991px) {
  .maintainability-value-section {
    padding: 80px 0;
  }
  .mv-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mv-main-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .mv-check-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-list-card {
    padding: 28px;
  }
  .mv-main-title {
    font-size: 28px;
  }
}

.why-o2b-section {
  padding: 50px 0;
  background: #f8fafc;
}
.wo-header-block {
  max-width: 760px;
  margin: 0 auto 64px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wo-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}

.wo-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.wo-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.wo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wo-value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wo-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 14px;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.wo-icon-box svg {
  width: 22px;
  height: 22px;
}

.wo-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.wo-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Fluid Responsive Hover Micro-animations */
.wo-value-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.05);
}

.wo-value-card:hover .wo-icon-box {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .wo-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .why-o2b-section {
    padding: 80px 0;
  }
  .wo-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .wo-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wo-value-card {
    padding: 32px;
  }
  .wo-main-heading {
    font-size: 28px;
  }
}

.engagement-models-section {
  padding: 50px 0;
  background: #ffffff;
}

.em-header-block {
  max-width: 780px;
  margin: 0 auto 72px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.em-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.em-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.em-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.em-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}

.em-engagement-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.em-tag-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.em-card-tag {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}

.em-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.em-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Featured Standout Variant Design */
.em-engagement-card:hover {
  border: 2px solid #2563eb;
  background: #fdfdfd;
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.08);
}

.em-engagement-card.em-featured .em-card-tag {
  color: #2563eb;
  background: #eff6ff;
}

.em-popular-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #2563eb;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .em-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .engagement-models-section {
    padding: 80px 0;
  }
  .em-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .em-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .em-engagement-card {
    padding: 36px 24px;
  }
  .em-main-heading {
    font-size: 28px;
  }
}

.solution-examples-section {
  padding: 50px 0;
  background: #f8fafc;
}


.se-header-block {
  max-width: 760px;
  margin: 0 auto 64px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.se-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.se-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.se-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.se-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.se-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.se-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 14px;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.se-icon-container svg {
  width: 22px;
  height: 22px;
}

.se-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.se-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Fluid Hover Transitions */
.se-solution-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.05);
}

.se-solution-card:hover .se-icon-container {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .se-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .solution-examples-section {
    padding: 80px 0;
  }
  .se-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .se-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .se-solution-card {
    padding: 32px;
  }
  .se-main-heading {
    font-size: 28px;
  }
}


.related-services-section {
  padding: 50px 0;
  background: #ffffff; 
}

.rs-header-block {
  max-width: 850px;
  margin-bottom: 64px;
}

.rs-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}
.rs-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.rs-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.rs-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rs-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-card-content {
  margin-bottom: 32px;
}

.rs-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.rs-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.rs-text-link {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.rs-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States and Actions */
.rs-service-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.05);
}

.rs-service-card:hover .rs-text-link {
  color: #1d4ed8;
}

.rs-service-card:hover .rs-arrow {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .rs-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .related-services-section {
    padding: 80px 0;
  }
  .rs-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .rs-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rs-service-card {
    padding: 36px 24px;
  }
  .rs-main-heading {
    font-size: 28px;
  }
}


.requirement-brief-section {
  padding: 50px 0;
  background: #ffffff; 
}


.rb-header-block {
  max-width: 760px;
  margin: 0 auto 72px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rb-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}

.rb-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.rb-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.rb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.rb-brief-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rb-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 14px;
  margin-bottom: 26px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.rb-icon-container svg {
  width: 22px;
  height: 22px;
}

.rb-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.rb-card-desc {
  font-size: 15px;
  line-height: 1.63;
  color: #64748b;
  margin: 0;
}

/* Seamless Micro-Interactions on Hover */
.rb-brief-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.05);
}

.rb-brief-card:hover .rb-icon-container {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .rb-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .requirement-brief-section {
    padding: 80px 0;
  }
  .rb-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .rb-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rb-brief-card {
    padding: 36px 28px;
  }
  .rb-main-heading {
    font-size: 28px;
  }
}


.faq-o2b-section {
  padding: 50px 0;
  background: #f8fafc;
}
.faq-header-block {
  max-width: 760px;
  margin: 0 auto 56px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    background: #e8f1ff;
    border: 1px solid #cfe0ff;
    border-radius: 50px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
}


.faq-main-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.faq-lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Styled HTML5 Accordion Card */
.faq-item {
  width: 900px;
  margin: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger {
  list-style: none; /* Removes standard default arrow indicator */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  user-select: none;
  gap: 24px;
}

/* Fallback hides standard arrow on legacy Safari */
.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Custom indicator icon structure (cross rotates into a minus) */
.faq-icon-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
  content: "";
  position: absolute;
  background: #64748b;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

/* Horizontal line */
.faq-icon-indicator::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

/* Vertical line */
.faq-icon-indicator::after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.faq-content {
  padding: 0 32px 28px 32px;
}

.faq-answer {
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Interactive States & Micro-animations */
.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.04);
}

.faq-item:hover .faq-question {
  color: #2563eb;
}

.faq-item:hover .faq-icon-indicator::before,
.faq-item:hover .faq-icon-indicator::after {
  background-color: #2563eb;
}

/* Native Open State styles */
.faq-item[open] {
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.05);
}

.faq-item[open] .faq-question {
  color: #2563eb;
}

.faq-item[open] .faq-icon-indicator::before {
  transform: rotate(180deg);
  background-color: #2563eb;
}

.faq-item[open] .faq-icon-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
  background-color: #2563eb;
}

@media (max-width: 991px) {
  .faq-o2b-section {
    padding: 80px 0;
  }
  .faq-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .faq-trigger {
    padding: 20px 24px;
  }
  .faq-content {
    padding: 0 24px 20px 24px;
  }
  .faq-question {
    font-size: 15.5px;
  }
  .faq-main-heading {
    font-size: 28px;
  }
}


.premium-cta-section {
  padding: 50px 0;
  background: #ffffff;
}

.pcta-card {
  position: relative;
  background: #0f172a; /* Deep charcoal slate foundation */
  border-radius: 32px;
  padding: 64px 56px;
  overflow: hidden;
  border: 1px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

/* Accent Glows for visual depth */
.pcta-glow-left {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #2564eb56 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.pcta-glow-right {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #2564eb56 0%, #3b82f600 70%);
  pointer-events: none;
}

.pcta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  gap: 48px;
  align-items: center;
}

.pcta-text-content {
  max-width: 600px;
}

.pcta-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.pcta-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8; /* Highly readable silver grey */
  margin: 0;
}

/* Action Button Layout */
.pcta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .pcta-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .pcta-actions {
    justify-content: flex-end;
  }
}


.pcta-btn {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 640px) {
  .pcta-btn {
    width: auto;
  }
}

.pcta-btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.pcta-btn-primary:hover {
  text-decoration: none;
  color: white;
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.pcta-btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcta-btn-primary:hover .pcta-btn-icon {
  transform: translateX(4px);
}

.pcta-btn-outline {
  background: #0046af;
  color: #f1f5f9;
  border: 1px solid #0046af;
}

.pcta-btn-outline:hover {
  background: rgb(255, 255, 255);
  border-color: #475569;
  color: #0075c3;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Responsiveness Layout Adapting */
@media (max-width: 991px) {
  .premium-cta-section {
    padding: 80px 0;
  }
  .pcta-card {
    padding: 48px;
  }
  .pcta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pcta-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pcta-card {
    padding: 36px 24px;
    border-radius: 24px;
  }
  .pcta-title {
    font-size: 26px;
  }
}






/* Trust Base Layer Rules */
.o2b-trust-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(rgba(8, 127, 245, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}

.o2b-trust-header {
    margin-bottom: 40px;
}

.o2b-trust-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f59e0b; /* Yellow/Gold Accent Title */
    margin-bottom: 8px;
}

.o2b-trust-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2240; /* Darker Navy Heading */
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.o2b-trust-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 12px auto;
}

/* Three Gold Dots below header */
.o2b-header-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.o2b-header-dots span {
    width: 7px;
    height: 7px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: inline-block;
}

/* Accreditations Grid Layout */
.o2b-accreditation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.o2b-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.o2b-badge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.o2b-badge-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.o2b-badge-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-badge-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text Captions Beneath Badges */
.o2b-badge-label {
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}
.o2b-badge-label span {
    font-weight: 400;
}
.o2b-badge-label .highlight-purple {
    color: #8b5cf6;
    font-weight: 700;
}
.o2b-badge-label .highlight-blue {
    color: #087ff5;
    font-weight: 600;
}

/* Elegant Center Section Divider for Clients */
.o2b-clients-divider {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2b-clients-divider::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(8, 127, 245, 0.1) 0%, rgba(8, 127, 245, 0.7) 50%, rgba(8, 127, 245, 0.1) 100%);
    z-index: 1;
}

.o2b-divider-text {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 0 20px;
    font-size: 26px;
    font-weight: 800;
    color: #0b2240;
}

.o2b-divider-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #087ff5;
    border-radius: 50%;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}
.o2b-clients-divider .left-dot { left: 40%; }
.o2b-clients-divider .right-dot { right: 40%; }

/* Client Logo Double Row Systems */
.o2b-client-master-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.o2b-client-grid-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.o2b-client-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 68%;
    margin: 0 auto;
}

.o2b-client-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    height: 100px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.015);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.o2b-client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.25s ease;
}

.o2b-client-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

/* Features Highlight Ribbon Footer Component */
.o2b-features-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px 16px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.o2b-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    border-right: 1px solid #e2e8f0;
}

.o2b-feature-item:last-child {
    border-right: none;
}

.o2b-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(8, 127, 245, 0.08);
    color: #087ff5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.o2b-feature-icon-box svg {
    width: 22px;
    height: 22px;
}

.o2b-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 3px 0;
}

.o2b-feature-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Breakpoint Matrix */
@media (max-width: 1200px) {
    .o2b-client-grid-bottom { max-width: 85%; }
    .o2b-clients-divider .left-dot { left: 28%; }
    .o2b-clients-divider .right-dot { right: 28%; }
}

@media (max-width: 991px) {
    .o2b-trust-heading { font-size: 2.2rem; }
    .o2b-accreditation-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .o2b-client-grid-top { grid-template-columns: repeat(3, 1fr); }
    .o2b-client-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .o2b-features-ribbon { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .o2b-feature-item { border-right: none; }
    .o2b-clients-divider .left-dot, .o2b-clients-divider .right-dot { display: none; }
}

@media (max-width: 768px) {
    .o2b-accreditation-grid { grid-template-columns: repeat(2, 1fr); }
    .o2b-divider-text { font-size: 20px; }
}

@media (max-width: 575px) {
    .o2b-trust-heading { font-size: 1.8rem; }
    .o2b-accreditation-grid { grid-template-columns: 1fr; }
    .o2b-client-grid-top, .o2b-client-grid-bottom { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .o2b-features-ribbon { grid-template-columns: 1fr; gap: 20px; }
}


/* SECTION */
.video-testimonial-section {
    padding: 10px 0;
}

/* TITLES
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
} */

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 720px;
    margin: 12px auto 50px;
}

/* SLIDER */
.video-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    max-width: 1100px;
    height: 100%;
    width: 100%;
}

/* CARD */
.video-card {
    min-width: 250px;
    border-radius: 16px;
    border: 1px solid rgb(230, 230, 230);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

/* THUMB */
.video-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 16px 16px;
    position: relative;
}

/* PLAY */
.play-btn {
    width: 30px;
    height: 30px;
    background: #ffffff9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 14px solid #2563eb;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* INFO */
.video-info {
    padding: 16px;
    text-align: left;
}

.video-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.video-info p {
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

/* NAV BUTTONS */
.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 26px;
    cursor: pointer;

    /* POSITIONING */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* LEFT */
.prev-btn {
    left: -22px;
    /* pulls button outside cards */
}

/* RIGHT */
.next-btn {
    right: -22px;
    /* pulls button outside cards */
}

.slider-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

.video-slider {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}

.video-track {
    display: flex;
    gap: 24px;
    width: max-content;
    /* animation: scroll-left 30s linear infinite; */
}

/* Pause on hover */
/* .video-slider:hover .video-track {
    animation-play-state: paused;
} */

/* @keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */


/* STATS */
.stats-bar {
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(135deg, #0b5cff, #7c3aed);
    border: 1px solid rgb(243, 243, 243);
    border-radius: 30px;
}

.stats-bar h3 {
    font-size: 45px;
    font-weight: 800;
}

.stats-bar p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

/* MODAL */
.video-modal-content {
    background: #000;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #fff;
    font-size: 28px;
    z-index: 10;
}
.hire-odoo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 30px;
}

.hire-odoo-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.hire-odoo-btn:hover::before {
    transform: translateX(0);
}

.hire-odoo-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.hire-odoo-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.hire-odoo-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 576px) {
    .hire-odoo-btn {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }
}