
:root{
  --primary:#2eb5c4;
  --purple:#543189;
  --purple-2:#5e3b95;
  --teal:#2eb5c4;
  --sky:#a9c6cf; /* bluish band */
  --bg:#ffffff;
  --soft:#f3f1f4; /* light gray section */
  --text:#1c1c1f;
  --muted:#6b6b76;
  --cta:#ef6b63;
  --shadow:0 18px 40px rgba(22,22,28,.10);
  --radius:22px;
  --container:1180px;
}

*{
  box-sizing:border-box
}
html,body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif
}
a{
  color:inherit;
  text-decoration:none
}
img{display:block;max-width:100%}
.container{
  max-width:1200px;
  margin: 0 auto;
}
ul {
  list-style: none;
}

html{
  scroll-behavior: smooth;
}
section{
  scroll-margin-top:90px;
}
/* ===== Header ===== */
.header{
  position:sticky;top:0;z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(20,20,30,.08);
}
.logo {
  max-width: 170px;
}
.header .container {
  max-width: 1250px;
}

.navwrap{
  gap:16px;
  padding:16px 0;
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:30px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.menu ul li a{
  font-size:16px;
  font-weight:400;
  color:#2a2a30;
}
.menu a{opacity:.9}
.menu a:hover{opacity:1}
.callBtn{
  justify-self:end;
  background:var(--primary);
  color:#fff;
  border:0;
  padding:12px 18px;
  border-radius:0; /* screenshot has rectangle */
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  box-shadow:0 14px 22px rgba(75,42,123,.18);
}

/* ===== Hero ===== */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  min-height:520px;
  border-bottom:1px solid rgba(20,20,30,.06);
}
.heroLeft{
  background:var(--primary);
  color:#fff;
  padding:72px 70px 60px;
  display:flex;flex-direction:column;justify-content:center;
}
.heroKicker{font-size:14px;opacity:.9;margin:0 0 10px}
.heroTitle{
  margin:0 0 24px;
  font-size:44px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:.2px;
}
.heroSub{
  margin:0 0 22px;
  font-size:16px;
  line-height:1.7;
  opacity:.92;
  max-width:520px;
}
.heroinfo {
  max-width: 530px;
  margin-left: auto;
}
.heroCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--purple);
  color:#fff;
  border:0;
  padding:12px 22px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  width:max-content;
  box-shadow:0 18px 30px rgba(239,107,99,.22);
}
.heroMeta{
  margin-top:28px;
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}
.faces{display:flex;align-items:center}
.face{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid var(--purple);
  margin-left:-8px;
  background:#ddd;
  overflow:hidden;
}
.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.face:first-child{margin-left:0}
.metaText{
  font-size:12px;
  opacity:.9;
  line-height:1.4;
}
.stars{
  margin-top: 10px;;
}
.starRow{
  color:#cdd2ff;
  font-size:24px;
  line-height:1
}

.heroRight{
  position:relative;
  background:#e9eef0;
  overflow:hidden;
}
.heroRight img{
  width:100%;height:100%;
  object-fit:cover;
}

/* ===== 3 words strip ===== */
.triple{
  background:#f2f2f2;
  border-bottom:1px solid rgba(20,20,30,.06);
}
.tripleGrid{
  padding:34px 0;
  gap:18px;
}
.tripleGrid h2 {
  font-size:40px;
  font-weight:700;
  font-family: "Raleway", sans-serif;
  color:var(--purple);
  margin:0;
  line-height:44px;
  text-align:center;
}
.tripleGrid h2 span{
  display:block;
  font-weight:400;
  color: #531b93;
  margin-top:2px;
}

/* ===== Shared section title ===== */
.section{
  padding:78px 0;
}
.centerTitle{
  text-align:center;
  margin:0 auto 44px;
  max-width:860px;
}
.centerTitle h2{
  margin:0 0 10px;
  font-size:46px;
  font-weight:400;
  letter-spacing:.2px;
}
.centerTitle p{
  margin:0;
  color:#000;
  font-size:16px;
  line-height:1.3;
}

