/*================================================================================================
    Start Service Details CSS
===================================================================================================*/
@import url("reset.css");

@import url("breadcrumbs.css");
@import url("call-action.css");


.service-details__inner {
  justify-content: space-between;
  gap: 86px;
}
.service-details__sidebar {
  min-width: 475px;
}
.sidebar-widget {
  margin-bottom: 80px;
}
.sidebar-widget:last-child {
  margin: 0;
}
.sidebar-widget__title {
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 28px;
}
.sidebar-widget__search {
  position: relative;
}

.sidebar-widget__search input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(34, 48, 53, 0.25);
  height: 58px;
  padding: 20px 54px 20px 24px;
}
.sidebar-widget__search button {
  position: absolute;
  right: 24px;
  background: transparent;
  padding: 0;
  font-size: 22px;
  top: 18px;
}
.sidebar-widget ul li {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(34, 48, 53, 0.25);
}
.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.4px;
  color: var(--bx-paragraph-color);
}
.sidebar-widget ul li a:hover {
  color: var(--bx-primary-color);
}
.sidebar-widget ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.sidebar-widget.sidebar-banner {
  position: relative;
}
.sidebar-widget.sidebar-banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 17, 0) 24.34%,
    rgba(0, 17, 17, 0.84) 67.71%
  );
  z-index: 1;
  border-radius: 12px;
}
.sidebar-widget.sidebar-banner img {
  width: 100%;
  border-radius: 12px;
}
.sidebar-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0px 28px 28px 32px;
  text-align: center;
  width: 100%;
}
.sidebar-banner__content h4 {
  color: var(--bx-white-color);
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.sidebar-banner__content .bx-btn:hover {
  background: var(--bx-white-color);
  color: var(--bx-primary-color);
}

.service-details__content h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.service-details__content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.4px;
}
.service-details__content img {
  width: 100%;
  margin: 50px 0px;
  border-radius: 12px;
}
.service-details__content h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 16px;
}
.service-details__content ul {
  margin: 50px 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-details__content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--bx-title-color);
}
.service-details__content ul li i {
  color: var(--bx-primary-color);
  position: relative;
  top: 2px;
}
.service-work-process {
  margin-top: 90px;
}
.service-work-process .work-process-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.4px;
  border-bottom: 1px solid rgba(34, 48, 53, 0.17);
  line-height: 120%;
  padding-bottom: 25px;
  margin-bottom: 32px;
}

.service-work-process__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 112px;
}
.work-process__item:hover .number {
  background: var(--bx-primary-color);
  color: var(--bx-white-color);
  border: 1px solid transparent;
}
.work-process__item .number {
  width: 90px;
  height: 90px;
  border: 1px solid var(--bx-title-color);
  border-radius: 100%;
  display: block;
  text-align: center;
  line-height: 90px;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: var(--bx-title-color);
  margin-bottom: 48px;
  transition: all 0.3s ease;
}
.work-process__item .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.work-process__item .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .service-details__sidebar {
    min-width: 350px;
  }
  .service-work-process__wrapper {
    gap: 56px;
  }
}

@media (max-width: 1199px) {
  .service-details__inner {
    gap: 60px;
  }
  .service-details__sidebar {
    min-width: 300px;
  }
  .sidebar-banner__content h4 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 20px;
  }
  .service-work-process__wrapper {
    gap: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .service-details__inner {
    flex-direction: column;
    gap: 50px;
  }

  .service-details__sidebar {
    min-width: 100%;
    order: 2;
  }

  .service-details__main {
    order: 1;
  }

  .sidebar-widget {
    margin-bottom: 50px;
  }

  .sidebar-banner__content h4 {
    font-size: 28px;
    line-height: 42px;
  }

  .service-details__content h3 {
    font-size: 32px;
    line-height: 48px;
  }

  .service-details__content h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .service-work-process .work-process-title {
    font-size: 32px;
    line-height: 48px;
  }

  .work-process__item .number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .service-details__content ul {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 30px 0;
  }

  .service-work-process__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-details__content p {
    font-size: 18px;
    line-height: 30px;
  }

  .service-details__content img {
    margin: 30px 0;
  }

  .service-work-process {
    margin-top: 60px;
  }

  .sidebar-widget__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .sidebar-widget ul li a {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .service-details__content h3 {
    font-size: 28px;
    line-height: 42px;
  }

  .service-details__content h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .service-work-process .work-process-title {
    font-size: 28px;
    line-height: 42px;
    padding-bottom: 20px;
    margin-bottom: 28px;
  }

  .work-process__item .number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    margin-bottom: 24px;
  }

  .work-process__item .title {
    font-size: 20px;
  }

  .work-process__item .text {
    font-size: 16px;
    line-height: 26px;
  }

  .sidebar-banner__content {
    padding: 0px 20px 20px;
  }

  .sidebar-banner__content h4 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .sidebar-widget__search input {
    height: 50px;
    padding: 15px 45px 15px 20px;
  }

  .sidebar-widget__search button {
    right: 20px;
    font-size: 18px;
    top: 16px;
  }

  .sidebar-widget ul li {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 375px) {
  .service-details__content h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .service-details__content p {
    font-size: 16px;
    line-height: 28px;
  }

  .service-details__content ul li {
    font-size: 16px;
    line-height: 26px;
  }

  .work-process__item .number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }
}

/*================================================================================================
    End Service Details CSS
===================================================================================================*/
.sidebar-banner__content .bx-btn i {
    margin-right: 10px; /* Adds space between the phone icon and your number */
    vertical-align: middle;
}

.custom-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
.custom-table th {
    background-color: #f8f9fa;
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}
.custom-table td {
    padding: 12px;
    border: 1px solid #dee2e6;
}
.mt-40 { margin-top: 40px; }
.mt-30 { margin-top: 30px; }


