/*
  Semsto page (semsto.php) — scoped redesign.
  Every rule is prefixed with .semsto-page so nothing here leaks onto the
  24+ other pages that share .list-area, .solution-box, .capabilities-menu, etc.
*/

/* ---------------------------------------------------------------------- */
/* 1) Bullet list fix — the shared .list-area / .explore-list rules float */
/*    the check icon and rely on the text simply wrapping under it. Once  */
/*    a line wraps, the second line starts flush left under the icon      */
/*    instead of lining up with the first line's text, which reads as     */
/*    the icon "overlapping" the paragraph.                               */
/*    NOTE: flexbox on the <li> was tried here first, but several bullets */
/*    contain an inline <a> mid-sentence (e.g. "...system which           */
/*    <a>unifying operations across departments</a> for seamless...").    */
/*    Flex treats the text-before-link, the <a>, and the text-after-link  */
/*    as three SEPARATE anonymous flex items, so the sentence split into  */
/*    stacked columns instead of flowing as one paragraph. Using a        */
/*    padding-left + absolutely-positioned ::before bullet keeps the <li> */
/*    a normal block, so inline links reflow exactly like plain text.     */
/* ---------------------------------------------------------------------- */
.semsto-page .list-area .list-area-block ul li{
  display: block;
  position: relative;
  padding-left: 32px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
}
.semsto-page .list-area .list-area-block ul li:first-child{margin-top: 0;}
.semsto-page .list-area .list-area-block ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E8EFFB;
  background-image: url('../img/product/check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.semsto-page .capabilities-menu .explore-list{
  display: block;
  position: relative;
  padding-left: 28px;
  gap: 0;
  font-size: 14px;
  line-height: 1.6;
}
.semsto-page .capabilities-menu .explore-list::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E8EFFB;
  background-image: url('../img/product/check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.semsto-page .capabilities-menu .exp-cap-title{font-size: 19px;}

/* ---------------------------------------------------------------------- */
/* 2) Section heading accent — a short brand-blue bar above every h2 so   */
/*    each section reads as a distinct, intentional block.                */
/* ---------------------------------------------------------------------- */
.semsto-page .heading11 h2{position: relative;padding-top: 18px;}
.semsto-page .heading11 h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--vtc-bg-main-bg-1), var(--vtc-text-pera-text-4));
}
.semsto-page .heading11.text-center h2::before{left: 50%;transform: translateX(-50%);}

/* ---------------------------------------------------------------------- */
/* 3) Hero — richer overlay + eyebrow badge for contrast and polish.      */
/* ---------------------------------------------------------------------- */
.semsto-page.main-video-section .video-overlay-main{
  background: linear-gradient(120deg, rgba(6,14,34,.82) 0%, rgba(24,88,202,.55) 55%, rgba(6,14,34,.78) 100%);
}
.semsto-page .hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.semsto-page .hero-badge .dot{width: 7px;height: 7px;border-radius: 50%;background: #4A8AFE;box-shadow: 0 0 0 4px rgba(74,138,254,.3);}
.semsto-page.main-video-section .section-content .title{text-shadow: 0 2px 18px rgba(0,0,0,.25);}

/* ---------------------------------------------------------------------- */
/* 4) Problem Statement grid — swap the dashed spreadsheet look for a     */
/*    soft card grid with icon badges and a hover lift.                   */
/* ---------------------------------------------------------------------- */
.semsto-page .solution-section-main{
  background: var(--vtc-bg-bg-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(24,88,202,.08);
  overflow: hidden;
}
.semsto-page .solution-box{
  border-top: none !important;
  border-left: none !important;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 34px 26px;
  transition: background-color .3s ease, transform .3s ease;
}
.semsto-page .solution-box:hover{transform: translateY(-4px);}
.semsto-page .solution-box .icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--vtc-bg-main-blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease;
}
.semsto-page .solution-box:hover .icon{background: var(--vtc-bg-main-bg-1);}
.semsto-page .solution-box .icon img{max-width: 30px;max-height: 30px;transition: filter .3s ease;}
.semsto-page .solution-box:hover .icon img{filter: brightness(0) invert(1);}
.semsto-page .solution-box .heading2 h3{font-size: 19px;}
.semsto-page .solution-box .heading1 p{font-size: 14.5px;line-height: 1.65;}

/* ---------------------------------------------------------------------- */
/* 5) Image columns — lift the plain SVG illustrations off the flat       */
/*    section background with a soft blob + card treatment.               */
/* ---------------------------------------------------------------------- */
.semsto-page .about-img{
  position: relative;
  padding: 30px;
}
.semsto-page .about-img::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(24,88,202,.10), rgba(24,88,202,0) 72%);
  border-radius: 24px;
  z-index: 0;
}
.semsto-page .about-img img{position: relative;z-index: 1;}

/* ---------------------------------------------------------------------- */
/* 6) Bottom CTA band — give the two closing buttons a proper stage       */
/*    instead of sitting bare on the page background.                     */
/* ---------------------------------------------------------------------- */
.semsto-page .container.d-flex.justify-content-center.my-lg-5{
  background: linear-gradient(135deg, var(--vtc-bg-main-blue-1), #fff);
  border: 1px solid var(--vtc-border-border-1);
  border-radius: 20px;
  padding: 40px 24px !important;
  margin-top: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------------------------------------------------------------------- */
/* 7) Capability tab cards — slightly tighter title so the icon grid      */
/*    feels less top-heavy next to the smaller bullet text.               */
/* ---------------------------------------------------------------------- */
.semsto-page .capabilities-menu .icon-grid .explore-tab{font-size: 14px;}

@media (max-width: 767px){
  .semsto-page .list-area .list-area-block ul li{font-size: 14px;}
  .semsto-page .capabilities-menu .explore-list{font-size: 13.5px;}
  .semsto-page .heading11 h2{padding-top: 16px;}
}
