/* UTILS */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", Arial, sans-serif;
}

a {
  color: #3578fa;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}

.sections-gap {
  padding: clamp(3rem, 7vw, 5rem) 0;
}
/* UTILS */

/* NAVBAR CSS */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar-custom {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-wrapper .navbar-scrolled {
  padding: 10px;
}

.navbar-brand-custom {
  display: inline-block;
}

.navbar-brand-custom img {
  display: block;
}

.navbar-toggler-custom {
  border: none;
  background: none;
  cursor: pointer;
  padding: 5px;
  display: block;
}

.navbar-toggler-custom .navbar-icon {
  font-size: 28px;
  color: #333;
  transition: all 0.3s ease;
}

.navbar-list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-list-item {
  margin: 0;
}

.navbar-list-link {
  color: #444;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 0 14px;
  transition: all 0.3s;
  display: block;
}

.navbar-list-link:hover {
  opacity: 0.7;
  color: #444;
}

.nav-review-btn {
  background: #3578fa;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-review-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

/* SIDEBAR CSS */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.sidebar-overlay.overlay-active {
  opacity: 1;
  visibility: visible;
}

.sidebar-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #2c2c2c;
  z-index: 1000;
  transition: left 0.4s ease;
  overflow-y: auto;
  padding: 20px 0;
}

.sidebar-container.sidebar-active {
  left: 0;
}

.sidebar-header-section {
  padding: 20px 24px;
  border-bottom: 1px solid #3a3a3a;
  margin-bottom: 10px;
  position: relative;
}

.sidebar-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.sidebar-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4a4a4a;
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.sidebar-close-btn:hover {
  background: #5a5a5a;
}

.sidebar-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-navigation-item {
  border-bottom: 1px solid #3a3a3a;
}

.sidebar-navigation-link {
  display: block;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.sidebar-navigation-link:hover {
  background: #3a3a3a;
  padding-left: 30px;
  color: #fff;
}

.sidebar-link-icon {
  margin-right: 10px;
  width: 20px;
}

.sidebar-button-wrapper {
  margin: 15px 24px;
}

.sidebar-button-link {
  display: block;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.sidebar-button-companies {
  background: #003d82;
  color: #fff;
  border: 2px solid #003d82;
}

.sidebar-button-companies:hover {
  background: #002d62;
  color: #fff;
}

.sidebar-button-login {
  background: #4d7cff;
  color: #fff;
  border: 2px solid #4d7cff;
}

.sidebar-button-login:hover {
  background: #3d6cef;
  color: #fff;
}
/* NAVBAR CSS ENDS */

/* HOME BANNER CSS STARTS HERE */
.reviews-hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 50rem;
  background: linear-gradient(135deg, #ddeeff 0%, #c8e0f8 40%, #d6eaff 100%);
  overflow: hidden;
}

.reviews-categories-grid {
  width: 100%;
}

.reviews-categories-grid ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 30px auto 0;
  gap: 16px;
  width: 100%;
  max-width: 1120px;
  padding: 0;
}

.reviews-categories-grid ul li {
  list-style: none;
  flex: 0 1 200px;
}

.banner_content {
  text-align: center;
  padding: 40px 20px 30px;
}

.reviews-hero-title {
  color: #1a1a2e;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  margin-bottom: 0;
}

.reviews-hero-title span,
.reviews-hero-title .highlight {
  color: #3578fa;
}

.reviews-hero-subtitle {
  color: #4a5568;
  font-size: clamp(15px, 2vw, 18px);
  margin-top: 14px;
  font-weight: 400;
}

.reviews-search-container {
  display: flex;
  box-shadow: 0 4px 20px rgba(53, 120, 250, 0.15);
  overflow: hidden;
  margin-bottom: clamp(15px, 3vw, 40px);
  border-radius: 16px;
  background: white;
  border: 1px solid #e2ecff;
}

.reviews-search-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px 0 0 50px;
  padding-left: 10px;
}

.reviews-search-input {
  width: 100%;
  padding: 5px 36px;
  border: none;
  outline: none;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #495057;
  background: #f4f6fb;
  border-radius: 10px;
}

.reviews-search-input::placeholder {
  color: #aab4c4;
}

.reviews-search-icon {
  position: absolute;
  left: clamp(0.8rem, 2vw, 1.1rem);
  right: auto;
  width: clamp(1.1rem, 2vw, 1.3rem);
}

.reviews-search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #aab4c4;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-search-button {
  padding: 12px 36px;
  background: #3578fa;
  color: white;
  border: none;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  border-radius: 12px;
  margin: 5px;
}

.reviews-search-button:hover {
  background: #1d4ed8;
}

.reviews-category-card {
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(53, 120, 250, 0.08);
  width: 100%;
  min-height: 120px;
  padding: 10px;
  border: 1px solid #e8f0fe;
}

.reviews-category-card:hover {
  box-shadow: 0 6px 20px rgba(53, 120, 250, 0.18);
  /* transform: translateY(-3px); */
  border-color: #3578fa;
}

.reviews-category-name {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  text-align: center;
}

.reviews-category-icon {
  perspective: 800px;
  color: #3578fa;
}

.reviews-category-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.5s ease; /* smooth hover for bg */
  background: transparent; /* default */
  filter: invert(38%) sepia(83%) saturate(3550%) hue-rotate(202deg)
    brightness(96%) contrast(92%);
}