/* ===== Challenges ===== */
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:56px;
}
.illusCard img{
  width:min(520px, 100%);
  height:auto;
}
.challengeText h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:600;
  color:#2b2b30;
  line-height:1.5;
}
.challengeText p{
  margin:0 0 10px;
  color:#000;
  font-weight: 300;
  font-size:16px;
  line-height:1.3;
}
.challengeText ul {
  padding-left: 20px;
  list-style-type: disc;
}
.challengeText ul li {
  padding-bottom: 8px;
}
.challengeText p strong {
  font-weight: 600;
}
.bullets{
  display:grid;
  gap:16px;
  margin:22px 0 18px;
  padding:0;
  list-style:none;
}
.bullets li{
  display:flex;
  gap:6px;
  align-items:flex-start;
  line-height: 28px;
  font-weight: 400;
  font-size: 20px;
  color:#2b2b30;
}
.bolt{
  width:30px;
  height:30px;
  flex:0 0 auto;
  margin-top:2px;
}
.fineLine{
  margin-top:22px;
  color:#2b2b30;
  font-size:16px
}

/* ===== Band: What we do ===== */
.band{
  background:var(--sky);
  padding:70px 0;
}
.bandGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:48px;
}
.bandGrid h2{
  margin:0 0 14px;
  font-size:44px;
  font-weight:300;
}
.bandGrid p{
  margin:0;
  color:#1e1f22;
  opacity:.85;
  line-height:1.8;
  font-size:14px;
  max-width:620px;
}
.bandImg img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(20,20,30,.08);
}

/* ===== Services ===== */
.services{
  background:var(--soft);
}
.subcap{
  text-align:center;
  margin-top:-18px;
  color:var(--muted);
  font-size:13px;
}
.tabs{
  display:flex;
  justify-content:center;
  gap:16px;
  margin:32px 0 26px;
  flex-wrap:wrap;
}
.tab{
  min-width:220px;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  text-align:center;
  font-weight:600;
  font-size:14px;
  color:#2a2a30;
  cursor: pointer;
  box-shadow:0 10px 20px rgba(20,20,30,.05);
}
.tab:hover,
.tab.active{
  background:var(--primary);
  color:#fff;
  border-color:transparent;
  box-shadow:0 16px 30px rgba(75,42,123,.18);
}

.serviceCard{
  background:#fff;
  border-radius:30px;
  box-shadow:var(--shadow);
  border:1px solid rgba(20,20,30,.08);
  padding:34px 34px 28px;
  width:min(980px, 100%);
  margin:0 auto;
  display: none;
}
.serviceTop{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.svcLogo{
  width:58px;height:58px;border-radius:999px;
  border:3px solid #111;
  display:grid;place-items:center;
  background:#f6f6fb;
  position:relative;
  overflow:hidden;
}
.svcLogo:before{
  content:"";
  position:absolute;inset:10px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(19,167,167,.35), rgba(75,42,123,.25));
  opacity:.9;
}
.svcLogo span{position:relative;font-weight:800}
.svcName{
  font-size:40px;
  font-weight:500;
  letter-spacing:.2px;
  margin:0;
  line-height:1;
}
.svcName em{
  font-style:normal;
  color:var(--teal);
  font-weight:500;
}

.serviceGrid{
  display:grid;
  grid-template-columns: 1fr 340px 1fr;
  gap:10px;
  align-items:center;
  margin-top:12px;
}
.svcList{
  display:grid;
  gap:30px;
  text-align:end;
  padding:12px 8px;
}
.svcList h3,
.svcList h4{
  margin:0 0 6px;
  font-size:18px;
  line-height: 1.3;
  font-weight:700;
  color:#2a2a30;
}
.svcList p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.svcCircle{
  width:330px;
  height:330px;
  margin-inline:auto;
  border-radius:999px;
  display:grid;place-items:center;
  overflow:hidden;
}
.svcCircle img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:saturate(.9);
}
.serviceCtaWrap{
  text-align:center;
  margin-top:26px;
}
.serviceCta{
  background:var(--primary);
  border:0;
  color:#fff;
  padding:14px 24px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  cursor:pointer;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;

}

