/* -------------BI------------ */
.bia-contact-section {
  width: 100%;
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  background: #fff;
}

/* LEFT */
.bia-contact-left {
  width: 45%;
}

.bia-service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 50px;
  background: #edf3ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

.bia-contact-left h1 {
  font-size: 58px;
  line-height: 1.15;
  color: #081c3a;
  margin-bottom: 15px;
}

.bia-contact-left h3 {
  font-size: 30px;
  color: #2563eb;
  margin-bottom: 25px;
}

.bia-contact-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 35px;
}

.bia-price-wrap span {
  display: block;
  font-size: 15px;
  color: #081c3a;
  font-weight: 600;
  margin-bottom: 10px;
}

.bia-price-wrap h2 {
  font-size: 54px;
  color: #2563eb;
  margin-bottom: 40px;
}

/* FEATURES */
.bia-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.bia-feature-card {
  text-align: center;
  padding: 10px;
}

.bia-feature-card i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 10px;
  display: block;
}

.bia-feature-card span {
  font-size: 14px;
  color: #081c3a;
  font-weight: 600;
  line-height: 1.6;
}

/* RIGHT */
.bia-contact-right {
  width: 50%;
  padding: 40px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bia-contact-right h3 {
  font-size: 42px;
  color: #081c3a;
  margin-bottom: 12px;
}

.bia-contact-right p {
  color: #6b7280;
  margin-bottom: 30px;
}

/* FORM */
.bia-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.bia-input-group {
  display: flex;
  flex-direction: column;
}

.bia-input-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #081c3a;
}

.bia-input-group input,
.bia-input-group textarea,
.bia-input-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.bia-input-group input:focus,
.bia-input-group textarea:focus,
.bia-input-group select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

.bia-input-group textarea {
  height: 150px;
  resize: none;
}

.bia-submit-btn {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.bia-submit-btn:hover {
  background: #1149c7;
}

.bia-privacy {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #6b7280;
}

/* TABLET */
@media (max-width: 1200px) {
  .bia-contact-left h1 {
    font-size: 48px;
  }

  .bia-contact-right h3 {
    font-size: 34px;
  }

  .bia-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .bia-contact-section {
    flex-direction: column;
    padding: 70px 5%;
  }

  .bia-contact-left,
  .bia-contact-right {
    width: 100%;
  }

  .bia-contact-left h1 {
    font-size: 42px;
  }

  .bia-price-wrap h2 {
    font-size: 44px;
  }
}

/* SMALL MOBILE */
@media (max-width: 768px) {
  .bia-form-row {
    grid-template-columns: 1fr;
  }

  .bia-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .bia-contact-left h1 {
    font-size: 34px;
  }

  .bia-contact-left h3 {
    font-size: 24px;
  }

  .bia-contact-right {
    padding: 25px;
  }

  .bia-contact-right h3 {
    font-size: 30px;
  }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
  .bia-features {
    grid-template-columns: 1fr 1fr;
  }

  .bia-feature-card span {
    font-size: 12px;
  }

  .bia-price-wrap h2 {
    font-size: 36px;
  }

  .bia-contact-left h1 {
    font-size: 30px;
  }
}
/* ---------------------------------------------------------------- */
.services {
  padding: 20px 5%;
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header span {
  color: #4f6ef7;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.services-header h2 {
  margin: 10px 0;
  font-size: 44px;
  color: #0b1f5e;
}

.services-header p {
  color: #666;
  max-width: 650px;
  margin: auto;
}

.services-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  max-width: 350px;
  padding: 30px;
  border: 1px solid #edf0f7;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #f4f7ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 26px;
  color: #0b1f5e;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card h4 {
  margin-bottom: 15px;
  color: #0b1f5e;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  color: #555;
  display: flex;
  align-items: center;
}

.service-card ul li::before {
  content: "✔";
  color: #2563eb;
  font-weight: bold;
  margin-right: 10px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

/* Zoho Analytics */
.service-icon.blue {
  background: #eef4ff;
}
.service-icon.blue svg {
  stroke: #2563eb;
}

/* Power BI */
.service-icon.orange {
  background: #fff7e8;
}
.service-icon.orange svg {
  stroke: #f59e0b;
}

/* KPI */
.service-icon.green {
  background: #edfdf3;
}
.service-icon.green svg {
  stroke: #22c55e;
}

/* Data Automation */
.service-icon.purple {
  background: #f5efff;
}
.service-icon.purple svg {
  stroke: #8b5cf6;
}
/* -------------------------------------------------------------- */
.why-section {
  padding: 20px 5%;
  background: #fff;
  display: flex;
  justify-content: center;
}

.why-container {
  display: flex;
  justify-content: center; /* centers cards horizontally */
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto; /* centers container */
}

.why-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border: 1px solid #edf0f7;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.why-card h3 {
  font-size: 30px;
  color: #0b1f5e;
  margin-bottom: 25px;
}

/* Why Choose Us */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #4b5563;
}

.why-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon {
  position: absolute;
  right: 35px;
  bottom: 25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 40px;
  height: 40px;
  stroke: #4f6ef7;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.industry-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

.industry-grid svg {
  width: 20px;
  height: 20px;
  stroke: #2563eb;
}

/* Pricing */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: #f8fafc;
  text-align: left;
  padding: 14px;
  color: #0b1f5e;
  border: 1px solid #edf0f7;
}

.pricing-table td {
  padding: 14px;
  border: 1px solid #edf0f7;
  color: #4b5563;
}

.pricing-table td:last-child {
  font-weight: 600;
  color: #0b1f5e;
}

/* Responsive */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------------- */
.process-section {
  padding: 30px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 44px;
  color: #082567;
  margin-bottom: 10px;
}

.section-title p {
  color: #6b7280;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

.process-card {
  width: 185px;
  min-height: 210px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  text-align: center;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon {
  margin-top: 10px;
  margin-bottom: 18px;
}

.process-icon svg {
  width: 34px;
  height: 34px;
  stroke: #2563eb;
}

.process-card h3 {
  font-size: 18px;
  color: #082567;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

.process-arrow {
  font-size: 30px;
  color: #2563eb;
  font-weight: 600;
}

@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .process-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------------------------------------------------------------- */
.cta-section {
  padding: 40px 7%;
  background: #fff;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  padding: 26px 40px;

  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  border: 1px solid #e8eefc;
  border-radius: 18px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

/* ICON */

.cta-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2563eb;
  border-radius: 50%;
}

.cta-icon svg {
  width: 42px;
  height: 42px;
  stroke: #fff;
}

/* CONTENT */

.cta-content h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #0b1f5e;
}

.cta-content p {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 1rem;
}

.cta-price {
  display: inline-block;
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
}

/* BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #2563eb;
  color: #fff;
  text-decoration: none;

  padding: 18px 34px;
  border-radius: 8px;

  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 30px 5%;
  }

  .cta-container {
    padding: 24px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }

  .cta-price {
    font-size: 1.2rem;
  }
}
