/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

:root {
  --primary: #ef6a23;
  --sub-primary: #20348a;
  --bg-light: #faf1ed;
  --text-dark: #2a2a2a;
  --text-muted: #636363;
  --star: #fdaf34;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

ol,
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #232323;
  font-weight: 700;
  line-height: 1.2;
  /* font-family: "Vollkorn", serif; */
  letter-spacing: 0;
  margin: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.txt_white {
  color: #ffffff !important;
}

.txt_yellow {
  color: var(--primary) !important;
}

.darkblue {
  color: var(--sub-primary) !important;
}

.bg_yellow {
  background-color: var(--primary);
}

.border_yellow {
  border: 3px solid var(--primary);
}

.text-semibold {
  font-weight: 600;
}

.text-muted {
  color: var(--text-muted) !important;
}

.font-family-vollkorn {
  font-family: "Vollkorn", serif;
}

.main-heading {
  font-family: "Vollkorn", serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  color: rgba(32, 52, 137, 1);
  letter-spacing: -0.3px;
}
.sub-desc {
  font-size: 16px;
  color: #525252;
  margin-top: 6px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.exlarge_title {
  font-family: "Vollkorn", serif;
  font-size: clamp(28px, 5vw, 55px);
  font-weight: 700;
  color: #2a2a2a;
  margin: 0;
  line-height: 1.2;
}

.medium_title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 300;
  color: #2a2a2a;
  margin: 0;
  line-height: 1.3;
}
.secondary_title {
  font-size: clamp(24px, 3vw, 30px);
  color: var(--sub-primary);
  margin: 0;
  line-height: 1.3;
}

.small_title {
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 600;
  color: #2a2a2a;
  margin: 0;
  line-height: 1.3;
}

.sub_sec_title {
  font-size: clamp(18px, 3vw, 25px);
  color: var(--sub-primary);
  font-family: "Vollkorn", serif;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0;
}

.main_paragraph {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: #343434;
  line-height: 1.5;
}
.primary_para {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  color: #343434;
  line-height: 1.5;
  display: inline-block;
  margin-top: 10px;
}

/* WRITE A REVIEW MODAL */
#writeReviewModal .modal-dialog {
  max-width: 580px;
}

#write-review-form {
  border: none;
  border-radius: 1rem;
  padding: 0.5rem;
}

#writeReviewModal .modal-header {
  border: none;
  padding-bottom: 0;
}

#writeReviewModal .review-title {
  color: #1a2580;
  font-weight: 700;
}

#writeReviewModal .review-subtitle {
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 0;
}

#writeReviewModal .review-input {
  background: #f5f5f5;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  padding: 15px;
}

#writeReviewModal .review-input:focus {
  background: #efefef;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

#writeReviewModal .review-textarea {
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  resize: none;
}

#writeReviewModal .review-textarea:focus {
  background: #efefef;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

#writeReviewModal .review-stars i {
  color: #f5a623;
  font-size: 1.25rem;
}

#writeReviewModal .review-submit-btn {
  background: #f97316;
  border: none;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}

#writeReviewModal .review-submit-btn:hover {
  background: #ea6a0a;
  color: #fff;
}
/* WRITE A REVIEW MODAL */

/* ============================================
   NAVBAR SECTION
   ============================================ */
#mainNavbar {
  background-color: #fff;
  padding: clamp(12px, 2vw, 15px) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

#mainNavbar.scrolled {
  /* background-color: var(--sub-primary); */
  transition: background-color 1s ease 0s;
  box-shadow: 0 0 4px grey;
}

.navbar-nav {
  gap: clamp(12px, 2.5vw, 25px);
}

.nav-link {
  color: #000;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 15px);
  transition: color 0.3s ease;
  border-radius: 6px;
}

