:root {
  --green-shade: #2bcf70;
  --dark-blue: #082d3f;
  --light-green: #edfff6;
  --sub-head: #18181b;
  --para-text: #52525b;
}

.banner-section {
  padding: 80px 0;
  background: linear-gradient(
    165deg,
    #cffae5 0%,
    #fff 35%,
    #fff 65%,
    #cffae5 100%
  );
}

.highlight-text {
  color: var(--green-shade);
}

.banner-headline {
  font-weight: 600;
  color: #000;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.banner-subhead {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 1.6;
}

.banner-btn {
  transition: all 0.1s ease-in-out;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--green-shade);
}

.banner-fbtn,
.banner-sbtn:hover {
  background: var(--green-shade);
  color: #fff;
}

.banner-fbtn:hover,
.banner-sbtn {
  background: #fff;
  color: var(--dark-blue);
}

.stat-box {
  background: #22d37a1a;
  border-radius: 50px;
  padding: 12px;
}

.banner-image img {
  border-radius: 14px;
  max-width: 100%;
  box-shadow: 0 25px 50px -12px #00000040;
}

/* Quick Access Section */
.quick-access-section {
  padding: 60px 10px 70px;
}

.section-heading {
  color: var(--dark-blue);
  font-size: 40px;
  font-weight: 600;
}

.section-subhead {
  color: var(--sub-head);
  font-size: 18px;
}

.qas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}

.quick-access-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px #0000000d;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
    height: stretch;
}

.quick-access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #00000026;
}

.quick-access-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-shade);
  color: #fff;
  font-size: 22px;
}

.quick-access-icon.qa-icons {
  background: var(--dark-blue);
}

.quick-access-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.quick-access-copy {
  color: #303030;
  font-size: 14px;
}

/* Explore ETFs Section */
.explore-section {
  padding: 60px 10px 70px;
  background: #f8fbf9;
}

.explore-section .explore-content {
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  box-shadow: 0 1px 2px 0 #0000000d;
  background: #fff;
  padding: 30px;
}

.explore-section #exploreTabs {
  display: flex;
  gap: 0;
  background: #f3f7f5;
  width: fit-content;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 5px;
  border: none;
}

.explore-section .nav-link {
  padding: 5px 16px;
  color: #303030;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  border-radius: 0;
  border: none;
  width: 120px;
}

.explore-section .nav-link:hover {
  border: none;
  color: var(--green-shade);
}

.explore-section .nav-link.active {
  color: var(--green-shade);
  background: #fff;
  border: none;
  border-radius: 8px;
}

.explore-section .explore-toolbar {
  gap: 20px;
}

.explore-section .search-box {
  flex: 1;
  position: relative;
}

.explore-section .search-box input {
  width: 100%;
  padding: 10px 16px 10px 45px;
  border: 2px solid #e4e4e7;
  border-radius: 12px;
  font-size: 16px;
}

.explore-section .search-box input::placeholder {
  color: #999;
}

.explore-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #303030;
}

.explore-section .advanced-filters-btn {
  background: #fff;
  border: 2px solid #e4e4e7;
  color: var(--sub-head);
  cursor: pointer;
  padding: 6px 18px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
}

.explore-section .advanced-filters-btn:hover {
  background: var(--green-shade);
  color: #fff;
  border-color: var(--green-shade);
}

.etf-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.etf-table thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #e9f3ef;
  font-size: 0.95rem;
}

.etf-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid #e9f3ef;
  font-size: 0.95rem;
}

.etf-table tbody tr:hover {
  background: #f5fdf9;
}

.etf-name {
  font-weight: 600;
  color: #000;
}

.returns-positive {
  color: var(--green-shade);
  font-weight: 600;
}

.view-btn {
  background: none;
  border: none;
  color: var(--sub-head);
  cursor: pointer;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 8px;
}
.view-btn:hover {
  background: #ebfff5;
  color: var(--green-shade);
}