.reviews-category-icon img {
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* HOME BANNER CSS ENDS HERE */

#reviewerAllCategoriesGrid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: clamp(80px, 14vw, 190px);
  row-gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.all-categories-search-item {
  display: flex;
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.all-categories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 28px;
  text-decoration: none;
}

.all-categories-copy {
  min-width: 0;
}

.all-categories-name {
  overflow-wrap: anywhere;
}

/* HOME REVIEWS CSS STARTS HERE */
.latest-reviews-wrapper {
  background: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.main-title-wrapper {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.main-title-wrapper h3 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-title-wrapper p {
  color: #64748b;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin: 0;
}

.review-card-box {
  padding: 24px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  height: 100%;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  transform: scale(1);
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card-box:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.card-clearfix {
  clear: both;
  overflow: hidden;
}

.card-spacing-bottom {
  margin-bottom: 0;
}

/* Avatar + name + stars row */
.review-card-box .avatar-figure {
  float: left;
  margin-right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card-box .avatar-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stars â€” gold, no background boxes */
.star-rating {
  display: block;
  overflow: hidden;
  line-height: 1.3;
}

.star-rating i {
  border-radius: 0;
  background: transparent;
  color: #f59e0b;
  font-size: 13px;
  padding: 0 1px;
}

.star-rating em {
  display: none; /* hidden in new design */
}

/* Category pill badge */
.review-category-text {
  display: inline-block;
  color: #3578fa;
  font-size: 12px;
  font-weight: 500;
  background: #eff4ff;
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 2px;
}

/* Author line: "Name reviewed Company" */
.author-info-text {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
.sub-desc-review {
  display: block;
  color: #000;
  font-size: 18px;
}
.sub-desc-review2 {
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.author-info-text strong {
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.author-info-text a {
  color: #3578fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.author-info-text a:hover {
  text-decoration: underline;
}

/* Review body text */
.review-card-box p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.review-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}

.review-footer-list li {
  display: inline-block;
}

.review-footer-list li .review-date-text {
  color: #96999d;
  font-size: 13px;
}

/* "Read Review â†’" link style â€” no button background */
.read-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: #3578fa;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  padding: 0;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}

.read-review-btn::after {
  content: "â€º";
  font-size: 16px;
  line-height: 1;
}

.read-review-btn:hover {
  background: transparent;
  color: #1d4ed8;
  text-decoration: none;
  gap: 8px;
}

/* Carousel dots */
.owl-nav {
  display: none;
}

.owl-dot.active span {
  background: #3578fa !important;
}

/* View All Reviews button â€” add below carousel in HTML */
.reviews-view-all-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-view-all-btn {
  display: inline-flex;
  /* align-items: center; */
  gap: 8px;
  border: 1.5px solid #3578fa;
  color: #3578fa;
  background: transparent;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.reviews-view-all-btn::after {
  content: "â€º";
  font-size: 18px;
  line-height: 1;
}

.reviews-view-all-btn:hover {
  background: #3578fa;
  color: #fff;
  text-decoration: none;
}
/* HOME REVIEWS CSS ENDS HERE */

/* CTA_INCLUDE CSS HERE */
.cta_include_section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f0f5ff url("../images/CTA.jpg") center no-repeat;
  background-size: cover;
  text-align: left;
  overflow: hidden;
}

.cta_include_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 245, 255, 0.96);
  z-index: 1;
}

.cta_content {
  position: relative;
  z-index: 2;
  color: #0f172a;
}

/* Left column */
.cta_left_col h5 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta_left_col p {
  font-size: clamp(14px, 2vw, 16px);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.cta_include_btn {
  display: inline-block;
  background: #3578fa;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 13px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 8px;
}

.cta_include_btn:hover {
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
}

/* Right column â€” 2x2 feature cards grid */
.cta_right_col {
  margin-top: 0;
}

.cta_features_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta_feature_card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid #e8edf5;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* .cta_feature_card:hover {
  box-shadow: 0 8px 24px rgba(53, 120, 250, 0.14);
  transform: translateY(-3px);
} */

.cta_feature_icon {
  width: 48px;
  height: 48px;
  background: #eff4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cta_feature_icon i {
  font-size: 20px;
  color: #3578fa;
}

.cta_feature_card h6 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.cta_feature_card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
  .cta_include_section {
    text-align: center;
  }

  .cta_right_col {
    margin-top: 2rem;
  }

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

  .cta_feature_icon {
    margin: 0 auto 14px;
  }
}
/* CTA_INCLUDE CSS ENDS HERE */

/* TOP CATEGORIES CSS STARTS HERE */
.top-categories-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.top-categories-section .main-title-wrapper {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.top-categories-section .main-title-wrapper p {
  color: #64748b;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin: 0;
}

/* Card */
.category-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  height: 260px;
  cursor: pointer;
}

.category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.06);
}

.category-card--asset {
  background: #dbe9f7;
  border: 1px solid #dce9fb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.category-card--asset .category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.category-card--asset:hover .category-card-image {
  transform: scale(1.06);
}

/* Dark gradient overlay â€” bottom heavy */
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.category-card--asset .category-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 68, 0) 0%,
    rgba(10, 31, 68, 0.06) 45%,
    rgba(10, 31, 68, 0.84) 100%
  );
}

.category-card--asset:hover .category-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 68, 0.02) 0%,
    rgba(10, 31, 68, 0.14) 45%,
    rgba(10, 31, 68, 0.9) 100%
  );
}

/* Count badge â€” top right white pill */
.category-count-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  z-index: 2;
  line-height: 1.4;
}

/* Footer row: title+reviews left, arrow right */
.category-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.category-card-title {
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.category-reviews-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

/* Arrow */
.category-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.category-arrow i {
  color: #fff;
  font-size: 18px;
}

.category-card:hover .category-arrow {
  background: #3578fa;
  transform: translateX(3px);
}

/* TOP CATEGORIES CSS ENDS HERE */

/* BLOGS CSS  HERE */
/* Blog Section Styles */
.blog_section {
  background: #f8f9fa;
}

.blog_head_wrapper,
.contact_us_head_wrapper {
  position: relative;
  background: #051d4d url("../images/pattern_2.svg") center repeat fixed;
  width: 100%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.blog_head_wrapper::before,
.contact_us_head_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.blog_head_content,
.contact_us_head_content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.blog_head_content h2,
.contact_us_head_wrapper h2 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  text-shadow: none;
  margin: 0;
}

.blog_head_content p,
.contact_us_head_wrapper p {
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 3vw, 20px);
  text-shadow: none;
}

.blog_content_wrapper {
  padding: 60px 0;
  background: #f8f9fa;
}
.blog_posts_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Blog Card */
.blog_card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Blog Card Image */
.blog_card_image {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog_card:hover .blog_card_image img {
  transform: scale(1.05);
}

.blog_card_content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog_card_date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(13px, 0.9vw, 14px);
  color: #999;
  margin-bottom: 12px;
}

.blog_card_title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_card_title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog_card_title a:hover {
  color: #3578fa;
}

.blog_card_excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog_card_link {
  color: #3578fa;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog_card_link:hover {
  gap: 10px;
}

.blog_card_link::after {
  content: "â†’";
}

/* .blog_sidebar {
        position: sticky;
        top: 100px;
    } */

.blog_sidebar_widget {
  margin-bottom: 30px;
}

.blog_sidebar_widget:last-child {
  margin-bottom: 0;
}

.blog_sidebar_title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
}

.blog_search_form {
  position: relative;
  width: 100%;
}

.blog_search_input {
  width: 100%;
  padding: 12px 110px 12px 16px;
  /* right space for button */
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: clamp(14px, 1vw, 15px);
  transition: all 0.2s ease;
}

.blog_search_input:focus {
  outline: none;
  border-color: #3578fa;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.blog_search_input:focus {
  outline: none;
  border-color: #3578fa;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.blog_search_button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  padding: 8px 18px;
  background: #3578fa;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog_search_button:hover {
  background: #3578fa;
}

.blog_latest_posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog_latest_post_item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.blog_latest_post_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog_latest_post_image {
  display: block;
  width: 70px;
  height: 70px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.blog_latest_post_content {
  flex: 1;
}

.blog_latest_post_date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(12px, 0.85vw, 13px);
  color: #9ca3af;
  margin-bottom: 6px;
}

.blog_latest_post_title {
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_latest_post_title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog_latest_post_title a:hover {
  color: #3578fa;
}

.blog_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.blog_pagination_button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  border-radius: 8px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog_pagination_button:hover {
  background: #3578fa;
  color: #ffffff;
  border-color: #3578fa;
}

.blog_pagination_button.blog_pagination_active {
  background: #3578fa;
  color: #ffffff;
  border-color: #3578fa;
}

.blog_pagination_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog_pagination_button:disabled:hover {
  background: #ffffff;
  color: #6b7280;
  border-color: #d1d5db;
}

.blog_detail_section {
  background: #f8f9fa;
}

.blog_detail_hero {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 72px;
  background:
    linear-gradient(115deg, rgba(3, 14, 38, 0.94) 0%, rgba(5, 29, 77, 0.82) 48%, rgba(5, 29, 77, 0.28) 100%),
    var(--blog-hero-image) center/cover no-repeat;
  overflow: hidden;
}

.blog_detail_hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #f8f9fa);
  pointer-events: none;
}