.navbar-nav button.nav-link {
  background: transparent;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.nav-link:focus, .nav-link:hover {
    color:#000;
    box-shadow:none;
}

.nav-link:hover {
    color: #ff6b35;
}

.navbar-toggler {
  background: none;
  border: none;
  outline: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.dropdown-menu {
  padding: 0;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-top: 0;
  z-index: 1000;
}

/* .nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

.dropdown-item {
  color: var(--sub-primary);
  font-size: clamp(13px, 2vw, 15px);
  padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--sub-primary);
}

.dropdown-item:hover {
  background-color: #ff6b35;
  color: #fff;
}

.navbar-btn {
  background-color: #ff6b35;
  border: none;
  outline: none;
  color: #fff;
  padding: 11px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 20px;
  cursor: pointer;
}

.review-btn-mobile button {
  background-color: #ff6b35;
  border: none;
  outline: none;
  color: #fff;
  padding: 11px 20px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #000;
}
.navbar-nav .dropdown-menu {
  position: absolute;
}

/* ============================================
   HERO SECTION
   ============================================ */
/* =========== HOME bANNER DESIGN CSS=========== */
.bz-hero-section {
  background: linear-gradient(135deg, #203489 0%, #2c4a9e 55%, #4969bf 100%);
  padding: clamp(90px, 10vw, 100px) 0 0;
  position: relative;
  overflow: hidden;
}

.bz-hero-section .container {
  position: relative;
  z-index: 2;
}

.bz-hero-section .bz-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.bz-hero-section .bz-update-badge i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.bz-hero-section .bz-hero-main-title {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.bz-hero-section .bz-hero-subtitle {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  color: #dbeafe;
  line-height: 1.65;
  margin-bottom: 32px;
}

.bz-hero-section .bz-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bz-hero-section .bz-btn-primary {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff7a3d;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}

.bz-hero-section .bz-btn-primary:hover {
  background: #e85c28;
  color: #fff;
  transform: scale(1.02);
}

.bz-hero-section .bz-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #405ea8;
  color: #fff;
  font-size: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 12px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition: all color 0.2s;
  text-decoration: none;
}

.bz-hero-section .bz-btn-secondary:hover {
  border-color: #fff;
  color: #000;
}

.bz-hero-section .bz-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-bottom: clamp(60px, 9vw, 110px);
}

.bz-hero-section .bz-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #dbeafe;
}

.bz-hero-section .bz-stat-item i {
  font-size: 13px;
}

.bz-hero-section .bz-color-green {
  color: #7bf1a8;
}

.bz-hero-section .bz-color-yellow {
  color: #ffdf20;
}

.bz-hero-section .bz-color-blue {
  color: #8ec5ff;
}

.bz-hero-section .bz-stat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.bz-hero-section .bz-stat-break {
  flex-basis: 100%;
  height: 0;
}

.bz-hero-section .bz-cards-col {
  position: relative;
  padding-top: 10px;
  padding-bottom: clamp(60px, 9vw, 110px);
  z-index: 2;
}

.bz-hero-section .bz-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bz-hero-section .bz-float-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 28px rgba(30, 50, 180, 0.18);
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bz-hero-section .bz-float-card:hover {
  box-shadow: 0 12px 40px rgba(30, 50, 180, 0.25);
  transform: translateY(-2px);
}

.bz-hero-section .bz-float-card:nth-child(1) {
  transform: rotate(4deg) translateX(-7px);
  z-index: 1;
}

.bz-hero-section .bz-float-card:nth-child(2) {
  transform: rotate(-2deg) translateX(10px) translateY(20px);
  z-index: 2;
  margin-bottom: 12px;
}

.bz-hero-section .bz-float-card:nth-child(3) {
  transform: rotate(0deg) translateX(-10px) translateY(20px);
  z-index: 3;
}
.bz-hero-section .bz-float-card:hover {
  transform: rotate(0deg) translateX(0) translateY(0);
}

.bz-hero-section .bz-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.bz-hero-section .bz-card-icon.star-bg {
  background: #fff3ee;
}

.bz-hero-section .bz-card-icon.green-bg {
  background: #e6f9f1;
}

.bz-hero-section .bz-card-icon.blue-bg {
  background: #eef0ff;
}

.bz-hero-section .bz-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.bz-hero-section .bz-stars i {
  color: #f5a623;
  font-size: 13px;
}

.bz-hero-section .bz-rating-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bz-hero-section .bz-rating-num {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.bz-hero-section .bz-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2px;
}

.bz-hero-section .bz-card-sub {
  font-size: 12px;
  color: #888;
  margin: 0;
  font-weight: 400;
}

/* =========== HOME bANNER DESIGN CSS=========== */

/* ============================================
   INNER HERO SECTION
   ============================================ */
.hero-content-wrapper .verify_business {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 11px 15px 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.hero-content-wrapper .companyinfo {
  padding-top: 5px;
  max-width: 315px;
  width: 100%;
}

.hero-content-wrapper .companyinfo p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.companyinfo p .verifyspan {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #ef6a23;
  outline: none;
  color: #fff !important;
  font-weight: 600;
  float: right;
}

.companyinfo p strong {
  display: inline-block;
  font-weight: 500;
}
/* ============================================
   INNERHERO SECTION
   ============================================ */

/* ============================================
   STATS-CARD SECTION
   ============================================ */
.stats-grid {
  padding: 80px 0 40px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: default;
}

.stat-card.orange {
  background: linear-gradient(
    135deg,
    rgba(254, 154, 0, 1),
    rgba(255, 105, 0, 1)
  );
}

.stat-card.teal {
  background: linear-gradient(
    135deg,
    rgba(0, 188, 125, 1),
    rgba(0, 187, 167, 1)
  );
}

.stat-card.blue {
  background: linear-gradient(
    135deg,
    rgba(43, 127, 255, 1),
    rgba(0, 184, 219, 1)
  );
}

.stat-card.navy {
  background: linear-gradient(
    135deg,
    rgba(32, 52, 137, 1),
    rgba(60, 80, 166, 1)
  );
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.stat-icon i {
  color: #ffffff;
  font-size: 15px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.stat-value {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

/* ============================================
   STATS-CARD SECTION ENDS
   ============================================ */

/* ============================================
   EXECUTIVE SUMMARY SECTION ENDS
   ============================================ */
.summary-section-wrapper {
  padding: 80px 0 40px;
}

.summary-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.summary-title {
  font-family: "Vollkorn", serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  color: rgba(32, 52, 137, 1);
  letter-spacing: -0.3px;
}

.summary-card {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #404040;
  font-weight: 400;
}
/* ============================================
   EXECUTIVE SUMMARY SECTION ENDS
   ============================================ */

/* ============================================
   SERVICES SECTION
   ============================================ */

/* ============================================
   LEGITIMATE SECTION
   ============================================ */
.top_legitimate {
  padding: 80px 0 80px;
  background-color: #fbfbfb;
}

.top_legitimate .heading_area {
  text-align: center;
  margin-bottom: clamp(35px, 5vw, 50px);
}

.top_legitimate .legitimate_card {
  background-color: #fefefe;
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(20px, 3vw, 25px);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.top_legitimate .legitimate-box {
  display: flex;
  flex-direction: column;
}

.top_legitimate .review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(12px, 2vw, 15px);
  flex-wrap: wrap;
  gap: 10px;
}

.review-title {
  font-size: clamp(18px, 2.5vw, 23px);
  font-weight: 700;
  color: #192965;
  line-height: 1.2;
  margin-bottom: clamp(6px, 1vw, 8px);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review_top-right {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 2vw, 18px);
  color: #192965;
  white-space: nowrap;
}

.top_legitimate .review-star .small_title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--sub-primary);
}

.top_legitimate .middle_box img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.top_legitimate .last_box {
  margin-top: clamp(15px, 2.5vw, 20px);
}

.top_legitimate .last_box .review-center li {
  margin-bottom: clamp(10px, 1.5vw, 12px);
}

.top_legitimate .last_box .review-center li .left_txt {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}

a.slatebluemedium {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid var(--primary);
  min-width: 140px;
}

a.slatebluemedium:hover {
  background-color: var(--sub-primary);
  border: 2px solid var(--primary);
}

.top_legitimate .aside_about {
  background-color: #fefefe;
  padding: clamp(20px, 3vw, 25px) clamp(20px, 3.5vw, 30px);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  top: 100px;
  margin-bottom: clamp(20px, 3vw, 25px);
}

.top_legitimate .aside_about.home {
  margin-top: 0;
}

.top_legitimate .aside_about .about-img {
  float: left;
  margin: 0 clamp(8px, 1.5vw, 12px) clamp(8px, 1.5vw, 12px) 0;
  max-width: clamp(50px, 8vw, 70px);
  border-radius: 50%;
}

.top_legitimate .aside_about .main_paragraph {
  font-size: clamp(13px, 1.8vw, 15px);
  text-align: left;
  line-height: 1.6;
  margin: clamp(8px, 1.5vw, 10px) 0;
}
.top_legitimate .last_box .review-center li .right_txt img {
  float: right;
  width: 50%;
}

.top_legitimate .best-picks-sidebar {
  background-color: #fefefe;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 85px;
  overflow: hidden;
}

.top_legitimate .best-picks-sidebar li {
  padding: 10px 10px 10px;
  border-bottom: 1px solid #b1b1b1;
}

.top_legitimate .best-picks-sidebar li:last-child {
  border-bottom: none;
}

.top_legitimate .best-picks-sidebar .best-picks_logo {
  display: inline-block;
  vertical-align: top;
}
.best-picks_logo img {
  width: 50px;
}

.top_legitimate .best-picks-sidebar .best-picks_info {
  display: inline-block;
  vertical-align: middle;
  min-width: clamp(140px, 25vw, 180px);
}

.top_legitimate .best-picks-sidebar .best-picks_info .exsmall_title {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: #192965;
}

.top_legitimate .best-picks-sidebar .best-picks_info .review-star {
  margin: clamp(6px, 1vw, 8px) 0;
}
.best-picks_btn {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.primary-button-wrapper {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}
.primary-button-wrapper:hover {
  background-color: var(--sub-primary);
  border-color: var(--sub-primary);
}
.top_legitimate .main_paragraph {
  font-size: 17px;
  line-height: 24px;
  margin: 10px 0 10px;
  font-weight: 400;
}
/* =========== COMPARION DESIGN CSS=========== */
.comparison-section {
  padding: 60px 0;
}

.badge-pill {
  display: inline-block;
  background: #ffedd5;
  color: #ff7a3d;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid #f5d4b8;
}

.comparison-section .heading_area {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-section .heading_area h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #111827;
}

.comparison-section .heading_area p {
  font-size: 15px;
  color: #7a8aab;
  font-weight: 400;
}

.comparison-section .comparison-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(30, 50, 100, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-section table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #0000001a;
}

.comparison-section thead tr {
  background: #2c4a9e;
}

.comparison-section thead th {
  padding: 10px 25px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
  vertical-align: top;
}

.comparison-section thead th:first-child {
  text-align: left;
  font-size: 14px;
}

.comparison-section .col-badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2px 10px;
  margin: 6px auto 0;
  width: fit-content;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-section tbody tr {
  border-bottom: 1px solid #0000001a;
  transition: background 0.15s;
}

.comparison-section tbody tr:last-child {
  border-bottom: none;
}

.comparison-section tbody tr:nth-child(even) {
  background: #f8f9fd;
}

.comparison-section tbody tr:nth-child(odd) {
  background: #fff;
}

.comparison-section tbody td {
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
  color: #4a5a7a;
  vertical-align: middle;
}

.comparison-section tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1a2a4a;
  font-size: 14px;
}

.comparison-section .price {
  color: #e07b39;
  font-weight: 700;
  font-size: 15px;
}

.comparison-section .star-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  color: #1a2a4a;
}

.comparison-section .star {
  color: #f5a623;
  font-size: 15px;
}

.comparison-section .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eaf6f0;
  color: #34b87a;
  font-size: 13px;
}

.comparison-section .footer-note {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
}

.comparison-section .footer-note span {
  margin: 0 6px;
  opacity: 0.5;
}

.comparison-section .check-icon-btn i {
  color: #ff7a3d;
}

.comparison-section .green-icon-btn i {
  color: #34b87a;
}
/* =========== COMPARION DESIGN CSS=========== */

/* --->IN-DEPTH REVIEWS SECTION CSS<--- */

.bz-review-section {
  background: #faf8f5;
  padding: 60px 0;
}

.bz-review-section .bz-sec-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.bz-review-section .bz-sec-sub {
  font-size: 15px;
  color: #4a5565;
  font-weight: 400;
  margin-bottom: 40px;
}

.bz-review-section .bz-main-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e9f0;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.bz-main-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #2b4c9f;
}