.open-screener-btn,
.investment-tools-btn,
.comparison-action-button {
  background: var(--green-shade);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-size: 16px;
  font-weight: 500;
}

.open-screener-btn:hover,
.investment-tools-btn:hover,
.comparison-action-button:hover {
  background: #24b863;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 207, 112, 0.2);
}

/* Investment Tools Section */
.investment-tools-section,
.testimonial-section,
.trusted-section {
  padding: 60px 10px 70px;
  background: var(--light-green);
}

.investment-tools-section .investment-tools-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
}

.investment-tool-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
  transition: transform 0.2s ease;
}

.investment-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px 4px #00000018;
}

.investment-tool-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #22d37a1a;
  color: var(--green-shade);
  margin-bottom: 20px;
  font-size: 22px;
}

.investment-tool-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--sub-head);
}

.investment-tool-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 26px;
  color: var(--para-text);
}

.investment-tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.investment-tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 50px;
  background: #ebfff5;
  color: var(--green-shade);
  font-size: 14px;
  font-weight: 500;
}

.investment-tools-button {
  margin-top: 20px;
  padding: 0px;
  background: #fff;
  color: var(--dark-blue);
  font-weight: 500;
  border: none;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.investment-tools-button:hover {
  color: var(--green-shade);
}

.investment-tools-button:hover i,
.info-calc-button:hover i {
  margin-left: 12px !important;
}

/* comparison section */
.comparison-section {
  padding: 60px 10px 70px;
  background: #fff;
}

.comparison-layout {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 24px 60px #0f172a14;
  border: 2px solid #e4e4e7;
}

.comparison-top-grid,
.comparison-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.comparison-placeholder-card {
  cursor: pointer;
  position: relative;
  min-height: 180px;
  border: 2px dashed #e4e4e7;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--sub-head);
  background: #fff;
  padding: 10px;
}

.comparison-placeholder-card .close-btn {
  position: absolute;
  right: 12px;
  top: 2px;
  font-size: 22px;
  cursor: pointer;
  color: var(--para-text);
}

.comparison-placeholder-card .close-btn:hover {
  color: var(--sub-head);
}

.comparison-placeholder-card .add-btn {
  border: none;
  background: var(--dark-blue);
  color: #fff;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
}

.comparison-placeholder-card .add-btn:hover {
  background: var(--green-shade);
}

.comparison-placeholder-card:hover {
  border-color: var(--green-shade);
}

.comparison-placeholder-card:hover .comparison-placeholder-icon {
  color: var(--green-shade);
}

.comparison-placeholder-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d6d78;
  font-size: 24px;
}

.comparison-placeholder-label {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.comparison-feature-card {
  background: var(--light-green);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid #e4e4e7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--sub-head);
}

.comparison-feature-text {
  color: var(--para-text);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 26px;
}

.comparison-feature-button {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: var(--sub-head);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.comparison-feature-button:hover {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

/* investment calculators section */
.calculators-section,
.download-section {
  padding: 60px 10px 70px;
  background: var(--dark-blue);
}

.calculators-section .section-heading,
.stats-by-numbers-section .section-heading,
.download-section .section-heading,
.cta-section .section-heading {
  color: #fff;
}

.calculators-section .section-subhead,
.stats-by-numbers-section .section-subhead,
.download-section .section-subhead,
.cta-section .section-subhead {
  color: #fff;
}

.calculators-grid,
.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sip-calculator-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.calc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  color: var(--green-shade);
  font-size: 22px;
}

.calc-card-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--sub-head);
}

.slider-group {
  margin-bottom: 28px;
}

.slider-label {
  font-weight: 500;
  font-size: 16px;
  color: var(--sub-head);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.slider-label-value {
  color: var(--para-text);
}

.slider-input {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: #22d37a30;
  -webkit-appearance: none;
  appearance: none;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-shade);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-shade);
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.results-box {
  background: #ebfff5;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0px 8px;
  font-size: 16px;
}

.result-row:last-child {
  border-top: 1px solid #e4e4e7;
  padding: 14px 0px 8px;
}