.blog_detail_hero_content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: #fff;
}

.blog_detail_back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

.blog_detail_back:hover {
  color: #fff;
}

.blog_detail_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.blog_detail_meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e5edff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.blog_detail_hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 20px;
}

.blog_detail_hero p {
  color: #e9eefc;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin: 0;
  max-width: 690px;
}

.blog_detail_body_wrapper {
  padding: 70px 0;
}

.blog_detail_article {
  background: #fff;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.blog_detail_featured {
  margin: 0 0 34px;
  overflow: hidden;
}

.blog_detail_featured img {
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog_detail_article p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 24px;
}

.blog_detail_article p:first-of-type {
  color: #1f2937;
  font-size: 19px;
}

.blog_detail_takeaways {
  margin-top: 38px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(53, 120, 250, 0.1), rgba(5, 29, 77, 0.06));
  border-left: 4px solid #3578fa;
}

.blog_detail_takeaways h2 {
  color: #111827;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
}

.blog_detail_takeaways ul {
  margin: 0;
  padding-left: 20px;
}

.blog_detail_takeaways li {
  color: #374151;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.blog_detail_sidebar {
  position: sticky;
  top: 105px;
}

.blog_detail_sidebar .blog_sidebar_widget,
.blog_detail_cta {
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.blog_detail_cta {
  margin-top: 28px;
  background: #051d4d;
  color: #fff;
}

.blog_detail_cta span {
  color: #9cc2ff;
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog_detail_cta h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 20px;
}

.blog_detail_cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3578fa;
  color: #fff;
  border-radius: 8px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 600;
}

.blog_detail_cta a:hover {
  background: #2563eb;
}

.blog_detail_related {
  margin-top: 70px;
}

.blog_detail_related_head {
  margin-bottom: 26px;
}

.blog_detail_related_head span {
  color: #3578fa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog_detail_related_head h2 {
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 6px 0 0;
}

.blog_detail_related_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 991.98px) {
  .blog_detail_sidebar {
    position: static;
  }

  .blog_detail_related_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .blog_detail_hero {
    min-height: 30rem;
    padding: 86px 0 54px;
  }

  .blog_detail_body_wrapper {
    padding: 46px 0;
  }

  .blog_detail_featured img {
    min-height: 220px;
  }

  .blog_detail_related_grid {
    grid-template-columns: 1fr;
  }
}
/* BLOGS CSS ENDS HERE */

/* ABOUT-US CSS  HERE */
.about_us_banner_wrapper {
  position: relative;
  background-image: url("../images/about_banner_image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about_us_banner_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.about_us_banner_wrapper h1 {
  color: #fff;
  font-size: clamp(24px, 4vw, 40px);
  font-size: 2.875rem;
  text-shadow: none;
  margin: 0;
  text-align: center;
}

.about_us_banner_wrapper p {
  text-align: center;
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 2vw, 20px);
  text-shadow: none;
  color: #fff;
}

.about_us_content,
.value-content {
  position: relative;
  z-index: 2;
}

.simple-enhanced-business_wrapper,
.simple-enhanced-review_guide_wrapper {
  padding: 70px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.simple-enhanced-business_wrapper.visible,
.simple-enhanced-review_guide_wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.simple-enhanced-img {
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.simple-enhanced-business_content:hover .simple-enhanced-img,
.simple-enhanced-review_content:hover .simple-enhanced-img {
  transform: scale(1.04);
}

.simple-enhanced-business_content,
.simple-enhanced-review_content {
  padding: 30px;
  transition: all 0.4s ease;
}

.simple-enhanced-business_content:hover,
.simple-enhanced-review_content:hover {
  transform: translateY(-8px);
}

.simple-enhanced-business_content h3,
.simple-enhanced-review_content h3 {
  font-size: clamp(28px, 4vw, 38px);
  color: #051d4d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.simple-enhanced-icon {
  font-size: 1.6rem;
  color: #3578fa;
}

.simple-enhanced-business_content p,
.simple-enhanced-review_content p {
  color: #555;
  font-size: clamp(16px, 2vw, 17px);
  line-height: 1.7;
  margin-bottom: 16px;
}

.simple-enhanced-business_content a,
.simple-enhanced-review_content a {
  color: #051d4d;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #3578fa;
  transition: all 0.3s;
}

.simple-enhanced-business_content a:hover,
.simple-enhanced-review_content a:hover {
  color: #3578fa;
  border-bottom-color: transparent;
}

.simple-enhanced-business_wrapper {
  background: #f8f9fc;
}

.simple-enhanced-review_guide_wrapper {
  background: #ffffff;
}

.our_values_wrapper {
  padding: 60px 0px 40px;
  background: #051d4d url("../images/pattern_2.svg") center repeat fixed;
  position: relative;
}

.our_values_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.our_values_wrapper h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 35px);
  text-align: center;
}

.our_values_wrapper p {
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 30px;
}

.our_values_tabs_wrapper {
  min-height: 210px;
}

.our_values_nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 0;
}

.our_values_nav_link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 18px 0 18px 32px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  border-left: 3px solid transparent;
  margin-left: -2px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  cursor: pointer;
}

.our_values_nav_link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.our_values_nav_link.our_values_active {
  color: #ffffff;
  font-weight: 600;
  border-left-color: #ffffff;
}

.our_values_tab_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.our_values_tab_pane {
  display: none;
  animation: our_values_fadeIn 0.4s ease;
}

.our_values_tab_pane.our_values_active {
  display: block;
}

@keyframes our_values_fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.our_values_tab_pane p {
  text-align: left;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  color: #fff;
  margin: 0;
}
/* ABOUT-US CSS ENDS HERE */

/* CONTACT-US CSS  HERE */

.contact_us_form {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.contact_form {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
}

.contact_form h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 30px;
}

.btn_support {
  display: flex;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #e8f4fd;
  border: 1px solid #3578fa;
  border-radius: 8px;
  color: #3578fa;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.btn_support:hover {
  color: #fff;
  background: #3578fa;
  text-decoration: none;
}

#contactform .form-group {
  margin-bottom: 24px;
}

#contactform .form-group.required label::after,
#contactform .form-group.required .form-control::placeholder {
  color: #999;
}