.bz-review-section .bz-main-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.bz-review-section .bz-main-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.bz-review-section .bz-editors-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e6f9ef;
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.bz-review-section .bz-main-desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.bz-review-section .bz-rating-box {
  background: #eff6ff;
  border: 1px solid #0000001a;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.bz-review-section .bz-rating-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 20px;
}

.bz-review-section .bz-big-score {
  font-size: 44px;
  font-weight: 800;
  color: #2b4c9f;
  line-height: 1;
  margin-bottom: 6px;
}

.bz-review-section .bz-big-stars i {
  color: #ff7a3d;
  font-size: 15px;
}

.bz-review-section .bz-overall-label {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.bz-review-section .bz-bars-col {
  padding-left: 10px;
}

.bz-review-section .bz-bar-row {
  margin-bottom: 10px;
}

.bz-review-section .bz-bar-row:last-child {
  margin-bottom: 0;
}

.bz-review-section .bz-bar-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #374151;
  font-weight: 500;
  margin-bottom: 4px;
}

.bz-review-section .bz-bar-track {
  background: #e5e9f0;
  border-radius: 4px;
  height: 7px;
  width: 100%;
  overflow: hidden;
}

.bz-review-section .bz-bar-fill {
  height: 100%;
  background: #030213;
  border-radius: 4px;
}

.bz-review-section .bz-meta-strip {
  display: flex;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  overflow: hidden;
}

.bz-review-section .bz-meta-cell {
  flex: 1;
  padding: 14px 18px;
  border-right: 1px solid #e5e9f0;
}

.bz-review-section .bz-meta-cell:last-child {
  border-right: none;
}

.bz-review-section .bz-meta-icon {
  font-size: 14px;
  color: #ff7a3d;
  margin-bottom: 4px;
}

.bz-review-section .bz-meta-lbl {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 3px;
}

.bz-review-section .bz-meta-val {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.bz-review-section .bz-main-body {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 28px;
}

.bz-review-section .bz-action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bz-review-section .bz-btn-visit-main {
  flex: 1;
  min-width: 140px;
  background: #ff6b35;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bz-review-section .bz-btn-visit-main:hover {
  background: #e85c28;
  color: #fff;
}

.bz-review-section .bz-btn-review-main {
  flex: 1;
  min-width: 140px;
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bz-review-section .bz-btn-review-main:hover {
  border-color: #9ca3af;
  background: #f9fafb;
  color: #111827;
}

.bz-review-section .bz-pros-box,
.bz-review-section .bz-cons-box {
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.bz-review-section .bz-pros-box {
  background: #f0fdf4;
  border: 1px solid #f0fdf4;
}

.bz-review-section .bz-cons-box {
  background: #fef2f2;
  border: 1px solid #fef2f2;
}

.bz-review-section .bz-pros-title,
.bz-review-section .bz-cons-title {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.bz-review-section .bz-pros-title {
  color: #16a34a;
}

.bz-review-section .bz-cons-title {
  color: #dc2626;
}

.bz-review-section .bz-pros-list,
.bz-review-section .bz-cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bz-review-section .bz-pros-list li,
.bz-review-section .bz-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  margin-bottom: 7px;
  font-weight: 400;
}

.bz-review-section .bz-pros-list li:last-child,
.bz-review-section .bz-cons-list li:last-child {
  margin-bottom: 0;
}

.bz-review-section .bz-pros-list li i {
  color: #16a34a;
  font-size: 13px;
  margin-top: 1px;
}

.bz-review-section .bz-cons-list li i {
  color: #dc2626;
  font-size: 13px;
  margin-top: 1px;
}

.bz-review-section .bz-pros-list li {
  color: #111827;
}

.bz-review-section .bz-cons-list li {
  color: #991b1b;
}

.bz-review-section .bz-small-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e9f0;
  padding: 20px;
  height: 100%;
  transition:
    border 0.3s,
    box-shadow 0.2s;
}

.bz-review-section .bz-small-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #2b4c9f;
}

.bz-review-section .bz-small-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.bz-review-section .bz-small-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.bz-review-section .bz-small-score-col {
  text-align: right;
}

.bz-review-section .bz-small-score {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.bz-review-section .bz-small-score i {
  color: #f5a623;
  margin-right: 3px;
}

.bz-review-section .bz-small-price {
  font-size: 12px;
  color: #9ca3af;
  display: block;
}

.bz-review-section .bz-small-desc {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}

.bz-review-section .bz-small-btns {
  display: flex;
  gap: 10px;
}

.bz-review-section .bz-small-visit {
  flex: 1;
  background: #ff6b35;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.bz-review-section .bz-small-visit:hover {
  background: #e85c28;
  color: #fff;
}

.bz-review-section .bz-small-review {
  flex: 1;
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 9px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
}

.bz-review-section .bz-small-review:hover {
  border-color: #9ca3af;
  color: #111827;
}

/* --->IN-DEPTH REVIEWS SECTION CSS<--- */

/* =========== GUIDE SECTION DESIGN CSS=========== */

.bz-guide-section {
  background: #faf8f5;
  padding: 60px 0;
}

.bz-guide-section .bz-guide-badge {
  display: inline-flex;
  align-items: center;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #3d5af1;
  margin-bottom: 14px;
}

.bz-guide-section .bz-guide-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}
.bz-guide-section .bz-guide-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.bz-guide-section .bz-guide-meta .bz-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ca3af;
}

