/* ================================================================
   Thesis Buddy — custom styles
   (Tailwind utilities are loaded via the Play CDN in each page head.
    This file holds the hand-written section styles + globals.)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Services dropdown (hover) ---------- */
.nav-services {
  position: relative;
}
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  margin-top: 8px;
  width: 14rem;
  transform: translateX(-50%);
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  transition: all 0.2s ease;
}
.nav-services:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
}
.nav-dropdown a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.nav-dropdown a:hover {
  background: #f3eef9;
  color: #6a3fb5;
}

/* ---------- Mobile nav ---------- */
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: block;
}

/* ================================================================
   Our Process (.op)
================================================================ */
.op {
  background: #ffffff;
  padding: 70px 24px 90px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.op__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.op__title {
  font-size: 34px;
  font-weight: 800;
  color: #16151a;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.op__subtitle {
  font-size: 13.5px;
  color: #4a4a52;
  margin: 0 0 44px;
}
.op__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 44px;
}
.op__num {
    font-size: 40px;
    font-weight: 800;
    color: #7a2fd4;
    letter-spacing: -1.5px;
    margin-bottom: 6px;
    line-height: 40px;
}
.op__heading {
    font-size: 23px;
    font-weight: 700;
    color: #16151a;
    margin: 0 0 10px;
    line-height: 25px;
    letter-spacing: 0;
}
.op__text {
  font-size: 12.5px;
  line-height: 1.85;
  color: #4a4a52;
  margin: 0;
  max-width: 300px;
}
@media (max-width: 900px) {
  .op__grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
}
@media (max-width: 600px) {
  .op__grid { grid-template-columns: 1fr; }
  .op__title { font-size: 28px; }
  .op__text { max-width: none; }
}

