:root {
  /* Replace the value below with your background image path or set inline style on .crm-hero */
  --hero-bg: url("../images/crm/CRM-development-company.webp");
  --accent-purple: #8b3cff;
  /* border accent */
  --accent-teal: #00c3b3;
  /* inner outline approx */
}

/* container that uses background image */
.crm-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;

  padding: 18px;
  box-sizing: border-box;

  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}

/* small teal inner outline on right edge */
/*.crm-hero::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: 12px;*/
/*  top: 6px;*/
/*  bottom: 6px;*/
/*  width: 6px;*/
/*  background: var(--accent-teal);*/
/*  border-radius: 3px;*/
/*  mix-blend-mode: screen;*/
/*  pointer-events: none;*/
/*}*/

/* soft dark overlay so white text pops */
.crm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 10, 15, 0.7) 0%,
    rgba(7, 10, 15, 0.45) 50%,
    rgba(7, 10, 15, 0.2) 100%
  );
  pointer-events: none;
}

/* content wrapper */
.crm-hero__container {
  position: relative;
  /* above overlay */
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 36px;
  box-sizing: border-box;
}

/* left column (text) */
.crm-hero__left h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}

.crm-hero__title {
  color: #fff;
  font-size: 16px;
}

.crm-hero__subtitle {
  font-size: 1.1rem;

  margin-bottom: 16px;
  color: #fff;
}