.bz-guide-section .bz-toc-box {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 36px;
}

.bz-guide-section .bz-toc-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bz-guide-section .bz-toc-title i {
  color: #2b4c9f;
  font-size: 14px;
}

.bz-guide-section .bz-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bz-guide-section .bz-toc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2b4c9f;
  margin-bottom: 7px;
  cursor: pointer;
}

.bz-guide-section .bz-toc-list li:hover {
  color: #2541c4;
}

.bz-guide-section .bz-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  margin-top: 40px;
}

.bz-guide-section .bz-section-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #1e3a8a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-guide-section .bz-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.bz-guide-section .bz-body-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.bz-guide-section .bz-info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bz-guide-section .bz-info-box .bz-info-icon {
  color: #3d5af1;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.bz-guide-section .bz-info-box .bz-info-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.bz-guide-section .bz-info-box .bz-info-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.bz-guide-section .bz-tip-box {
  background: #fff7ed;
  border: 1px solid #ff7a3d33;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bz-guide-section .bz-tip-box .bz-tip-icon {
  color: #f97316;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.bz-guide-section .bz-tip-box .bz-tip-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bz-guide-section .bz-tip-box .bz-tip-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.bz-guide-section .bz-method-item {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bz-guide-section .bz-method-item .bz-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff7ed;
  color: #f97316;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-guide-section .bz-method-item .bz-method-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 3px;
}

.bz-guide-section .bz-method-item .bz-method-desc {
  font-size: 12.5px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.bz-guide-section .bz-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.bz-guide-section .bz-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bz-guide-section .bz-checklist li i {
  color: #16a34a;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.bz-guide-section .bz-final-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
/* =========== GUIDE SECTION DESIGN CSS=========== */

/* =========== INNER FAQS DESIGN CSS=========== */
.inner_faqs {
  background-color: #faf1ed;
}

.inner_faqs #faqSection .collapsible {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #333333;
  margin: 0;
  width: 100%;
  padding: 18px 15px;
  font-size: 15px;
  text-align: left;
  font-weight: 600;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  cursor: unset;
  color: #fff;
  background-color: #203489;
}

.inner_faqs #faqSection .faq-box {
  width: 50%;
  margin: 0px 0%;
  padding: 0 15px;
}

.inner_faqs #faqSection .faq-content {
  width: 100%;
  background: #fff;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  margin: 0 0 15px;
  border-bottom: 1px solid #eee;
  padding: 18px 15px;
  cursor: unset;
}

.inner_faqs #faqSection .faq-content p {
  color: #6e6e6e;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 500;
}
/* =========== INNER FAQS DESIGN CSS=========== */

/* =========== FAQS DESIGN CSS=========== */
.faqs {
  padding: 80px 0;
}
.faq-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 28px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e5e8f0;
  border-radius: 0 !important;
  background: transparent;
}

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

.accordion-button {
  font-family: "Poppins", sans-serif;
  background: transparent !important;
  color: #203489 !important;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 4px;
  box-shadow: none !important;
  gap: 10px;
}

.accordion-button::after {
  display: none;
}

.accordion-button .faq-chevron {
  margin-left: auto;
  color: #555;
  font-size: 13px;
  transition: transform 0.3s;
}

.accordion-button:not(.collapsed) .faq-chevron {
  transform: rotate(180deg);
  color: #1a2580;
}

.accordion-button .faq-q-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-button .faq-q-icon i {
  color: #f5a623;
  font-size: 11px;
}

.accordion-body {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  padding: 0 4px 16px 50px;
}
/* =========== FAQS DESIGN CSS=========== */

/* =========== HOME FAQS DESIGN CSS=========== */
.bz-faq-section {
  background: #ffffff;
  padding: 60px 0;
}

.bz-faq-section .bz-faq-badge {
  display: inline-flex;
  align-items: center;
  background: #f3e8ff;
  border: 1px solid #f3e8ff;
  border-radius: 10px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #7e22ce;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.bz-faq-section .bz-faq-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bz-faq-section .bz-faq-sub {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 40px;
}

.bz-faq-section .bz-faq-accordion .accordion-item {
  border: 1px solid #e5e9f0;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.bz-faq-section .bz-faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: #111827 !important;
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px !important;
  box-shadow: none;
}

.bz-faq-section .bz-faq-accordion .accordion-button:not(.collapsed) {
  color: #111827;
  background: #fff;
  box-shadow: none;
}

.bz-faq-section .bz-faq-accordion .accordion-button::after {
  display: none;
}

.bz-faq-section .bz-faq-accordion .accordion-button .bz-faq-icon {
  margin-left: auto;
  color: #6b7280;
  font-size: 13px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.bz-faq-section
  .bz-faq-accordion
  .accordion-button:not(.collapsed)
  .bz-faq-icon {
  transform: rotate(180deg);
  color: #3d5af1;
}

.bz-faq-section .bz-faq-accordion .accordion-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.75;
  padding: 0 22px 18px;
  background: #fff;
}

.bz-faq-section .bz-faq-accordion .accordion-collapse {
  border-top: none;
}

.bz-faq-section .bz-faq-contact-box {
  background: #eff6ff;
  border-radius: 12px;
  padding: 22px 24px;
  text-align: center;
  margin-top: 16px;
}

.bz-faq-section .bz-faq-contact-box .bz-contact-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.bz-faq-section .bz-faq-contact-box .bz-contact-link {
  font-size: 16px;
  font-weight: 600;
  color: #2b4c9f;
  text-decoration: none;
  transition: color 0.2s;
}

.bz-faq-section .bz-faq-contact-box .bz-contact-link:hover {
  color: #2541c4;
  text-decoration: underline;
}
/* =========== HOME FAQS DESIGN CSS=========== */

/* =========== REVIEWS DESIGN CSS=========== */
.community-reviews-section {
  padding: 80px 0px 40px;
}

.community-reviews-section .reviews-header {
  text-align: center;
  margin-bottom: 28px;
}

.community-reviews-section .reviews-header h2 {
  font-family: "Vollkorn", serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  color: rgba(32, 52, 137, 1);
  letter-spacing: -0.3px;
}

.community-reviews-section .reviews-header p {
  font-size: 14px;
  color: #525252;
  margin-top: 6px;
}

.community-reviews-section .reviews-grid {
  margin-bottom: 28px;
}

.community-reviews-section .review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #eaeaea;
}

.community-reviews-section .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.community-reviews-section .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #203489;
}

.community-reviews-section .card-date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  white-space: nowrap;
}

