@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
  font-family: "Fira Sans", sans-serif;
  color: #333;
  background: #f4f5f7;
  min-height: 100vh;
}

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

.breadcrumb {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero {
  position: relative;
  padding: 24px 40px 52px;
  color: #fff;
  background: url(../img/bg.avif) center / cover no-repeat;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(113deg, #532af3d6 0%, #534cf9c2 100%);
    backdrop-filter: blur(2px);
}
.hero > * {
  position: relative;
  z-index: 1;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 40px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo span {
  color: rgba(255, 255, 255, 0.88);
}

.website-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.website-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-weight: 400;
}

.search-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto 20px;
}

.search-box input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #1f2937;
}

.search-box input::placeholder {
  color: #9ca3af;
}

.search-box .ti {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
}
.search-box .ti:hover {
  color: #6c35de;
}
.view-toggle {
  display: inline-flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  /*border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);*/
}

.toggle-btn {
  appearance: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: background 0.2s, color 0.2s;
  border-radius:6px;
  margin:5px;
}

.toggle-btn .ti {
  font-size: 22px;
}

.toggle-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.22);
}

.toggle-btn.is-active {
  background: #fff;
  color: #536dfe;
}

.toggle-btn.is-active:hover {
  background: #fff;
}
.content {
  max-width: 1270px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.platform-empty {
  text-align: center;
  padding: 80px 20px;
  color: #888;
}
.platform-empty .ti {
  font-size: 56px;
  color: #d1d5db;
  display: block;
  margin-bottom: 16px;
}
.platform-empty p {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}
.platform-empty span {
  font-size: 14px;
  color: #999;
}

/* ── Platform header ──────────────────────────────────────── */
.platform-header {
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border-left: 4px solid transparent;
}
.platform-header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.platform-count {
  font-size: 13px;
  color: #666;
}
.platform-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Web App – purple */
.platform-header--web {
  background: #f5f0ff;
  border-left-color: #6c35de;
}
.platform-header--web .platform-badge {
  background: #ede8ff;
  color: #6c35de;
}

/* Desktop App – blue */
.platform-header--desktop {
  background: #eff6ff;
  border-left-color: #1d4ed8;
}
.platform-header--desktop .platform-badge {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Mobile App – teal */
.platform-header--mobile {
  background: #f0fdf9;
  border-left-color: #0d9488;
}
.platform-header--mobile .platform-badge {
  background: #ccfbf1;
  color: #0d9488;
}

/* Section title left-border accent per platform */
[data-platform="web"] .section-title    { border-left: 3px solid #6c35de; padding-left: 10px; }
[data-platform="desktop"] .section-title{ border-left: 3px solid #1d4ed8; padding-left: 10px; }
[data-platform="mobile"] .section-title { border-left: 3px solid #0d9488; padding-left: 10px; }

/* meta-articles colour per platform */
[data-platform="web"] .meta-articles    { color: #6c35de; }
[data-platform="desktop"] .meta-articles{ color: #1d4ed8; }
[data-platform="mobile"] .meta-articles { color: #0d9488; }

/* ── Desktop App: 3-column fixed grid (.view-grid prefix = higher specificity) ── */
.view-grid [data-platform="desktop"] .category-grid {
  grid-template-columns: repeat(3, 1fr);
}
.view-grid [data-platform="desktop"] .card-inner {
  border-color: #dbeafe;
}
.view-grid [data-platform="desktop"] .category-card:hover {
  border-color: #1d4ed8;
}
.view-grid [data-platform="desktop"] .card-icon-wrap {
  background: #eff6ff;
}
.view-grid [data-platform="desktop"] .card-icon-wrap .ti {
  color: var(--accent, #1d4ed8);
}

/* ── Mobile App: 2-column compact app-icon layout ───────────────────────────── */
.view-grid [data-platform="mobile"] .category-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.view-grid [data-platform="mobile"] .card-inner {
  align-items: center;
  text-align: center;
  padding: 28px 16px 20px;
  border-color: #ccfbf1;
}
.view-grid [data-platform="mobile"] .category-card:hover {
  border-color: #0d9488;
}
.view-grid [data-platform="mobile"] .card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin: 0 auto 14px;
  background: #f0fdf9;
}
.view-grid [data-platform="mobile"] .card-icon-wrap .ti {
  font-size: 32px;
  color: var(--accent, #0d9488);
}
.view-grid [data-platform="mobile"] .card-desc {
  display: none;
}
.view-grid [data-platform="mobile"] .card-meta {
  justify-content: center;
}
.view-grid [data-platform="mobile"] .card-title {
  font-size: 15px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.category-grid {
  gap: 20px;
}

.meta-articles {
  color: #532af3; /* overridden per-platform above */
}

.meta-updated {
  font-size: 12px;
}
.view-grid .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.view-grid .category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f3f1ff;
  border: 1px dashed #a59ce0;
  border-radius: 22px;
  padding: 10px 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.view-grid .category-card:hover {
  border-color: #7c6fd4;
  transform: translateY(-2px);
}

.view-grid .category-card:hover .card-inner {
  box-shadow: 0 8px 28px rgba(83, 109, 254, 0.12);
  border-color: #e0e2e8;
}

.view-grid .card-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e7ef;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(18, 24, 48, 0.06);
  padding: 24px 20px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.view-grid .card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent, #7c3aed) 14%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.view-grid .card-icon-wrap .ti {
  font-size: 28px;
  color: var(--accent, #7c3aed);
}

.view-grid .card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 14px;
}

.view-grid .card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
  margin-bottom: 14px;
}

.view-grid .card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* margin-top: auto; */
}
.view-list .category-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.view-list .category-card {
  background: #f3f1ff;
  border: 1px dashed #a59ce0;
  border-radius: 18px;
  padding: 8px 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.view-list .category-card:hover {
  border-color: #7c6fd4;
}

.view-list .category-card:hover .card-inner {
  box-shadow: 0 6px 20px rgba(83, 109, 254, 0.1);
  border-color: #e0e2e8;
}

.view-list .card-inner {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 4px;
  align-items: center;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e7ef;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(18, 24, 48, 0.05);
  padding: 14px 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.view-list .card-icon-wrap {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent, #7c3aed) 14%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-list .card-icon-wrap .ti {
  font-size: 24px;
  color: var(--accent, #7c3aed);
}

.view-list .card-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  align-self: end;
  text-align: left;
}

.view-list .card-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  line-height: 1.45;
  color: #6b7280;
  align-self: start;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-list .card-meta {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
  text-align: right;
}

.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
}

.chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.chat-btn .ti {
  font-size: 24px;
}

.chat-btn:hover {
  background: #6d28d9;
  transform: scale(1.05);
}


















@media (max-width: 767px) {
  .hero {
    padding: 20px 20px 44px;
  }

  .top-bar {
    margin-bottom: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .view-grid .category-grid {
    grid-template-columns: 1fr;
  }

  .view-list .card-inner {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
  }

  .view-list .card-icon-wrap {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 48px;
    height: 48px;
  }

  .view-list .card-title {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .view-list .card-meta {
    grid-column: 2;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0;
    padding-top: 6px;
    text-align: left;
  }

  .view-list .card-meta span + span::before {
    content: "·";
    margin: 0 8px;
    color: #d1d5db;
    font-weight: 700;
  }

  .view-list .card-desc {
    grid-column: 2;
    grid-row: 2;
  }
}
.support-main {
    background-color: #dedcff;
    padding: 80px 0px;
}
.support-wrapper{
      width:100%;
      max-width:1170px;
      display:grid;
      grid-template-columns: 1fr 1.3fr;
      gap:60px;
      align-items:center;
      margin:auto;
    }

    .left-content h1{
      font-size:78px;
      line-height:1.15;
      font-weight:300;
      color:#000;
    }

    .support-card{
      background:#5346f8;
      border-radius:24px;
      padding:50px;
    }

    .support-item{
      display:flex;
      gap:30px;
      align-items:flex-start;
    }

    .support-item:not(:last-child){
      margin-bottom:40px;
    }

    .icon-box{
      width:92px;
      height:92px;
      min-width:92px;
      background:rgba(255,255,255,0.25);
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .icon-box svg{
      width:40px;
      height:40px;
      stroke:#fff;
    }

    .icon-box .ti {
      font-size: 36px;
      color: #fff;
    }

    a.support-item {
      text-decoration: none;
      color: inherit;
    }

    a.support-item:not(.support-item--no-link):hover .icon-box {
      background: rgba(255,255,255,0.4);
    }

    a.support-item--no-link {
      cursor: default;
    }

    .support-text h3{
      font-size:22px;
      font-weight:600;
      margin-bottom:8px;
      color:#fff;
    }

    .support-text p{
      font-size:18px;
      line-height:1.6;
      color:#fff;
      max-width:500px;
      margin-bottom: 0;
    }

    @media(max-width: 992px){
      .support-wrapper{
        grid-template-columns:1fr;
      }

      .left-content h1{
        font-size:56px;
      }
    }

    @media(max-width: 600px){

      /* body{
        padding:20px;
      } */

      .support-card{
        padding:30px 25px;
      }

      .support-item{
        flex-direction:column;
        gap:20px;
      }

      .left-content h1{
        font-size:42px;
      }

      .support-text p{
        font-size:16px;
      }
    }
    .container{
      max-width:1240px;
      margin:0 auto;
    }
    .breadcrumb-main {
    background-color: #e7e7e7;
    padding: 15px;
}
    .breadcrumb {
      display:flex;
      align-items:center;
      gap:8px;
      font-size:14px;
      color:#6b7280;
    }
    

    .breadcrumb a {
      text-decoration:none;
      color:#111827;
      font-weight:500;
    }
    .folder-icon {
      width:40px;
      height:40px;
      position:relative;
    }

    .folder-icon i {
         font-size:40px;
      color:#6c63ff;
    }
    .article-heading {
      font-size:52px;
      line-height:1.1;
      font-weight:700;
      margin-bottom:14px;
      color:#111827;
    }

    .subtitle{
      font-size:24px;
      color:#374151;
      margin-bottom:28px;
    }

    /* Author Row */
    .author-row{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:42px;
    }

    .avatars{
      display:flex;
      align-items:center;
    }

    .avatar{
      width:36px;
      height:36px;
      border-radius:50%;
      border:2px solid #fff;
      margin-left:-8px;
      overflow:hidden;
      background:#ddd;
    }

    .avatar:first-child{
      margin-left:0;
    }

    .avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .avatar.purple{
      background:#6c63ff;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      font-weight:700;
    }

    .author-text{
      font-size:18px;
      color:#6b7280;
    }

    .author-text strong{
      color:#374151;
      font-weight:500;
    }
    .card{
      background:#fff;
      border:1px solid #e5e7eb;
      border-radius:14px;
      overflow:hidden;
    }
.article_main {
    padding: 60px 0px;
}
    .list-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:16px 24px;
      font-size:18px;
      color:#111827;
      cursor:pointer;
      transition:background 0.2s ease;
      border-bottom: solid 1px #6c63ff17;
    }

    .list-item:hover{
      background:#fafafa;
    }

    .arrow{
      color:#6c63ff;
      font-size:22px;
      font-weight:500;
    }

    @media (max-width:768px){

      h1{
        font-size:38px;
      }

      .subtitle{
        font-size:18px;
      }

      .list-item{
        font-size:16px;
        padding:20px;
      }

      .author-text{
        font-size:15px;
      }
    }
    
    
.list_item_one a{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}
.list_item_one a i{
    font-size: 20px;
}
.list_item_one a i {
    background-color: #6c63ff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    border-radius: 6px;
}
.article_container_main {
    display:flex;
}
/* Sidebar */
    .sidebar {
      width: 260px;
      background: #eceef3;
      padding: 25px 20px;
    }

    .back-btn {
      display: inline-block;
      background: #ff6b81;
      color: #fff;
      padding: 10px 18px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .related-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .related-links {
      list-style: none;
    }

    .related-links li {
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .related-links a {
      text-decoration: none;
      color: #1e293b;
      font-size: 16px;
    }

    .related-links a:hover {
      color: #4f46e5;
    }

    /* Main Content */
    .article-details {
      flex: 1;
      padding: 20px 20px;
      background: #fff;
    }

    .breadcrumb {
      color: #6b7280;
      font-size: 15px;
    }

    .breadcrumb a {
      color: #4f46e5;
      text-decoration: none;
    }

    .main-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #0f172a;
    }

    .article-details hr {
      border: none;
      border-top: 1px solid #d1d5db;
      margin-bottom: 20px;
    }

    .article-details .section-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 6px solid #5b5ce2;
      padding-left: 18px;
      color: #0f172a;
    }

    .content p {
      /* font-size: 20px; */
      line-height: 1.8;
      /* margin-bottom: 20px; */
      color: #374151;
    }

    .content a {
      color: #5b5ce2;
    }

    .article-details ul {
      margin: 30px 0px 30px 30px;
    }

    .article-details ul li {
      font-size: 20px;
      margin-bottom: 12px;
      color:#532af3;
    }

    .article-details .sub-heading {
      font-size: 22px;
      font-weight: bold;
      margin-top: 45px;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .step-title {
      font-size: 26px;
      font-weight: bold;
      margin-top: 40px;
      margin-bottom: 15px;
    }

    .step-text {
      font-size: 20px;
      line-height: 1.8;
    }

    strong {
      color: #111827;
    }

    @media (max-width: 992px) {
      .container {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
      }

      .content {
        padding: 30px;
      }

      .main-title,
      .section-title,
      .sub-heading {
        font-size: 32px;
      }
    }
    



/* New CSS */
/* My CSS */

.cat-wraper {
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  position: sticky;
  top: 10px;
}


.cat-head {
  background-color: #532af3;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
}

.cat-head .right-head {
  color: #fff;
}

.cat-head .right-head p {
  margin-bottom: 0;
  font-size: 14px;
}


.cat-wraper .right-head span {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.cat-head .head-icon {
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: #2300b1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar Accordion CSS */

.accordion-content li {
  position: relative;
  border-top: 1px solid #eee;
}


.accordion,
.accordion-content {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-item {
    border-bottom: 1px solid #ececec;
}

.accordion-title {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
    font-weight: 600;
    border-top: 1px solid #eee;
    
}

.accordion-title span {
  color: #323232;
  font-size: 18px;
}

.accordion-title:hover {
    background: #f7f7f7;
}

.accordion-title i {
    transition: .3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #fafafa;
}

.accordion-content li a {
    display: block;
    padding: 14px 35px;
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.accordion-content li a:hover {
    color: #532af3;
    background: #f4f2ff;
}

/* Currently selected sidebar item (persists after click, and on initial page load) */
.accordion-content li a.sidebar-link--active {
    color: #532af3;
    background: #f4f2ff;
    font-weight: 600;
    border-left: 3px solid #532af3;
    padding-left: 32px;
}

.accordion-item--leaf .accordion-title.sidebar-link--active {
    background: #f4f2ff;
    border-left: 3px solid #532af3;
    padding-left: 17px;
}

.accordion-item--leaf .accordion-title.sidebar-link--active .acco-title span {
    color: #532af3;
}

/* Expanded/open folder-type sidebar section also gets the shade */
.accordion-item.active > .accordion-title:not(.sidebar-link) {
    background: #f4f2ff;
    border-left: 3px solid #532af3;
    padding-left: 17px;
}

.accordion-item.active > .accordion-title:not(.sidebar-link) .acco-title span {
    color: #532af3;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    overflow-y: auto;
}

.accordion-item.active .accordion-title i {
    transform: rotate(90deg);
}

.accordion-item {
  border: none;
}


/* .accordion-item:not(:last-child) .accordion-title {
  border-bottom: 1px solid #f1f1f1;
} */


.acco-title .acc-title-i {
  height: 20px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  /* border: 1px solid #c1c1c1; */
  padding: 16px;
  background: #e7e1ff;
}

.acco-title {
  display: flex;
  align-items: center;
  gap: 10px;
}


.accordion-item .accordion-title .acc-title-i i {
  transform: none;
  color: #4f46e5;
}

.accordion-content ul {
  list-style: none;
}

/* Items that have children */
.accordion-content li.has-dropdown > a,
.accordion-content li.has-dropdown1 > a,
.accordion-content li.has-dropdown2 > a,
.accordion-content li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow */
.accordion-content li.dropdown-parent > a::after {
    content: "\ea61"; /* Tabler chevron-right */
    font-family: "tabler-icons";
    font-size: 14px;
    transition: .3s;
}

/* Rotate arrow when open */
.accordion-content li.dropdown-parent.open > a::after {
    transform: rotate(90deg);
}

/* Nested UL */
.accordion-content li > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #f8f8f8;
}

/* Open state */
.accordion-content li.open > ul {
    max-height: 1000px;
}

/* Indentation for levels */
.accordion-content li ul li a {
    padding-left: 50px;
}

.accordion-content li ul li ul li a {
    padding-left: 70px;
}

.accordion-content li ul li ul li ul li a {
    padding-left: 90px;
}

.accordion-content li ul li ul li ul li ul li a {
    padding-left: 110px;
}


.accordion ul {
  padding-left: 0;
}






/* New CSS Update  */

.menu-item{
    display:flex;
    align-items:center;
}

.menu-item>a{
    flex:1;
    display:block;
    padding:14px 20px 14px 35px;
    color:#555;
    text-decoration:none;
    transition:.3s;
}


.menu-item>a:hover{
    background:#f4f2ff;
    color:#532af3;
}


/* Toggle */

.submenu-toggle{
    width:54px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
}

.submenu-toggle i{
    font-size:16px;
}

/* Rotate Arrow */

.dropdown-parent.open>.menu-item>.submenu-toggle{
    transform:rotate(90deg);
}

/* Nested UL */

.dropdown-parent>ul{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fafafa;
}

.dropdown-parent.open>ul{
    max-height:1000px;
}

/* Indent */

.dropdown-parent ul .menu-item>a,
.dropdown-parent ul>li>a{
    padding-left:55px;
}

.dropdown-parent ul .dropdown-parent ul .menu-item>a,
.dropdown-parent ul .dropdown-parent ul>li>a{
    padding-left:75px;
}

.dropdown-parent ul .dropdown-parent ul .dropdown-parent ul .menu-item>a,
.dropdown-parent ul .dropdown-parent ul .dropdown-parent ul>li>a{
    padding-left:95px;
}
















.module-content .image-placeholder {
  margin-bottom: 25px;
}

.article-nav-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0eeff;
  border-left: 4px solid #6c35de;
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #3b1fa8;
}
.article-nav-icon .ti {
  font-size: 18px;
  color: #6c35de;
}


/* Article section header — injected above every article body */
.article-section-header {
  border-bottom: 2px solid #e8e4ff;
  margin-bottom: 20px;
  padding-bottom: 14px;
}
.article-section-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #3b1fa8;
  line-height: 1.3;
}

/* Image cursor */
        .popup-image {
            cursor: pointer;
            transition: 0.3s;
        }

        .popup-image:hover {
            opacity: 0.9;
        }

        /* Modal Background */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            /* left: 0;
            top: 0; */
            /* width: 100%;
            height: 100%; */
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            justify-content: center;
            align-items: center;
            /* padding: 20px; */
        }
        

        /* Popup Image */
        .image-modal .mdal-c img {
            /* max-width: 90%;
            max-height: 90%; */
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(255,255,255,0.2);
            padding: 12px;
            max-width: 80vw;
            max-height: 80vh;
            width: auto;
            height: auto;
            display: block;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: -15px;
            right: -10px;
            height: 40px;
            width: 40px;
            color: #fff;
            font-size: 36px;
            cursor: pointer;
            /* line-height: 1; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #c10000;
        }

        .close-btn:hover {
            color: #ccc;
        }

.mdal-c {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Tab CSS */

.nav-pills .nav-link.active {
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  /* color: #323232; */
  color: #2443f0;
  /* font-weight: 500; */
}


.nav-pills .nav-link {
  color:#fff;
  background: rgba(255, 255, 255, 0.14);
}


.tabBtns ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}







.back-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}




@media (max-width: 991px) {
  .support-main .support-wrapper {
    padding: 0 40px;
    gap: 30px;
  }


  .support-main {
    padding: 40px 0 !important;
  }

  .site-footer {
    padding: 20px;
  }

  .site-footer p {
    margin-bottom: 0;
  }

}




@media (max-width:767px) {
  .close-btn {
    height: 34px;
    width: 34px;
    font-size: 30px;
    top: -10px;
    right: -10px;

  }

  .image-modal .mdal-c img {
    max-width: 94vw;
  }
}