.rating-card.milesweb-card .rating-header h3 {
  color: #16a34a;
}
.rating-card.hostinger-card .rating-header h3 {
  color: #2563eb;
}
.rating-item {
  grid-template-columns: 95px 1fr 30px;
  gap: 8px;
  font-size: 14px;
}

.alert.alert-light {
  margin: 5px 0px;
  height: 100%;
}

.alert.alert-light.first {
  border: 2px solid #cce5f1;
}

.alert.alert-light.second {
  border: 2px solid #cce8dc;
}

.alert.alert-light h3 {
  padding-bottom: 10px;
}

.alert.alert-light.first h3 {
  color: #1682ad;
}

.alert.alert-light.second h3 {
  color: #21885f;
}

/* .custom-row {
    padding-bottom: 20px !important;
} */

.top-section {
  margin-top: 10px;
}

.standout-features {
  margin-top: 10px;
  color: #5d6465;
}

h1.compare-section-heading {
  font-size: 32px;
  padding: 30px 0px 0 !important;
}
p.compare-section-desc {
  font-size: 17px;
  line-height: 23px;
  color: #121212;
  /* max-width: 700px; */
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}
.table-responsive {
  min-height: unset !important;
}

/* section 0 Start */
.top-section.alert.alert-secondary {
  position: relative;
  margin: 0px 0 20px;
  padding: 22px 26px 22px 30px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.04);
}

.top-section.alert.alert-secondary b {
  color: #2563eb;
  font-weight: 700;
}

/* Subtle hover */