/* ===== Benefits band ===== */
.benefits{
  background:var(--purple);
  color:#fff;
  padding:78px 0;
}
.benefits .centerTitle h2{color:#fff}
.benefits .centerTitle p{color:rgba(255,255,255,.78)}
.benefitGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
  margin-top:44px;
  align-items:start;
}
.benefit{
  text-align:left;
}
.benefit h3{
  margin:0 0 20px;
  font-size:20px;
  font-weight:700;
}
.benefit h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 15px;
}
.benefit img{
  width: 100%;
}
.benefit p{
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.3;
  max-width: max-content;
  text-align: center;
  padding-top: 10px;
}
.benefit-photo {
    background: #fff;
    border-radius: 100%;
    width: 150px;
    height: 150px;
}
.benefit-photo img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== How we work ===== */
.howGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:30px;
  align-items:start;
}
.howLeft h2{
  margin:0 0 10px;
  font-size:44px;
  font-weight:300;
}
.howLeft .sub{
  margin:0 0 26px;
  color:var(--muted);
  font-size:13px;
}
.step{
  margin:18px 0;
}
.step h3{
  margin:0 0 8px;
  font-size:24px;
  font-weight:600;
}
.step p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:16px;
  line-height:1.4;
  max-width:520px;
}
.step .miniCta{
  background:var(--primary);
  color:#fff;
  border:0;
  padding:12px 18px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  display: block;
  width: fit-content;
}
.howRight img{
  width:100%;
  object-fit:contain;
}

/* ===== Stats band ===== */
.stats{
  background: rgb(46 181 196 / 55%);;
  padding:78px 0;
}
.statsTitle{
  text-align:center;
  margin-bottom:38px;
}
.statsTitle h2{
  margin:0 0 8px;
  font-size:44px;
  font-weight:300;
}
.statsTitle p{
  margin:0;
  color:#1f2023;
  opacity:.75;
  font-size:13px;
}
.statsGrid{
  width:min(980px, 100%);
  margin-inline:auto;
  display:grid;
  grid-template-columns: 1.35fr 1fr .7fr .7fr;
  gap:18px;
  align-items:stretch;
}
.stat{
  background:var(--purple);
  color:#fff;
  border-radius:26px;
  padding:22px 22px 18px;
  box-shadow:0 18px 30px rgba(75,42,123,.18);
}
.stat .num{
  font-size:52px;
  font-weight:700;
  line-height:1;
  margin:0 0 8px;
}
.stat .lbl{
  margin:0;
  opacity:.9;
  font-size:16px;
}
.statsGrid2{
  width:min(980px, 100%);
  margin:18px auto 0;
  display:grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap:18px;
}
.stat.small .num{font-size:48px}

/* ===== Testimonials ===== */
.testimonials{
  background:var(--soft);
  padding:78px 0;
}
.testTitle{
  text-align:center;
  margin-bottom:36px;
}
.testTitle h2{
  margin:0 0 10px;
  font-size:44px;
  font-weight:300;
}
.testTitle p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