.crm-hero__desc {
  font-size: 15px;
  color: #fff;
  max-width: 620px;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* CTA button */
.crm-hero__cta {
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  background: linear-gradient(180deg, #1f67a6, #174f86);
  color: #fff;
  padding: 10px 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 57, 95, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.crm-hero__cta:hover {
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 57, 95, 0.32);
}

/* right column — decorative (we keep space for hero image subject) */
.crm-hero__right {
  flex: 0 0 36%;
  min-width: 220px;
  display: flex;
  justify-content: flex-end;
}

/* Responsive behavior */
@media (max-width: 980px) {
  .crm-hero {
    min-height: 520px;
    padding: 14px;
  }

  .crm-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
  }

  .crm-hero__right {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .crm-hero {
    border-width: 4px;
    padding: 10px;
    min-height: 480px;
  }

  .crm-hero__subtitle {
    font-size: 14px;
  }

  .crm-hero__desc {
    font-size: 14px;
    max-width: none;
  }
}

/* small utility */
.crm-hero__muted {
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}
/* hero ection  end*/

/* === Custom CSS (Same as before) === */
.crm-tabs-container {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); */
  /* min-height: 100vh; */
  padding: 50px 0;
  color: white;
}

.crm-tabs-head h2 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.crm-tabs-head p {
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.crm-tabs-wrapper {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  max-width: 1200px;
  margin: 0 auto;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crm-nav-tabs {
  background-color: #fff;
  margin: 1rem;
  border-radius: 10px;
  width: 350px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  overflow-y: auto;
}

.crm-nav-link {
  background-color: #1e40af;
  border: none;
  border-radius: 12px;
  margin: 8px 15px;
  padding: 15px 20px;
  color: #ddd;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.crm-nav-link:hover {
  background-color: #1e40af;
  color: white;
  transform: translateX(5px);
}

.crm-nav-link.active {
  background-color: white;
  color: #1e40af;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crm-nav-link.active::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
}

.crm-nav-link i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.crm-tab-content {
  padding: 50px;
  color: white;
  display: none;
}

.crm-tab-content.active {
  display: block;
}

.crm-tab-title {
  font-size: 2.2rem;
  text-align: start;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.crm-tab-description {
  font-size: 1rem;
  color: #fff;
  text-align: start;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
}

.crm-features-list {
  list-style: none;
  padding: 0;
}

.crm-features-list li {
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
}

.crm-features-list li::before {
  content: "➤";
  color: #34d399;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .crm-tabs-wrapper {
    flex-direction: column;
  }

  .crm-nav-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
  }

  .crm-nav-link {
    min-width: 180px;
    margin: 5px;
    font-size: 0.9rem;
  }

  .crm-tab-content {
    padding: 30px 20px;
  }

  .crm-tab-title {
    font-size: 1.8rem;
  }
}

/* ==== AI CRM Section ==== */
.ai-crm-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
  color: #e2e8f0;
}

.ai-crm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.ai-crm-section_head {
  width: 900px;
  margin: 0 auto;
}

/* Heading */
.ai-crm-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.ai-crm-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 60px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Grid */
.ai-crm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.ai-crm-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-crm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Circle */
.ai-crm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ai-crm-icon i {
  color: #fff;
}

/* Icon Colors */
.icon-brain {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.icon-bolt {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.icon-users {
  background: linear-gradient(135deg, #10b981, #059669);
}

.icon-chart {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Card Title & Text */
.ai-crm-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.ai-crm-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .ai-crm-title {
    font-size: 2rem;
  }

  .ai-crm-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .ai-crm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-crm-card {
    padding: 25px;
  }
}

/* ==== Why Choose SISGAIN Section ==== */
.why-sisgain-section {
  background: #f8fafc;
  padding: 4rem 0;

  color: #1e293b;
}

.why-sisgain-section_head {
  width: 900px;
  margin: 0 auto;
}

/* Heading */
.why-sisgain-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #0f172a;
}

.why-sisgain-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #475569;
  line-height: 1.7;
}

/* Grid Layout */
.why-sisgain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.why-sisgain-grid-bottom {
  margin-bottom: 0;
}

/* Card */
.why-card {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(30, 41, 59, 0.25);
  background: #fff;
}

.why-card:hover .why-card-title,
.why-card:hover .why-card-text {
  color: #000;
}

/* Icon */
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

/* Card Title & Text */
.why-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.why-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .why-sisgain-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-sisgain-title {
    font-size: 2rem;
  }

  .why-sisgain-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .why-card {
    padding: 24px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .why-card-title {
    font-size: 1.2rem;
  }
}

/* cta section */
.partner_cta {
  background: linear-gradient(rgba(6, 6, 223, 0.58), rgba(2, 7, 54, 0.75)) top
      center / cover,
    url(../images/crm/ai_bg.webp);
  background-size: cover;
  background-position: center bottom;
  padding: 10rem 0 8rem;
  background-attachment: fixed;
  /* height: 482px; */
  text-align: center;
  position: relative;
}

.partner_cta_cont {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 15px;
  width: 100%;
  max-width: 1160px;
  transform: translate(-50%, -50%);
}

.partner_cta p {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
}

.partner_cta button {
  padding: 10px 2rem;
  background: #1163fb;
  color: #fff;
  font-size: 1.1rem;
  border: 0;
  transition: 0.5s ease-in-out;
  border-radius: 0 1.5rem;
}

.partner_cta button:hover {
  /* border: 1px solid #1163fb; */
  color: #1163fb;
  background: #fff;
}

/* partner cta section end*/

/* ==== CRM Benefits Section ==== */
.crm-benefits-section {
  background: #0f172a;
  padding: 4rem 0;
  color: #e2e8f0;

  position: relative;
}

.crm-benefits-section-head {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.crm-benefits-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
  color: #fff;
}

.crm-benefits-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Grid */
.crm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.crm-benefits-grid-top {
  margin-bottom: 60px;
}

/* Card */
.crm-benefit-card {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crm-benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 41, 59, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #60a5fa;
}

/* Number Circle */
.crm-card-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #1e40af;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #0f172a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

/* Card Title & Text */
.crm-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 20px 0 16px;
  color: #fff;
  text-align: center;
}

.crm-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
  flex-grow: 1;
}

/* Stats Bar */
.crm-stats-bar {
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.crm-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #e2e8f0;
}

.crm-stat-item i {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 12px;
}

.crm-stat-number {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.crm-stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .crm-benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .crm-benefits-title {
    font-size: 2rem;
  }

  .crm-benefits-subtitle {
    margin-bottom: 50px;
  }

  .crm-stats-bar {
    gap: 40px;
    padding: 25px 0;
  }
}

@media (max-width: 576px) {
  .crm-benefit-card {
    padding: 28px 20px;
  }

  .crm-card-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    top: -30px;
  }

  .crm-card-title {
    font-size: 1.2rem;
  }

  .crm-stats-bar {
    flex-direction: column;
    gap: 25px;
  }

  .crm-stat-item i {
    font-size: 1.8rem;
  }

  .crm-stat-number {
    font-size: 1.8rem;
  }
}

