:root {
  --md-blue:        #2d6cdf;
  --md-blue-dark:   #1a4fad;
  --md-blue-light:  #eef4ff;
  --md-navy:        #0d1b4c;
  --md-yellow:      #ffc107;
  --md-gray-50:     #f8fafc;
  --md-gray-100:    #f1f5f9;
  --md-gray-200:    #e2e8f0;
  --md-gray-400:    #94a3b8;
  --md-gray-600:    #6b7280;
  --md-gray-800:    #1e293b;
  --md-text:        #111827;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      14px;
  --shadow-card:    0 2px 12px rgba(0,0,0,.07);
  --shadow-card-lg: 0 8px 28px rgba(0,0,0,.09);
  --transition:     .18s ease;
}
a{text-decoration: none !important; color: inherit;}
.faq-help-center {
  font-family: Roboto, sans-serif;
  background: var(--md-gray-50);
  color: var(--md-text);
}

/* .faq-hero {
  padding: 60px 0;
  background: #fff;
} */

.faq-mini-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--md-blue);
  margin-bottom: 12px;
}

.faq-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--md-navy);
  line-height: 1.18;
  margin-bottom: 0;
}

.faq-hero h1 span {
  color: var(--md-blue);
}

.faq-subtitle {
  color: var(--md-gray-600);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
}

.faq-hero{
  background:#fff;
  padding: 35px 0 20px 0; 
}

.faq-hero-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.faq-hero-left{
  flex:1;
}

.faq-hero-right{
  flex:1;
  text-align:right;
}

.faq-hero-right img{
  max-width:100%;
  width:420px;
  height:auto;
}

.faq-main-area {
  padding-top: 60px !important;
  padding-bottom: 36px !important;
}

.faq-sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 140px;
}

.faq-sidebar > h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--md-blue);
  margin-bottom: 10px;
  margin-top: 4px;
}

.faq-sidebar hr {
  border-color: var(--md-gray-200);
  margin: 16px 0;
}

.faq-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  cursor: pointer;
  text-decoration: none;
  color: var(--md-gray-800);
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.faq-sidebar a.active,
.faq-sidebar a:hover {
  background: var(--md-blue);
  color: #fff;
}

 .support-box {
  background: rgb(190, 255, 190);
  padding: 16px;
  border-radius: var(--radius-md);
}

.support-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-icon img {
  width: 28px;
  height: 28px;
}

.support-content h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 4px;
}

.support-content p {
  font-size: 12.5px;
  color: var(--md-navy);
  margin-bottom: 10px;
}

.support-content button {
  background: rgb(11, 138, 11);
  border: 1px solid  rgb(190, 255, 190);
  color:  white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
}

.support-icon{
  font-size: 28px;
  color:  var(--md-navy);
  margin-bottom:10px;
  display:block;
}

.support-content button:hover {
  background: rgb(190, 255, 190);
  color: var(--md-navy);
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.role-card {
  background: #fff;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--md-gray-200);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.role-card:hover {
  border-color: var(--md-blue);
  box-shadow: var(--shadow-card);
}

.role-card.active {
  border: 2px solid var(--md-blue);
  box-shadow: 0 0 0 3px rgba(45,108,223,.08);
}

.role-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--md-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-blue);
  font-size: 16px;
  flex-shrink: 0;
}

.role-card.active .role-card-icon {
  background: var(--md-blue);
  color: #fff;
}

.role-card-body h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 4px;
}

.role-card-body p {
  font-size: 12.5px;
  color: var(--md-gray-600);
  margin: 0;
  line-height: 1.5;
}

.faq-guide {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 640px;
}

.guide-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.guide-top h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 6px;
}

.guide-top > div > p {
  font-size: 13px;
  color: var(--md-gray-600);
  margin: 0;
}

.guide-top button {
  white-space: nowrap;
  border: 1.5px solid var(--md-blue);
  background: #fff;
  color: var(--md-blue);
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), color var(--transition);
}

.guide-top button:hover {
  background: var(--md-blue);
  color: #fff;
}

/* Guide grid */
.guide-grid {
  display: block;
  width: 100%;
  margin-top: 25px;
}

.guide-box {
  border: 1.5px solid var(--md-gray-200);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.guide-box:hover {
  border-color: var(--md-blue);
  box-shadow: var(--shadow-card);
}

.guide-box-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--md-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-blue);
  font-size: 14px;
  flex-shrink: 0;
}

.guide-box-body h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 4px;
}

.guide-box-body p {
  font-size: 12.5px;
  color: var(--md-gray-600);
  margin: 0;
  line-height: 1.5;
}

.guide-box .guide-box-plus {
  margin-left: auto;
  font-size: 18px;
  color: var(--md-gray-400);
  flex-shrink: 0;
  align-self: center;
}

/* Pro tip */
.pro-tip {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--md-blue-light);
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--md-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pro-tip span {
  font-weight: 700;
  margin-right: 4px;
}

.pro-tip button {
  white-space: nowrap;
  background: var(--md-blue);
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}

.pro-tip button:hover {
  background: var(--md-blue-dark);
}

.right-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Popular Topics */
.popular-topics {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.popular-topics h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 14px;
}

.popular-topics a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--md-gray-200);
  text-decoration: none;
  color: var(--md-text);
  font-size: 13.5px;
  transition: color var(--transition);
  cursor: pointer;
}

.popular-topics a:last-of-type {
  border-bottom: none;
}

.popular-topics a:hover {
  color: var(--md-blue);
}

.popular-topics a::after {
  content: '\203A';
  font-size: 18px;
  color: var(--md-gray-400);
}