/* ===== Features compare band ===== */
.featuresBand{
  background:var(--purple);
  color:#fff;
  padding:78px 0;
}
.featuresBand .centerTitle h2{color:#fff}
.featuresBand .centerTitle p{color:rgba(255,255,255,.78)}
.tableWrap{
  width:min(980px, 100%);
  margin-inline:auto;
  margin-top:42px;
}
.tableHead, .tableRow{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:0;
  align-items:center;
}
.tableHead{
  font-size:24px;
  font-weight:500;
  opacity:.95;
  padding:10px 6px;
  border-bottom:2px solid rgba(255,255,255,.55);
}
.tableHead div:nth-child(2),
.tableRow div:nth-child(2){
  border-left:2px solid rgba(255,255,255,.35);
  border-right:2px solid rgba(255,255,255,.35);
  padding-left:18px;
  padding-right:18px;
}
.tableRow{
  padding:18px 6px;
  font-size:22px;
  font-weight:300;
  opacity:.92;
}


/* ===== SuperApp band ===== */
.superApp{
  background:var(--sky);
  padding:78px 0;
}
.superGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.superLeft h2{
  margin:0 0 10px;
  font-size:46px;
  font-weight:300;
}
.superLeft p{
  margin:0 0 14px;
  color:#1f2023;
  opacity:.82;
  font-size:13px;
  line-height:1.9;
  max-width:640px;
}
.qrBox{
  margin-top:18px;
  width:260px;
  background:#fff;
  padding:16px;
  border:1px solid rgba(20,20,30,.12);
  box-shadow:var(--shadow);
}
.qrBox img{width:100%;height:auto}
.qrBox .pwa{
  text-align:center;
  margin-top:10px;
  font-weight:700;
  letter-spacing:.2px;
  color:#111;
}
.phoneMock{
  width:min(420px, 100%);
  margin-left:auto;
  background:#5b4a7f;
  border-radius:26px;
  box-shadow:0 26px 60px rgba(0,0,0,.20);
  padding:22px;
  position:relative;
}
.phoneTop{
  display:flex;justify-content:space-between;align-items:center;
  color:#fff;font-weight:600;
  margin-bottom:18px;
}
.phoneClose{
  width:46px;height:46px;border-radius:10px;
  background:#9cc9d6;
  display:grid;place-items:center;
  color:#fff;font-weight:700;
  opacity:.95;
}
.seg{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin:18px 0 18px;
}
.seg div{
  text-align:center;
  padding:14px 10px;
  border-radius:10px;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,.18);
}
.seg div:last-child{
  background:#fff;
  color:#5b4a7f;
}
.phoneMock h3{
  margin:18px 0 18px;
  color:#fff;
  font-weight:500;
  font-size:28px;
}
.emojiRow{
  display:flex;justify-content:space-between;
  gap:14px;margin:14px 0 22px;
}
.emoji{
  flex:1;
  background:rgba(255,255,255,.18);
  border-radius:999px;
  height:86px;
  display:grid;place-items:center;
  color:#e8e8ff;
  font-size:36px;
}
.phoneStep{
  text-align:center;
  color:rgba(255,255,255,.35);
  letter-spacing:1px;
  margin:8px 0 16px;
  font-weight:600;
}
.analysisBtn{
  width:100%;
  background:#9cc9d6;
  color:#fff;
  border:0;
  padding:18px 14px;
  border-radius:10px;
  font-weight:700;
  font-size:18px;
  margin-top:6px;
}
.phoneBrand{
  margin-top:18px;
  text-align:center;
  color:#fff;
  font-weight:800;
  opacity:.95;
  letter-spacing:.2px;
}

/* ===== CTA strip + Footer ===== */
.ctaStrip{
  background:var(--purple);
  color:#fff;
  padding:46px 0;
}
.ctaInner{
  display:flex;align-items:center;justify-content:center;
  gap:26px;flex-wrap:wrap;
}
.ctaInner h3{
  margin:0;
  font-weight:300;
  font-size:34px;
  text-align:center;
}
.ctaInner .mini{
  text-align:center;
  font-size:13px;
  opacity:.85;
  margin-top:6px;
}

.footer{
  position:relative;
  background:#000;
  color:#fff;
  padding:70px 0 26px;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;inset:0;
  background-image:url("./assets/image/footer-bg.jpeg");
  background-size:cover;
  background-position:center;
  opacity:.55;
  transform:scale(1.05);
}
.footer::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.35));
}
.footer .container{position:relative;z-index:2}
.footGrid{
  display:grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap:26px;
  align-items:start;
}
.footLogo{
  width: 200px;
}
.footLinks a{
  display:block;
  color:rgba(255,255,255,.86);
  font-size:13px;
  margin:6px 0;
  opacity:.95;
}
.footLinks a:hover{opacity:1}
.footCol h4{margin:0 0 10px;font-size:14px;letter-spacing:.2px}
.footCol p{margin:0;color:rgba(255,255,255,.82);font-size:13px;line-height:1.7}
.copy{
  position:relative;z-index:2;
  text-align:center;
  margin-top:36px;
  color:rgba(255,255,255,.82);
  font-size:12px;
}
.close-menu {
  display: none;
}
.whatwe-do {
  background: var(--primary);
}
.whatwe-do {
  background: rgb(170 199 212);
}
.whatwe-do .twoCol {
  gap:40px;
}
.serviceLogo {
  max-width: 160px;
}
.svcList:last-child {
  text-align: start;
}
.serviceTop-text h3  {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
}
.serviceTop-text h3 span {
  font-weight: 400;
}
.drag-info-box {
  background: #e8e6e6;
  border-radius: 20px;
  padding: 15px;
  height: 100%;
}
.drag-info-box h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.drug-textbox p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 0px;
}
.drag-info-box p {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 0px
}
.claim-assessment-info h5 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.claim-assessment-info.mb-3 {
    padding: 0px 40px;
}
.other-service-icon {
  width: 80px;
  min-width: 80px;
  min-height: 80px;
}
.other-service-info ul {
  padding-left: 15px;
  list-style: disc;
}
.other-service-info ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
.other-service-info p {
  padding-bottom: 0px;
  margin-bottom: 6px
}
.other-service-info h5 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 20px;
}
.other-service-info h5 span {
  color: var(--purple);
}
.other-service-info p {
  font-size: 16px;
}
.ctaStrip .heroCta {
  background: var(--primary);
  box-shadow: none;
}