/* ==== CRM Process Section – Pure CSS ==== */
.crm-process-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 0;
  color: #1e293b;
  text-align: center;
}

/* Heading */
.crm-process-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #0f172a;
}

.crm-process-subtitle {
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 900px;
  color: #475569;
  line-height: 1.7;
}

/* Steps Container */
.crm-process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Individual Step */
.process-step {
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circle */
.process-circle {
  --circle-size: 160px;
  width: var(--circle-size);
  height: var(--circle-size);
  margin: 0 auto 30px;
  border-radius: 50%;
  background: white;
  border: 8px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

/* Gradient Ring on Hover */
.process-circle::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #60a5fa 0%, #3b82f6 50%, #1e40af 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* Hover Effects */
.process-step:hover .process-circle {
  transform: translateY(-12px) scale(1.03);
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.18);
}

.process-step:hover .process-circle::before {
  opacity: 1;
}

/* Icon */
.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.28);
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  background: white;
  color: #3b82f6;
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* Content */
.process-content {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a;
}

.process-step-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
  .crm-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 1.3rem;
  }

  .crm-process-steps::before {
    display: none;
  }

  .process-circle {
    --circle-size: 140px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .crm-process-title {
    font-size: 2rem;
  }

  .crm-process-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .process-circle {
    --circle-size: 120px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .process-content {
    max-width: 100%;
    padding: 0 10px;
  }
}

.crm-services-section {
  background: #0f172a;
  padding: 3rem 0;
  color: #e2e8f0;
}

.crm-services-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.crm-services-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #cbd5e1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.crm-service-card {
  background: #1e293b;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #334155;
  position: relative;
  overflow: hidden;
}



.crm-service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(30, 41, 59, 0.4);
  background: #1e40af;
  border-color: #60a5fa;
  z-index: 10;
}

.crm-service-icon {
  font-size: 2.2rem;
  color: #60a5fa;
  margin-bottom: 18px;
  display: block;
}

.crm-service-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.crm-service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
  .crm-services-title {
    font-size: 2rem;
  }

  .crm-services-subtitle {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .crm-service-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.3);
  }
}

/* ==== FAQ Section ==== */
.crm-faq-section {
  background: #f8f9fa;
  padding: 4rem 0 1rem;
  color: #1e293b;
}

.crm-faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #1e293b;
}

/* Row & Column */
.crm-faq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}

.crm-faq-col {
  flex: 1;
  min-width: 300px;
  max-width: 580px;
}

/* FAQ Card */
.crm-faq-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  /* margin-bottom: 24px; */
  overflow: hidden;
  transition: all 0.3s ease;
}

.crm-faq-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.crm-faq-header {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  user-select: none;
}

.crm-faq-toggle {
  width: 44px;
  height: 44px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #475569;
  transition: all 0.3s ease;
}

.crm-faq-card.active .crm-faq-toggle {
  background: #3b82f6;
  color: white;
  /* transform: rotate(45deg); */
}

.crm-faq-card.active .crm-faq-toggle i::before {
  content: "\f068";
  /* minus */
}

.crm-faq-toggle i::before {
  content: "\f067";
  /* plus */
}

.crm-faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  border-top: 1px solid #e2e8f0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.crm-faq-card.active .crm-faq-body {
  max-height: 400px;
  padding: 20px 28px 28px;
}

/*  */
:root {
  --teal: #1ea3a0;
  --muted: #9aa0a6;
  --bg: #ffffff;
  --card-bg: #fff;
  --shadow: 0 20px 35px rgba(18, 18, 18, 0.06);
  --max-width: 1200px;
}

.testimonialswrap {
  max-width: var(--max-width);
  margin: 2rem auto;
}

.testimonialswrap h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}

/* Slider frame */
.crm-client-testimonisl-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 70px;
}

.crm-client-testimonisl-slider .slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: transform;
  align-items: stretch;
}

.crm-client-testimonisl-slider .slide {
  box-sizing: border-box;
  padding: 24px;
  min-width: calc(100% / 3);
  /* default for desktop 3 slides */
  max-width: calc(100% / 3);
  transform: translateZ(0);
  padding-top: 46px;
  display: flex;
}