.community-reviews-section .stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.community-reviews-section .stars-row i {
  color: #f5a623;
  font-size: 12px;
}

.community-reviews-section .stars-row span {
  font-size: 12px;
  font-weight: 600;
  color: #f5a623;
  margin-left: 2px;
}

.community-reviews-section .card-quote {
  font-size: 14px;
  color: #525252;
  line-height: 1.65;
  font-style: italic;
}

.community-reviews-section .card-footer {
  font-size: 11px;
  color: #999;
  margin-top: auto;
}

.community-reviews-section .card-footer strong {
  color: #444;
  font-weight: 600;
}

.community-reviews-section .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.community-reviews-section .ss-pagination-pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.community-reviews-section .page-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d0d5e8;
  background: #fff;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.community-reviews-section .page-btn:hover {
  border-color: #2d3a8c;
  color: #2d3a8c;
}

.community-reviews-section .page-btn.active {
  background: #2d3a8c;
  border-color: #2d3a8c;
  color: #fff;
}

.community-reviews-section .page-btn.ellipsis {
  cursor: default;
}

.community-reviews-section .page-btn.arrow {
  font-size: 12px;
  color: #aaa;
  border-color: #e0e0e0;
}

.community-reviews-section .page-btn.arrow:hover {
  color: #2d3a8c;
  border-color: #2d3a8c;
}

.community-reviews-section .page-btn.arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e0e0e0;
  color: #bbb;
}
/* =========== REVIEWS DESIGN CSS=========== */

/* =========== GUARANTEE DESIGN CSS=========== */
.guarantee {
  padding: 80px 0 80px;
  background-color: #fdfdfd;
}
.guarantee .guarantee_card {
  background-color: var(--bg-light);
  padding: 40px 20px 15px;
  margin-bottom: 0px;
  transition: all 0.3s linear;
  position: relative;
  border-radius: 5px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  max-width: 70%;
}
.guarantee .guarantee_card:hover {
  transition: all 0.3s linear;
  position: relative;
  box-shadow: 1px 1px 17px #ccc;
}
.guarantee .medium_title {
  font-size: clamp(22px, 2vw, 28px);
  line-height: clamp(24px, 2vw, 32px);
  text-transform: capitalize;
  font-weight: 600;
}
.guarantee .main_paragraph {
  font-size: clamp(14px, 2vw, 16px);
  text-align: left;
  line-height: 24px;
  margin: 10px 0;
  color: var(--text-muted);
  font-weight: 400;
}
.guarantee span.checked_big {
  background-color: transparent;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  border-radius: 30px;
  font-weight: 400;
  margin: 0 20px 0 0;
  text-align: center;
  font-size: 20px;
  border: 2px solid var(--primary);
  position: absolute;
  left: 15px;
  top: -15px;
}
.guarantee ul {
  padding: 0;
}
.guarantee ul li {
  margin: 0 0 20px;
}
.guarantee ul li span.checked {
  background-color: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  border-radius: 15px;
  font-weight: 400;
  margin: 0 20px 0 0;
  text-align: center;
  font-size: 10px;
}
.guarantee ul li:first-child {
  margin: 10px 0 20px;
}
.guarantee ul li span.feature {
  color: var(--sub-primary);
  font-weight: 600;
  text-align: left;
  font-size: 17px;
  font-style: italic;
}
.guarantee .bullets {
  list-style: disc;
}
.guarantee .bullets li {
  margin: 0 0 10px 25px !important;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
  color: var(--text-muted);
  font-style: italic;
}
.guarantee .small_title img {
  vertical-align: sub;
  margin: 0 5px 0 0;
}
.guarantee span.banned_big {
  background-color: transparent;
  color: var(--primary);
  width: 43px;
  height: 43px;
  display: inline-block;
  line-height: 40px;
  border-radius: 30px;
  font-weight: 400;
  margin: 0 20px 0 0;
  text-align: center;
  font-size: 20px;
  border: 2px solid var(--primary);
  position: absolute;
  left: 15px;
  top: -15px;
  padding: 0 0 0 1px;
}
.guarantee .guarantee_mtop {
  margin-top: 20px !important;
}
.guarantee ul li span.banned {
  background-color: transparent;
  color: var(--primary);
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  border-radius: 15px;
  font-weight: 400;
  margin: 0 10px 0 0;
  text-align: center;
  font-size: 20px;
  padding: 1px 0 0 1px;
}
/* =========== GUARANTEE DESIGN CSS=========== */

/* =========== ABOUT-US DESIGN CSS=========== */
.aboutpage .header-space {
  height: 80px;
}
.about_banner {
  padding: 70px 0;
}
.aboutpage .about_banner .main_paragraph {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0px 0px 10px 0;
}
.aboutpage .about_banner .right_side img {
  margin: 65px auto 0;
  display: block;
  width: 100%;
}
/* =========== ABOUT-US DESIGN CSS=========== */

/* =========== TERM & CONDITION DESIGN CSS=========== */
.disclaimer_termofuse .header-space {
  height: 80px;
}

.disclaimer_termofuse .page_banner {
  padding: clamp(30px, 6vw, 70px) 0;
}

.disclaimer_termofuse .page_banner .main_paragraph {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
/* =========== TERM & CONDITION DESIGN CSS=========== */

/* =========== PROS $ CONS DESIGN CSS=========== */
.pros-cons-section {
  padding: 80px 0px;
}

.pc-header {
  text-align: center;
  margin-bottom: 28px;
}

.pc-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 340px;
}

.pros {
  background: #e6faf3;
}

.cons {
  background: #fdedf0;
}

.pc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
}

.pc-card-header span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.pros .pc-card-header {
  background: linear-gradient(
    135deg,
    rgba(0, 188, 125, 1),
    rgba(0, 153, 102, 1)
  );
}

.cons .pc-card-header {
  background: linear-gradient(
    135deg,
    rgba(255, 32, 86, 1),
    rgba(236, 0, 63, 1)
  );
}

.pc-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros .pc-card-body {
  background: #e6faf3;
}

.cons .pc-card-body {
  background: #fdedf0;
}

.pc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.pc-item i.pro-icon {
  color: #00bc7d;
  font-size: 16px;
}

.pc-item i.con-icon {
  color: #ff2056;
  font-size: 16px;
}
/* =========== PROS $ CONS DESIGN CSS=========== */

/* =========== DETAILED REVIEWSDESIGN CSS=========== */
.detailed-review-section {
  padding: 80px 0px;
}

.dr-header {
  text-align: center;
  margin-bottom: 32px;
}

