

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #1a73c8;
      --blue-light: #e8f1fb;
      --blue-hover: #1558a0;
      --text: #1a1a2e;
      --text-muted: #555;
      --border: #e0e7ef;
      --bg: #f7f9fc;
      --white: #fff;
      --sidebar-w: 300px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
/*      background: var(--bg);*/
      color: var(--text);
      line-height: 1.7;
    }

    /* ── Layout ── */
    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 48px 24px;
      display: grid;
      grid-template-columns: var(--sidebar-w) 1fr;
      gap: 56px;
      align-items: start;
    }

    /* ── Sidebar / TOC ── */
    .toc-sidebar {
      position: sticky;
      top: 36px;
    }

    .toc-sidebar h2 {
      font-family: 'Merriweather', serif;
      font-size: 1.35rem;
      color: var(--blue);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--blue);
    }

    .toc-list {
      list-style: none;
    }

    .toc-list li {
      border-bottom: 1px solid var(--border);
    }

    .toc-list li a {
      display: block;
      padding: 11px 0;
      color: var(--blue);
      text-decoration: none;
      font-size: 0.93rem;
      font-weight: 600;
      transition: color 0.18s, padding-left 0.18s;
    }

    .toc-list li a:hover {
      color: var(--blue-hover);
      padding-left: 6px;
    }

    /* ── Main Content ── */
    .content h1 {
      font-family: 'Merriweather', serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 28px;
      color: var(--text);
    }

    .content h2 {
font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0px 0 3px;
    /* padding-bottom: 8px; */
    border-bottom: 2px solid var(--border);
    }

    .content h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin: 28px 0 10px;
    }

    .content h4 {
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--blue);
      margin: 22px 0 8px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .content p {
      color: var(--text-muted);
      margin-bottom: 16px;
      font-size: 1rem;
    }

    .content ul, .content ol {
      padding-left: 22px;
      margin-bottom: 16px;
      color: var(--text-muted);
    }

    .content li {
      margin-bottom: 6px;
      font-size: 0.97rem;
    }

 /*   .content li::marker {
      color: var(--blue);
    }
*/
    .content a {
      color: var(--blue);
      text-decoration: none;
      font-weight: 500;
    }

    .content a:hover {
      text-decoration: underline;
      color: var(--blue-hover);
    }

    .content code {
      background: var(--blue-light);
      color: var(--blue-hover);
      padding: 2px 7px;
      border-radius: 4px;
      font-size: 0.88em;
      font-family: 'Courier New', monospace;
    }

    .content blockquote {
      border-left: 4px solid var(--blue);
      padding: 12px 20px;
      margin: 20px 0;
      background: var(--blue-light);
      border-radius: 0 8px 8px 0;
      color: var(--text-muted);
      font-style: italic;
    }

    /* CTA button (mirrors the image) */
    .cta-btn {
      display: inline-block;
      background: var(--blue);
      color: #fff;
      font-weight: 700;
      font-size: 0.97rem;
      padding: 13px 28px;
      border-radius: 6px;
      text-decoration: none;
      margin: 24px 0;
      transition: background 0.18s;
    }
    .cta-btn:hover { background: var(--blue-hover); text-decoration: none; color:#fff;}

    /* meta info strip under h1 */
    .meta-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }
    .meta-strip span {
      background: var(--blue-light);
      color: var(--blue);
      font-size: 0.84rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* section divider */
    .section-divider {
      border: none;
      border-top: 2px solid var(--border);
      margin: 40px 0;
    }

    /* ── Active TOC item ── */
    .toc-list li a.active {
      color: var(--white);
      background: var(--blue);
      padding-left: 14px;
      border-radius: 6px;
      margin: 2px 0;
      display: block;
      box-shadow: 0 2px 8px rgba(26,115,200,0.18);
    }

    .toc-list li a {
      border-radius: 6px;
      margin: 2px 0;
      transition: color 0.18s, padding-left 0.22s, background 0.22s, box-shadow 0.22s;
    }

    .toc-list li a:hover:not(.active) {
      background: var(--blue-light);
      padding-left: 10px;
      color: var(--blue-hover);
    }

    @media (max-width: 768px) {
      .page-wrap {
        grid-template-columns: 1fr;
      }
      .toc-sidebar {
        position: static;
      }
    }

  
/* Title */
.title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Layout */
.comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
/*    flex-wrap: wrap;*/
}

/* Boxes */
.box {
    width: 400px;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #333;
}

/* Left (Problems) */
.advantages {
    background: #dff0d8;
}

/* Right (Solutions) */
.solutions {
    background: #f8d7da;
}

/* Heading */
.box h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

/* List */
.box ul {
    padding-left: 20px;
}

.box ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

.green-box .ai-section-title {
    background: #43a60e;

}

.green-box .ai-list-box{
    border: 1px solid #43a60e;
}


 .green-box .ai-list-box ul li::marker {
    color: #43a60e;
}
.ai-list-box ul li::marker {
    color: #a71b0e ;
}
 .svg-c{

    fill: #43a60e;
    color: #43a60e;
    stroke: #43a60e;
}
.svg-red{
      fill: #a71b0e;
    color: #a71b0e;
    stroke: #a71b0e;
}

.ai-section-title{
    font-size: 15px;  background: #a71b0e;
    font-weight: 500;
    min-width: 200px;
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
/*    margin-bottom: 1rem;    */
}

.ai-arrow {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.ai-box {
    border: 1px solid #1a5c3a;
    border-radius: 12px;
    width: 100%;
    min-height: 220px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ai-box p {
    color: #1a5c3a;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 0;
}

.ai-list-box {
    border: 1px solid #a71b0e;
    border-radius: 12px;
    width: 100%;
    /* min-height: 220px; */
    padding: 0.5rem 0.75rem;
    height: -webkit-fill-available;
}

.ai-list-box ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.ai-list-box ul li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: black;
}

.ai-list-box ul li:last-child {
    margin-bottom: 0;
}
.readmorebutton1{
  font-size: 24px;
}
.readmorebutton1 a{
  color: #FF7D0F;
  text-decoration: unset;
  font-weight: 500;
}

.toc-list{
    padding-left: 0rem;
}

 .section-top-span {
    position: relative;
    display: inline-block;
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    color: #000;
  padding-left: 17px;  
/*   background: #1a73c81f;*/
    display: grid;
/*    border-radius: 25px;*/
     border-radius: 5px;
}
/*.section-top-span::before {
    content: '';
    position: absolute;
     left: 2%;
    top: 50%;
    transform: translateY(-50%);
    background: #728954;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}*/


@media (min-width:100px) and (max-width:768px) {
.faq-header {
     display: unset !important;

}

.section-top-span {

    font-size: 14px !important;
   
    padding-left: 0px !important;


}
.navbar .btn1 {
    display: none;
}

#services .SmartSolutionSection_heading__DuZTZ {
 
    line-height: 44px;
}
.card-grid{
    grid-template-columns:  unset !important;

  }  
}

  @media screen and (min-width: 100px) and (max-width: 768px) {
    .navbar-toggler-icon {
        filter: invert(1) !important;
    }

    .navbar-toggler-icon {
  
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;



}

    .navbar-toggler {
        border: var(--bs-border-width) solid rgb(13 9 9 / 15%) !important;
    }

    .btn1 {
        display: none !important;
    }

    
}