.crm-client-testimonisl-slider .card {
  height: 100%;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Avatar and text layout */
.crm-client-testimonisl-slider .card-inner {
  height: 250px !important;
  align-items: flex-start;
  gap: 22px;
  height: 20px;
  overflow-y: auto;
}

.crm-client-testimonisl-slider .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 72px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

.crm-client-testimonisl-slider .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crm-client-testimonisl-slider .text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

.crm-client-testimonisl-slider .name {
  font-weight: 600;
  font-size: 1rem;
}

.crm-client-testimonisl-slider .role {
  color: var(--muted);
  font-size: 14px;
  /* margin-top: 6px; */
}

/* controls */
.crm-client-testimonisl-slider .controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.crm-client-testimonisl-slider .ctrl-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}

.crm-client-testimonisl-slider .ctrl-btn:focus {
  outline: none;
}

/* Responsive: 2 slides */
@media (max-width: 991.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: calc(100% / 2);
    max-width: calc(100% / 2);
  }

  .testimonialswrap h4 {
    font-size: 34px;
  }
}

/* Responsive: 1 slide */
@media (max-width: 767.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .crm-client-testimonisl-slider .card {
    padding: 20px;
  }

  .crm-client-testimonisl-slider .avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .testimonialswrap h3 {
    font-size: 26px;
  }
}

.crm-client-testimonisl-slider .text p {
  margin: 0;
  white-space: normal;
}

.crm-client-testimonisl-slider .ctrl-btn {
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .crm-faq-col {
    min-width: 100%;
  }

  .crm-faq-title {
    font-size: 2rem;
  }

  .crm-faq-header {
    font-size: 1.05rem;
    padding: 18px 22px;
  }
}

.customized_business {
  margin: 2rem 0 !important;
}

.crm-cta-section {
  --bg: #ffffff;
  --accent: #ff5722; /* orange */
  --muted: #5b6b73;
  box-sizing: border-box;
  padding: 28px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(29, 37, 41, 0.06);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 18px auto;
  overflow: hidden;
}

/* Left column (text) */
.crm-cta-content {
  padding-right: 8px;
}

.crm-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: none;
}

.crm-cta-title {
  font-size: 44px;
  line-height: 1.03;
  margin: 0 0 12px 0;
  color: #e63f1b; /* strong orange variant to match image */
  font-weight: 700;
}

.crm-cta-sub {
  font-size: 18px;
  color: #24343b;
  margin-bottom: 18px;
  max-width: 54ch;
}

.crm-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.crm-btn-primary {
  appearance: none;
  border: 0;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ff7043);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(230, 63, 27, 0.18);
}

.crm-btn-outline {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e6e9eb;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

/* Right column (image) */
.crm-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

.crm-cta-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(20, 28, 33, 0.06);
}

/* Responsive rules */
@media (max-width: 980px) {
  .crm-cta-section {
    grid-template-columns: 1fr 320px;
    padding: 22px;
  }

  .crm-cta-title {
    font-size: 36px;
  }

  .crm-cta-sub {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .crm-cta-section {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 18px;
    gap: 0;
  }

  .crm-cta-visual {
    order: -1; /* show image above text on very small screens like the reference */
    margin-bottom: 12px;
  }

  .crm-cta-title {
    font-size: 28px;
  }
  .crm-eyebrow {
    font-size: 13px;
  }
  .crm-cta-sub {
    font-size: 15px;
  }

  .crm-cta-visual img {
    width: 100%;
    border-radius: 8px;
  }

  .crm-cta-actions {
    justify-content: flex-start;
  }
}

/* Utility: small container to place image slightly inset like the example */
.crm-visual-frame {
  max-width: 420px;
  width: 100%;
  padding: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 12px;
}

@media only screen and (max-width: 500px) {
  .why-sisgain-section_head,
  .ai-crm-section_head {
    width: 100%;
    margin: 0 auto;
  }

  .crm-process-steps {
    gap: 0;
  }
  .process-circle {
    margin-bottom: 1rem;
  }
  .crm-process-section {
    padding: 2rem 0;
  }
  .crm-faq-section {
    padding: 2rem 1rem 1rem;
  }
  .crm-nav-tabs {
    width: 100% !important;
    margin: 0;
    padding: 1rem;
  }
  .partner_cta h3 {
    font-size: 2rem;
  }
  .partner_cta {
    padding: 10rem 0;
  }
  .partner_cta button {
    margin-top: 1rem;
  }
}