.dr-block {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dr-block-header {
  background: rgba(32, 52, 137, 0.15);
  color: #203489;
  gap: 12px;
  padding: 14px 20px;
}

.dr-block-header .bh-icon {
  display: flex;
  align-items: center;
  gap: 0px 10px;
}

.dr-block-header img {
  width: 36px;
}

.dr-block-header .bh-icon i {
  color: #fff;
  font-size: 15px;
}

.dr-block-header span {
  font-size: 18px;
  font-weight: 600;
}
.dr-block-body p {
  font-size: 15px;
}

.ordering-process {
  background: linear-gradient(#203489, #2d4aa5);
  padding: 25px;
}

.ordering-process .dr-block-header {
  color: #fff;
}

.ordering-process .dr-block-body {
  color: #fff;
}

.ordering-process p {
  font-size: 14px;
  margin-bottom: 0;
}

.dr-block-body {
  padding: 22px 24px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #555;
}

.dr-block-body p + p {
  margin-top: 12px;
}

.dr-block-body h3 {
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #203489;
}

.steps-grid {
  margin-top: 18px;
}

.step-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px 16px;
  color: #fff;
  min-height: 250px;
}

.step-num {
  font-size: 38px;
  font-weight: 600;
  opacity: 0.4;
  margin-bottom: 8px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
}

.check-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.check-list li {
  display: flex;
  align-items: center;
  color: #444;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}

.check-list li i {
  color: #2d3a8c;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
/* =========== DETAILED REVIEWSDESIGN CSS=========== */

/* =========== HOME SERVICES PAGE DESIGN CSS=========== */
.bz-services-section {
  background: #fff;
  padding: 60px 0;
}

.bz-services-section .bz-section-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8d8f0;
  border-radius: 20px;
  padding: 4px 18px;
  font-size: 14px;
  font-weight: 500;

  color: #2b4c9f;
  background: #dbeafe;
  margin-bottom: 14px;
}

.bz-services-section .bz-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.bz-services-section .bz-section-sub {
  font-size: 15px;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 30px;
}

.bz-services-section .bz-card-wrap {
  position: relative;
  padding-top: 22px;
  height: 100%;
}

.bz-services-section .bz-rank-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff7a3d;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.bz-services-section .bz-service-card {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  padding: 20px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border 0.4s,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.bz-services-section .bz-service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #2b4c9f;
}

.bz-services-section .bz-card-label {
  text-align: right;
  margin-bottom: 10px;
  min-height: 22px;
}

.bz-services-section .bz-label-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.bz-services-section .bz-label-pill.editors {
  background: #d1fae5;
  color: #047857;
}

.bz-services-section .bz-service-name {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.bz-services-section .bz-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.bz-services-section .bz-stars-row .bz-stars i {
  color: #ff7a3d;
  font-size: 14px;
}

.bz-services-section .bz-stars-row .bz-rating-score {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.bz-services-section .bz-stars-row .bz-review-count {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.bz-services-section .bz-best-for-box {
  background: #eff6ff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.bz-services-section .bz-best-for-box .bz-best-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 2px;
}

.bz-services-section .bz-best-for-box .bz-best-value {
  font-size: 14px;
  font-weight: 600;
  color: #2b4c9f;
}

.bz-services-section .bz-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e9f0;
}

.bz-services-section .bz-meta-item .bz-meta-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 4px;
}

.bz-services-section .bz-meta-item .bz-meta-val {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.bz-services-section .bz-features-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.bz-services-section .bz-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.bz-services-section .bz-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 7px;
  font-weight: 400;
}

.bz-services-section .bz-feature-list li i {
  color: #22c55e;
  font-size: 14px;
  flex-shrink: 0;
}

.bz-services-section .bz-btn-visit {
  display: block;
  width: 100%;
  background: #ff7a3d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
  text-decoration: none;
}

.bz-services-section .bz-btn-visit:hover {
  background: #e85c28;
  color: #fff;
}

.bz-services-section .bz-btn-review {
  display: block;
  width: 100%;
  background: transparent;
  color: #2b4c9f;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #2b4c9f;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.bz-services-section .bz-btn-review:hover {
  border-color: #9ca3af;
  background: #f9fafb;
  color: #111827;
}

.bz-services-section .bz-btn-review i {
  margin-left: 6px;
  font-size: 12px;
}

/* =========== HOME SERVICES PAGE DESIGN CSS=========== */

/* =========== SERVICES PAGE DESIGN CSS=========== */
.services-section {
  padding: 120px 0 80px;
}

.services-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.services-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #d7def7;
  background: #fff;
  color: #203489;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(32, 52, 137, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease, color 0.2s ease;
}

.services-filter-pill:hover {
  transform: translateY(-1px);
  color: #203489;
  border-color: #ef6a23;
  box-shadow: 0 12px 26px rgba(32, 52, 137, 0.12);
}

.services-filter-pill.is-active {
  background: linear-gradient(135deg, #203489 0%, #2f4eb5 100%);
  border-color: #203489;
  color: #fff;
}

.services-filter-pill__label {
  font-size: 14px;
  font-weight: 600;
}

.services-filter-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(32, 52, 137, 0.08);
  color: #ef6a23;
  font-size: 12px;
  font-weight: 700;
}

.services-filter-pill.is-active .services-filter-pill__count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.services-section .section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: #203489;
  margin-bottom: clamp(10px, 3vw, 28px);
}

.services-section .service-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e8f0;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}

.services-section .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.services-section .service-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a2580;
}

.services-section .rating-block {
  text-align: right;
}

.services-section .rating-block .stars i {
  color: #f5a623;
  font-size: 13px;
}

.services-section .rating-block .score {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-left: 4px;
}

.services-section .rating-block .based {
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 2px;
}

.services-section .card-middle {
  margin-bottom: 14px;
}

.services-section .service-img img {
  width: 100%;
}

.services-section .card-right {
  flex: 1;
}

.services-section .meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  align-items: center;
}

.services-section .meta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
}

.services-section .meta-badge span {
  font-size: 16px;
}

.services-section .meta-badge strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a2580;
}

.services-section .meta-badge.discount strong {
  color: #e8234a;
}

.rating-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-section .rating-block-wraper i {
  color: #e9a63c;
}

.rating-block-wraper .score {
  font-size: 22px;
  font-weight: bold;
  color: #203489;
}

.rating-block-wraper .based {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.services-section .service-desc {
  font-size: 16px;
  color: #636363;
  line-height: 22px;
}

.services-section .card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.services-section .card-actions a {
  padding: 8px 50px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.services-section .btn-visit {
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 20px;
  transition: all 0.5s;
}

.services-section .btn-visit:hover {
  background: #ea6a0a;
  color: #fff;
}

.services-section .btn-review {
  color: #1a2580;
  border: 2px solid #ea6a0a;
  border-radius: 20px;
  transition: all 0.5s;
}

.services-section .btn-review:hover {
  background: #1a2580;
  color: #fff;
}

.services-section .pagination-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.services-section .page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}

.services-section .page-dot.active {
  background: #1a2580;
}
/* =========== SERVICES PAGE DESIGN CSS=========== */

/* =========== REVIEWS SECTION PAGE DESIGN CSS=========== */

.review_pros_cons {
  background: #faf1ed;
  padding: 40px 20px;
}

.review_pros_cons .rpc-heading {
  font-size: 28px;
  font-weight: 600;
  color: var(--sub-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.review_pros_cons .rpc-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
}

.review_pros_cons .rpc-label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 24px;
}

.review_pros_cons .rpc-emoji {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}

.review_pros_cons .rpc-word h3 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  color: var(--sub-primary);
  line-height: 1;
}