.result-label {
  color: var(--para-text);
  font-weight: 500;
}

.result-value {
  font-weight: 700;
  color: var(--sub-head);
}

.result-value.highlight {
  color: var(--green-shade);
  font-size: 20px;
}

.calc-button,
.insight-btn {
  background: var(--green-shade);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}

.calc-button:hover,
.insight-btn:hover {
  background: #24b863;
}

.right-calculators {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

.info-calculator-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.info-calc-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--sub-head);
}

.info-calc-text {
  color: var(--para-text);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px;
}

.info-calc-button {
  transition: color 0.2s ease;
  text-align: left;
  padding: 0px;
  background: #fff;
  color: var(--dark-blue);
  font-weight: 500;
  border: none;
  font-size: 16px;
}

.info-calc-button:hover {
  color: var(--green-shade);
}

/* Insights section */
.insights-section {
  padding: 60px 10px 70px;
  background: #f8fbf9;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.insight-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px 4px #0f172a0a;
  border: 2px solid #e4e4e7;
  padding: 30px;
}

.insight-card:hover {
  box-shadow: 0 20px 25px -5px #0000001a;
}

.insight-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.insight-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  color: var(--green-shade);
  font-size: 22px;
}

.insight-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--sub-head);
  margin-bottom: 5px;
}

.insight-subtitle {
  color: var(--para-text);
  font-size: 16px;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.heatmap-cell {
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-head);
  line-height: 20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 8px;
}

.heatmap-cell .small {
  font-size: 14px;
  font-weight: 400;
}

.heatmap-cell.positive {
  background: var(--green-shade);
}

.heatmap-cell.neutral {
  background: #f3f7f5;
}

.heatmap-cell.negative {
  background: #ef6e6e;
}

.insight-copy {
  color: var(--para-text);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.insight-pbtn {
  background: var(--dark-blue);
}

.insight-pbtn:hover {
  background: #021219;
}

.insight-panel {
  display: grid;
  gap: 24px;
}

.allocation-row {
  background: #edfff6;
  border-radius: 12px;
  padding: 12px 20px;
}

.allocation-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--sub-head);
  font-weight: 500;
  font-size: 14px;
}

.allocation-bar {
  height: 8px;
  border-radius: 20px;
  background: #ebfff5;
  overflow: hidden;
}

.allocation-fill {
  height: 100%;
  border-radius: 20px;
  background: var(--green-shade);
}

.allocation-fill.debt {
  background: var(--dark-blue);
}

.allocation-fill.gold {
  background: #86efac;
}

/* Why Choose Passive Investing Section */
.passive-investing-section,
.learn-section {
  padding: 60px 10px 70px;
  background: #fff;
}

.passive-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.passive-feature-card {
  text-align: center;
  padding: 25px 20px;
  transition: transform 0.3s ease;
}

.passive-feature-card:hover {
  transform: translateY(-8px);
}

.passive-feature-icon {
  width: 70px;
  height: 70px;
  background: #edfff6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  align-items: center;
}

.passive-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--sub-head);
  margin-bottom: 10px;
}

.passive-feature-text {
  font-size: 14px;
  color: var(--para-text);
  line-height: 24px;
  margin: 0;
}

.comparison-container {
  background: #ebfff5;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--sub-head);
  margin-bottom: 20px;
}

.comparison-text {
  font-size: 16px;
  color: var(--para-text);
  line-height: 26px;
  margin-bottom: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
}

.comparison-table th {
  background: #fff;
  font-weight: 500;
  color: var(--sub-head);
  font-size: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table td {
  font-size: 14px;
}

.comparison-criteria {
  font-weight: 400;
  color: var(--sub-head);
}

.passive-label {
  color: var(--green-shade);
  font-weight: 400;
}

.active-label {
  color: var(--para-text);
}

/* ETF Junction by the Numbers Section */
.stats-by-numbers-section,
.cta-section {
  padding: 60px 10px 70px;
  background: var(--green-shade);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.number-card {
  padding: 10px;
}

.number-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff38;
  font-size: 26px;
}

.number-card-value {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.number-card-label {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* Trusted Financial Institutions Section */
.trusted-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.trusted-logo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-head);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px #0000000d;
  font-size: 16px;
  line-height: 22px;
  min-height: 86px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.trusted-logo-card:hover {
  box-shadow: 0 10px 20px #00000026;
}

.trusted-featured-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--sub-head);
}

