.news-events-banner {
  position: relative;
  padding: 100px 0 !important;
  background-size: cover;
  background-position: center;
}

.news-events-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 37 74), rgb(27 101 175 / 20%));
}

.news-events-banner__container {
  position: relative;
}

.news-events-banner__content h2 {
  color: #ffffff;
  margin-top: 40px;
  font-size: clamp(28px, 5vw, 45px);
  text-align: center;
  text-transform: capitalize;
}

.news-events-banner__content p {
  color: #ffffff;
  font-size: clamp(14px, 2.5vw, 16px);
  padding-top: 10px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 768px) {
  .news-events-banner__content h2 {
    margin-top: 20px;
  }
}

/* ---------------------------------------------- pricing section css start --------------------------------------------------  */

.tm-ct-main-wrapper {
  padding: 50px 0;
}

.tm-ct-primary-headline {
  font-size: 36px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
}

.tm-ct-secondary-subheadline {
  font-size: 26px;
  font-weight: 400;
  color: #333333;
  margin-top: 10px;
}

.tm-ct-intro-paragraph {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin-top: 20px;
}

.tm-ct-grid-layout {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  flex-wrap: wrap;
}

.tm-ct-feature-panel {
  background-color: #f2f2f2;
  border-radius: 25px;
  padding: 50px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tm-ct-feature-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tm-ct-icon-disc {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    30deg,
    #de9f17 2%,
    #cf9a15 31%,
    #fff68a 68%,
    #ffcf45 96%
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 35px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(195, 30, 35, 0.3);
}

.tm-ct-panel-title {
  font-size: 20px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.tm-ct-highlight-text {
  color: #1b65af;
}

.tm-ct-content-body {
  margin-bottom: 20px;
  flex-grow: 1;
}

.tm-ct-content-body p {
  font-size: 18px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tm-ct-content-body h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2066ad;
  font-weight: 500;
  border-bottom: #e3e3e3 1px solid;
  padding-bottom: 10px;
}

.tm-ct-content-body ul {
  margin: 0;
  padding: 0;
}

.tm-ct-content-body ul li {
  position: relative;
  line-height: 1.8;
  padding-left: 20px;
  font-size: 16px;
  color: #606060;
  font-weight: 400;
}
.tm-ct-content-body ul li:before {
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #d09a27;
  border-radius: 33px;
}
.tm-ct-content-body ul li strong {
  font-weight: 500;
}

.tm-ct-action-trigger {
  background-color: #1b65af;
  border: none;
  padding: 12px 60px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-align: center;
}

.tm-ct-action-trigger:hover {
  transform: scale(1.05);
  color: #ffffff;
}

@media (min-width: 1200px) {
  .tm-ct-primary-headline {
    font-size: 36px;
  }

  .tm-ct-secondary-subheadline {
    font-size: 28px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .tm-ct-primary-headline {
    font-size: 36px;
  }

  .tm-ct-secondary-subheadline {
    font-size: 24px;
  }

  .tm-ct-feature-panel {
    padding: 45px 35px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .tm-ct-primary-headline {
    font-size: 30px;
  }

  .tm-ct-secondary-subheadline {
    font-size: 22px;
  }

  .tm-ct-grid-layout {
    gap: 25px;
  }

  .tm-ct-feature-panel {
    padding: 40px 30px;
  }

  .tm-ct-action-trigger {
    font-size: 18px;
    padding: 10px 50px;
  }
}

@media (max-width: 767px) {
  .tm-ct-main-wrapper {
    padding: 40px 0;
  }

  .tm-ct-header-group {
    padding: 0 5%;
  }

  .tm-ct-primary-headline {
    font-size: 24px;
  }

  .tm-ct-secondary-subheadline {
    font-size: 18px;
  }

  .tm-ct-intro-paragraph {
    font-size: 16px;
  }

  .tm-ct-grid-layout {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .tm-ct-feature-panel {
    width: 100%;
    max-width: 100%;
    padding: 35px 25px;
  }

  .tm-ct-panel-title {
    font-size: 18px;
  }

  .tm-ct-content-body p {
    font-size: 15px;
  }

  .tm-ct-action-trigger {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tm-ct-primary-headline {
    font-size: 20px;
  }

  .tm-ct-secondary-subheadline {
    font-size: 16px;
  }

  .tm-ct-icon-disc {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* --------------------------------trade social css start --------------------------------------------------   */

.master-rating-outer-shell {
  padding-bottom: 40px;
}
.rating-main-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000;
}
.filter-controls-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.left-filters-group {
  display: flex;
  gap: 25px;
  flex: 1;
}
.filter-row-top,
.filter-row-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}

.unique-dropdown-box,
.unique-input-box {
  position: relative;
  border: 1px solid #dce4ec;
  border-radius: 12px;
  padding: 12px 15px;
  min-width: 200px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.unique-input-box {
  cursor: default;
  display: flex;
  align-items: center;
}

.unique-input-box:hover,
.unique-input-box:focus-within {
  border-color: #1b65af;
  box-shadow: 0 0 0 1px #1b65af;
}

.investment-input-field {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
}

.dollar-sign {
  color: #94a3b8;
  margin-right: 10px;
}

.border-floating-label {
  position: absolute;
  top: -10px;
  left: 12px;
  background: #fff;
  padding: 0 5px;
  font-size: 13px;
  color: #94a3b8;
  z-index: 5;
}

.unique-dropdown-box[aria-expanded="true"] {
  border-color: #1b65af !important;
  box-shadow: 0 0 0 1px #1b65af;
}
.unique-dropdown-box[aria-expanded="true"] .border-floating-label {
  color: #1b65af;
}
.unique-dropdown-box[aria-expanded="true"] .fa-caret-down {
  transform: rotate(180deg);
  color: #1b65af;
}

.selection-display-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #475569;
  pointer-events: none;
}
.selection-display-area i {
  font-size: 12px;
  color: #94a3b8;
}

.custom-options-overlay {
  width: 100% !important;
  border-radius: 12px !important;
  border: 1px solid #eee !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

.single-option-item {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.single-option-item:hover {
  background-color: #f3f4ff;
  color: #000;
}

.right-actions-group {
  display: flex;
  gap: 15px;
  align-items: center;
}
.search-input-wrapper {
  border: 1px solid #dce4ec;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  width: 220px;
  transition: all 0.2s ease;
}
.search-input-wrapper:hover,
.search-input-wrapper:focus-within {
  border-color: #1b65af;
  box-shadow: 0 0 0 1px #1b65af;
}
.search-magnifier {
  color: #94a3b8;
  margin-right: 10px;
}
.nickname-input-field {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
}
.view-switch-buttons {
  display: flex;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.view-switch-buttons button {
  padding: 10px 15px;
  border: none;
  background: #fff;
  color: #64748b;
  border-right: 1px solid #eee;
  cursor: pointer;
  transition: all 0.2s ease;
}
.view-switch-buttons button:last-child {
  border-right: none;
}
.view-switch-buttons button.active {
  background: linear-gradient(30deg, #de9f17 2%, #cf9a15 31%, #fff68a 68%, #ffcf45 96%);
  color: #000000;
}
.view-switch-buttons button:hover:not(.active) {
  background: #f8f9fa;
}

.view-content {
  display: none;
}
.view-content.active {
  display: block;
}

.achiever-star-icon {
  color: #cf9a15 !important;
  margin-right: 5px;
}

.trial-checkbox-wrapper {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-green-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #22c55e;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  background: white;
  transition: all 0.2s ease;
}

.hidden-native-checkbox:checked + .custom-green-checkbox {
  background: #22c55e;
}

.hidden-native-checkbox:checked + .custom-green-checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .left-filters-group {
    gap: 20px;
  }
  .unique-dropdown-box,
  .unique-input-box {
    min-width: 180px;
  }
  .search-input-wrapper {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .master-rating-outer-shell {
    padding: 0 15px 30px;
  }
  .rating-main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .filter-controls-container {
    flex-direction: column;
    gap: 15px;
  }
  .left-filters-group {
    flex-direction: column;
    gap: 15px;
  }
  .filter-row-top,
  .filter-row-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .unique-dropdown-box,
  .unique-input-box {
    min-width: auto;
    width: 100%;
  }
  .right-actions-group {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
  .search-input-wrapper {
    width: 100%;
    flex: 1;
  }
  .view-switch-buttons {
    width: 100%;
  }
  .view-switch-buttons button {
    flex: 1;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .master-rating-outer-shell {
    padding: 0 10px 20px;
  }
  .rating-main-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  .filter-row-top,
  .filter-row-bottom {
    gap: 10px;
  }
  .unique-dropdown-box,
  .unique-input-box {
    padding: 10px 12px;
  }
  .right-actions-group {
    flex-direction: column;
    gap: 10px;
  }
  .view-switch-buttons button {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .master-rating-outer-shell {
    padding: 0 8px 15px;
  }
  .rating-main-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .unique-dropdown-box,
  .unique-input-box {
    padding: 8px 10px;
    font-size: 14px;
  }
  .border-floating-label {
    font-size: 12px;
  }
  .view-switch-buttons button {
    padding: 6px 8px;
    font-size: 13px;
  }
}

.trading-dashboard-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Enhanced Card Styling */
.trader-profile-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trader-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2765ad 0%, #d6d6d6 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.trader-profile-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  border-color: #c5c7c9;
}

.trader-profile-card:hover::before {
  transform: scaleX(1);
}

.trader-profile-card:hover .trader-main-img {
  transform: scale(1.15);
  border-color: #2765ad;
}

.trader-header-top {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.trader-avatar-wrap {
  position: relative;
  width: 45px;
  height: 45px;
  margin-right: 12px;
}

.trader-main-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
}

.trader-country-flag {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 16px;
  border-radius: 2px;
  border: 1px solid #fff;
}

.trader-username {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.trader-rank-expert {
  font-size: 16px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-icon {
  color: #f1c40f;
}

.trader-risk-pill {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: lowercase;
}

.risk-level-high {
  background-color: #ef4444;
  width: 60px;
  text-align: center;
}
.risk-level-med {
  background-color: #f59e0b;
  width: 60px;
  text-align: center;
}
.risk-level-low {
  background-color: #22c55e;
  width: 60px;
  text-align: center;
}

/* Enhanced Stats Grid */
.trader-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 6px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.stat-col:hover {
  transform: translateY(-2px);
}

.stat-label {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}

.text-green {
  color: #059669 !important;
}

/* Enhanced Footer */
.trader-profit-footer {
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
  margin-top: 15px;
  color: #1a202c;
  border: 1px solid #cbd5e1;
}

.footer-pnl-label {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-values-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.main-pnl-value {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
}

.secondary-pnl-value {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.trader-pnl-indicator-bar {
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: #eee;
}

.bar-red-end {
  background: linear-gradient(90deg, #22c55e 70%, #ef4444 70%);
}

.bar-green-full {
  background: #22c55e;
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .trading-dashboard-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .trading-dashboard-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .trading-dashboard-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Table Styling */
@media (max-width: 768px) {
  .col-profile {
    width: 200px;
  }
}
.table-scroll-wrapper {
  border-radius: 16px;
  padding: 2px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(222, 159, 23, 0.3);
  overflow-x: auto;
}

.trader-table {
  width: 100%;

  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.trader-table thead th {
  background: #2765ad;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 18px 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.trader-table thead th:first-child {
  border-top-left-radius: 14px;
}

.trader-table thead th:last-child {
  border-top-right-radius: 14px;
}

.trader-table thead th span {
  font-weight: 400;
  color: #b8d4ff;
  text-transform: none;
  font-size: 14px;
}

.trader-table tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  background: #ffffff;
  transition: all 0.3s ease;
  text-align: center;
}

.trader-table tbody tr:nth-child(odd) td {
  background: #fafbfc;
}

.trader-table tbody tr:hover td {
  background: #f3f2f2 !important;
  transform: scale(1.01);
}

.trader-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.trader-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

.trader-profile-identity {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px;
}

.trader-display-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e3f2fd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trader-unique-handle {
  font-weight: 600;
  font-size: 15px;
  color: #1a202c;
  margin-bottom: 2px;
}

.trader-name-badge-stack {
  display: flex;
  flex-direction: column;
}

.trader-status-expert {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.risk-pill-red,
.risk-pill-dark-red {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

.risk-pill-red {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.risk-pill-dark-red {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.positive-gain {
  color: #059669;
  font-weight: 700;
  font-size: 16px;
}

.neutral-gain {
  color: #0891b2;
  font-weight: 700;
  font-size: 16px;
}

.trader-pnl-visual {
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.pnl-number-group {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.pnl-bar-track {
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pnl-bar-green {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  height: 100%;
}

.pnl-bar-red {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  height: 100%;
}

.copier-with-trend {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.trend-up {
  color: #26a641;
  font-size: 12px;
  font-weight: 600;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
  padding-right: 20px;
}

@media (max-width: 1024px) {
  .table-scroll-wrapper {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .table-scroll-wrapper {
    padding: 0px;
  }
  .trader-table {
    min-width: 800px;
  }
}
/* ---------------------------------------------- faq css start --------------------------------------------------    */

.social-trade-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
  align-items: flex-start;
  justify-content: space-between;
}

.social-trade-underline {
  width: 60px;
  height: 4px;
  background: #e3b841;
  margin: 12px 0 20px;
  border-radius: 3px;
}

.social-trade-header-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b3e5c;
  margin-bottom: 15px;
}

.social-trade-header-title span {
  font-weight: 900;
  color: #1f6fa4;
}

.social-trade-header-subtitle {
  font-size: 16px;
  color: #6c7a8a;
  margin-top: 10px;
  line-height: 1.6;
}

.social-trade-right {
  flex: 1 1 55%;
  min-width: 320px;
}

.social-trade-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
  border-left: 5px solid transparent;
}

.social-trade-item.active {
  border-left-color: #e3b841;
}

.social-trade-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #2d003f;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  text-align: left;
}

.social-trade-question:hover {
  background-color: #fdf9e9;
}

.social-trade-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #888;
  top: 50%;
  transform: translateY(-50%);
}

.social-trade-item.active .social-trade-question::after {
  content: "-";
}

.social-trade-answer {
  max-height: 0;
  overflow: hidden;
  background: #fdf9e9;
  color: #333;
  font-size: 15px;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.social-trade-answer p {
  margin: 0;
  padding: 10px 0 16px;
  line-height: 1.6;
}

.social-trade-section {
  padding-bottom: 10px;
}

/* -----------------------------------------------terms condition css -------------------------------- */

.stc-wrapper {
  padding: 50px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.stc-header {
  text-align: start;
}

.stc-header h1 {
  font-size: 36px;
}

.stc-title {
  font-size: 42px;
  font-weight: 700;
  color: #1b3e5c;
  margin-bottom: 15px;
}

.stc-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.stc-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.stc-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.stc-item-number {
  font-size: 20px;
  font-weight: 500;
  color: #1f6fa4;
  margin-bottom: 9px;
}

.stc-item-text {
  font-size: 16px;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .stc-wrapper {
    padding: 50px 0;
  }

  .stc-container {
    padding: 0 15px;
  }

  .stc-title {
    font-size: 28px;
  }

  .stc-content {
    padding: 25px 20px;
  }

  .stc-item-number {
    font-size: 18px;
  }

  .stc-item-text {
    font-size: 15px;
  }

  .stc-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .stc-title {
    font-size: 24px;
  }

  .stc-content {
    padding: 20px 15px;
  }

  .stc-item-number {
    font-size: 16px;
  }

  .stc-item-text {
    font-size: 14px;
  }
}
/* Rating Tabs */
.rating-tabs-wrapper {
  margin-bottom: 30px;
}
.rating-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
}
.rating-tab-btn {
  padding: 15px 30px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.rating-tab-btn.active {
  color: #1b65af;
  border-bottom-color: #1b65af;
}
.rating-tab-btn:hover:not(.active) {
  color: #333;
}
.rating-tab-content {
  display: none;
}
.rating-tab-content.active {
  display: block;
}