.top-section.alert.alert-secondary {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.top-section.alert.alert-secondary:hover {
  border-color: #cbd5e1;
  border-left-color: #2563eb;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.06);
}

.compare-section {
  margin: 25px 0 0;
}

.compare-section > h2 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.compare-section > p {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================================= GRID ========================================================= */

.compare-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.compare-section .row > [class*="col-"] {
  padding: 0 10px;
}

/* ========================================================= RATING CARD ========================================================= */

.compare-section .rating-card {
  position: relative;
  height: 100%;
  padding: 26px 28px 27px;
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.compare-section .rating-card:hover {
  transform: translateY(-3px);
  border-color: #d8dee8;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* ========================================================= TOP ACCENT ========================================================= */

.compare-section .rating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.compare-section .hostinger-card::before {
  background: #2563eb;
}

.compare-section .milesweb-card::before {
  background: #16a34a;
}

/* ========================================================= HEADER ========================================================= */

.compare-section .rating-header {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #edf0f4;
}

.compare-section .rating-header h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  color: #1e293b;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 650;
}

.compare-section .rating-header h3 span {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: #111827;
  font-size: 27px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.8px;
}

.compare-section .rating-header h3 small {
  color: #222;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

/* ========================================================= RATING ITEMS ========================================================= */

.compare-section .rating-item {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}

.compare-section .rating-item:last-child {
  margin-bottom: 0;
}

.compare-section .rating-item > span {
  color: #212259;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.compare-section .rating-item > strong {
  color: #1e293b;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  text-align: right;
}

/* ========================================================= RATING BAR ========================================================= */

.compare-section .rating-bar {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
  background: #edf1f5;
  border-radius: 20px;
}

.compare-section .rating-progress {
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  transition: width 0.7s ease;
}

/* Hostinger */

.compare-section .hostinger-card .rating-progress {
  background: #2563eb;
}

/* MilesWeb */

.compare-section .milesweb-card .rating-progress {
  background: #16a34a;
}

/* ========================================================= SUBTLE SCORE EMPHASIS ========================================================= */

.compare-section .hostinger-card .rating-header h3 span {
  color: #2563eb;
}

.compare-section .milesweb-card .rating-header h3 span {
  color: #16a34a;
}

/* ========================================================= TABLET ========================================================= */

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

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

/* ========================================================= TABLE WRAPPER ========================================================= */

.compare-section .table-responsive {
  overflow-x: auto;
  /* border: 1px solid #e5e7eb; */
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  -webkit-overflow-scrolling: touch;
}

/* ========================================================= TABLE ========================================================= */

.compare-section table {
  width: 100%;
  margin: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: separate;
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 15px;
}

/* ========================================================= HEADER ========================================================= */

.compare-section table thead th {
  padding: 12px 24px;
  background: #172033;
  color: #fff;
  border: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
}

.compare-section table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.compare-section table tbody td {
  padding: 6px 24px;
  color: #475569;
  background: #fff;
  border: 0;
  border-top: 1px solid #edf0f3;
  font-size: 14px;
  line-height: 1.65;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}

.compare-section table tbody td:first-child {
  color: #1e293b;
  background: #f8fafc;
  font-weight: 600;
}

.compare-section table tbody td + td {
  border-left: 1px solid #edf0f3;
}

/* ========================================================= HOVER ========================================================= */

.compare-section table tbody tr {
  transition: background 0.2s ease;
}

.compare-section table tbody tr:hover td {
  background: #f8fafc;
}

.compare-section table tbody tr:hover td:first-child {
  background: #f1f5f9;
}

/* ========================================================= WINNER CALLOUT ========================================================= */

.compare-section > .alert.alert-info {
  position: relative;
  margin: 10px 0 0;
  padding: 18px 22px 18px 24px;
  background: #f0fdf4;
  border: 1px solid #d9f1df;
  border-left: 4px solid #22c55e;
  border-radius: 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.compare-section > .alert.alert-info b {
  color: #15803d;
  font-weight: 700;
}

/* ========================================================= TABLET ========================================================= */

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

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

/* section 2 End */
/* ========================================================= AI FEATURE COMPARISON CARDS ========================================================= */

.compare-section .custom-row {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 40px; */
  margin-top: 10px;
}

.compare-section .custom-row > [class*="col-"] {
  padding: 0 10px;
}

.compare-section .custom-row .alert {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 17px 17px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ========================================================= TOP ACCENTS ========================================================= */

.compare-section .custom-row .alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.compare-section .custom-row .alert.first::before {
  background: #6366f1;
}

.compare-section .custom-row .alert.second::before {
  background: #16a34a;
}

/* =========================================================  HOVER ========================================================= */

.compare-section .custom-row .alert:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* ========================================================= HEADINGS ========================================================= */

.compare-section .custom-row .alert h3 {
  margin: 0 0 9px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf0f4;
  color: #1e293b;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.compare-section .custom-row .alert.first h3 {
  color: #4f46e5;
}

.compare-section .custom-row .alert.second h3 {
  color: #16a34a;
}

/* ========================================================= DESCRIPTION ========================================================= */

.compare-section .custom-row .alert > p:not(.standout-features) {
  margin: 0 0 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.78;
}

/* ========================================================= STANDOUT FEATURES ========================================================= */

.compare-section .custom-row .alert .standout-features {
  margin: 0 0 12px;
}

.compare-section .custom-row .alert .standout-features b {
  color: #1e293b;
  font-size: 14px;
  font-weight: 700;
}

/* ========================================================= FEATURE LIST ========================================================= */

.compare-section .custom-row .alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-section .custom-row .alert li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 29px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.compare-section .custom-row .alert li:last-child {
  margin-bottom: 0;
}

/* ========================================================= CHECKMARK ========================================================= */

.compare-section .custom-row .alert li::before {
  content: "\f00c";
  position: absolute;
  top: 3px;
  left: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-size: 9px;
  font-weight: 900;
}

.compare-section .custom-row .alert.first li::before {
  color: #fff;
  background: #4f46e5;
}

.compare-section .custom-row .alert.second li::before {
  color: #fff;
  background: #16a34a;
}

/* ========================================================= TABLET ========================================================= */

@media (max-width: 991px) {
}

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

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

@media (max-width: 480px) {
}

/* Final responsive fixes */
.compare-section .table-responsive {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.compare-section .alert {
  box-sizing: border-box;
}

.compare-section .custom-row {
  align-items: stretch;
}

.alert.alert-light.secound {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 27px 27px 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.alert.alert-light.secound::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #16a34a;
}

.alert.alert-light.secound:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.alert.alert-light.secound h3 {
  margin: 0 0 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf0f4;
  color: #16a34a;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.alert.alert-light.secound > p:not(.standout-features) {
  margin: 0 0 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.78;
}

.alert.alert-light.secound .standout-features {
  margin: 0 0 12px;
}

.alert.alert-light.secound .standout-features b {
  color: #1e293b;
  font-size: 14px;
  font-weight: 700;
}

.alert.alert-light.secound ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert.alert-light.secound li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 29px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.alert.alert-light.secound li:last-child {
  margin-bottom: 0;
}

.alert.alert-light.secound li::before {
  content: "\f00c";
  position: absolute;
  top: 3px;
  left: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #16a34a;
  font-family: "Font Awesome 5 Free";
  font-size: 9px;
  font-weight: 900;
}

/* price section */

.price-section {
  width: 100%;
  padding: 10px 0;
}

.price-section .row {
  margin-left: -8px;
  margin-right: -8px;
}

.price-section .col-md-6 {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 10px !important;
}
.company-detail-section-2 p:first-child {
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

/* Common Card */
.hosting-card {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

/* Hostinger */
.hosting-card-blue {
  background: #dff1fc;
}

.hosting-card-blue .hosting-label {
  color: #673de6;
}

/* MilesWeb */
.hosting-card-green {
  background: #fff;
}

.hosting-card-green .hosting-label {
  color: #27845a;
}

/* Content */
.hosting-content {
  width: 100%;
}

.hosting-label {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

/* Price */
.hosting-card h2 {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}

.hosting-card h2 small {
  font-size: 14px;
  font-weight: 500;
  margin-left: 2px;
}

/* Description */
.hosting-card p {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Button */
.hosting-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 7px;
  color: #fff !important;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

/* Hostinger Button */
.hosting-card-blue .hosting-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* MilesWeb Button */
.hosting-card-green .hosting-btn {
  background: #24935f;
}

.hosting-btn:hover {
  color: #fff !important;
  opacity: 0.9;
  text-decoration: none !important;
}

/* .related-comparisons {
  background: #f8fafc;
} */

.related-comparisons h2 {
  margin: 0;
  color: #172033;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px !important;
}

.related-comparisons .row {
  margin-left: -10px;
  margin-right: -10px;
}

.related-comparisons .row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.related-comparisons .comparison-card {
  height: 100%;
  padding: 17px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.related-comparisons .comparison-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.related-comparisons .comparison-card h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 650;
}

.related-comparisons .comparison-card p {
  margin: 0 0 15px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.related-comparisons .comparison-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 10px 24px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: 1px solid;
}

.related-comparisons .comparison-link span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.related-comparisons .comparison-link:hover {
  color: #1d4ed8;
}

.related-comparisons .comparison-link:hover span {
  transform: translateX(4px);
}

.related-comparisons .comparison-link:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* .side-menu {
  margin-top: 35px;
  position: sticky;
  top: 10px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 15px;
} */

.side-menu {
    margin-top: 0;
    position: sticky;
    top: 10px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
}

.side-menu ul li:last-child {
  margin-bottom: 0;
}

.side-menu p {
  margin-bottom: 0px !important;
}

.side-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-menu-con h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-color);
  padding: 0 16px;
  padding-top: 14px;
}

.side-menu-con {
  background-color: #fff;
  box-shadow: 0 0 10px #ededed;
  border-radius: 5px;
}

.side-menu ul li:hover a {
  background: #f5f5f5;
}

.side-menu ul li.active a {
  background: #eee;
}
.side-menu p {
  font-size: 13px;
  color: #64748b;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
}
.side-menu ul li a {
  padding: 5px 16px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 0;
  width: 100%;
}
.side-menu ul li.active a,
.side-menu ul li:hover a {
  background: var(--primary-color);
  color: #fff;
}
/* new css*/

.verdict-card {
  width: 100%;
  /* max-width: 370px; */
  padding: 10px 16px;
  border: 1px solid #d9dde1;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
  margin-top: 10px;
}

.verdict-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.hosting-item {
  margin-bottom: 16px;
}

.hosting-info {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 7px;
}

.hosting-name {
  font-size: 18px;

  font-weight: 700;
}

.hostinger {
  color: #2563eb;
}

.milesweb {
  color: #16a34a;
}

.hosting-rating {
  font-size: 18px;

  font-weight: 700;

  color: #222;
}

.hosting-rating small {
  font-size: 14px;

  font-weight: 600;
}

.rating-bar {
  width: 100%;

  height: 6px;

  overflow: hidden;

  border-radius: 10px;

  background: #e4e7ea;
}

.rating-fill {
  display: block;

  height: 100%;
}

.hostinger-fill {
  width: 86%;

  background: #2563eb;
}

.milesweb-fill {
  width: 88%;

  background: #16a34a;
}

.verdict-buttons {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: 20px;
}

.visit-btn {
  display: block;
  padding: 8px 15px;
  border-radius: 11px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.hostinger-btn {
  background: #673de6;
}
.milesweb-btn:hover {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}
.milesweb-btn {
  /* background: #278b68; */
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.visit-btn:hover {
  opacity: 0.9;

  color: #fff;
}

.money-back {
  margin: 16px 0 0;

  font-size: 16px;

  line-height: 1.5;

  color: #74787d;
}

.sponsored-card {
  width: 100%; /* max-width: 725px; */ /* min-height: 470px; */
  padding: 12px 16px;
  box-sizing: border-box;
  background: var(--primary-color); /* border: 3px solid #e2e2e2; */ /* font-family: Arial, Helvetica, sans-serif; */
  color: #fff;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* Top section */

.sponsored-card-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}
.sponsored-card a {
  width: 100%;
  padding: 8px 15px !important;
  margin-top: 10px;
  background-color: #fff;
  color: var(--primary-color);
}
.sponsored-card a:hover{
    color: var(--primary-color);
}
.sponsored-card-header h2 {
  margin: 0;
  /* font-family: Georgia, "Times New Roman", serif; */
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.sponsored-card-header span {
  padding: 6px 8px;
  background: #fff;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Main heading */

.sponsored-card h3 {
  margin: 14px 0 11px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}

/* Description */

.sponsored-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #fff;
}

/* Button */

.claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* height: 95px; */
  margin-top: 42px;
  background: #fff;
  color: #254795;
  border-radius: 5px;
  text-decoration: none;
  font-size: 35px;
  font-weight: 700;
  box-sizing: border-box;
}

.claim-btn:hover {
  background: #f5f5f5;

  color: #254795;
}

/* Card */
.hosting-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(25, 42, 70, 0.06);
    padding: 16px;
}

.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(25, 42, 70, 0.12);
}
.hosting-card-blue {
    background: #E2D8FA;
}
.hosting-card-green {
    background: #fff;
}

/* Card Color Accent */
.hosting-card-blue {
    /* border-top: 4px solid #135fe7; */
}

/* .hosting-card-green {
    border-top: 4px solid #20a765;
} */


/* Card Content */
.hosting-content {
    position: relative;
    /* padding: 22px; */
}


/* Badge */
.bedge {
    position: absolute;
    top: -16px;
    right: -15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 11px;
    border-radius: 5px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}
.hosting-card-blue .hosting-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.bedge i {
    font-size: 10px;
}

.hosting-card-green .bedge {
    background: #20a765;
}


/* Main Layout */
.company-detail-container {
    display: flex;
    flex-direction: column;
}


/* Company Information */
.company-detail-section-1 {
    display: flex;
    align-items: center;
    gap: 12px;
    /* min-height: 60px; */
    /* padding-right: 115px; */
}


/* Logo */
.company-left-logo {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.company-left-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Company Name + Rating */
.company-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.hosting-label {
    display: block;
    color: #182230;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

span.company-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

span.company-rating i {
    color: #f5b301;
    font-size: 12px;
}


/* Pricing Section */
.company-detail-section-2 {
    /* margin-top: 22px; */
    padding-top: 9px;
    /* border-top: 1px solid #edf0f5; */
}

.company-detail-section-2 p {
    margin: 0;
    color: #7a8594;
    font-size: 13px;
    line-height: 1.5;
}

.company-detail-section-2 h4 {
    margin: 3px 0;
    color: #182230;
    font-size: 30px;
    font-weight: 750;
    line-height: 1.2;
}

.company-detail-section-2 h4 small {
    color: #7a8594;
    font-size: 14px;
    font-weight: 500;
}


/* Renewal / Offer Text */
.company-detail-section-2 p:nth-of-type(2) {
    margin-top: 2px;
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
}
.company-detail-section-2 {
    display: flex;
    justify-content: space-between;
}

.sec-right::after {
    /* border-left: 1px solid #000; */
    /* content: ""; */
    border-left: 1px solid #ddd;
    height: 135px;
    position: absolute;
    left: -40px;
    top: -4px;
}

.sec-right {
    position: relative;
    padding-right: 30px;
}

ul.hosting-features li {
    font-size: 14px;
    line-height: 23px;
    color: #000;
    padding-bottom: 8px;
    font-weight: 500;
}

ul.hosting-features li i {
    color: #673de6;
    margin-right: 10px;
}

ul.hosting-features li span i {
    display: none;
}

/* Button */
.hosting-btn {
    /* width: 100%; */
    /* min-height: 46px; */
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #135fe7;
    border: 1px solid #135fe7;
    border-radius: 8px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.hosting-btn:hover {
    background: #0d4fc4;
    border-color: #0d4fc4;
    color: #fff !important;
    transform: translateY(-1px);
}

.hosting-btn i {
    font-size: 12px;
}
.hosting-card.hosting-card-green ul li i {
    color: #2a8f60;
}

/* Green Card Button */
.hosting-card-green .hosting-btn {
    background: #20a765;
    border-color: #20a765;
}

.hosting-card-green .hosting-btn:hover {
    background: #168451;
    border-color: #168451;
}
@media(max-width: 1365px){
    .sec-right{
        padding-right: 0;
    }
}

@media(max-width: 991px){
    .side-menu {
    display: none;
}  
    .col-lg-3.side-menu-container.active .side-menu {
    display: block;
}

.col-lg-3.side-menu-container.active .side-menu {
            position: absolute;
        top: 15px;
        background: #dff1fc;
        z-index: 999;
        width: 70%;
        padding: 16px 16px;
        height: 350px;
        overflow-y: auto;
        border: 1px solid #ddd;
        box-shadow: 0 0 10px #999797;
        margin-top: 35px;
}
div#mobile-bar-menu {
    background: var(--primary-color);
    padding: 7px;
    border-radius: 5px;
    width: fit-content;
    color: #fff;
}

/* div#mobile-bar-menu .bar1, div#mobile-bar-menu .bar2, div#mobile-bar-menu .bar3 {
    color: #fff !important;
} */

.col-lg-3.side-menu-container {
	margin-top: 10px;
	position: sticky;
	top: 0;
	z-index: 999;
}
 
}
@media(min-width: 992px){
    div#mobile-bar-menu {
   display: none;
}
}

.bar1, .bar2, .bar3 {
width: 26px;
height: 2px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 5px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

/* Responsive */
@media (max-width: 575px) {

    .hosting-content {
        padding: 0;
    }

    .company-detail-section-1 {
        padding-right: 0;
        padding-top: 0px;
    }

.bedge {
   top: -20px;
    right: -20px;
    left: auto;
}

    .company-left-logo {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .hosting-label {
        font-size: 18px;
    }

    .company-detail-section-2 {
        margin-top: 0;
        padding-top: 10px;
        flex-wrap: wrap;
    }
.sec-right{
    margin-top: 20px;
}
    .company-detail-section-2 h4 {
        font-size: 28px;
    }
}
/* Responsive Css Start */
@media(max-width: 1280px){
    .hosting-card-green .hosting-btn i, .hosting-card-blue .hosting-btn i {
    display: none;
}
ul.hosting-features li i{
    margin-left: 2px;
    margin-right: 0px;
}
    .sponsored-card-header span{
        font-size: 10px;
    }
    .sponsored-card-header{
        display: inline-block;
    }
}
@media(max-width: 1199px){
    /* .company-detail-section-2{
        flex-wrap: wrap;
    } */
}
@media(max-width: 1199px){
    .sponsored-card-header span{
        margin-top: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
}
@media (max-width: 991px) {
    h1.compare-section-heading{
        padding-top: 10px !important;
    }
  section.compare-company .col-md-3 {
    display: none;
  }

  section.compare-company .col-md-9 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 991px) {
  .compare-section {
    margin: 45px 0;
  }

  .compare-section > h2 {
    font-size: 26px;
  }

  .compare-section .rating-card {
    padding: 24px;
  }

  .compare-section .rating-item {
    grid-template-columns: 95px minmax(0, 1fr) 30px;
    gap: 11px;
  }

  .compare-section h2 {
    font-size: 26px;
  }

  .compare-section table thead th,
  .compare-section table tbody td {
    padding: 15px 17px;
  }

  .compare-section table tbody td {
    font-size: 13px;
  }
  .compare-section .custom-row .alert {
    padding: 23px;
  }

  .compare-section .custom-row .alert > p:not(.standout-features) {
    font-size: 13px;
    line-height: 1.7;
  }
  .alert.alert-light.secound {
    padding: 23px;
  }

  .alert.alert-light.secound > p:not(.standout-features) {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
    div#navbarNavAltMarkup {
        top: 70px;
        z-index: 99999;
    }
}
@media (max-width: 767px) {
  .compare-section .custom-row {
    display: block;
    margin: 0;
  }

  .compare-section .custom-row > [class*="col-"] {
    width: 100%;
    padding: 0;
  }

  .compare-section .custom-row .alert {
    height: auto;
    margin-bottom: 15px;
    padding: 21px 20px 22px;
    border-radius: 12px;
  }

  .compare-section .custom-row > [class*="col-"]:last-child .alert {
    margin-bottom: 0;
  }

  .compare-section .custom-row .alert h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .compare-section .custom-row .alert > p:not(.standout-features) {
    font-size: 13px;
    line-height: 1.7;
  }

  .compare-section .custom-row .alert li {
    padding-left: 27px;
    font-size: 13px;
    line-height: 1.65;
  }
  .compare-section {
    margin: 38px 0;
  }

  .compare-section > h2 {
    margin-bottom: 6px;
    font-size: 23px;
    letter-spacing: -0.3px;
  }

  .compare-section > p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .compare-section .row {
    display: block;
    margin: 0;
  }

  .compare-section .row > [class*="col-"] {
    width: 100%;
    padding: 0;
  }

  .compare-section .rating-card {
    height: auto;
    margin-bottom: 15px;
    padding: 21px;
    border-radius: 12px;
  }

  .compare-section .rating-header {
    margin-bottom: 21px;
    padding-bottom: 17px;
  }

  .compare-section .rating-header h3 {
    font-size: 18px;
  }

  .compare-section .rating-header h3 span {
    font-size: 24px;
  }

  .compare-section .rating-item {
    grid-template-columns: 88px minmax(0, 1fr) 30px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .compare-section .rating-item > span {
    font-size: 12px;
  }

  .compare-section .rating-item > strong {
    font-size: 12px;
  }

  .compare-section .rating-bar {
    height: 6px;
  }

  .compare-section {
    margin: 38px 0;
  }

  .compare-section h2 {
    margin-bottom: 17px;
    font-size: 23px;
  }

  .compare-section .table-responsive {
    border-radius: 11px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  }

  .compare-section table thead th {
    padding: 12px 24px;
    font-size: 13px;
  }

  .compare-section table tbody td {
    padding: 14px 15px;
    font-size: 13px;
    line-height: 1.6;
  }

  .compare-section .table-responsive::-webkit-scrollbar {
    height: 5px;
  }

  .compare-section .table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  .compare-section .table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }

  .compare-section > .alert.alert-info {
    margin-top: 15px;
    padding: 16px 17px 16px 19px;
    font-size: 13px;
    line-height: 1.65;
  }
  h1.compare-section-heading {
    font-size: 25px;
    line-height: 1.3;
    padding: 20px 0;
  }

  .top-section.alert.alert-secondary {
    padding: 17px 18px 17px 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .compare-section {
    margin: 35px 0;
  }

  .compare-section .custom-row {
    gap: 15px;
  }
  .alert.alert-light.secound {
    height: auto;
    margin-bottom: 15px;
    padding: 21px 20px 22px;
    border-radius: 12px;
  }

  .alert.alert-light.secound h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .alert.alert-light.secound > p:not(.standout-features) {
    font-size: 13px;
    line-height: 1.7;
  }

  .alert.alert-light.secound li {
    padding-left: 27px;
    font-size: 13px;
    line-height: 1.65;
  }
  .price-section .col-md-6 {
    margin-bottom: 15px;
  }

  .hosting-card {
    /* min-height: 180px; */
    padding: 22px;
  }

  .hosting-card h2 {
    font-size: 27px;
  }
  .related-comparisons {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .related-comparisons h2 {
    font-size: 24px;
    margin-bottom: 20px !important;
  }

  .related-comparisons .comparison-card {
    padding: 22px;
  }
}
@media (max-width: 600px) {
  .sponsored-card {
    min-height: auto;

    padding: 16px;
  }
  .hosting-name{
    font-size: 14px;
  }

  .sponsored-card-header h2 {
    font-size: 16px;
  }
.sponsored-card-header{
            display: flex;
        flex-direction: column-reverse;
        align-items: baseline;
        gap: 0;
}
.sponsored-card-header span {
    padding: 4px 12px;
    font-size: 10px;
  }

  .sponsored-card h1 {
    font-size: 34px;

    margin-top: 25px;
  }

  .sponsored-card p {
            font-size: 12px;
        margin-bottom: 10px !important;
  }

  .claim-btn {
    height: 70px;

    margin-top: 30px;

    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .related-comparisons {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .related-comparisons h2 {
    font-size: 22px;
  }

  .related-comparisons .comparison-card {
    padding: 16px;
    border-radius: 10px;
  }

  .related-comparisons .comparison-card h3 {
    font-size: 18px;
  }

  .related-comparisons .comparison-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .compare-section > h2 {
    font-size: 21px;
  }

  .compare-section .rating-card {
    padding: 19px;
  }

  .compare-section .rating-header h3 {
    font-size: 17px;
  }

  .compare-section .rating-header h3 span {
    font-size: 22px;
  }

  .compare-section .rating-item {
    grid-template-columns: 78px minmax(0, 1fr) 28px;
    gap: 8px;
  }
  .compare-section h2 {
    font-size: 21px;
  }

  .compare-section table thead th,
  .compare-section table tbody td {
    padding: 12px 13px;
  }

  .compare-section > .alert.alert-info {
    border-left-width: 3px;
    padding: 15px 15px 15px 17px;
  }

  .compare-section .custom-row .alert {
    padding: 19px 17px 20px;
    margin-top: 20px;
  }

  .compare-section .custom-row .alert h3 {
    font-size: 17px;
  }

  .compare-section .custom-row .alert li {
    margin-bottom: 11px;
  }
  h1.compare-section-heading {
    font-size: 22px;
  }
  .alert.alert-light.secound {
    padding: 19px 17px 20px;
  }

  .alert.alert-light.secound h3 {
    font-size: 17px;
  }

  .alert.alert-light.secound li {
    margin-bottom: 11px;
  }
}
/* Responsive Css End */
section.compare-company {
    padding-top: 35px;
}

/* author section */
.comparison-author {
    margin: 35px 0 45px;
}

.comparison-author-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 28px;
    background: #f7f6ff;
    border: 1px solid #e8e6f5;
    border-radius: 16px;
}

.author-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(70, 45, 150, 0.12);
}

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

.author-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #6b6f85;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.author-content h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    color: #171d35;
}

.author-content p {
    margin: 0;
    /* max-width: 560px; */
    font-size: 14px;
    line-height: 1.6;
    color: #66708b;
}

.author-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #6338e8;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

.author-btn span {
    font-size: 18px;
    line-height: 1;
}

.author-btn:hover {
    background: #5128d5;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 700px) {

    .comparison-author-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .author-left {
        align-items: flex-start;
    }

    .author-content p {
        font-size: 13px;
    }

    .author-btn {
        width: 100%;
        justify-content: center;
    }
}