.flickity-enabled.is-draggable .flickity-viewport {
  overflow: hidden;
}

/* .mrq-slide-item1 {
  width: 200px!important;
} */

.mrq-slide-item1 img {
  width: 50% !important;
  height: 100px;
}

.mrq-slide-container1 .flickity-page-dots {
  display: none;
}

/* Investor Testimonial Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  text-align: left;
  border-radius: 12px;
  padding: 30px;
  border: 2px solid #e4e4e7;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.testimonial-stars {
  display: inline-flex;
  gap: 6px;
  color: var(--green-shade);
  margin-bottom: 22px;
}

.testimonial-text {
  color: var(--para-text);
  line-height: 26px;
  margin-bottom: 18px;
  font-size: 16px;
}

.testimonial-author {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  border-top: 1px solid #e4e4e7;
  padding-top: 15px;
  color: var(--sub-head);
}

.testimonial-role {
  color: var(--para-text);
  font-size: 14px;
  margin: 0;
}

/* Invest Anytime, Anywhere Section */
.download-buttons {
  display: flex;
  gap: 20px;
}

.app-btn {
  background: #fff;
  color: var(--dark-blue);
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 500;
  font-size: 16px;
}

.app-btn:hover {
  background: var(--green-shade);
  color: #fff;
}

.download-features {
  margin-top: 32px;
  display: grid;
  gap: 8px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.download-feature-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.download-illustration img {
  border-radius: 14px;
}

/* Global ETF Movement CTA Section */
.cta-section .section-subhead {
  font-size: 20px;
}

.cta-sec-btns {
  padding: 12px 26px;
  font-weight: 500;
  border-radius: 12px;
  font-size: 18px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.cta-sec-btns.si-btn,
.cta-sec-btns.sc-btn:hover {
  background: var(--dark-blue);
  color: #fff;
}

.cta-sec-btns.sc-btn,
.cta-sec-btns.si-btn:hover {
  background: #fff;
  color: var(--dark-blue);
}

.cta-sec-btns:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.cta-note {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.3px;
}

/* additional css */
.popup .modal-header {
  background-color: var(--dark-blue);
  padding: 30px !important;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 48px;
  text-align: center;
}

.or {
  font-size: 16px;
  line-height: 48px;
  /* font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.search-results {
  display: none;
  margin-top: 5px;
  max-height: 300px;
  overflow-y: scroll !important;
  padding: 10px;
}

.search-results li {
  padding: 8px 10px;
  font-size: 16px;
  color: var(--sub-head);
  border-bottom: 0.5px solid #d7d7d7;
  cursor: pointer;
}

.search-results li:hover {
  background-color: var(--dark-blue);
  color: #fff;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 700px;
  z-index: 999999;
  padding: 0;
  max-width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.cros_pop {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  right: 15px;
}

.overlay {
  background: #000000bf;
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 99999;
  top: 0;
  left: 0;
}

.form-control:focus {
  border: 0 !important;
}

.search-input {
  position: relative;
}

.search-input i {
  position: absolute;
  color: #002b41;
  left: 12px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.search-input input {
  border-radius: 10px;
  border: 1px solid #002b41;
  color: #002b41;
  width: 100%;
  font-size: 16px;
  padding: 12px 15px 12px 40px;
}

.field-input select {
  border-radius: 10px;
  border: 1px solid #002b41;
  color: #002b41;
  width: 100%;
  padding: 12px 35px 12px 15px;
}

.field-input {
  position: relative;
}

.red-200 {
  background-color: #fff1f2;
}

.red-300 {
  background-color: #ffe4e6;
}

.red-400 {
  background-color: #ffa5a5;
}

.red-500 {
  background-color: #ff7979;
}

.red-600 {
  background-color: #ff5353;
}

.red-700 {
  background-color: #fe5151;
}

.red-800 {
  background-color: #ff4545;
}

.green-200 {
  background-color: #f0fdf4;
}

.green-300 {
  background-color: #dcfce7;
}

.green-400 {
  background-color: #bbf7d0;
}

.green-500 {
  background-color: #86efac;
}

.green-600 {
  background-color: #4ade80;
}

.green-700 {
  background-color: #22c55e;
}

.green-800 {
  background-color: #16a34a;
}

.rg {
  border: 2px solid #e4e4e7;
}

/* additional css ends */

/* Responsive Design */
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .qas-grid,
  .trusted-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .passive-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .comparison-container {
    grid-template-columns: 1fr;
  }

  .cta-section .section-subhead {
    width: 100% !important;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .banner-image img {
    width: 65% !important;
  }

  .banner-headline {
    font-size: 40px;
    line-height: 1.2;
  }

  .number-card-value {
    font-size: 36px;
  }
}

@media (max-width: 769px) {
  .banner-section {
    padding: 60px 10px;
  }

  .banner-image img {
    width: 80% !important;
  }

  .banner-headline {
    font-size: 32px;
    line-height: 1.3;
  }

  .investment-tool-card {
    padding: 25px;
  }

  .calculators-grid,
  .download-content {
    grid-template-columns: 1fr;
  }

  .comparison-container {
    padding: 25px 25px 30px;
  }

  .number-card-value {
    font-size: 30px;
  }

  .trusted-logo-grid {
    gap: 20px;
  }

  .comparison-layout {
    padding: 30px;
  }

  .popup {
    width: 90%;
    min-height: 580px;
    height: 620px;
    overflow-y: scroll;
  }

  .popup .modal-header {
    padding: 20px 20px 25px !important;
  }
}

@media (max-width: 769px) and (min-width: 577px) {
  .quick-access-section,
  .explore-section,
  .investment-tools-section,
  .comparison-section,
  .calculators-section,
  .insights-section,
  .passive-investing-section,
  .stats-by-numbers-section,
  .trusted-section,
  .learn-section,
  .testimonial-section,
  .download-section,
  .cta-section {
    padding: 50px 10px 60px;
  }

  .section-heading {
    font-size: 32px;
  }

  .comparison-feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quick-access-section,
  .explore-section,
  .investment-tools-section,
  .comparison-section,
  .calculators-section,
  .insights-section,
  .passive-investing-section,
  .stats-by-numbers-section,
  .trusted-section,
  .learn-section,
  .testimonial-section,
  .download-section,
  .cta-section {
    padding: 40px 10px 50px;
  }

  .banner-subhead {
    font-size: 18px;
  }

  .banner-image img {
    width: 100% !important;
  }

  .section-heading {
    font-size: 28px;
  }

  .qas-grid,
  .comparison-top-grid,
  .comparison-feature-grid,
  .passive-features-grid,
  .trusted-logo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  #exploreTabsContent .tab-pane {
    overflow-x: scroll;
  }

  .investment-tools-grid {
    grid-template-columns: 1fr !important;
  }

  .quick-access-title {
    font-size: 18px;
  }

  .quick-access-copy,
  .passive-feature-text {
    font-size: 16px;
  }

  .numbers-grid,
  .heatmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-sec-btns {
    font-size: 16px;
    margin: 0 auto;
  }

  .cta-section .section-subhead {
    font-size: 18px;
  }

  .search-input input {
    padding: 10px 12px 10px 35px;
    font-size: 14px;
  }

  .field-input select {
    padding: 10px 30px 10px 12px;
    font-size: 14px;
  }

  .modal-title {
    line-height: 30px;
  }

  .cros_pop {
    right: 12px;
    top: 10px !important;
  }
}
