   :root{
      --green:#168b47;
      --green-dark:#0f6a36;
      --orange:#ff7a00;
      --orange-dark:#ea6d00;
      --text:#1f2937;
      --muted:#667085;
      --light:#faf7f3;
      --border:#e8e8e8;
      --card:#ffffff;
      --soft-green:#eef8ef;
      --soft-orange:#fff4ea;
      --shadow:0 10px 30px rgba(0,0,0,.06);
      --radius:18px;
      --container:1180px;
       }

    *{box-sizing:border-box;margin:0;padding:0}
    body{
      font-family:'Inter',sans-serif;
      color:var(--text);
      background:#fff;
      line-height:1.5;
    }
    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}
    .container{
      width:min(100% - 32px,var(--container));
      margin:auto;
    }

    .topbar{
      background:#fff;
      border-bottom:1px solid #f0f0f0;
      padding:18px 0;
    }
    .logo{
      font-weight:800;
      font-size:28px;
      color:#202020;
      letter-spacing:-.5px;
    }
    .logo span{
      color:var(--orange);
    }

    .hero-wrap{
      background:linear-gradient(90deg,#fbf4ec 0%,#feeedc 100%);
      position:relative;
      overflow:hidden;
    }
    .hero-wrap:before{
      content:"";
      position:absolute;
      left:-120px;
      top:120px;
      width:260px;
      height:260px;
      background:radial-gradient(circle,#ffdba8 0%, rgba(255,219,168,0) 70%);
      border-radius:50%;
    }
    .hero-wrap:after{
      content:"";
      position:absolute;
      right:-120px;
      bottom:-60px;
      width:320px;
      height:320px;
      background:radial-gradient(circle,#c9f0b7 0%, rgba(201,240,183,0) 70%);
      border-radius:50%;
    }

    .hero{
      padding:72px 0 56px;
      display:grid;
      grid-template-columns:1.1fr .85fr;
      gap:42px;
      align-items:center;
      position:relative;
      z-index:1;
    }

   .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #168B4726;
    color: var(--green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
    font-style:"Semibold";
}
    .hero h1{
      font-size:51px;
      line-height:1.12;
      letter-spacing:-1.6px;
      margin-bottom:24px;
      font-weight:800;
      max-width:760px;
    }
    .hero h1 .green{color:var(--green)}
    .check-list{
      list-style:none;
      display:grid;
      gap:14px;
      margin-bottom:22px;
    }
    .check-list li{
      display:flex;
      gap:1px;
      align-items:flex-start;
      color:#394150;
      font-size:19px;
    }
    .check-list i{
      width:24px;
      height:24px;
      border-radius:50%;
      background:#10B98133;
      color:var(--green);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 24px;
      font-style:normal;
      font-size:14px;
      font-weight:800;
      margin-top:2px;
    }

   .webinar-note {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 14px 18px;
    width: 60%;
    background-color: #fff;
    border: 1px solid #f2e4d8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-family: 'Plus Jakarta Sans';
}

.webinar-note .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #fbe4d0;
    border-radius: 10px;
    color: #f4841f;
    font-size: 18px;
}

.webinar-note strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.webinar-note div:last-child {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

    .form-card{
      background:#fff;
      border-radius:20px;
      box-shadow:var(--shadow);
      padding:34px 30px 26px;
      border:1px solid #f0ebe6;
      max-width:470px;
      justify-self:end;
    }
    .form-card h3{
      font-size:40px;
      margin-bottom:8px;
      font-weight:800;
    }
    .form-card p{
      color:var(--muted);
      margin-bottom:18px;
      font-size:15px;
    }
    .form-group{margin-bottom:14px}
    .form-group label{
      display:block;
      font-size:14px;
      font-weight:600;
      margin-bottom:7px;
      color:#4b5563;
    }
    .form-group label span{color:#e05858}
    .form-control{
      width:100%;
      height:52px;
      border:1px solid #e4e7ec;
      border-radius:8px;
      padding:0 14px;
      outline:none;
      font-size:15px;
      background:#FEFAF1;
    }
    .form-control:focus{
      border-color:#ffb067;
      box-shadow:0 0 0 4px rgba(255,122,0,.08);
    }
    .btn{
      width:100%;
      border:none;
      height:54px;
      border-radius:8px;
      background:var(--orange);
      color:#fff;
      font-size:16px;
      font-weight:800;
      margin-top:8px;
      cursor:pointer;
    }
    .btn:hover{background:var(--orange-dark)}
    .policy{
      display:flex;
      gap:10px;
      font-size:12px;
      color:#667085;
      margin-top:16px;
      line-height:1.45;
    }
    .policy input{margin-top:3px}

    section{
      padding:49px 0;
    }

    .two-col{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:56px;
      align-items:center;
    }

   .image-box {
    position: relative;
    max-width: 460px;
    min-height: 430px;
    margin: auto;
}

.image-inner {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-inner:before {
    content: "";
    position: absolute;
    left: -40px;
    bottom: 58px;
    width: 140px;
    height: 140px;
    background: #39a949;
    border-radius: 50%;
}

.image-inner:after {
    content: "";
    position: absolute;
    left: -24px;
    bottom: -24px;
    width: 180px;
    height: 120px;
    background: #e8efe5;
    border-radius: 28px;
    z-index: -1;
}

/* Floating "100%" badge */
.floating-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.floating-badge-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #fbe4d0;
    color: #f4841f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.floating-badge span {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

    .placeholder-person{
      width:70%;
      height:360px;
      background:linear-gradient(180deg,#2d6fb8 0%,#2d6fb8 55%,#f4a790 55%,#f4a790 100%);
      border-radius:20px 20px 0 0;
      position:relative;
      margin-bottom:0;
    }
    .placeholder-person:before{
      content:"";
      position:absolute;
      top:-52px;
      left:50%;
      transform:translateX(-50%);
      width:92px;
      height:92px;
      background:#4b342b;
      border-radius:50%;
    }
    .placeholder-person:after{
      content:"";
      position:absolute;
      top:18px;
      left:50%;
      transform:translateX(-50%);
      width:78px;
      height:92px;
      background:#f0c6ac;
      border-radius:40px;
    }

    .section-tag{
      color:var(--orange);
      font-weight:800;
      text-transform:uppercase;
      font-size:14px;
      letter-spacing:.08em;
      margin-bottom:8px;
    }
    .section-title{
      font-size:46px;
      line-height:1.15;
      margin-bottom:16px;
      font-weight:800;
      letter-spacing:-1px;
    }
    .section-title p {
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0px;
}
    .section-title .green{color:var(--green)}
    .section-text{
      color:#4b5563;
      font-size:18px;
      margin-bottom:18px;
      max-width:720px;
    }
    .bullet-title{
      font-weight:700;
      margin:18px 0 12px;
      font-size:18px;
    }
    
  .mini-list {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mini-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 14px 20px;
    color: #4b5563;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mini-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.mini-list i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    margin-top: 0;
}
    .feature-panel{
      background:#FFFFFF;
      border:1px solid #eef2ea;
      border-radius:24px;
      padding:48px 32px;
      text-align:center;
    }
    .center-title{
      font-size:38px;
      line-height:1.2;
      font-weight:800;
      margin-bottom:8px;
      letter-spacing:-1px;
    }
    .center-title .orange{color:var(--orange)}
    .center-sub{
      color:var(--muted);
      font-size:17px;
      margin-bottom:28px;
    }
    .orange{color:var(--orange)}

    .feature-panel {
    background-color: #f6f8f5;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.center-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.center-sub {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .03);
}

.stat {
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--border);
    text-align: left;
}

.stat:last-child {
    border-right: none;
}

.stat-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex: 0 0 68px;
}

.stat-icon.bg-green {
    background-color: #39a949;
}

.stat-icon.bg-orange {
    background-color: #f4841f;
}

.stat-icon.bg-yellow {
    background-color: #f4b400;
}

.stat h4 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.stat p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-panel {
        padding: 32px 20px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }
}
    .bg-green{background:#248a47}
    .bg-orange{background:#ff7a00}
    .bg-yellow{background:#f2bb23}
    .stat h4{
      font-size:38px;
      line-height:1;
      margin-bottom:6px;
      font-weight:800;
    }
    .stat p{
      color:#4b5563;
      font-weight:600;
      font-size:15px;
    }

    .journey{
      text-align:center;
    }
    .journey-steps{
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
      align-items:start;
    }
    .step{
      position:relative;
      padding:10px 18px;
    }
    .step-icon{
      width:92px;
      height:92px;
      margin:0 auto 14px;
      border-radius:50%;
      background:#f3f7ef;
      border:1px solid #e5eddc;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:38px;
    }
    .step h4{
      font-size:18px;
    }

    .services{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
      margin-top:28px;
    }
    .service-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:16px;
      padding:22px;
      box-shadow:0 4px 14px rgba(0,0,0,.03);
    }
    .service-top{
      display:flex;
      align-items:flex-start;
      gap:14px;
      margin-bottom:10px;
    }
    .service-icon{
      width:52px;
      height:52px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      flex:0 0 52px;
    }
    .icon-green{background:#eaf6eb}
    .icon-orange{background:#fff1e7}
    .icon-yellow{background:#fff7dd}
    .icon-teal{background:#e9faf8}
    .service-card h4{
      font-size:20px;
      line-height:1.3;

    }
    .service-card p{
      color:#667085;
      font-size:14px;
      margin-top:8px;
    }

    .benefit-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:28px;
    }
    .benefit{
      border:1px solid var(--border);
      border-radius:14px;
      padding:22px 16px;
      text-align:center;
      background:#fff;
      min-height:122px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:10px;
    }
    .benefit .emoji{
      font-size:34px;
    }
    .benefit p{
      font-size:15px;
      font-weight:600;
      color:#374151;
    }

    .faq{
      max-width:900px;
      margin:28px auto 0;
    }
    .faq-item{
      border:1px solid var(--border);
      border-bottom:none;
      background:#fff;
    }
    .faq-item:first-child{
      border-radius:10px 10px 0 0;
      overflow:hidden;
    }
    .faq-item:last-child{
      border-bottom:1px solid var(--border);
      border-radius:0 0 10px 10px;
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      padding:18px 20px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:15px;
      font-weight:600;
      background:#fff;
      border:none;
      cursor:pointer;
      text-align:left;
    }
    .faq-answer{
      display:none;
      padding:0 20px 18px;
      color:#667085;
      font-size:14px;
    }
    .faq-item.active .faq-answer{display:block}
    .faq-item.active .faq-question{
      color:var(--green-dark);
    }

    .disclaimer{
      margin-top:34px;
      background:#fff1d9;
      border-radius:8px;
      padding:18px 20px;
      color:#6b5b39;
      font-size:13px;
      line-height:1.7;
    }

    footer{
      
      color:#fff;
      padding:28px 0;
    }
    

    @media (max-width: 1100px){
      .hero{
        grid-template-columns:1fr;
      }
      .form-card{
        justify-self:start;
        max-width:100%;
      }
      .two-col{
        grid-template-columns:1fr;
      }
      .services{
        grid-template-columns:repeat(2,1fr);
      }
      .benefit-grid{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media (max-width: 768px){
      .logo{font-size:22px}
      .hero{
        padding:48px 0 42px;
        gap:28px;
      }
      .eyebrow{font-size:18px}
      .hero h1{
        font-size:36px;
      }
      .check-list li,
      .webinar-note,
      .section-text{
        font-size:16px;
      }
      .form-card h3{
        font-size:30px;
      }
      .section-title,
      .center-title{
        font-size:32px;
      }
      .stats{
        grid-template-columns:1fr;
      }
      .stat{
        border-right:none;
        border-bottom:1px solid var(--border);
      }
      .stat:last-child{border-bottom:none}
      .journey-steps{
        grid-template-columns:1fr;
      }
      .services{
        grid-template-columns:1fr;
      }
      .benefit-grid{
        grid-template-columns:1fr 1fr;
      }
      section{
        padding:49px 0;
      }
      .image-box{
        min-height:320px;
      }
      .placeholder-person{
        width:72%;
        height:260px;
      }
      .grid-cols-4 {
          grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 480px){
      .container{
        width:min(100% - 22px,var(--container));
      }
      .hero h1{font-size:31px}
      .benefit-grid{
        grid-template-columns:1fr;
      }
      .form-card{
        padding:24px 18px;
      }
      .stat h4{
        font-size:30px;
      }
      .footer-row{
        flex-direction:column;
        align-items:flex-start;
      }
      .grid-cols-4 {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 576px) {
    .webinar-note {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .floating-badge {
        right: 8px;
        padding: 10px 14px;
    }
}
.white-box:hover {
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}
.tc-testimonial-style1 .numbers {
    margin-top: 40px;
}
.white-box {
    background-color: #f9fcff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    /* box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1); */
    text-align: center;
    transition: all 0.3s ease;
}
.statestics-border {
    border-right: 1px solid #d9d9d9;
}
.tc-testimonial-style1 .numbers .num-card {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.tc-testimonial-style1 .numbers .num-card h3 {
    font-size: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
}
a, span, img {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}
.services-card {
    position: relative;
    background-color: #feb40817;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s ease;
}
.services .services-card::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    /* z-index: -1; */
}
.services .services-card::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* z-index: -1; */
}
.services .services-card:hover::before {
    opacity: 1;
    transform: rotate(6deg);
}
.services .services-card::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}
.tc-services-style24 .services-card:hover::after {
    opacity: 1;
    transform: rotate(-6deg);
}
.bg-blue1 {
    background: #feae00c9  !important;
    border-color: #feae00c9 !important;
}
.card{
        border: 1px solid #ebebeb;
}
.list-icon li:before {
    margin-left: -20px;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
}
.list-icon.list-icon-colored li:before, .list-icon.icon-list-colored i {
    color: #ed940d;
}
.list-icon.list-icon-arrow-circle li:before {
    content: "\f0a9";
    font-family: "font awesome 5 free";
}
.list-icon {
    list-style: none;
    /* padding-left: 0; */
}
.step-info .step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 1rem 1rem;
    margin-bottom: 10px;
}

.section-card {
    padding: 30px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    /* box-shadow: 0 0 15px 3px #817e7e1a; */
    background-color: #fff !important;
    position: relative;
}
.tc-about-style30 .info ul li {
    font-size: 14px;
    line-height: 2;
}
.tc-story-imgs-slider26 {
    max-width: 425px;
    margin-left: 35px;
}
.eligible-dot-img {
    position: absolute;
    left: 0px;
}
.overflow-hidden {
    overflow: hidden !important;
}
.tc-features-style41 .features-card {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.tc-features-style41 .features-card .icon {
    margin: auto auto 25px;
}
.tc-features-style41 .features-card::after {
    height: 14px;
    position: absolute;
    content: "";
    width: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-image: url(../images/workshop/steps-arrow.jpg);
    bottom: 0;
    left: 180px;
    top: 35px;
}
.icon-80 {
    width: 80px;
    height: 80px;
}
.img-contain {
    display: block;
}
.tc-features-style41 .row>div:last-child .features-card::after {
    background-image: none !important;
}
.tc-about-style25 .info .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 10px 5px;
    text-align: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.icon-40 {
    width: 40px;
    height: 40px;
}
.tc-about-style25 .info .icon-box h5 {
    font-family: Rubik, sans-serif;
    font-size: 1rem;
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid {
    display: grid;
    gap: 15px;
    position: relative;
}
.invalid-feedback {
    display: block;
    font-weight: 100 !important;
    font-size: 14px !important;
}
.color-666 {
    color: #666 !important;
}
body ul {
    list-style-type: none;
    margin: 0;
}
.award-card ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    text-transform: capitalize;
}
.award-card ul li:last-of-type {
    padding-bottom: 0;
    border: 0;
}
.tc-blog-style17 .sub-blog-card .img {
    overflow: hidden;
    width: 100%;
    height: auto;
}
.work-time {
    padding: 10px 15px;
    border: 1px solid rgba(153, 153, 153, 0.1333333333);
}
.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2a2a, #d90000);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    /* box-shadow: 0 6px 14px rgba(217, 0, 0, 0.35); */
}
.work-time ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    color: #222;
    margin: 20px 0;
}
.work-time ul li .line {
    width: 70px;
    height: 1px;
    background-color: rgba(153, 153, 153, 0.1333333333);
}
.line {
    color: #2c323f;
}
.form-group .help-block ul {
    padding-left: 0 !important;
    padding-top: 5px;
    margin-bottom: 0;
}


.faq-side {
    max-width: 900px;
    margin: 30px auto 0;
}

.faq-side .accordion {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-side .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.faq-side .accordion-item:last-child {
    border-bottom: none;
}

.faq-side .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 20px 24px;
    background: #fff;
    box-shadow: none;
}

.faq-side .accordion-button:not(.collapsed) {
    color: var(--green-dark);
    background: #fff;
    box-shadow: none;
}

.faq-side .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-side .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.faq-side .accordion-body {
    padding: 0 24px 22px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-disclaimer {
    max-width: 65%;
    margin: 28px auto 0;
    background-color: #fff1d9;
    border-radius: 14px;
    padding: 20px 24px;
    font-size: 13px;
    line-height: 1.6;
    color: #6b5b39;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-disclaimer strong {
    font-weight: 700;
    color: #3d2f0f;
}

      .tc-blog-style5 {
    background-color: var(--light);
}
 
.faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-side {
    max-width: 100%;
    margin: 0;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-intro {
        position: static;
    }
}

.means-box {
    background-color: #fef6ec;
    border: 1px solid #f5e6d3;
    border-radius: 14px;
    padding: 20px 22px;
}

.means-box .bullet-title {
    margin: 0 0 8px;
    font-size: 16px;
}

.means-box .section-text {
    font-size: 15px;
    color: #4b5563;
}

/* ============ JOURNEY STEPS — CONNECTOR + BADGE ============ */

.journey-steps {
    position: relative;
}

.journey-steps::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 16.6%;
    right: 16.6%;
    border-top: 2px dotted var(--orange);
    z-index: 0;
}

.step-icon {
    position: relative;
    z-index: 1;
    background: #fef6ec;
    border: 1px solid #f5d9b8;
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.step h4 {
    font-weight: 600;
    color: var(--text);
}

/* Responsive — mobile par line hide karo (stack thai jashe) */
@media (max-width: 768px) {
    .journey-steps::before {
        display: none;
    }
}

/* ============ FEATURE PANEL — CARD STYLE (override) ============ */

.feature-panel {
    background: #fff !important;
    border: none !important;
    border-radius: 24px !important;
    box-shadow: var(--shadow) !important;
    padding: 40px 32px !important;
}

.stats {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 16px !important;
}

.stat {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-right: 1px solid var(--border) !important;
    border-radius: 50px !important;
}

.stat:last-child {
    border-right: 1px solid var(--border) !important;
}

.stat-icon {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    font-size: 16px !important;
}

.stat h4 {
    font-size: 40px !important;
}

.stat p {
    font-size: 13px !important;
    font-weight: 500 !important;
}

/* ============ SERVICE CARDS — NUMBERED OUTLINE STYLE (override) ============ */

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff !important;
    border-radius: 18px !important;
}

.service-num {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 55px;
    font-weight: 800;
    color: var(--border);
    opacity: 0.7;
    line-height: 1;
    z-index: 0;
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1.5px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon img {
    width: 22px;
    height: 22px;
}

.service-card h4 {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--muted);
    margin-top: 0;
}

  
/* ===========================
   OTP VERIFICATION CARD
=========================== */
.otp-card{
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 34px;
    text-align: left;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border: 1px solid #f0ebe6;
}

.otp-icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF1E4;
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.otp-title{
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.otp-subtitle{
    font-size: 14px;
    color: #414F5D;
    margin-bottom: 28px;
}

.otp-subtitle strong{
    color: var(--text-dark);
    font-weight: 700;
}

/* OTP input boxes */
.otp-box{
    width: 58px !important;
    height: 58px !important;
    font-size: 24px !important;
    font-weight: 700;
    border: 1.5px solid var(--brand-orange) !important;
    border-radius: 14px !important;
    color: var(--text-dark);
    background: #fff;
}

.otp-box:focus{
    outline: none;
    box-shadow: 0 0 0 3px rgba(250,137,39,.15);
}

/* Error text */
.otp-card .invalid-feedback{
    color: var(--brand-red) !important;
    font-size: 13px !important;
    margin-top: 10px;
    display: block;
    text-align: left;
}

/* Verify button */
.otp-card #otpbtn.tf-btn{
    width: 100%;
    background: var(--brand-orange);
    border: none;
    border-radius: 14px;
    padding: 16px 20px !important;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(250,137,39,.35);
    margin-top: 10px !important;
}

.otp-card #otpbtn .button_text_container{
    justify-content: center;
    width: 100%;
    color: #fff !important;
}

/* Didn't receive OTP + Resend pill */
.otp-card p.fsz-12{
     display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--text-666);
    margin-top: 15px !important;
}

.resend-btn.tf-btn{
    display: inline-flex;
    align-items: center;
    background: #0A1838;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 5px 25px !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.resend-btn.tf-btn:hover{
    background: #333;
}

#otpTimer{
    color: #fff !important;
    font-size: 12px !important;
}

@media (max-width: 480px){
    .otp-card{
        padding: 26px 20px;
    }
    .otp-box{
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
}
.otp-error-text{
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    background: none;
    border: none;
    padding: 0;
}