/* Container for responsiveness and shadow */
.tech-table-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /*! box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    margin: 30px 0;
}

.custom-tech-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

/* Header Styling */
.custom-tech-table thead th {
    background-color: #f8faff;
    
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 20px;
    border-bottom: 2px solid #edf2f7;
    text-align: left;
}

.custom-tech-table thead th i {
    margin-right: 8px;
    
}

/* Row Styling */
.custom-tech-table tbody tr {
    transition: background 0.3s ease;
    border-bottom: 1px solid #f1f1f1;
}

.custom-tech-table tbody tr:hover {
    background-color: #fcfdfe;
}

.custom-tech-table td {
    padding: 20px;
    vertical-align: middle;
}

.category-name {
    color: #2d3748;
    width: 25%;
    font-size: 16px;
}

/* Tech Pills/Badges */
.tech-badge {
    display: inline-block;
    background: #f0f4f8;
   
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tech-badge:hover {
    background: #007bff;
    
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .category-name {
        width: 35%;
    }
}

/* Container Spacing */
.management-features-grid {
    margin-top: 30px;
}

/* Individual Card Styling */
.feature-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #f1f4f8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect: Lifts up and adds a blue accent */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
    border-left: 4px solid #007bff; /* Primary Color Accent */
}

/* Icon Box */
.feature-card__icon {
    min-width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    margin-right: 20px;
    transition: 0.3s;
}

.feature-card:hover .feature-card__icon {
    background: #007bff;
    color: #fff;
}

/* Text Styling */
.feature-card__text h5 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #1a2b3c;
    font-weight: 700;
}

.feature-card__text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Utility for spacing */
.mb-30 { margin-bottom: 30px; }


/* Card Container */
.feature-card-v2 {
    display: flex;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card-v2:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: #007bff;
}

/* Icon Styles with unique colors */
.feature-card-v2__icon {
    min-width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.finance-bg { background: #eef2ff; color: #4f46e5; }
.hr-bg { background: #ecfdf5; color: #10b981; }
.inventory-bg { background: #fff7ed; color: #f59e0b; }
.crm-bg { background: #fef2f2; color: #ef4444; }

/* Content Styles */
.feature-card-v2__content h5 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.feature-card-v2__content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Fix for mobile */
@media (max-width: 575px) {
    .feature-card-v2 {
        flex-direction: column;
        text-align: center;
    }
    .feature-card-v2__icon {
        margin: 0 auto 20px auto;
    }
}

/* Software Feature Card Styling */
.tech-feature-card {
    position: relative;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Suble background glow on hover */
.tech-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.tech-feature-card:hover::before {
    opacity: 1;
}

/* Icon Design */
.tech-feature-card__icon {
    width: 55px;
    height: 55px;
    background: #f8fbff;
    color: #007bff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    border: 1px solid #e2eefc;
    transition: 0.3s;
}

.tech-feature-card:hover .tech-feature-card__icon {
    background: #007bff;
    color: #fff;
    transform: rotateY(180deg); /* Modern flip effect on hover */
}

/* Text Content */
.tech-feature-card__content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.tech-feature-card__content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Spacing */
.mb-30 { margin-bottom: 30px; }

/* Container styling */
.erp-comparison-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid #edf2f7;
}

.erp-logic-table {
    width: 100%;
    border-collapse: collapse;
}

/* Header styling */
.erp-logic-table thead th {
    background: #1a237e; /* Professional Dark Blue */
    color: #ffffff;
    padding: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.erp-logic-table thead th i {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

/* Cell styling */
.erp-logic-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f4f8;
    vertical-align: middle;
}

/* Challenge Column Styling */
.challenge-item {
    display: flex;
    align-items: center;
    color: #4a5568;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.status-dot.warning {
    background-color: #f59e0b; /* Amber/Orange */
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

/* Solution Column Styling */
.solution-item {
    display: flex;
    align-items: center;
    color: #2d3748;
    font-weight: 500;
}

.solution-item i {
    color: #10b981; /* Success Green */
    margin-right: 12px;
    font-size: 18px;
}

/* Row Hover Effect */
.erp-logic-table tbody tr:hover {
    background-color: #f8faff;
    transition: 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .erp-logic-table thead { display: none; }
    .erp-logic-table td { 
        display: block; 
        width: 100%; 
        border-bottom: none;
    }
    .erp-logic-table tr {
        border-bottom: 2px solid #edf2f7;
        display: block;
        padding: 10px 0;
    }
    .solution-item { margin-top: 10px; }
}

/* Container styling */
.capability-matrix-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin: 35px 0;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

/* Header with a soft gradient */
.matrix-table thead th {
    background: #f8fafc;
    color: #475569;
    padding: 18px 25px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e2e8f0;
}

.matrix-table thead th i {
    margin-right: 8px;
    color: #007bff;
}

/* Row & Cell Styling */
.matrix-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #334155;
    vertical-align: middle;
}

/* Area Column with Accent Line */
.area-cell {
    position: relative;
    padding-left: 35px !important;
}

.accent-line {
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    border-radius: 0 4px 4px 0;
}

.accent-line.blue { background: #3b82f6; }
.accent-line.green { background: #10b981; }
.accent-line.orange { background: #f59e0b; }
.accent-line.red { background: #ef4444; }

/* Deliverable Text */
.deliverable-cell {
    font-weight: 400;
    color: #64748b;
}

/* Impact Badge Styling */
.impact-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Row Hover */
.matrix-table tbody tr {
    transition: all 0.2s ease;
}

.matrix-table tbody tr:hover {
    background-color: #f8fbff;
}