.contact_us_form .form-control {
  display: block;
  width: 100%;
  padding: 10px 18px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.contact_us_form .form-control::placeholder {
  color: #9ca3af;
}

.contact_us_form .form-control:focus {
  border-color: #3578fa;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact_us_form textarea.form-control {
  height: 140px;
  resize: vertical;
  min-height: 100px;
}

.contact_us_btn {
  font-size: 16px;
  padding: 10px 45px;
  background: #3578fa;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(74, 144, 226, 0.3);
}

.contact_us_btn:hover {
  background: #2566e3;
}

/* CONTACT-US CSS ENDS HERE */

/*FOOTER CSS  HERE */
.footer-wrapper {
  border-top: 1px solid #ededed;
  background-color: #fff;
  padding: 40px 0 20px;
}

.footer-column {
  padding: 0 15px;
}

.collapse-trigger {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  user-select: none;
}

.footer-title {
  display: block;
  color: #222;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.toggle-icon {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-left: 10px;
}

.toggle-icon-horizontal {
  position: absolute;
  background-color: #999;
  width: 14px;
  height: 2px;
  transition: all 0.3s ease;
}

.toggle-icon-vertical {
  position: absolute;
  background-color: #999;
  width: 2px;
  height: 14px;
  transition: all 0.3s ease;
}

.toggle-icon.icon-opened .toggle-icon-horizontal {
  transform: rotate(0deg);
}

.toggle-icon.icon-opened .toggle-icon-vertical {
  transform: rotate(90deg);
  opacity: 0;
}

.toggle-icon.icon-closed .toggle-icon-horizontal {
  transform: rotate(0deg);
}

.toggle-icon.icon-closed .toggle-icon-vertical {
  transform: rotate(0deg);
  opacity: 1;
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.collapse-content.content-visible {
  max-height: 1000px;
}

.footer-description {
  font-size: 14px;
  color: #555;
  padding: 15px 0;
  line-height: 1.9;
}

.footer-list {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.footer-list-item {
  margin-bottom: 10px;
}

.footer-link {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: "â†’";
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #3578fa;
}

.footer-link:hover {
  color: #3578fa;
  transform: translateX(5px);
}

.footer-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.contact-list {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.contact-item {
  position: relative;
  padding-left: 30px;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-icon {
  position: absolute;
  top: 2px;
  left: 0;
  color: #000;
  font-size: 16px;
}

.contact-link {
  color: #666;
  text-decoration: none;
}

.contact-link:hover,
.contact-link .contact-icon:hover {
  color: #3578fa;
}

.social-item {
  padding-left: 0;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  color: #000;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  transition: background 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: #2566e3;
  border: 1px solid #2566e3;
}

.social-icon {
  position: static;
  font-size: 14px;
  color: #000;
}
.social-link:hover .social-icon {
  color: #fff;
}

hr {
  margin: 20px 0 20px 0;
  border-color: #ddd;
}

.footer-bottom-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom-item {
  color: #666;
  font-size: 14px;
}

.footer-links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links-item {
  display: inline-block;
  font-size: 14px;
}

.footer-bottom-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: #3578fa;
}

.footer-links-item:after {
  content: "|";
  margin-left: 10px;
  color: #ccc;
}

.footer-links-item:last-child:after {
  content: "";
}
.copyright-content {
  color: #555;
  font-size: 14px;
}
.offcanvas-backdrop {
  z-index: 999 !important;
}

/*FOOTER CSS ENDS HERE */

/*CUSTOM FEATURE REVIEW CSS  HERE */
/* FEATURE REVIEW CSS STARTS HERE */
.feature-review-section {
  background: #eef3ff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.client-review-heading {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.client-review-heading h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.client-review-heading p {
  color: #64748b;
  font-size: clamp(14px, 1.6vw, 16px);
  margin: 0;
}

/* Slider wrapper */
.featured-slider-wrapper {
  position: relative;
}

/* Each slide hidden by default */
.featured-slide {
  display: none;
  animation: featuredFadeIn 0.5s ease;
}

.featured-slide.active {
  display: block;
}

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

/* Left image */
.featured-slide-image {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  height: 450px;
}
.featured-slide-content {
  height: 450px;
}

.featured-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-slide-image:hover img {
  transform: scale(1.04);
}

/* Right content */
.featured-slide-content {
  background: #fff;
  padding: clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Quote icon */
.featured-quote-icon {
  font-size: 38px;
  color: #3578fa;
  line-height: 1;
}

/* Stars */
.featured-stars i {
  color: #f59e0b;
  font-size: 20px;
  margin-right: 3px;
}

/* Review text */
.featured-review-text {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #1e293b;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

/* Author row */
.featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.featured-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  flex-shrink: 0;
}

.featured-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.featured-author-info strong {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.featured-author-info span {
  font-size: 13px;
  color: #64748b;
}

/* Featured badge */
.featured-badge {
  display: inline-block;
  background: #eff4ff;
  color: #3578fa;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #c7d9ff;
  width: fit-content;
}

/* Slider controls */
.featured-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.featured-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.5rem;
  padding-left: clamp(1rem, 3vw, 2rem);
}

.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.featured-dot.active {
  background: #3578fa;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 767px) {
  .featured-slide-image {
    height: 260px;
  }
}
/* FEATURE REVIEW CSS ENDS HERE */
/*CUSTOM FEATURE REVIEW CSS  HERE */

.contact_form {
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 5px;
  padding: 50px 25px 20px;
  margin-bottom: 60px;
  -webkit-box-shadow: 0 2px 4px rgb(3 27 78 / 6%);
  -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  box-shadow: 2px 2px 4px rgb(3 27 78 / 6%);
  border: 1px solid #ccc;
}

.contact_form h2 {
  text-align: center;
  margin: 0 0 50px;
}

.forgot_password {
  margin: 100px auto 0;
}

.btn_1.cancel {
  background: #fff;
  color: #222;
}

.signup_verification {
  margin: 180px 0 100px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 5px;
  padding: 30px 50px 20px;
  -webkit-box-shadow: 0 2px 4px rgb(3 27 78 / 6%);
  -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  box-shadow: 2px 2px 4px rgb(3 27 78 / 6%);
  border: 1px solid #ccc;
}

.signup_verification h1 {
  font-size: 30px;
}

.signup_verification p {
  margin: 10px 0;
}

.success_message {
  margin: 15px auto;
  border: 1px solid #004dda;
  padding: 10px;
  color: #555;
  text-align: center;
}

.policy_content p,
.policy_content ul {
  margin: 0 0 10px;
}

.latest_review.sidebar {
  position: sticky;
  top: 85px;
  mix-blend-mode: normal;
  overflow: hidden;
  transition: all 0.3s;
}

.typeahead__list {
  margin: 0 !important;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 356px;
}

.typeahead__list > li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.font-14 {
  font-size: 14px;
}

/* Review Modal Popup */
.sitepopup .modal-content {
  background: #3578fa;
  border: 1px solid #fff;
}

.sitepopup .poplogo .btn-close {
  padding: 0 10px;
  line-height: 14px;
  font-size: 18px;
  height: 30px;
  opacity: 1;
  text-decoration: none;
  outline: none;
  background: unset;
  color: #222;
  border: none;
}

.sitepopup .poplogo .btn-close:hover {
  color: #ffc107;
}

.sitepopup .poplogo {
  display: flex;
  justify-content: space-between;
}

.sitepopup .poplogo a {
  position: relative;
  background-color: #fff;
  display: inline-block;
  padding: 0px 10px 0 5px;
  border-radius: 0 45px 45px 0;
  margin: 15px 0 15px;
}

.sitepopup .poplogo a img {
  max-width: 100px;
}

.sitepopup .poptitle {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
  display: block;
  margin: 0 10px;
  text-decoration: underline;
  line-height: 36px;
}

.sitepopup p {
  font-size: 17px;
  color: #fff;
  margin: 10px 10px 20px;
  text-align: center;
  line-height: 22px;
  font-weight: 300;
}

.sitepopup p span {
  font-weight: bold;
}

.sitepopup .modalcontent .poplogo a {
  display: block;
  padding: 25px 15px 25px 15px;
  margin: 15px 0 15px -12px;
}

.sitepopup .modalcontent .poplogo .leftlogo a {
  text-align: center;
  margin: 15px -12px 15px 0;
}

.sitepopup .modalcontent .poplogo .leftlogo a::after {
  content: "";
  width: 68px;
  height: 68px;
  background-color: #3578fa;
  border-radius: 0 65px;
  display: block;
  position: absolute;
  right: -20px;
  top: 27px;
  transform: rotate(45deg);
  z-index: 111;
}

.sitepopup .modalcontent .poplogo .rightlogo a {
  border-radius: 40px 0px 0px 40px;
  text-align: center;
}

.sitepopup .modalcontent .poplogo .rightlogo a::before {
  content: "+";
  position: absolute;
  color: #000;
  font-size: 35px;
  left: 2px;
  z-index: 111;
  font-weight: 700;
  top: 32px;
}

.sitepopup .modalcontent .poplogo .rightlogo a:hover::before {
  color: #ffc107;
}

.sitepopup .modalcontent .poplogo a img {
  max-width: 100%;
}

.sitepopup .bottomside {
  padding: 30px 15px 40px;
  text-align: center;
}

.sitepopup .bottomside .btn {
  font-weight: 500;
  font-size: 15px;
}

.sitepopup .bottomside .btn.view {
  background-color: #051d4d;
  margin-left: 5px;
  color: #fff;
}

.sitepopup .bottomside .btn:hover {
  background-color: #ffc107;
}

@media only screen and (max-width: 767px) {
  .sitepopup .modal-dialog {
    margin: 30px 0.5rem 0;
  }

  .sitepopup .poptitle {
    font-size: 16px;
  }

  .sitepopup p {
    font-size: 14px;
    margin: 5px 10px 5px;
    line-height: 18px;
  }

  .sitepopup .poplogo a img {
    max-width: 78px;
  }

  .sitepopup .modalcontent .poplogo a {
    padding: 10px 0px 10px 10px;
    margin: 15px 0 15px -12px;
  }

  .sitepopup .modalcontent .poplogo .leftlogo a {
    text-align: left;
    margin: 10px -12px 10px 0px;
  }

  .sitepopup .modalcontent .poplogo .rightlogo a {
    text-align: right;
    padding: 10px 10px 10px 10px;
    margin: 10px 0 10px -12px;
  }

  .sitepopup .modalcontent .poplogo a img {
    max-width: 125px;
  }

  .sitepopup .modalcontent .poplogo .leftlogo a::after {
    width: 42px;
    height: 42px;
    right: -9px;
    top: 19px;
  }

  .sitepopup .modalcontent .poplogo .rightlogo a::before {
    font-size: 21px;
    left: 6px;
    top: 22px;
  }

  .sitepopup .bottomside {
    padding: 10px 15px 15px;
  }

  .sitepopup .bottomside .btn {
    font-size: 13px;
  }
}

/*Custom Style Ends*/

/*CUSTOM FEATURE REVIEW CSS ENDS HERE */

/*BRAND SECTION CSS  HERE */
.brands-section {
  background-color: #f0f5ff;
  background-image:
    radial-gradient(at 10% 20%, rgba(53, 120, 250, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 30%, rgba(53, 120, 250, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(53, 120, 250, 0.08) 0px, transparent 50%),
    radial-gradient(at 90% 90%, rgba(53, 120, 250, 0.12) 0px, transparent 50%),
    radial-gradient(at 25% 10%, rgba(53, 120, 250, 0.1) 0px, transparent 50%);
  overflow-x: hidden;
  position: relative;
  padding: 100px 0 0;
}

.brands-section .header-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.brands-section .text-content {
  max-width: 750px;
}

.brands-section .text-content h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #0a1f1a;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brands-section .subtitle {
  font-size: 14px;
  color: #3a4f49;
  line-height: 1.65;
  max-width: 650px;
}

.brands-section .cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.brands-section .btn {
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.brands-section .btn-demo {
  background: white;
  color: #000;
  border: 1.5px solid #d1ddd7;
}

.brands-section .btn-demo:hover {
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brands-section .btn-start {
  background: #3578fa;
  color: white;
}

.btn-start:hover {
  background: #3578fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(53, 120, 250, 0.3);
}

.brands-section .animation-area {
  position: relative;
  height: 630px;
  margin-top: 40px;
  background-image: url("../images/review-section-mockup.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.brands-section .brand-logo {
  position: absolute;
  width: 88px;
  height: 88px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.brands-section .brand-logo.fade-out {
  opacity: 0;
}

.brands-section .brand-logo img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

/* Review Cards - STATIC on Desktop */
.brands-section .review-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 22px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 200px;
  z-index: 6;
}

.brands-section .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0;
  margin-top: 10px;
  color: #3578fa;
  font-size: 20px;
}

.brands-section .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  font-style: italic;
}

.brands-section .reviewerhut-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
}

.brands-section .reviewerhut-avatar {
  width: 38px;
  height: 38px;
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

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

.brands-section .reviewerhut-avatar svg {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.brands-section .reviewerhut-info {
  flex: 1;
  min-width: 0;
}

.brands-section .reviewerhut-name {
  font-weight: 700;
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brands-section .verified-icon {
  color: #fff;
  background: #3578fa;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Card Positions - Desktop */
.brands-section .card-1 {
  bottom: 10%;
  left: 0%;
  transform: rotate(-20deg);
}

.brands-section .card-2 {
  bottom: 20%;
  left: 20%;
  transform: rotate(-10deg);
}

.brands-section .card-3 {
  top: 35%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 8;
}

.brands-section .card-4 {
  bottom: 20%;
  right: 20%;
  transform: rotate(10deg);
}

.brands-section .card-5 {
  bottom: 10%;
  right: 0%;
  transform: rotate(20deg);
}

/* Slider Container - Hidden on Desktop */
.brands-section .slider-container {
  display: none;
  position: relative;
  padding: 40px 0 60px;
  margin-top: 40px;
}

.brands-section .slider-wrapper {
  overflow: hidden;
  position: relative;
}

.brands-section .slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.brands-section .slider-card {
  min-width: 100%;
  padding: 0 15px;
}

.brands-section .slider-card .review-card {
  position: relative;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  max-width: 100%;
  margin: 0 auto;
}

.brands-section .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.brands-section .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.brands-section .slider-dot.active {
  background: #3578fa;
  width: 24px;
  border-radius: 5px;
}
/*BRAND SECTION CSS ENDS HERE */

/*PRIVACY POLICY  HERE */
.privacy-policy-hero {
  background: #051d4d;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  margin-top: 58px;
}

.privacy-policy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.privacy-policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-policy-hero h1 {
  color: #fff;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.privacy-policy-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto;
}

.privacy-policy-content-wrapper {
  background: #eef3f7;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.privacy-policy-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.privacy-policy-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-policy-sidebar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.privacy-policy-sidebar-nav {
  list-style: none;
  padding-left: 0;
}

.privacy-policy-sidebar-nav li {
  margin-bottom: 0.5rem;
}

.privacy-policy-sidebar-nav a {
  display: block;
  padding: 0.625rem 1rem;
  color: #1f2937;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.privacy-policy-sidebar-nav a:hover,
.privacy-policy-sidebar-nav a.active {
  background: #3578fa;
  color: #fff;
}

.privacy-policy-main {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-policy-main p {
  font-size: 15px;
}

.privacy-policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-left: 4px solid #f59e0b;
}

.privacy-policy-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.privacy-policy-section-item {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  scroll-margin-top: 2rem;
}

.privacy-policy-section-item h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-policy-section-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #2563eb, #051d4d);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.privacy-policy-section-item h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #1f2937;
  margin: 1.5rem 0 1rem;
}

.privacy-policy-section-item p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.privacy-policy-section-item ul {
  margin: 1.25rem 0;
  padding-left: 0;
  list-style: none;
}

.privacy-policy-section-item ul li {
  position: relative;
  padding-left: 15px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-policy-section-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
}

.privacy-policy-section-item ul li strong {
  color: #1f2937;
  font-weight: 600;
}

.privacy-policy-highlight-box {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.privacy-policy-highlight-box p {
  margin-bottom: 0;
  color: #1f2937;
}

.privacy-policy-important-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.privacy-policy-important-notice h4 {
  color: #92400e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-policy-important-notice p {
  color: #78350f;
  margin-bottom: 0;
}

.privacy-policy-sections-gap {
  padding: 3rem 0;
}
/*PRIVACY POLICY  HERE */

/*TERMS & CONDITION  HERE */
.terms-condition-hero {
  background: linear-gradient(135deg, #051d4d 0%, #0c2d5e 100%);
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.terms-condition-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.terms-condition-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-condition-hero h1 {
  color: #fff;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.terms-condition-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto;
}

.terms-condition-content-wrapper {
  background: #eef3f7;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.terms-condition-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.terms-condition-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.terms-condition-sidebar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.terms-condition-sidebar-nav {
  list-style: none;
  padding-left: 0;
}

.terms-condition-sidebar-nav li {
  margin-bottom: 0.5rem;
}

.terms-condition-sidebar-nav a {
  display: block;
  padding: 0.625rem 1rem;
  color: #1f2937;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.terms-condition-sidebar-nav a:hover,
.terms-condition-sidebar-nav a.active {
  background: #3578fa;
  color: #fff;
}

.terms-condition-main {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.terms-condition-main p {
  font-size: 15px;
}

.terms-condition-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-left: 4px solid #f59e0b;
}

.terms-condition-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.terms-condition-section {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  scroll-margin-top: 2rem;
}

.terms-condition-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-condition-section-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3578fa, #051d4d);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.terms-condition-section h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #1f2937;
  margin: 1.5rem 0 1rem;
}

.terms-condition-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.terms-condition-section ul {
  margin: 1.25rem 0;
  padding-left: 0;
  list-style: none;
}

.terms-condition-section ul li {
  position: relative;
  padding-left: 15px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.terms-condition-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: #3578fa;
  border-radius: 50%;
}

.terms-condition-section ul li strong {
  color: #1f2937;
  font-weight: 600;
}

.terms-condition-highlight-box {
  background: #eff6ff;
  border-left: 4px solid #3578fa;
  padding: 10px;
  border-radius: 12px;
}

.terms-condition-highlight-box p {
  margin-bottom: 0;
  color: #1f2937;
}

.terms-condition-important-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 12px;
  margin: 2rem 0;
}

.terms-condition-important-notice h4 {
  color: #92400e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-condition-important-notice p {
  color: #78350f;
  margin-bottom: 0;
}
/*TERMS & CONDITION ENDS HERE */

/*REVIEWE MAIN SECTION PAGE  HERE */

.rh-root-section {
  padding: 80px 0 0;
}

.rh-nav {
  background: #fff;
  border-bottom: 1px solid #e8eaf0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.rh-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rh-nav__logo-icon {
  width: 44px;
  height: 44px;
}

.rh-nav__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #1a1d2e;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.rh-nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.rh-nav__links a {
  text-decoration: none;
  color: #444;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.rh-nav__links a:hover {
  color: #1e4fcf;
}

/* HERO BANNER */
.rh-hero {
  padding: 80px 0;
  background: #0d1a4a;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.rh-hero_head-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rh-hero__logo-wrap {
  background: #fff;
  border-radius: 16px;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.rh-hero__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 16px;
}

.rh-hero__logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.rh-hero__logo-placeholder svg {
  color: #1e4fcf;
}

.rh-hero__logo-placeholder span {
  font-size: 13px;
  font-weight: 700;
  color: #1e4fcf;
  letter-spacing: -0.3px;
}

.rh-hero__info {
  flex: 1;
}

.rh-hero__title {
/*  font-family: "Playfair Display", serif;*/
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/*.rh-hero__verified {
  background: #2563eb;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}
*/
.rh-hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.rh-hero__star-icons {
  display: flex;
  gap: 3px;
}

.rh-hero__star-icons svg {
  color: #facc15;
}

.rh-hero__rating-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.rh-card__user
.rh-hero__rating-text {
    color: #999999;
    font-weight:400;
    
   
}


.rh-hero__visit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #EBF2FF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.rh-hero__visit:hover {
  background: rgba(147, 197, 253, 0.15);
  color: #fff;
}

/* Rating bars */
.rh-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
}

.rh-bars__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rh-bars__track {
  flex: 1;
  height: 10px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.rh-bars__fill {
  height: 100%;
  border-radius: 6px;
  background: #3578fa;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-bars__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  min-width: 44px;
  text-align: right;
}

.review-card-section {
  padding: 30px 0px 40px;
}

/* Reviews section */
.rh-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rh-reviews__list-shell {
  position: relative;
}

.rh-reviews__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(2px);
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 5;
}

.rh-reviews__list-shell.is-loading .rh-reviews__loading {
  opacity: 1;
  visibility: visible;
}

.rh-reviews__list-shell.is-loading #siteReviewsContainer {
  opacity: 0.4;
  pointer-events: none;
}

.rh-reviews__spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(53, 120, 250, 0.18);
  border-top-color: #3578fa;
  border-radius: 50%;
  animation: rh-spin 0.8s linear infinite;
}

.rh-reviews__loading-text {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

@keyframes rh-spin {
  to {
    transform: rotate(360deg);
  }
}

.rh-reviews__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rh-reviews__heading {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-bottom:0px;
}

.rh-reviews__score {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #1a1d2e;
}

.rh-reviews__score svg {
  color: #facc15;
}

.rh-reviews__total {
  color: #888;
  font-size: 13px;
  font-weight: 400;
}

.rh-btn-write {
  background: #3578fa;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.rh-btn-write:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 79, 207, 0.45);
}

.rh-reviews {
  margin-top: 40px;
}

/* Review card */
.rh-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  border: 1px solid #e8eaf0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.rh-card.rh-card--visible {
  opacity: 1;
  transform: none;
}

.rh-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.rh-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-figure {
  float: left;
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

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

.rh-card__name {
  font-weight: 700;
  font-size: 15px;
  color: #1a1d2e;
  margin-bottom: 4px;
}

.rh-card__rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.rh-card__stars {
  display: flex;
  gap: 2px;
}

.rh-card__stars i {
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  color: #fff;
  background: #3578fa;
}
.rh-card__stars--competitor i {
    color: #FFFFFF;
    background-color: #FA9135;
    padding: 6px 6px;
    border-radius: 3px;
}

    .rh-card__stars--competitor i.star--empty {
        color: #FFFFFF;
        background-color: #CCCCCC; 
        padding: 6px 6px;
        border-radius: 3px;
    }


/* Normal â€” blue bg */
.rh-card__stars i {
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
    color: #fff;
    background: #3578fa;
}

    /* Normal â€” empty stars bhi blue hi rahenge by default */
    /* Agar normal empty grey chahiye to yeh add karo */
    .rh-card__stars i.star--empty {
        background: #e0e0e0;
        color: #fff;
    }

/* Competitor â€” filled yellow */
.rh-card__stars--competitor i {
    color: #FFFFFF;
    background-color: #FA9135;
    padding: 6px 6px;
    border-radius: 3px;
}

    /* Competitor â€” empty grey */
    .rh-card__stars--competitor i.star--empty {
        color: #FFFFFF;
        background-color: #CCCCCC;
        padding: 6px 6px;
        border-radius: 3px;
    }


.rh-card__score-text {
    font-size: 14px;
    color: #b1aeae;
    font-weight: normal;
}

.rh-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #bbf7d0;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}
    .rh-card__verified img {
        width: 10px
    }

    .rh-card__date {
        font-style: italic;
        color: #aaa;
        font-size: 15px;
    }

.rh-card__body {
  color: #555;
  line-height: 1.65;
}

/* Sidebar */
.rh-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rh-ad-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eaf0;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.rh-ad-box__label {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
}

.rh-ad-box__placeholder {
  background: #f4f6fb;
  border-radius: 10px;
  width: 300px;
  height: 250px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bbb;
}

.rh-ad-box__placeholder span {
  font-size: 13px;
  font-weight: 500;
}

.rh-info-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eaf0;
  padding: 22px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.rh-info-box__title {
  font-size: 20px;
  color: #1a1d2e;
  margin-bottom: 12px;
}

.rh-info-box__body {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.social-links-site h3 {
  color: #555;
  font-size: 16px;
}

.social-links-site p {
  color: #3578fa;
  font-size: 16px;
}

.social-links-site a {
  color: #3578fa;
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 15px;
}




/* TRUSTED REVIES SECTION CSS DESIGN */
.rh_trust_section {
  background: #0d1a4a;
  padding: 60px 0;
  text-align: center;
}

.rh_trust_section h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.trust-card {
  padding: 10px 20px;
}

.trust-card__icon {
  width: 70px;
  height: 70px;
  background: #3578fa;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-card__icon i {
  color: #fff;
  font-size: 26px;
}

.trust-card__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.trust-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

/* TRUSTED REVIES SECTION CSS DESIGN */

/* ART_DEIGN_PAGE SECTION CSS DESIGN */
.rv-page {
  padding: 0;
  background: #eef3f7;
  color: #333a4a;
  min-height: 100vh;
}

/* SEARCH BAR */
.rv-searchbar {
  margin-top: 5rem;
  position: relative;
  z-index: 10;
  background: #051d4d;
  padding: 20px 0;
}

.rv-searchbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-searchbar__title {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.rv-searchbar__form {
  display: flex;
  gap: 0;
  width: 420px;
}

.rv-searchbar__input {
  flex: 1;
  border: none;
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
  color: #333a4a;
}

.rv-searchbar__btn {
  background: #f5a623;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.rv-searchbar__btn:hover {
  background: #e0951a;
}

.rv-searchbar__btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* LAYOUT */
.rv-layout {
  padding: 60px 0px 40px;
}

/* FILTERS */
.rv-filters {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #dde3ee;
}

.rv-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rv-filters__title {
  font-size: 15px;
  font-weight: 700;
  color: #333a4a;
}

.rv-filters__icon {
  width: 18px;
  height: 18px;
  color: #6b7280;
}

.rv-filters__label {
  font-size: 13px;
  font-weight: 600;
  color: #333a4a;
  margin-bottom: 10px;
}

.rv-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-filters__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.rv-filters__check-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
}

.rv-filters__checkbox {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #3578fa;
  margin: 0;
}

.rv-filters__check-label {
  font-size: 13px;
  color: #333a4a;
  cursor: pointer;
  margin: 0;
}

.rv-filters__count {
  font-size: 12px;
  color: #6b7280;
}

/* LISTINGS */
.rv-listings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.rv-card {
  background: #fff;
  border: 1px solid #dde3ee;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 128px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.rv-card__logo-text-dew {
  border: 1px solid #dde3ee;
  padding: 10px;
  width: 190px;
  height: 86px;
  flex: 0 0 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.rv-card__logo-text-dew img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rv-card__logo--sw {
  background: #111;
}

.rv-card__info {
  flex: 1 1 auto;
  min-width: 0;
}

.rv-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.rv-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.rv-card__rating {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.rv-card__rating-label {
  font-size: 13px;
  font-weight: bold;
  color: #999;
}

.rv-stars {
  display: flex;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-stars i {
  background: #3578fa;
  color: #fff;
  padding: 5px;
  font-size: 10px;
  border-radius: 3px;
}

.rv-stars__star {
  width: 18px;
  height: 18px;
}

.rv-stars__star--half {
  color: #f5a623;
}

.rv-stars__star--empty {
  color: #d1d5db;
}

.rv-card__btn {
  margin-top: 35px;
  background: #3578fa;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.rv-card__btn:hover {
  background: #ffc107;
  color: #000;
}

/* LOAD MORE */
.rv-load-more {
  text-align: center;
  margin-top: 8px;
}

.rv-load-more__btn {
  background: #3578fa;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.rv-load-more__btn:hover {
  background: #ffc107;
  transform: scale(1.02);
  color: #000;
}

/* RECENT REVIEWS */
.rv-reviews {
  display: flex;
  flex-direction: column;
}

.rv-reviews__heading {
  font-size: 18px;
  font-weight: 700;
  color: #333a4a;
  margin-bottom: 16px;
}

.rv-review-card {
  background: #fff;
  border: 1px solid #dde3ee;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}

.rv-review-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.rv-review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rv-review-card__meta {
  flex: 1;
}

.rv-review-card__stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.rv-review-card__score {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.rv-review-card__category {
  font-size: 11px;
  color: #6b7280;
  display: block;
}

.rv-review-card__author {
  font-size: 13px;
  color: #333a4a;
  margin-bottom: 4px;
}

.rv-review-card__author-link {
  color: #3578fa;
  text-decoration: none;
  font-weight: 500;
}

.rv-review-card__author-link:hover {
  text-decoration: underline;
}

.rv-review-card__quote {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  margin-bottom: 4px;
}

.rv-review-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

.rv-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-review-card__date {
  font-size: 12px;
  color: #6b7280;
}

.rv-review-card__btn {
  background: #3578fa;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.rv-review-card__btn:hover {
  background: #1d4ed8;
}

/* Small star size fix */
.rv-review-card .rv-stars__star {
  width: 14px;
  height: 14px;
}
/* ART_DEIGN_PAGE SECTION CSS DESIGN */

/* Write REVIEW MODAL SECTION CSS DESIGN */
/* Modal */
.wr-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.wr-modal-overlay.wr-open {
  display: flex;
}

.wr-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  margin: 20px;
}

.wr-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eaf0;
}

.wr-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1d2e;
}

.wr-modal__close {
  background: none;
  border: none;
  font-size: 40px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.wr-modal__close:hover {
  color: #1a1d2e;
}

.wr-modal__row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.wr-modal__field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wr-modal__field--full {
  width: 100%;
  margin-bottom: 18px;
}

.wr-modal__label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.wr-modal__label span {
  color: #e53e3e;
  margin-left: 2px;
}

.wr-modal__input,
.wr-modal__textarea {
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.wr-modal__input:focus,
.wr-modal__textarea:focus {
  border-color: #3578fa;
}

.wr-modal__input::placeholder,
.wr-modal__textarea::placeholder {
  color: #bbb;
}

.wr-modal__textarea {
  resize: none;
  height: 120px;
}

.wr-modal__hint {
  font-size: 12px;
  color: #aaa;
  margin-top: 6px;
}

/* Star Rating */
.wr-stars {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.wr-stars span {
  background: #3578fa;
  padding: 10px;
  border-radius: 5px;
}

.wr-stars__star {
  font-size: 20px;
  color: #e0e0e0;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}

.wr-stars span.wr-active,
.wr-stars span:hover {
  background: #facc15;
}

.wr-modal__submit {
  width: 100%;
  background: #3578fa;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
  font-family: inherit;
}

.wr-modal__submit:hover {
  background: #2563eb;
}
/*REVIEWE MAIN SECTION PAGE ENDS HERE */

/* RESPONSIVE DESIGN CSS */

@media (max-width: 768px) {
  .rv-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .rv-card__logo-text-dew {
    width: min(240px, 100%);
    height: 82px;
    flex: 0 0 min(240px, 100%);
  }

  .rv-card__info {
    flex-basis: 100%;
  }

  .rv-card__rating {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .rv-card__btn {
    margin-top: 8px;
  }

  .banner_content {
    margin-top: 25px;
    padding-top: 70px;
  }

  .reviews-categories-grid ul li {
    flex-basis: min(45%, 200px);
    margin-bottom: 15px;
  }

  #reviewerAllCategoriesGrid {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    row-gap: 10px;
  }

  .all-categories-link {
    width: 100%;
  }

  .reviews-search-container {
    display: block;
  }
  .reviews-search-button {
    width: 100%;
    margin: 0;
    border-radius: 0px;
  }
  .reviews-search-input {
    padding: 10px 36px;
  }
  .collapse-trigger {
    padding: 10px 0;
  }

  .blog_head_wrapper,
  .contact_us_head_wrapper,
  .about_us_banner_wrapper {
    height: 20rem;
  }
}
@media (max-width: 991px) {
  .navbar-list {
    display: none;
  }

  .navbar-toggler-custom {
    display: block;
  }
  .brands-section .header-area {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .brands-section .cta-buttons {
    width: 100%;
  }

  .brands-section .btn {
    flex: 1;
  }

  .brands-section .animation-area {
    display: none;
  }

  .brands-section .slider-container {
    display: block;
  }

  .brands-section .brand-logo {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 992px) {
  .navbar-toggler-custom {
    display: none;
  }

  .navbar-list {
    display: flex;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .reviews-categories-grid ul li {
    flex-basis: min(30%, 200px);
  }
}

@media (min-width: 768px) {
  .collapse-trigger {
    cursor: default;
    border-bottom: none;
  }

  .toggle-icon {
    display: none;
  }

  .collapse-content {
    max-height: none !important;
    overflow: visible;
  }

  .footer-links-list {
    justify-content: flex-end;
  }

  .collapse:not(.show),
  .collapse.show {
    max-height: none !important;
    display: block !important;
    overflow: visible;
  }

  .collapse-trigger .toggle-icon {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding: 0;
  }

  .footer-list {
    padding: 10px 0 15px 0;
  }

  .footer-description {
    padding: 10px 0 15px 0;
  }

  .contact-list {
    padding: 10px 0 15px 0;
  }

  .footer-column.column-half {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-links-list {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .scroll-top-button {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .brands-section .brands-section {
    padding: 60px 0 0;
  }

  .brands-section .text-content h2 {
    font-size: 28px;
  }

  .brands-section .subtitle {
    font-size: 13px;
  }

  .brands-section .cta-buttons {
    flex-direction: column;
  }

  .brands-section .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .rh-hero {
    flex-wrap: wrap;
    padding: 28px 24px;
    gap: 24px;
  }

  .rh-bars {
    min-width: 100%;
  }

  .rh-content {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .rh-nav {
    padding: 0 20px;
  }
}

.rh-top-rated-box {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.rh-top-rated-box__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.rh-top-rated-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.rh-top-rated-item__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rh-top-rated-item__logo-frame {
    width: 88px;
    height: 58px;
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

    .rh-top-rated-item__logo-frame img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.rh-top-rated-item__content {
    min-width: 0;
}

.rh-top-rated-item__name {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #1a1a2e;
    line-height: 1.35;
    word-break: break-word;
}

.rh-top-rated-item__stars {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

    .rh-top-rated-item__stars i {
        color: #3578FA;
        font-size: 10px;
        background: none !important;
        padding: 0 !important;
    }

.rh-top-rated-item__rating {
    font-size: 11px;
    color: #666;
    margin-left: 4px;
}

.rh-top-rated-item__btn {
    display: block;
    width: 100%;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    text-align: center; 
}

    .rh-top-rated-item__btn:hover {
        background: #1d4ed8;
        color: #fff;
        
    }

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

/* MAIN */
.rv-main {
    padding: 3rem 1.5rem;
    text-align: center;
}

.rv-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);
}

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

    .rv-icon-wrap i {
        font-size: 2rem;
        color: #2563eb;
    }

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


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

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

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

.rv-btn-primary {
    background: #2563eb;
    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;
}

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

.rv-btn-outline {
    background: #fff;
    color: #2563eb;
    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;
}

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

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

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

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

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

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

    .rv-chip:hover {
        background: #2563eb;
        color: #fff;
    }

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

/*PAGE NOT FOUND CSS*/