/* ================================================================
   Subject Specialists (.ss)
================================================================ */
.ss {
  background: #ffffff;
  padding: 70px 24px 90px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.ss__inner { max-width: 1040px; margin: 0 auto; }
.ss__eyebrow {
  font-size: 22px;
  font-weight: 800;
  color: #7a2fd4;
  line-height: 1.35;
  margin: 0 0 10px;
  max-width: 520px;
}
.ss__title {
  font-size: 22px;
  font-weight: 800;
  color: #16151a;
  margin: 0 0 8px;
}
.ss__note {
  font-size: 11.5px;
  color: #6b6b73;
  margin: 0 0 32px;
}
.ss__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.ss__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 108px;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid #d9c6f2;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(122, 47, 212, 0.08);
  transition: 0.2s;
}
.ss__card:hover {
  border-color: #7a2fd4;
  box-shadow: 0 8px 22px rgba(122, 47, 212, 0.18);
  transform: translateY(-3px);
}
.ss__icon {
  object-fit: contain;
  color: #7a2fd4;
}
.ss__label {
    font-size: 18px;
    font-weight: 600;
    color: #16151a;
    line-height: 20px;
    letter-spacing: -1px;
}
@media (max-width: 900px) {
  .ss__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .ss__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ss__eyebrow, .ss__title { font-size: 19px; }
}
@media (max-width: 400px) {
  .ss__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   Bachelor Thesis Help (.bth)
================================================================ */
.bth {
 background: url(../../assets/images/hero-about.png) center center / cover  no-repeat;
  position: relative;
  overflow: hidden;
  padding: 56px 24px 64px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.bth__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bth__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.bth__title {
  font-size: 30px;
  font-weight: 800;
  color: #141726;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
.bth__subtitle {
  font-size: 12.5px;
  line-height: 1.7;
  color: #3d4152;
  max-width: 80%;
  margin: 0 auto 40px;
}
.bth__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.bth__col {
  padding: 0 26px;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.bth__col + .bth__col {
  border-left: 1px solid #cfe3e8;
}
.bth__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}
.bth__heading {
    font-size: 20px;
    font-weight: 700;
    color: #141726;
    line-height: 25px;
    margin: 0 0 14px;
    text-align: left;
}
.bth__text {
    font-size: 12.5px;
    line-height: 18px;
    color: #3d4152;
    margin: 0;
    max-width: 100%;
    text-align: left;
    padding-bottom: 20px;
}
@media (max-width: 860px) {
  .bth__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .bth__col:nth-child(odd) { border-left: none; }
  .bth__title { font-size: 24px; }
}
@media (max-width: 520px) {
  .bth__grid { grid-template-columns: 1fr; }
  .bth__col { border-left: none !important; }
  .bth__bg { opacity: 0.12; }
}

/* ================================================================
   Stats Bar (.sb)
================================================================ */
.sb {
  background: #6d31c4;
  padding: 14px 24px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.sb__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sb__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 18px;
}
.sb__item + .sb__item {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.sb__icon {
  object-fit: contain;
  flex-shrink: 0;
}
.sb__copy { text-align: left; }
.sb__value {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
}
.sb__label {
    font-size: 18px;
    font-weight: 500;
    color: #FFE177;
    opacity: 1;
    line-height: 1.3;
}
@media (max-width: 820px) {
  .sb__inner { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .sb__item:nth-child(odd) { border-left: none; }
}
@media (max-width: 460px) {
  .sb__inner { grid-template-columns: 1fr; }
  .sb__item { border-left: none !important; }
}


/* base */
  body{font-family:'Poppins',sans-serif;}

  /* ---------- header dropdown ---------- */
  .tb-nav-item{position:relative;}
  .tb-dropdown{
    position:absolute; top:100%; left:0; min-width:240px;
    background:#ffffff; border-radius:0 0 10px 10px;
    box-shadow:0 15px 35px rgba(12,19,29,.18);
    opacity:0; visibility:hidden; transform:translateY(12px);
    transition:all .25s ease; z-index:60; padding:8px 0;
  }
  .tb-cta {
  position: relative;
  background-color: #0c2340; /* fallback dark blue */
  background-image: url('../../assets/images/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* 
.tb-bigben-wash {
  position: relative;
  background-color: #ecfdfb; 
  background-image: url('../../assets/images/Group-bg.png');
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  overflow: hidden;
} */

.tb-faq-wash {
  position: relative;
  background-color: #f8fafc; /* fallback — bg-slate-50 jaisa */
  background-image: url('../../assets/images/faq-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* .tb-hero {
  position: relative;
  background-color: #d7f5f0; 
  background-image: url('../../assets/images/thesis-writing-1-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
} */

  @media (min-width:1024px){
    .tb-nav-item:hover > .tb-dropdown{opacity:1; visibility:visible; transform:translateY(0);}
    .tb-nav-item:hover > .tb-nav-link .tb-caret{transform:rotate(180deg);}
  }
  .tb-dropdown a{display:block; padding:9px 20px; font-size:13.5px; color:#0C131D; transition:all .2s;}
  .tb-dropdown a:hover{background:#F4EBFC; color:#7A28C8; padding-left:26px;}
  .tb-caret{transition:transform .25s ease;}

  /* ---------- two-column dropdown with icons (Thesis Services) ---------- */
  .tb-dropdown-2col{min-width:440px; padding:12px 8px; border-radius:0 0 12px 12px;}
  @media (min-width:1024px){
    .tb-dropdown-2col{display:grid; grid-template-columns:1fr 1fr; column-gap:4px;
      opacity:0; visibility:hidden; transform:translateY(12px);}
    .tb-nav-item:hover > .tb-dropdown-2col{opacity:1; visibility:visible; transform:translateY(0);}
  }
  .tb-dropdown-2col a{display:flex; align-items:center; gap:9px; padding:9px 14px; border-radius:8px;}
  .tb-dropdown-2col a:hover{padding-left:18px;}
  .tb-dd-ico{width:17px; height:17px; flex:none; color:#7A28C8;}
  .tb-dd-featured{color:#7A28C8 !important; font-weight:600;}

  /* ---------- footer arrow links ---------- */
  .tb-flinks a{display:inline-flex; align-items:flex-start; gap:8px; transition:color .2s;}
  .tb-flinks a::before{
    content:'\2794'; color:#22c55e; font-size:12px; line-height:1.6; flex:none;
    transition:transform .2s ease;
  }
  .tb-flinks a:hover::before{transform:translateX(3px);}

  /* mobile dropdown (accordion style) */
  @media (max-width:1023px){
    .tb-dropdown{
      position:static; opacity:1; visibility:visible; transform:none;
      box-shadow:none; border-radius:0; background:rgba(255,255,255,.06);
      max-height:0; overflow:hidden; padding:0; transition:max-height .35s ease;
    }
    .tb-nav-item.tb-open .tb-dropdown{max-height:900px; padding:6px 0;}
    .tb-nav-item.tb-open .tb-caret{transform:rotate(180deg);}
    .tb-dropdown a{color:#e5e7eb; padding:9px 32px;}
    .tb-dropdown a:hover{background:rgba(122,40,200,.35); color:#fff;}
  }

  /* mobile menu slide */
  .tb-mobile-menu{max-height:0; overflow:hidden; transition:max-height .45s ease;}
  .tb-mobile-menu.tb-open{max-height:calc(100vh - 130px); overflow-y:auto;}

  /* ---------- hero tilted images ---------- */
  .tb-tilt-left{transform:rotate(-8deg);}
  .tb-tilt-right{transform:rotate(6deg);}

  /* ---------- discount side tab ---------- */
  .tb-discount-tab{
    position:fixed; right:0; top:30%; z-index:80;
    background:#FFD200; color:#0C131D;
    writing-mode:vertical-rl; text-orientation:mixed;
    padding:22px 12px; font-weight:700; font-size:14px;
    border-radius:8px 0 0 8px; cursor:pointer;
    box-shadow:-4px 4px 14px rgba(0,0,0,.18);
    transition:background .25s ease, padding .25s ease;
  }
  .tb-discount-tab:hover{background:#ffdf47; padding-right:18px;}

  /* ---------- logo slider ---------- */
  .tb-logo-slider .slick-track{display:flex; align-items:center;}
  .tb-logo-slide{padding:0 24px; outline:none;}
  .tb-logo-slide img{filter:grayscale(0); margin:0 auto; max-height:56px; width:max-content;}

  /* ---------- service cards ---------- */
  .tb-card{
    border:1px solid #D9C4F2; border-left:4px solid #7A28C8;
    border-radius:14px; background:#fff;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .tb-card:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(122,40,200,.14);}

  /* ---------- section guide sticky ---------- */
  .tb-guide{position:sticky; top:100px;}
  .tb-guide li{border-bottom:1px solid #e5e5e5;}
  .tb-guide li:last-child{border-bottom:none;}
  .tb-guide a{display:block; padding:12px 0; font-size:13.5px; color:#333; transition:color .2s, padding-left .2s;}
  .tb-guide a:hover{color:#7A28C8; padding-left:6px;}

  /* content left purple border */
  .tb-content-block{border-left:4px solid #7A28C8; padding-left:28px;}

  /* ---------- steps dividers ---------- */
  @media (min-width:768px){
    .tb-step + .tb-step{border-left:1px solid #c9d6d5;}
  }

  /* ---------- estimate notebook ---------- */
  .tb-notebook{
    background:#fff; border-radius:18px;
    box-shadow:0 25px 60px rgba(12,19,29,.14);
    position:relative;
  }
  .tb-notebook-inner{transform:rotate(0deg);}
  .tb-spiral{
    position:absolute; left:-14px; top:24px; bottom:24px;
    display:flex; flex-direction:column; justify-content:space-between;
  }
  .tb-spiral span{
    width:28px; height:12px; background:#3b3f46; border-radius:8px;
    box-shadow:inset 0 -3px 0 rgba(0,0,0,.35);
  }

  /* qty buttons */
  .tb-qty-btn{
    width:34px; height:34px; border-radius:8px; background:#DFF6EF; color:#3AA98C;
    font-size:18px; font-weight:700; display:flex; align-items:center; justify-content:center;
    transition:background .2s;
  }
  .tb-qty-btn:hover{background:#c8efe3;}

  /* pages/words toggle */
  .tb-toggle{
    width:38px; height:20px; background:#7A28C8; border-radius:20px; position:relative; cursor:pointer;
  }
  .tb-toggle::after{
    content:''; position:absolute; top:3px; left:3px; width:14px; height:14px;
    background:#fff; border-radius:50%; transition:left .25s ease;
  }
  .tb-toggle.tb-words::after{left:21px;}

  /* ---------- subject chips ---------- */
  .tb-chip{
    display:flex; align-items:center; gap:8px;
    background:#fff; border:1px solid #d8e8e6; border-radius:8px;
    padding:12px 16px; font-size:14px; font-weight:500; color:#0C131D;
    transition:all .25s ease; cursor:pointer;
  }
  .tb-chip:hover{border-color:#7A28C8; box-shadow:0 8px 20px rgba(122,40,200,.12); transform:translateY(-2px);}

  /* no hidden fees stamp */
  .tb-stamp{
    position:absolute; bottom:-10px; left:38%;
    width:120px; height:120px; border-radius:50%;
    border:4px double #C40000; color:#C40000;
    display:flex; align-items:center; justify-content:center; text-align:center;
    font-weight:800; font-size:13px; line-height:1.2;
    transform:rotate(-14deg); background:rgba(255,255,255,.85);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
  }

  /* ---------- FAQ accordion ---------- */
  .tb-faq-item{background:#fff; border:1px solid #e7e7e7; border-radius:10px; overflow:hidden;}
  .tb-faq-q{
    width:100%; text-align:left; padding:16px 20px;
    font-weight:600; font-size:15px; color:#0C131D;
    display:flex; justify-content:space-between; align-items:center; gap:16px; cursor:pointer;
  }
  .tb-faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
  .tb-faq-a-inner{padding:0 20px 16px; font-size:13.5px; color:#5A6473; line-height:1.7;}
  .tb-faq-item.tb-active .tb-faq-arrow{transform:rotate(180deg); color:#E02424;}
  .tb-faq-arrow{transition:transform .3s ease; color:#0C131D; flex-shrink:0;}

  /* ---------- whatsapp float ---------- */
  .tb-wa-float{
    position:fixed; left:18px; bottom:18px; z-index:90;
    width:54px; height:54px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 24px rgba(37,211,102,.45);
    animation:tbPulse 2s infinite;
  }

  .connect-strip {
  position: relative;
  background-image: url('../../assets/images/connecting-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
  overflow: hidden;
}

.tb-flag-wash {
  position: relative;
  
  background-image: url('../../assets/images/about-bg-new.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
  @keyframes tbPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.45);}
    70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
  }

  /* dot pattern on navy banner */
  .tb-dots{
    background-image:radial-gradient(#4CC3A5 2.2px, transparent 2.4px);
    background-size:18px 18px;
  }

  /* subtle UK flag wash for banner-2 */
  /* .tb-flag-wash{
    background:
      linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.86)),
      linear-gradient(115deg, #c8102e 0%, transparent 28%, transparent 72%, #012169 100%);
    background-color:#faf7f8;
  } */

  /* select arrow */
  .tb-select{
    appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235A6473' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
    background-repeat:no-repeat; background-position:right 14px center;
  }

  /* form inputs */
  .tb-input{
    width:100%; border:1px solid #d9dde3; border-radius:8px;
    padding:13px 16px; font-size:13.5px; background:#fff; color:#0C131D;
    outline:none; transition:border-color .2s, box-shadow .2s;
  }
  .tb-input:focus{border-color:#7A28C8; box-shadow:0 0 0 3px rgba(122,40,200,.12);}

  .journal-bnr {
     background: url(../../assets/images/journal-bnr.png) center center / cover  no-repeat;
  }
.research-bnr{
  background: url(../../assets/images/thesis-service-bg.png) center center / cover  no-repeat;
}

.about-bnr {
  background: url(../../assets/images/about-bnr.png) center center / cover  no-repeat;
}
.contact-bnr {
  background: url(../../assets/images/contact-bnr.png) center center / cover  no-repeat;
}
.editing-bnr {
  background: url(../../assets/images/editing-bnr.png) center center / cover  no-repeat;
}
.bachelor-thesis-hero-bg{
  background: url(../../assets/images/thesis-writing.png) center center / cover  no-repeat;
}
.literature-methodology{
  background: url(../../assets/images/literature-methodology-bg.png) center center / cover  no-repeat;
}
.literature-review-support{
  background: url(../../assets/images/literature-review-bg.png) center center / cover  no-repeat;
}
.research-design-support{
  background: url(../../assets/images/research-design-support-bg.png) center center / cover  no-repeat;
}
.qualitative-research-supp{
  background: url(../../assets/images/qualitative-research-supp-bg.png) center center / cover  no-repeat;
}
.quantitative-research-support{
  background: url(../../assets/images/quantitative-research-support-bg.png) center center / cover  no-repeat;
}
.data-collect-supp{
  background: url(../../assets/images/data-collect-supp-bg.png) center center / cover  no-repeat;
}
.statistical-analysis{
  background: url(../../assets/images/statistical-analysis-bg.png) center center / cover  no-repeat;
}
.research-software-supp{
  background: url(../../assets/images/research-software-supp-bg.png) center center / cover  no-repeat;
}
.data-interpretation{
  background: url(../../assets/images/data-interpretation-bg.png) center center / cover  no-repeat;
}
.academic-writing-bnr{
  background: url(../../assets/images/academic-writing-bnr.png) center center / cover  no-repeat;
}
.thesis-writing {
   background: url(../../assets/images/thesis-writing.png) center center / cover  no-repeat;
}
.thesis-wri-online-hero-bg{
  background: url(../../assets/images/thesis-wri-online-bg.png) center center / cover  no-repeat;
}

.thesis-wri-best-hero-bg{
background: url(../../assets/images/thesis-wri-best-bg.png) center center / cover  no-repeat;
}

.thesis-wri-help-hero-bg{
  background: url(../../assets/images/thesis-wri-help-bg.png) center center / cover  no-repeat;
}

.mphil-thesis-hero-bg{
  background: url(../../assets/images/thesis-wri-mphil-bg.png) center center / cover  no-repeat;
}

.mphil-thesis-wri-hero-bg{
  background: url(../../assets/images/thesis-wri-mphil-1-bg.png) center center / cover  no-repeat;
}

.thesis-editing-hero-bg{
  background: url(../../assets/images/thesis-wri-editing-bg.png) center center / cover  no-repeat;
}

.obu-rap-thesis-wri-hero-bg{
  background: url(../../assets/images/thesis-wri-obu-rap-bg.png) center center / cover  no-repeat;
}

ul.about-points {
    list-style: inside;
    padding-top: 15px;
}

h5.about-title {
    padding-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

ul.about-title-thesis-services {
    list-style: inside;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

h4.about-heading-thesis-services {
    padding-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

ul.about-research-writing-points {
    list-style: auto;
    padding-top: 20px;
    font-weight: 500;
}
.bordertop-r-l {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.borderbottom-r-l {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

select option {
    font-size: 13px;
    color: #4b5563;
    background: #ffffff;
    padding: 8px 12px; /* sirf Firefox/kuch browsers me kaam karega */
  }
  select option:checked {
    background: #f3f4f6;
    font-weight: 600;
  }
  select option:disabled {
    color: #9ca3af;
  }


  .round-box {
    position: relative;
    border: 1px solid #865ebb !important;
  }
  .round-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 102%;
    background-color: #6c3badd1;
    border-radius: 8px;
    z-index: -1;
    left: -8px;
    top: -3px;
  }

  
  /* ===== Notebook wrapper ===== */
  .notebook {
    position: relative;
    width: 100%;
    max-width: 470px;
  }


  /* ===== Main card ===== */
.card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 26px;
    padding: 25px;
    margin-left: 0;
    box-shadow: 0 25px 60px rgba(20, 20, 43, 0.10);
}

  /* ===== Spiral rings ===== */
  .rings {
    position: absolute;
    left: 4px;
    top: 34px;
    bottom: 34px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ring {
    position: relative;
    width: 46px;
    height: 22px;
  }

  /* wire */
  .ring::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 40px;
    height: 15px;
    border: 5px solid #b9b9bd;
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(180deg, #d9d9dc 0%, #a9a9ae 100%);
    box-shadow: inset 0 2px 3px rgba(255,255,255,.7), inset 0 -2px 3px rgba(0,0,0,.15);
  }

  /* black knob */
  .ring::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #4a4a4a 0%, #111 60%);
    box-shadow: 0 2px 4px rgba(0,0,0,.35);
  }

  /* ===== Content ===== */
 .card h2 {
    font-size: 30px;
    font-weight: 600;
    color: #7b2ff2;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

  .field { margin-bottom: 20px; }

  .field label {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: #14142b;
    margin-bottom: 9px;
  }

  .select-wrap { position: relative; }

  .select-wrap select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: 14px;
    color: #9a9ab0;
    background: #ffffff;
    border: 1px solid #e2e2ea;
    border-radius: 8px;
    padding: 13px 42px 13px 16px;
    cursor: pointer;
    outline: none;
  }

  .select-wrap select:focus { border-color: #7b2ff2; }

  .select-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #7b2ff2;
    border-bottom: 2px solid #7b2ff2;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

 .ready-by {
    font-size: 14px;
    color: #a2a2b5;
    margin: 0 0 5px 0;
}
  /* ===== Quantity row ===== */
  .qty-label-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 9px;
  }

  .qty-label-row .qty-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #14142b;
  }

  .qty-label-row .qty-words {
    font-size: 11.5px;
    color: #b3b3c2;
  }

  .qty-row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 30px;
  }

  .stepper {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
  }

  .stepper .btn {
    width: 40px;
    background: #e2f3ec;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
  }

  .stepper .btn.minus { color: #f25c5c; border-radius: 8px 0 0 8px; }
  .stepper .btn.plus  { color: #2fbf8f; border-radius: 0 8px 8px 0; }

  .stepper .value {
    width: 58px;
    text-align: center;
    font-size: 15px;
    color: #14142b;
    background: #ffffff;
    border-top: 1px solid #e2f3ec;
    border-bottom: 1px solid #e2f3ec;
    padding: 11px 0;
  }

  /* ===== Toggle (Pages / words) ===== */
  .toggle-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .toggle-group .on-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #14142b;
  }

  .toggle-group .off-label {
    font-size: 14.5px;
    color: #b3b3c2;
  }

  .switch { position: relative; display: inline-block; }

  .switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
  }

  .switch .track {
    display: block;
    width: 44px;
    height: 22px;
    background: #ddd0f5;
    border-radius: 999px;
    position: relative;
    transition: background .2s;
  }

  .switch .track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #7b2ff2;
    transition: left .2s;
  }

  .switch input:checked + .track::after { left: 25px; }

  /* ===== Price + CTA ===== */
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
.price {
    font-size: 35px;
    font-weight: 500;
    color: #14142b;
    letter-spacing: -2px;
    white-space: nowrap;
}
.cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0d0d12;
    color: #ffffff;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 10px 26px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
  .cta:hover { background: #26262e; }

  .cta .arrow {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
  }

  /* ===== Responsive ===== */
  @media (max-width: 480px) {
    .card { padding: 40px 24px 36px 52px; }
    .card h2 { font-size: 27px; }
    .price { font-size: 32px; }
    .cta { padding: 14px 18px; font-size: 14px; }
    .qty-row { flex-wrap: wrap; gap: 16px; }
  }

  ul.ft-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 40px 0 20px 0;
    max-width: 1170px;
    margin: auto;
    border-bottom: 1px solid #5b5959;
}

ul.ft-brand li {
    display: flex;
    gap: 35px;
    font-size: 15px;
    justify-content: center;
}

ul.ft-brand li img {
    max-width: 80%;
}

.grn-text {
  color: #009B9F;
}
.grey-txt {
  color: #015582;
}

.about-thesis-bnr {
   background: url(../../assets/images/about-thesis-bnr.png) center center / cover  no-repeat;
}
.term-bnr {
  background: url(../../assets/images/term-bnr.png) center center / cover  no-repeat;
}

.terms-content p {
    font-size: 15px;
    --tw-text-opacity: 1;
    color: rgb(90 100 115 / var(--tw-text-opacity, 1));
    padding-bottom: 15px;
}

.terms-content h1, .terms-content h2, .terms-content h3, .terms-content h4, .terms-content h5, .terms-content h6 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.terms-content ul li {
    font-size: 15px;
    --tw-text-opacity: 1;
    color: rgb(90 100 115 / var(--tw-text-opacity, 1));
}

.terms-content ul {
    margin-bottom: 15px;
}   

p, ul li, ul li p, input, textarea, option, select, input::placeholder {
    font-size: 15px !important;
    line-height: 21px !important;
    font-weight: 400 !important;
}

.tbx-trusted-section{
    --tbx-heading-color:#12263f;
    --tbx-accent:#3ecfb2;
    --tbx-divider:#e4e8ee;
    --tbx-placeholder-bg:#f1f4f8;
    --tbx-placeholder-border:#dfe5ec;
    --tbx-placeholder-text:#8a97a8;
    font-family:'Poppins','Segoe UI',Arial,sans-serif;
    background:#ffffff;
    padding:0px 20px 80px;
    overflow:hidden;
}

.tbx-container{
    max-width:1240px;
    margin:0 auto;
}

/* ---------- Heading ---------- */
.tbx-main-heading{
    text-align:center;
    font-size:40px;
    line-height:1.25;
    font-weight:700;
    color:var(--tbx-heading-color);
    margin:0 auto 45px;
    max-width:820px;
    opacity:0;
    animation:tbxFadeDown .9s ease forwards;
}

/* ---------- 3-column grid with dividers ---------- */
.tbx-columns{
    display:grid;
    grid-template-columns:1fr 1.15fr 1fr;
    gap:0;
}

.tbx-col{
    padding:0 34px;
    opacity:0;
    animation:tbxFadeUp .9s ease forwards;
}
.tbx-col:nth-child(1){animation-delay:.25s;}
.tbx-col:nth-child(2){
    animation-delay:.45s;
    border-left:1px solid var(--tbx-divider);
    border-right:1px solid var(--tbx-divider);
}
.tbx-col:nth-child(3){animation-delay:.65s;}

/* ---------- Column titles ---------- */
.tbx-col-title{
    text-align:center;
    font-size:19px;
    font-weight:600;
    color:var(--tbx-accent);
    margin:0 0 30px;
    position:relative;
}
.tbx-col-title::after{
    content:"";
    display:block;
    width:0;
    height:2px;
    background:var(--tbx-accent);
    margin:10px auto 0;
    border-radius:2px;
    animation:tbxLineGrow 1s ease .9s forwards;
}

/* ---------- Logo grid inside each column ---------- */
.tbx-logo-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px 24px;
    justify-items:center;
    align-items:center;
}

/* full-width row (e.g. Taylor & Francis) */
.tbx-logo-wide{
    grid-column:1 / -1;
}

/* ---------- Image placeholder ---------- */
.tbx-logo-box{
    width:150px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--tbx-placeholder-bg);
    border:1px dashed var(--tbx-placeholder-border);
    border-radius:8px;
    font-size:11px;
    letter-spacing:.4px;
    color:var(--tbx-placeholder-text);
    text-align:center;
    padding:6px 10px;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    animation:tbxFloat 5s ease-in-out infinite;
}
.tbx-logo-wide .tbx-logo-box{
    width:210px;
}

/* gentle stagger so all boxes don't float in sync */
.tbx-logo-grid > *:nth-child(odd) .tbx-logo-box,
.tbx-logo-grid > .tbx-logo-item:nth-child(odd){animation-delay:.6s;}
.tbx-logo-grid > *:nth-child(3n) .tbx-logo-box{animation-delay:1.2s;}

/* hover micro-interaction */
.tbx-logo-box:hover{
    transform:translateY(-6px) scale(1.04);
    box-shadow:0 12px 26px rgba(18,38,63,.12);
    border-color:var(--tbx-accent);
    animation-play-state:paused;
}

/* ============================================================
   KEYFRAMES (load animations only — nothing tied to scroll)
   ============================================================ */
@keyframes tbxFadeDown{
    from{opacity:0;transform:translateY(-28px);}
    to{opacity:1;transform:translateY(0);}
}
@keyframes tbxFadeUp{
    from{opacity:0;transform:translateY(32px);}
    to{opacity:1;transform:translateY(0);}
}
@keyframes tbxLineGrow{
    to{width:46px;}
}
@keyframes tbxFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-5px);}
}

/* respect reduced-motion users */
@media (prefers-reduced-motion:reduce){
    .tbx-main-heading,
    .tbx-col,
    .tbx-logo-box{
        animation:none;
        opacity:1;
        transform:none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
    .tbx-main-heading{font-size:32px;}
    .tbx-col{padding:0 20px;}
    .tbx-logo-box{width:130px;height:50px;}
    .tbx-logo-wide .tbx-logo-box{width:180px;}
}

@media (max-width:768px){
    .tbx-columns{
        grid-template-columns:1fr;
        gap:50px;
    }
    .tbx-col:nth-child(2){
        border-left:none;
        border-right:none;
        border-top:1px solid var(--tbx-divider);
        border-bottom:1px solid var(--tbx-divider);
        padding-top:45px;
        padding-bottom:45px;
    }
    .tbx-main-heading{font-size:27px;margin-bottom:35px;}
}

@media (max-width:480px){
    .tbx-trusted-section{padding:50px 14px 60px;}
    .tbx-main-heading{font-size:22px;}
    .tbx-logo-grid{gap:20px 14px;}
    .tbx-logo-box{width:100%;max-width:150px;}
}


.tsb-section{
    --tsb-card-bg:#ddf7f4;
    --tsb-heading:#12121c;
    --tsb-text:#3a4150;
    --tsb-purple:#7b2ff2;
    --tsb-quote:#ffffff;
    --tsb-dot:#bfe9e4;
    --tsb-dot-active:#7b2ff2;
    --tsb-placeholder-bg:#f1f4f8;
    --tsb-placeholder-border:#c9d3de;
    --tsb-placeholder-text:#8a97a8;
    font-family:'Poppins','Segoe UI',Arial,sans-serif;
    background:#ffffff;
    display:flex;
    justify-content:center;
    overflow:hidden;
}

.tsb-slider{
    position:relative;
    width:100%;
    max-width:700px;
    opacity:0;
    animation:tsbRise .9s ease forwards;
}

/* hidden slide radios */
.tsb-slider > input[type="radio"]{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

/* ---------- Viewport + sliding track ---------- */
.tsb-viewport{
    overflow:hidden;
    border-radius:16px;
}
.tsb-track{
    display:flex;
    width:400%;
    transition:transform .65s cubic-bezier(.65,.05,.36,1);
}
.tsb-slide{
    width:25%;
    flex:0 0 25%;
}

/* slide position logic */
#tsb-s1:checked ~ .tsb-viewport .tsb-track{transform:translateX(0);}
#tsb-s2:checked ~ .tsb-viewport .tsb-track{transform:translateX(-25%);}
#tsb-s3:checked ~ .tsb-viewport .tsb-track{transform:translateX(-50%);}
#tsb-s4:checked ~ .tsb-viewport .tsb-track{transform:translateX(-75%);}

/* ---------- Card ---------- */
.tsb-card{
    position:relative;
    background:var(--tsb-card-bg);
    border-radius:16px;
    padding:25px;
    margin:0 4px;
    overflow:hidden;
    min-height:260px;
}

/* big decorative quote mark */
.tsb-card::after{
    content:"\201D";
    position:absolute;
    right:14px;
    bottom:-115px;
    font-family:Georgia,serif;
    font-size:340px;
    line-height:1;
    color:var(--tsb-quote);
    pointer-events:none;
    animation:tsbQuoteBreathe 6s ease-in-out infinite;
}

.tsb-card-title{
    font-size:21px;
    font-weight:700;
    color:var(--tsb-heading);
    line-height:1.35;
    margin:0 0 16px;
    max-width:520px;
    position:relative;
    z-index:1;
}

.tsb-quote-text{
    font-size:15.5px;
    line-height:1.65;
    color:var(--tsb-text);
    margin:0 0 22px;
    position:relative;
    z-index:1;
}

/* ---------- Author ---------- */
.tsb-author{
    display:flex;
    align-items:center;
    gap:14px;
    position:relative;
    z-index:1;
}
.tsb-avatar-placeholder{
    flex:0 0 56px;
    width:56px;height:56px;
    border-radius:50%;
    background:var(--tsb-placeholder-bg);
    border:1px dashed var(--tsb-placeholder-border);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:8.5px;
    letter-spacing:.3px;
    color:var(--tsb-placeholder-text);
    line-height:1.4;
}
.tsb-author-name{
    font-size:18px;
    font-weight:700;
    color:var(--tsb-purple);
    margin:0 0 3px;
}
.tsb-author-role{
    font-size:13px;
    color:var(--tsb-text);
    margin:0;
    max-width:230px;
}

/* ---------- Prev / Next arrows ---------- */
.tsb-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;height:40px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 6px 16px rgba(18,18,28,.14);
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
    transition:background .3s ease, transform .3s ease;
    user-select:none;
}
.tsb-arrow:hover{background:var(--tsb-purple);}
.tsb-arrow:hover::before{border-color:#fff;}
.tsb-arrow::before{
    content:"";
    width:9px;height:9px;
    border-left:2px solid var(--tsb-purple);
    border-bottom:2px solid var(--tsb-purple);
    transition:border-color .3s ease;
}
.tsb-arrow--prev{left:-16px;}
.tsb-arrow--prev::before{transform:rotate(45deg) translate(1px,-1px);}
.tsb-arrow--next{right:-16px;}
.tsb-arrow--next::before{transform:rotate(-135deg) translate(1px,-1px);}

/* show only relevant prev/next label per active slide */
#tsb-s1:checked ~ .tsb-arrow--next[for="tsb-s2"],
#tsb-s2:checked ~ .tsb-arrow--prev[for="tsb-s1"],
#tsb-s2:checked ~ .tsb-arrow--next[for="tsb-s3"],
#tsb-s3:checked ~ .tsb-arrow--prev[for="tsb-s2"],
#tsb-s3:checked ~ .tsb-arrow--next[for="tsb-s4"],
#tsb-s4:checked ~ .tsb-arrow--prev[for="tsb-s3"]{display:flex;}

/* ---------- Dots ---------- */
.tsb-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:22px;
}
.tsb-dot{
    width:10px;height:10px;
    border-radius:50%;
    background:var(--tsb-dot);
    cursor:pointer;
    transition:background .3s ease, transform .3s ease;
}
.tsb-dot:hover{transform:scale(1.25);}

#tsb-s1:checked ~ .tsb-dots .tsb-dot:nth-child(1),
#tsb-s2:checked ~ .tsb-dots .tsb-dot:nth-child(2),
#tsb-s3:checked ~ .tsb-dots .tsb-dot:nth-child(3),
#tsb-s4:checked ~ .tsb-dots .tsb-dot:nth-child(4){
    background:var(--tsb-dot-active);
    transform:scale(1.15);
}

/* ============================================================
   KEYFRAMES (load animations only — nothing tied to scroll)
   ============================================================ */
@keyframes tsbRise{
    from{opacity:0;transform:translateY(36px);}
    to{opacity:1;transform:translateY(0);}
}
@keyframes tsbQuoteBreathe{
    0%,100%{transform:translateY(0) scale(1);}
    50%{transform:translateY(-8px) scale(1.02);}
}

@media (prefers-reduced-motion:reduce){
    .tsb-slider{animation:none;opacity:1;transform:none;}
    .tsb-card::after{animation:none;}
    .tsb-track{transition:none;}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:768px){
    .tsb-arrow--prev{left:-8px;}
    .tsb-arrow--next{right:-8px;}
}
@media (max-width:560px){
    .tsb-section{padding:50px 14px;}
    .tsb-card{padding:26px 22px 24px;min-height:0;}
    .tsb-card-title{font-size:18px;}
    .tsb-quote-text{font-size:14px;}
    .tsb-card::after{font-size:240px;bottom:-80px;right:6px;}
    .tsb-arrow{width:34px;height:34px;}
}



.lfs-cta-wrapper{
    --lfs-purple-deep:#4b2a83;
    --lfs-purple-mid:#5b3596;
    --lfs-purple-dark:#3a1f6b;
    --lfs-teal:#3ec9a7;
    --lfs-teal-soft:#57d9b8;
    --lfs-yellow:#f5c518;
    --lfs-white:#ffffff;
    --lfs-lav:#e6ddf5;

    font-family:'Poppins','Segoe UI',Arial,sans-serif;
    display:flex;
    justify-content:center;
    padding:20px 10px;
    box-sizing:border-box;
}
.lfs-cta-wrapper *,
.lfs-cta-wrapper *::before,
.lfs-cta-wrapper *::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

/* ---------- Card ---------- */
.lfs-cta-card{
    position:relative;
    width:100%;
    max-width:300px;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.07) 0 2px, transparent 2px),
        radial-gradient(circle at 70% 40%, rgba(255,255,255,.05) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 75%, rgba(255,255,255,.06) 0 1.5px, transparent 1.5px),
        linear-gradient(160deg,var(--lfs-purple-mid) 0%,var(--lfs-purple-deep) 45%,var(--lfs-purple-dark) 100%);
    background-size:90px 90px,70px 70px,110px 110px,100% 100%;
    border-radius:8px;
    overflow:hidden;
    text-align:center;
    padding:70px 22px 90px;
    box-shadow:0 15px 40px rgba(58,31,107,.35);
    animation:lfs-cta-rise .9s ease both;
}

/* ---------- Teal half circles (top / bottom) ---------- */
.lfs-cta-card::before,
.lfs-cta-card::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:150px;
    border-radius:50%;
    background:linear-gradient(180deg,var(--lfs-teal-soft),var(--lfs-teal));
    z-index:1;
}
.lfs-cta-card::before{top:-98px;animation:lfs-cta-breathe 4s ease-in-out infinite;}
.lfs-cta-card::after{bottom:-98px;animation:lfs-cta-breathe 4s ease-in-out 2s infinite;}

/* ---------- Illustration ---------- */
.lfs-cta-figure{
    position:relative;
    display:inline-block;
    margin-bottom:26px;
    animation:lfs-cta-float 3.5s ease-in-out infinite;
}
.lfs-cta-figure svg{display:block;width:150px;height:auto;}

/* Sparkles */
.lfs-cta-spark{
    position:absolute;
    width:16px;
    height:16px;
    color:var(--lfs-yellow);
    animation:lfs-cta-twinkle 2.2s ease-in-out infinite;
}
.lfs-cta-spark--left{top:-6px;left:-26px;}
.lfs-cta-spark--right{bottom:2px;right:-26px;width:13px;height:13px;animation-delay:1.1s;}
.lfs-cta-spark svg{width:100%;height:100%;display:block;}

/* ---------- Headings ---------- */
.lfs-cta-title{
    color:var(--lfs-white);
    font-size:27px;
    line-height:1.15;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:16px;
}
.lfs-cta-title .lfs-cta-title__accent{
    display:block;
    color:var(--lfs-teal);
    font-size:31px;
    background:linear-gradient(90deg,var(--lfs-teal) 0%,#7ff0d4 50%,var(--lfs-teal) 100%);
    background-size:200% auto;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:lfs-cta-shine 3.5s linear infinite;
}
.lfs-cta-title .lfs-cta-title__end{display:block;font-size:23px;}

/* ---------- Copy ---------- */
.lfs-cta-text{
    color:var(--lfs-lav);
    font-size:14.5px;
    line-height:1.65;
    margin-bottom:20px;
}
.lfs-cta-text--bold{
    color:var(--lfs-white);
    font-weight:700;
    font-size:15px;
    margin-bottom:26px;
}

/* ---------- Buttons ---------- */
.lfs-cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    padding:14px 18px;
    border-radius:50px;
    font-size:15.5px;
    font-weight:700;
    font-family:inherit;
    text-decoration:none;
    transition:transform .3s ease,box-shadow .3s ease,background-color .3s ease,color .3s ease;
    position:relative;
    overflow:hidden;
}
.lfs-cta-btn--solid{
    background:linear-gradient(90deg,var(--lfs-teal-soft),var(--lfs-teal));
    color:#123a30;
    margin-bottom:15px;
    box-shadow:0 8px 20px rgba(62,201,167,.35);
    animation:lfs-cta-pulse 2.6s ease-in-out infinite;
}
.lfs-cta-btn--solid::after{
    content:"";
    position:absolute;
    top:0;left:-80%;
    width:45%;height:100%;
    background:linear-gradient(105deg,transparent,rgba(255,255,255,.5),transparent);
    transform:skewX(-20deg);
    animation:lfs-cta-sweep 3.2s ease-in-out infinite;
}
.lfs-cta-btn--solid:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(62,201,167,.5);
}
.lfs-cta-btn--outline{
    background:transparent;
    border:2px solid rgba(255,255,255,.85);
    color:var(--lfs-white);
    letter-spacing:.3px;
}
.lfs-cta-btn--outline:hover{
    background:var(--lfs-white);
    color:var(--lfs-purple-deep);
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(0,0,0,.25);
}
.lfs-cta-btn--outline:hover .lfs-cta-btn__icon{
    background:var(--lfs-teal);
}
.lfs-cta-btn__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;height:26px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    flex-shrink:0;
    transition:background-color .3s ease;
}
.lfs-cta-btn__icon svg{width:15px;height:15px;fill:currentColor;}

/* ---------- Footer 24/7 ---------- */
.lfs-cta-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:26px;
    position:relative;
    z-index:2;
}
.lfs-cta-footer__label{
    color:var(--lfs-white);
    font-weight:700;
    font-size:14.5px;
    line-height:1.3;
    text-align:right;
}
.lfs-cta-247{
    position:relative;
    width:58px;height:58px;
    flex-shrink:0;
    color:var(--lfs-white);
    font-weight:800;
}
.lfs-cta-247__ring{
    position:absolute;
    inset:0;
    border:2.5px solid var(--lfs-white);
    border-left-color:transparent;
    border-radius:50%;
    animation:lfs-cta-spin 6s linear infinite;
}
.lfs-cta-247__num{
    position:absolute;
    top:6px;left:8px;
    font-size:19px;
}
.lfs-cta-247__slash{
    position:absolute;
    top:50%;left:50%;
    width:34px;height:2px;
    background:var(--lfs-white);
    transform:translate(-50%,-50%) rotate(-45deg);
}
.lfs-cta-247__den{
    position:absolute;
    bottom:5px;right:10px;
    font-size:19px;
}

/* ---------- Animations ---------- */
@keyframes lfs-cta-rise{
    from{opacity:0;transform:translateY(28px);}
    to{opacity:1;transform:translateY(0);}
}
@keyframes lfs-cta-float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-9px);}
}
@keyframes lfs-cta-twinkle{
    0%,100%{opacity:1;transform:scale(1) rotate(0deg);}
    50%{opacity:.35;transform:scale(.7) rotate(20deg);}
}
@keyframes lfs-cta-shine{
    to{background-position:200% center;}
}
@keyframes lfs-cta-pulse{
    0%,100%{box-shadow:0 8px 20px rgba(62,201,167,.35);}
    50%{box-shadow:0 8px 28px rgba(62,201,167,.6);}
}
@keyframes lfs-cta-sweep{
    0%{left:-80%;}
    55%,100%{left:130%;}
}
@keyframes lfs-cta-spin{
    to{transform:rotate(360deg);}
}
@keyframes lfs-cta-breathe{
    0%,100%{transform:translateX(-50%) scale(1);}
    50%{transform:translateX(-50%) scale(1.06);}
}

/* ---------- Responsive ---------- */
@media (max-width:480px){
    .lfs-cta-card{max-width:100%;padding:62px 18px 82px;}
    .lfs-cta-title{font-size:24px;}
    .lfs-cta-title .lfs-cta-title__accent{font-size:28px;}
    .lfs-cta-title .lfs-cta-title__end{font-size:20px;}
    .lfs-cta-figure svg{width:130px;}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
    .lfs-cta-wrapper *,
    .lfs-cta-wrapper *::before,
    .lfs-cta-wrapper *::after{
        animation:none !important;
        transition:none !important;
    }
}

.abt-img {
    align-items: center !important;
    display: flex !important;
}



.tsm-shell{
  --tsm-accent:#6c4ae8;
  --tsm-accent-soft:#efeafd;
  --tsm-ink:#0e0e1c;
  --tsm-muted:#7b7f95;
  --tsm-line:#e7e6f0;
  --tsm-card:#ffffff;
  --tsm-page:#ffffff;
  --tsm-radius:10px;
  --tsm-ease:cubic-bezier(.22,.75,.3,1);

  background:var(--tsm-page);
  padding:56px 0 0;
  font-family:"Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

.tsm-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Grid ---------- */
.tsm-badges{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  list-style:none;
  margin:0;
  padding:0;
}

/* ---------- Card ---------- */
.tsm-badge{
  position:relative;
  background:var(--tsm-card);
  border:1px solid var(--tsm-line);
  border-left:4px solid var(--tsm-accent);
  border-radius:var(--tsm-radius);
  padding:22px 22px 20px;
  overflow:hidden;
  isolation:isolate;

  transition:
    transform .45s var(--tsm-ease),
    box-shadow .45s var(--tsm-ease),
    border-color .45s var(--tsm-ease);

  /* entry animation on page load (not scroll) */
  opacity:0;
  animation:tsm-rise .8s var(--tsm-ease) forwards;
}
.tsm-badge:nth-child(1){ animation-delay:.10s; }
.tsm-badge:nth-child(2){ animation-delay:.22s; }
.tsm-badge:nth-child(3){ animation-delay:.34s; }
.tsm-badge:nth-child(4){ animation-delay:.46s; }

@keyframes tsm-rise{
  from{ opacity:0; transform:translateY(26px) scale(.97); }
  to  { opacity:1; transform:translateY(0)    scale(1);   }
}

/* light sweep that runs across the card on hover */
.tsm-badge::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(115deg,
    rgba(255,255,255,0) 35%,
    rgba(108,74,232,.10) 50%,
    rgba(255,255,255,0) 65%);
  transform:translateX(-130%);
  transition:transform .85s var(--tsm-ease);
}
.tsm-badge:hover::after,
.tsm-badge:focus-within::after{ transform:translateX(130%); }

/* soft tint that grows from the accent edge */
.tsm-badge::before{
  content:"";
  position:absolute;
  top:0; left:0; bottom:0;
  width:0;
  z-index:0;
  background:linear-gradient(90deg,var(--tsm-accent-soft),rgba(239,234,253,0));
  transition:width .5s var(--tsm-ease);
}
.tsm-badge:hover::before,
.tsm-badge:focus-within::before{ width:100%; }

.tsm-badge:hover,
.tsm-badge:focus-within{
  transform:translateY(-7px);
  border-color:#d6cdfa;
  box-shadow:0 18px 34px -18px rgba(50,30,120,.38);
}

.tsm-badge > *{ position:relative; z-index:1; }

/* ---------- Icon ---------- */
.tsm-badge-icon{
  width:40px;
  height:40px;
  display:block;
  margin-bottom:14px;
  animation:tsm-float 5s ease-in-out infinite;
  transform-origin:50% 85%;
  transition:transform .45s var(--tsm-ease);
}
.tsm-badge:nth-child(2) .tsm-badge-icon{ animation-delay:-1.2s; }
.tsm-badge:nth-child(3) .tsm-badge-icon{ animation-delay:-2.4s; }
.tsm-badge:nth-child(4) .tsm-badge-icon{ animation-delay:-3.6s; }

@keyframes tsm-float{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-5px); }
}

.tsm-badge:hover .tsm-badge-icon,
.tsm-badge:focus-within .tsm-badge-icon{
  animation-play-state:paused;
  transform:translateY(-4px) scale(1.12) rotate(-6deg);
}

/* the stopwatch needle keeps ticking on its own */
.tsm-needle{
  transform-origin:12px 13px;
  animation:tsm-tick 4s steps(8,end) infinite;
}
@keyframes tsm-tick{ to{ transform:rotate(360deg); } }

/* ---------- Text ---------- */
.tsm-badge-eyebrow{
  margin:0 0 3px;
  font-size:13px;
  line-height:1.3;
  color:var(--tsm-muted);
  font-weight:400;
}

.tsm-badge-title{
  margin:0;
  font-size:17px;
  line-height:1.32;
  font-weight:700;
  letter-spacing:-.2px;
  color:var(--tsm-ink);
  transition:color .35s var(--tsm-ease);
}
.tsm-badge:hover .tsm-badge-title,
.tsm-badge:focus-within .tsm-badge-title{ color:var(--tsm-accent); }

/* ---------- Map ---------- */
.tsm-map{
  margin-top:56px;
  position:relative;
  line-height:0;
  background:#eceff3;

  opacity:0;
  animation:tsm-rise .9s var(--tsm-ease) .58s forwards;
}

.tsm-map-frame{
  display:block;
  width:100%;
  height:350px;
  border:0;
  filter:saturate(.92);
  transition:filter .6s var(--tsm-ease);
}
.tsm-map:hover .tsm-map-frame{ filter:saturate(1.06); }

/* a slow pulse ring sitting over the pin location */
.tsm-map-pulse{
  position:absolute;
  top:50%;
  left:50%;
  width:22px;
  height:22px;
  margin:-11px 0 0 -11px;
  border-radius:50%;
  border:2px solid rgba(219,68,55,.65);
  pointer-events:none;
  animation:tsm-pulse 2.6s ease-out infinite;
}
@keyframes tsm-pulse{
  0%  { transform:scale(.5);  opacity:.85; }
  70% { transform:scale(2.6); opacity:0;   }
  100%{ transform:scale(2.6); opacity:0;   }
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .tsm-badges{ grid-template-columns:repeat(2,1fr); gap:18px; }
  .tsm-map-frame{ height:320px; }
}

@media (max-width:600px){
  .tsm-shell{ padding-top:36px; }
  .tsm-inner{ padding:0 16px; }
  .tsm-badges{ grid-template-columns:1fr; gap:14px; }
  .tsm-badge{ padding:18px 18px 16px; }
  .tsm-badge-title{ font-size:16px; }
  .tsm-map{ margin-top:36px; }
  .tsm-map-frame{ height:260px; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion:reduce){
  .tsm-badge,
  .tsm-map{ opacity:1; animation:none; }
  .tsm-badge-icon,
  .tsm-needle,
  .tsm-map-pulse{ animation:none; }
  .tsm-badge::after{ display:none; }
  .tsm-badge,
  .tsm-badge-icon,
  .tsm-badge::before{ transition:none; }
}



.estq-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.estq-shell {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.estq-shell__ghost {
  position: absolute;
  inset: 26px -14px -22px 26px;
  background: #ffffff;
  border-radius: 30px;
  z-index: 0;
}

.estq-flip {
  position: relative;
  z-index: 1;
  perspective: 1600px;
}

.estq-flip__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.6, .02, .2, 1), height .45s cubic-bezier(.4, 0, .2, 1);
}

.estq-flip.is-flipped .estq-flip__inner { transform: rotateY(180deg); }

/* ---------- faces ---------- */

.estq-face {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  padding: 30px 26px 32px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(24, 20, 60, .12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.estq-face--back {
  transform: rotateY(180deg);
}

/* keep the hidden face out of tab order visually + functionally */
.estq-face[aria-hidden="true"] { pointer-events: none; }

/* ---------- typography ---------- */

.estq-title {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.4px;
  color: #7a22e0;
}

.estq-title--back { margin-bottom: 4px; }

.estq-sub {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 400;
  color: #74748a;
}

.estq-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #101223;
}

/* ---------- fields ---------- */

.estq-field { margin-bottom: 16px; }

.estq-select { position: relative; }

.estq-select__input,
.estq-input {
  width: 100%;
  height: 46px;
  padding: 0 44px 0 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: #101223;
  background: #ffffff;
  border: 1px solid #e5e6ec;
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.estq-input { padding-right: 14px; }

.estq-input--area {
  height: auto;
  min-height: 92px;
  padding: 13px 14px;
  line-height: 1.5;
  resize: vertical;
}

.estq-select__input { cursor: pointer; }

.estq-select__input:focus-visible,
.estq-input:focus-visible {
  border-color: #7a22e0;
  box-shadow: 0 0 0 3px rgba(122, 34, 224, .14);
}

.estq-input::placeholder { color: #a7a7b6; }

.estq-select__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  color: #101223;
  pointer-events: none;
}

.estq-input.is-invalid { border-color: #e0435a; }

.estq-error {
  display: none;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: #e0435a;
}

.estq-error.is-shown { display: block; }

/* ---------- counters ---------- */

.estq-counts {
  margin: 26px 0 6px;
  display: grid;
  gap: 12px;
}

.estq-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.estq-count__label {
  font-size: 16.5px;
  font-weight: 600;
  color: #101223;
}

.estq-count__max {
  font-style: normal;
  font-weight: 500;
  color: #101223;
}

.estq-stepper {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  width: 152px;
  height: 38px;
  background: #e3f6ef;
  border-radius: 8px;
  overflow: hidden;
}

.estq-stepper__btn {
  height: 100%;
  border: 0;
  background: transparent;
  color: #3bc39c;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.estq-stepper__btn:hover { background: rgba(59, 195, 156, .16); }
.estq-stepper__btn:active { background: rgba(59, 195, 156, .28); }
.estq-stepper__btn:disabled { color: #b4d9cd; cursor: not-allowed; background: transparent; }

.estq-stepper__value {
  height: 30px;
  width: 100%;
  padding: 0;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #101223;
  background: #ffffff;
  border: 0;
  border-radius: 5px;
  outline: none;
}

.estq-stepper__value:focus-visible { box-shadow: 0 0 0 2px rgba(59, 195, 156, .55); }

/* ---------- footer / price / cta ---------- */

.estq-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.estq-footer--back { margin-top: 18px; }

.estq-price {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #0a0a12;
  font-variant-numeric: tabular-nums;
}

.estq-next {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  background: #0a0a12;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.estq-next:hover { background: #22223a; }
.estq-next:active { transform: scale(.98); }
.estq-next:focus-visible { outline: 3px solid rgba(122, 34, 224, .45); outline-offset: 2px; }
.estq-next[disabled] { opacity: .45; cursor: not-allowed; }

.estq-next__arrow { width: 34px; height: 14px; }

.estq-hint {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #e0435a;
}

/* ---------- back face extras ---------- */

.estq-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #74748a;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .18s ease;
}

.estq-back:hover { color: #7a22e0; }
.estq-back svg { width: 20px; height: 13px; }

.estq-form { margin: 0; }

.estq-summary {
  margin: 4px 0 2px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #4c4c60;
  background: #f6f4fd;
  border-radius: 10px;
}

.estq-summary strong { color: #101223; font-weight: 600; }

.estq-done {
  margin: 14px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1c7a5d;
  background: #e3f6ef;
  border-radius: 10px;
}

/* ---------- responsive ---------- */

@media (max-width: 420px) {
  .estq-body { padding: 22px 14px; }
  .estq-shell__ghost { inset: 20px -8px -16px 20px; border-radius: 24px; }
  .estq-face { padding: 24px 18px 26px; border-radius: 22px; }
  .estq-title { font-size: 25px; }
  .estq-price { font-size: 29px; }

  .estq-count {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .estq-stepper { width: 100%; }

  .estq-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .estq-next { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .estq-flip__inner { transition-duration: .01ms; }
  .estq-next, .estq-stepper__btn, .estq-input, .estq-select__input { transition: none; }
}


.estq-flip__inner {
    height: 555px;
}
#estqPrice {
    font-size: 40px !important;
    font-weight: 600 !important;
    letter-spacing: -3px;
}