.review_pros_cons .rpc-items-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review_pros_cons .rpc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #1a2580;
  padding: 7px 0;
}

.review_pros_cons .rpc-item .rpc-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review_pros_cons .rpc-item .rpc-icon i {
  color: #fff;
  font-size: 11px;
}

.guarantee .main_paragraph {
  font-size: 17px;
  text-align: left;
  line-height: 24px;
  margin: 10px 0;
  color: #636363;
}

.services_type {
  padding: 80px 0 40px;
  background-color: #faf1ed;
}

.services_type .main-paragraph {
  font-size: 17px;
  text-align: left;
  line-height: 24px;
  margin: 10px 0;
  color: #636363;
}

.services_type .type_service {
  background-color: #fefefe;
  padding: 18px 20px 18px;
  margin: 30px 0 0;
  transition: all 0.3s linear;
  position: relative;
  border-radius: 5px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  min-height: 240px;
}

.type_service .main_paragraph {
  display: block;
  font-size: 15px;
  margin: 0;
  line-height: 24px;
}

.tl-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.2;
}

.tl-screenshot {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tl-screenshot .screen-inner {
  width: 90%;
  height: 85%;
  background: linear-gradient(145deg, #1e3a8a 0%, #1e2d6e 50%, #0f1b4d 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

.screen-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.screen-bar.accent {
  background: var(--orange);
  width: 60%;
}

.screen-bar.short {
  width: 40%;
}

.screen-discount {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 4px;
  letter-spacing: 1px;
}

.screen-price {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}

.tl-features h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-main);
  font-family: "Segoe UI", sans-serif;
}

.feature-card .feature-val {
  color: var(--orange);
  font-weight: 700;
}

.feature-card .feature-val.teal {
  color: var(--teal);
}

.tl-body-text {
  font-size: 16px;
  line-height: 24px;
  color: #636363;
  margin-bottom: 32px;
}

.tl-service-review h3 {
  font-size: 28px;
  font-weight: 700;
  color: #20348a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tl-service-review p {
  font-size: 16px;
  line-height: 24px;
  color: #636363;
  margin-bottom: 32px;
}

.tl-author-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 20px;
}

.tl-author-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tl-author-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.tl-author-bio {
  font-size: 14px;
  line-height: 20px;
  color: #636363;
}

.tl-author-bio .emoji {
  font-size: 15px;
}

.last_box {
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  margin: 0px 0 25px;
}

.last_box .main_paragraph span {
  font-style: italic;
}

.orderprocess .process_box .box1 {
  padding: 0 25px;
  position: relative;
  top: -137px;
}

.process_box .box2 {
  padding: 0 25px;
  position: relative;
  top: 0px;
}

.process_box .box3 {
  padding: 0 25px;
  position: relative;
  top: -120px;
}

.heading_area .small_title {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #00abe6;
  line-height: 20px;
  font-size: 18px;
  letter-spacing: 1px;
}

.process_box .main_paragraph {
  font-size: 12px;
  text-align: left;
  line-height: 18px;
  margin: 10px 0;
  color: #636363;
}

.process_box .box2 .small_title {
  color: #5342ff;
}

.process_box .box3 .small_title {
  color: #9b28f2;
}
.order_process_para {
  font-size: 16px;
  line-height: 24px;
  color: #636363;
}

.orderprocess {
  background: #fdfdfd;
}

.orderprocess .table-stepper thead {
  font-weight: 600;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  color: #203489;
}

.table-stepper span.circled {
  background-color: #203489;
  color: #fff;
  width: 25px;
  height: 25px;
  display: inline-block;
  line-height: 25px;
  border-radius: 15px;
  font-weight: 500;
  margin: 0 5px 0 0;
  text-align: center;
}

.table-stepper thead tr {
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
}

.orderprocess .table-stepper thead tr {
  background: #fff !important;
}

.orderprocess .table-stepper thead td:first-child {
  width: 80px;
}

.orderprocess .table-stepper thead td {
  padding: 16px 25px 13px;
  color: #203489;
  font-size: 17px;
  border-right: none;
}
.orderprocess .table-stepper th {
  padding: 15px 25px 15px;
  border-right: none;
  color: #636363;
  font-size: 15px;
}
.orderprocess .table-stepper td {
  padding: 15px 25px 15px;
  border-right: none;
  color: #636363;
  font-size: 15px;
  vertical-align: middle;
}
.orderprocess .table-stepper tr:nth-child(odd) {
  background: #f7f7f7 !important;
}
.orderprocess .table-stepper tr:nth-child(even) {
  background: #ffffff;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
}
/* =========== REVIEWS SECTION PAGE DESIGN CSS=========== */

/* =========== FOOTER DESIGN CSS=========== */
.bz-main-footer {
  background: #1e2951;
  padding: 60px 0 30px;
}

.bz-main-footer .bz-footer-logo {
  margin-bottom: 16px;
}

.bz-main-footer .bz-logo-mark {
  display: inline-block;
  width: 4px;
  height: 36px;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 14px;
}

.bz-main-footer .bz-footer-desc {
  font-size: 13px;
  color: #bedbff;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 260px;
}

.bz-main-footer .bz-social-list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bz-main-footer .bz-social-list li a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition:
    background 0.25s,
    color 0.25s;
  text-decoration: none;
}

.bz-main-footer .bz-social-list li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bz-main-footer .bz-foot-col-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.bz-main-footer .bz-foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bz-main-footer .bz-foot-links li {
  margin-bottom: 5px;
}

.bz-main-footer .bz-foot-links li a {
  font-size: 13px;
  color: #bedbff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.bz-main-footer .bz-foot-links li a:hover {
  color: #fff;
}

.bz-main-footer .bz-foot-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 0;
}

.bz-main-footer .bz-copyright-bar {
  padding: 20px 0;
}

.bz-main-footer .bz-copyright-bar .bz-copy-text {
  font-size: 13px;
  color: #bedbff;
  margin: 0;
  font-weight: 400;
}

.bz-main-footer .bz-copyright-bar .bz-copy-right-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bz-main-footer .bz-copyright-bar .bz-copy-right-links span {
  font-size: 12px;
  color: #bedbff;
}

.bz-main-footer .bz-copyright-bar .bz-copy-right-links .bz-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.bz-main-footer .bz-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
}

.bz-main-footer .bz-disclaimer-box p {
  font-size: 12px;
  color: #bedbff;
  line-height: 1.65;
  margin: 0;
}

.bz-main-footer .bz-disclaimer-box p strong {
  color: #bedbff;
  font-weight: 600;
}
/* =========== FOOTER DESIGN CSS=========== */

/* =========== RECOMMENDED SERVICES DESIGN CSS=========== */
.our_services.recomend_serv {
  padding: 45px 0 30px;
  text-align: center;
  background-color: #faf1ed;
}

.recomend_services .recomend_card {
  background-color: #20348a;
  padding: 35px 25px 40px;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px -1px 5px 1px rgb(0 0 0 / 10%);
  border: 1px solid #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.recomend_services .recomend_card .d-flex {
  justify-content: center;
}