.contact-area {
  background: #f4fbfb;
  padding:78px 0px;
}
.contact-box{
  width:100%;
  max-width:1000px;
  margin: 0 auto;
  display:grid;
  grid-template-columns:300px 1fr;
  background:white;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}        
.contact-area .side {
  background:#2eb5c4;
  padding:50px 30px;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}   
.side h2{
  font-size:28px;
}
.side p{
  opacity:.85;
  line-height:1.6;
}
.side small{
  opacity:.8;
}        
.form-area{
  padding:60px;
  
}
.form-area h3{
    font-size:26px;
    margin-bottom:30px;
}           
.form-area input, .form-area textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  outline:none;
  font-size:14px;
}
.form-area textarea{
  resize:none;
  height:120px;
}      
.form-area input:focus,
.form-area textarea:focus{
  border-color:#2eb5c4;
}

.form-area button{
   padding:14px 40px;
  border:none;
  background:#2eb5c4;
  color:white;
  font-weight:500;
  cursor:pointer;
  transition:.3s;
  font-size: 16px;
}
      
.features-table-box {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 980px;
  margin: 0 auto;
} 
.features-table-box ul {
  padding-left: 0px;
  border-top:2px solid #fff;
  padding-top: 10px;
} 
.features-table-item h3 {
  font-size: 26px;
  font-weight: 600;
  padding-left: 20px;
}
.features-table-item {
  border-left: 2px solid #fff;
}
.features-table-item:first-child {
  border-left: 0px;
}
.features-table-item:first-child ul {
  padding-left: 0px;
}
.features-table-item:first-child h3 {
  padding-left: 0px;
}
.features-table-item ul {
  padding-left: 20px;
}
.features-table-item ul li {
  font-size: 24px;
  font-weight: 300;
  padding-bottom: 10px;
}        
.faq-area {
  padding: 78px 0px;
}
.accordion-item{
  border:0;
  border-bottom:1px solid #000;
}

.accordion-button{
  padding:25px 0;
  font-size:18px;
  background:none;
}

.accordion-button:not(.collapsed){
  box-shadow:none;
  background: transparent;
}
.accordion-button:focus{
  box-shadow:none;
}
.accordion-body{
  padding:0px 0 20px;
  color:#555;
}
.accordion-body p {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 1.6;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-radius: 0px;
}
.accordion-button:not(.collapsed),
.accordion-button {
  color:#000;
}

.testimonials-content {
    max-width: 980px;
    margin: 0 auto;
}
.quote {
  font-size: 80px;
  color: var(--purple);
  line-height: 1;
  padding-right: 40px;
  margin-top: -36px;
}
.testimonials-content .testTitle {
  margin-bottom: 50px
}
.author-photo {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 100%;
}
.author-photo  img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 100%;
}
.author-name p,
.author-name h5 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 5px;
}
.author-name p {
  font-weight: 400;
  margin-bottom: 0px
}
.author-info {
    padding-top: 20px;
}
.testimonials-item {
    padding-bottom: 25px;
}
.testimonials-cardTwo {
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--purple);
}
.testimonials-cardTwo .quote {
    font-size: 56px;
    padding-right: 20px;
    margin-top: -14px;
}
.testimonials-cardTwo .testimonials-card {
  border-left: 1px solid var(--purple);
  padding-top: 0px;
}
.testimonials-cardTwo .testimonials-card:first-child {
  border-left: none;
  padding-right: 20px;
}
.testimonials-cardTwo .author-info {
  justify-content: end;
  padding-top: 10px;
}
.testimonials-cardTwo .author-photo {
    width: 50px;
    height: 50px;
    min-width: 50px;
}
.testimonials-cardTwo .author-name p, .testimonials-cardTwo .author-name h5 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonials-cardTwo .testimonials-item {
  border-bottom: 1px solid var(--purple);
  padding-left: 30px;
  padding-top: 40px;
}
.testimonials-cardTwo .testimonials-item:last-child {
  border-bottom: none;
}