.popular-topics .btn-view-all {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  border: 1.5px solid var(--md-blue);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--md-blue);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.popular-topics .btn-view-all:hover {
  background: var(--md-blue);
  color: #fff;
}

/* CTA boxes */
.cta-box {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.cta-box h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 6px;
}

.cta-box p {
  font-size: 12.5px;
  color: var(--md-gray-600);
  margin-bottom: 14px;
  line-height: 1.5;
}

.cta-box button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
}

.cta-box button:hover {
  opacity: .88;
}

.cta-box.yellow {
  background: #fff8dd;
}

.cta-box.yellow button {
  background: var(--md-yellow);
  color: var(--md-navy);
}

.cta-box.blue {
  background: var(--md-blue-light);
}

.cta-box.blue button {
  background: var(--md-blue);
  color: #fff;
}


.faq-stats {
  padding: 32px 0;
  background: #fff;
  margin-top: 0px;
  border-top: 1px solid var(--md-gray-200);
}


.faq-stats .col-md-2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--md-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--md-gray-200);
  padding: 10px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.faq-stats .col-md-2:last-child {
  border-right: none;
}

.faq-stats span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--md-gray-600);
}
/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid rgba(13, 27, 76, 0.06);
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px !important;
  font-weight: 500 ;
  line-height: normal;
}

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

.breadcrumb a {
  color: #7f8aa3;
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--md-blue);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #c5cede;
  padding-right: 10px;
}

.breadcrumb-item.active,
.bc-current {
  color: var(--md-blue);
  font-weight: 700;
}
.bc-sep { color: #c5cede; font-size: 11px; display: flex; align-items: center; }

/* Mobile */

@media (max-width: 768px) {

  .breadcrumb-bar {
    height: 54px;
  }
  .breadcrumb {
    font-size: 12.5px;
    gap: 7px;
  }

}


@media (max-width: 991px) {
  .faq-hero h1 {
    font-size: 34px;
  }

  .role-tabs,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-top,
  .pro-tip {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-stats .col-md-2 {
    border-right: none;
    border-bottom: 1px solid var(--md-gray-200);
  }

  .faq-stats .col-md-2:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 36px 0 28px;
  }

  .faq-hero h1 {
    font-size: 28px;
  }

}

/* =====================================================
FAQ ACCORDION STYLING
===================================================== */

.guide-grid{
  margin-top: 25px;
}

.faq-role-content{
  animation: fadeIn .35s ease;
  width:100%;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =====================================================
ACCORDION BOX
===================================================== */
.faq-accordion .accordion-item{
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  width:100%;
  display:block;
  position: relative;
  z-index: 1;
}

.faq-accordion .accordion-button{
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  padding: 22px 24px;
  border: none;
  box-shadow: none !important;
  position: relative;
  transition: all .3s ease;
  width:100%;
}

.faq-accordion .accordion-button:hover{
  background: #f8fafc;
}

/* remove bootstrap arrow */
.faq-accordion .accordion-button::after{
  display:none !important;
}

/* =====================================================
PLUS ICON
===================================================== */

.faq-accordion .accordion-button::before{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:#f3f4f6;
  color:#111827;
  font-size:24px;
  font-weight:500;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .3s ease;
}

/* when opened */
.faq-accordion .accordion-button:not(.collapsed)::before{
  content:"−";
  background:#1a4fad;
  color:#fff;
  transform:translateY(-50%) rotate(180deg);
}

/* active accordion title */
.faq-accordion .accordion-button:not(.collapsed){
  background:#f8fcff;
  color:#1a4fad;
}

/* =====================================================
BODY
===================================================== */

.faq-accordion .accordion-body{
  padding: 14px 24px 22px 24px;
  color:#4b5563;
  font-size:15px;
  line-height:1.7;
  border-top:1px solid #eef2f7;
}

/* =====================================================
ROLE CARDS
===================================================== */

.role-card{
  cursor:pointer;
  border:1px solid #edf0f5;
  border-radius:18px;
  padding:18px;
  transition:all .3s ease;
  background:#fff;
}

.role-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.role-card.active{
  border-color:#1a4fad;
  background:linear-gradient(135deg,#f0fbff,#ffffff);
  box-shadow:0 10px 25px rgba(13,145,190,.12);
}

.role-card.active h6{
  color:#1a4fad;
}

/* =====================================================
SIDEBAR LINKS
===================================================== */

.faq-sidebar a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  color:#374151;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  text-decoration:none;
  transition:all .25s ease;
}

.faq-sidebar a:hover{
  background:#f8fafc;
  color:#1a4fad;
}

.faq-sidebar a.active{
  background:#1a4fad;
  color:#fff;
}

/* =====================================================
GUIDE PANEL BOX
===================================================== */

.faq-guide{
  background:#ffffff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  height:640px;           /* fixed height */
  display:flex;
  flex-direction:column;
  height:640px;
}

.faq-scroll-area{
  flex:1;
  overflow-y:auto;
  padding-right:8px;
  margin-top:10px;
}

.faq-scroll-area::-webkit-scrollbar{
  width:7px;
}

.faq-scroll-area::-webkit-scrollbar-thumb{
  background:#cbd5e1;
  border-radius:20px;
}

.faq-scroll-area::-webkit-scrollbar-thumb:hover{
  background:#94a3b8;
}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:768px){

  .faq-accordion .accordion-button{
    padding:18px 52px 18px 18px;
    font-size:15px;
  }

  .faq-accordion .accordion-button::before{
    right:16px;
    width:30px;
    height:30px;
    font-size:20px;
  }

  .faq-accordion .accordion-body{
    padding:0 18px 18px;
    font-size:14px;
  }

  .faq-guide{
    padding:18px;
  }

}