.recomend_services .recomend_card span.checked {
  background-color: #ef6a23;
  color: #fff;
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  border-radius: 15px;
  font-weight: 400;
  margin: 12px 5px 0 0;
  text-align: center;
  font-size: 10px;
  vertical-align: top;
}

.recomend_services .recomend_card .exsmall_title {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 10px 0 5px;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
}

.recomend_services .recomend_card .exsmall_title a {
  text-decoration: none;
  font-size: 20px;
  background-color: #c97447;
  color: #fff;
  padding: 0 10px;
  margin: 0 5px 0 0;
  border-radius: 4px;
}

.recomend_services .recomend_card .main_paragraph {
  color: #fff;
  font-weight: 400;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  margin: 10px 0 0;
  display: block;
  line-height: 20px;
}
.main_paragraph a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
/* =========== RECOMMENDED SERVICES DESIGN CSS=========== */

/* =========== TESTIMONIALS DESIGN CSS=========== */
.bz-testimonials-section {
  background: #faf8f5;
  padding: 60px 0;
}

.bz-testimonials-section .bz-t-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6f9ef;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 12px;
}

.bz-testimonials-section .bz-t-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bz-testimonials-section .bz-t-sub {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 44px;
}

.bz-testimonials-section .bz-review-card {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border 0.3s,
    box-shadow 0.25s ease;
}

.bz-testimonials-section .bz-review-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
  border: 1px solid #2b4c9f;
}

.bz-testimonials-section .bz-customer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bz-testimonials-section .bz-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e3a8a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.bz-testimonials-section .bz-customer-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.bz-testimonials-section .bz-customer-name i {
  color: #16a34a;
  font-size: 12px;
}

.bz-testimonials-section .bz-customer-date {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.bz-testimonials-section .bz-card-stars-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.bz-testimonials-section .bz-card-stars-row i {
  color: #ff7a3d;
  font-size: 13px;
}

.bz-testimonials-section .bz-card-stars-row .bz-score {
  font-size: 14px;
  color: #111827;
  margin-left: 2px;
}

.bz-testimonials-section .bz-service-pill {
  display: inline-block;
  background: #dbeafe;
  text-align: center;
  color: #2b4c9f;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  max-width: 100px;
}

.bz-testimonials-section .bz-review-text {
  font-size: 14px;
  color: #364153;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.bz-testimonials-section .bz-verified-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgb(0, 166, 62, 1);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.bz-testimonials-section .bz-verified-row i {
  font-size: 13px;
}

.bz-testimonials-section .bz-stats-strip {
  margin-top: 56px;
  padding-top: 0;
}

.bz-testimonials-section .bz-stat-block {
  text-align: center;
}

.bz-testimonials-section .bz-stat-number {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 600;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 6px;
}

.bz-testimonials-section .bz-stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.bz-testimonials-section .bz-stat-divider {
  width: 1px;
  background: #e5e9f0;
  align-self: stretch;
}
/* =========== TESTIMONIALS DESIGN CSS=========== */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
  .bz-hero-section .bz-float-card:nth-child(1),
  .bz-hero-section .bz-float-card:nth-child(2),
  .bz-hero-section .bz-float-card:nth-child(3) {
    transform: rotate(0deg) translateX(0) translateY(0);
    margin-bottom: 10px;
  }

  .bz-main-footer .bz-copyright-bar .bz-copy-right-links {
    justify-content: start;
  }

  .hero-section {
    padding-top: clamp(80px, 12vw, 100px);
  }

  .services-section {
    padding-top: 100px;
  }

  .services-filter-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .services-filter-pill {
    flex: 0 0 auto;
  }
  /* 
  .dropdown-menu {
    position: absolute !important;
    left: 40% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
    margin-top: 8px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  } */

  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown .dropdown-menu.show {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    gap: 0px;
  }
  .top_legitimate .review-top {
    flex-direction: column;
    align-items: flex-start;
  }

  a.slatebluemedium {
    min-width: 110px;
  }
  #faqSection .faq-box {
    width: 100%;
  }
  .main_footer .footer_inner ul.company_links {
    display: block;
  }
  .main_footer .footer_inner ul.company_links li {
    width: 100%;
  }
  .guarantee .guarantee_card {
    max-width: 100%;
  }
}


/* INNER HOME BANNER CSS STARTS HERE */
.hro-section {
    background: linear-gradient(135deg, #203489 0%, #2c4a9e 55%, #4969bf 100%);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.hro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
    gap: 48px;
}

.hro-copy {
    min-width: 0;
    max-width: 560px;
}

.hro-media {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hro-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 14px 5px 8px;
    margin-bottom: 20px;
}

.hro-verified-dot i {
    font-size: 12px;
    color: #0d4a2a;
}

.hro-verified-label {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.hro-main-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hro-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 420px;
}

.hro-info-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hro-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hro-info-icon {
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    flex-shrink: 0;
}

.hro-info-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hro-verified-pill {
    background: #00bc7d;
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hro-action-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hro-visit-btn {
    background: #f97316;
    color: #ffffff;
    border: none;
    border-radius: 22px;
    padding: 8px 35px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

    .hro-visit-btn:hover {
        background: #ea6c0a;
    }

.hro-rating-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hro-rating-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hro-rating-score {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.hro-stars {
    color: #f59e0b;
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.hro-rating-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
/* Right image */
.hro-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hro-hero-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hero-illustration-wrapper--fixed {
    width: 460px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration-wrapper--fixed img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .hro-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hro-copy {
        max-width: none;
    }

    .hro-media {
        justify-content: center;
    }
}
/* INNER HOME BANNER CSS ENDS HERE */


.load-button {
    background-color: #ff6b35;
    border: none;
    outline: none;
    color: #fff;
    padding: 11px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 15px;
    cursor: pointer;
}


/*PAGE NOT FOUND CSS*/
.sc-404-wrapper {
    padding: 80px 0px;
    background: linear-gradient(135deg, #ddeeff 0%, #c8e0f8 40%, #d6eaff 100%);
}

.sc-main {
    text-align: center;
}

.sc-container {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(37,99,235,.07);
}

.sc-icon-wrap {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .sc-icon-wrap i {
        font-size: 2rem;
        color: #ff6b35;
    }

.sc-num {
    font-size: 6rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 20px;
}


.sc-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.sc-desc {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.sc-actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sc-btn-primary {
    background: #ff6b35;
    color: #fff;
    padding: .65rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

    .sc-btn-primary:hover {
        background: #1d4ed8;
    }

.sc-btn-outline {
    background: #fff;
    color: #ff6b35;
    border: 1.5px solid #bfdbfe;
    padding: .63rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

    .sc-btn-outline:hover {
        background: #eff6ff;
    }

.sc-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

    .sc-divider::before,
    .sc-ivider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }

    .sc-divider span {
        font-size: .75rem;
        color: #94a3b8;
        font-weight: 500;
    }

.sc-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.sc-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .85rem;
    background: #eff6ff;
    color: #ff6b35;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #bfdbfe;
}

    .sc-chip:hover {
        background: #ff6b35;
        color: #fff;
    }

    .sc-chip i {
        font-size: .75rem;
    }

/*PAGE NOT FOUND CSS*/
