/* hero css */

.wealth-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 70% 45%,
      rgba(0, 166, 255, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(255, 177, 64, 0.12),
      transparent 24%
    ),
    linear-gradient(90deg, #02070d 0%, #030b14 46%, #071322 100%);
  overflow: hidden;
}

.wealth-hero:before {
  content: "";
  position: absolute;
  left: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 90%);
  filter: blur(20px);
}

.wealth-hero .container {
  z-index: 2;
}

.wealth-hero-inner {
  min-height: calc(100svh - 50px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 140px 0px 90px 0px;
}

.wealth-hero-content {
  position: relative;
  z-index: 3;
  max-width: 510px;
}

/* .wealth-hero-content h1 {
  margin: 0;
  color: #ffffff;
} */

.wealth-hero-content h1 span {
  display: inline-block;
  overflow: hidden;
}

.wealth-hero-content p {
  max-width: 610px;
  margin: 34px 0 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
}

.wealth-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wealth-hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.wealth-hero-rocket {
  max-height: 100svh;
  margin-left: -300px;
  position: relative;
  margin-right: -150px;
  margin-top: -200px;
  margin-bottom: -100px;
}

/* Tablet */
@media (max-width: 991px) {
  .wealth-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .wealth-hero .container {
    width: min(100% - 40px, 1280px);
  }

  .wealth-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .wealth-hero-content {
    max-width: 100%;
  }

  .wealth-hero-visual {
    min-height: 420px;
    justify-content: center;
  }

  .wealth-hero-rocket {
    width: min(560px, 100%);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .wealth-hero {
    padding: 100px 0 55px;
  }

  .wealth-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .wealth-hero-content p {
    margin: 24px 0 30px;
    font-size: 13px;
    line-height: 1.75;
  }

  .wealth-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wealth-hero-visual {
    min-height: 320px;
  }

  .wealth-hero-rocket {
    width: 115%;
    max-width: none;
  }

  .wealth-hero-glow {
    width: 280px;
    height: 280px;
    right: 12%;
    bottom: 8%;
  }
}

/* hero css end */

/* market ticker */
.market-ticker-strip {
  width: 100%;
  background: #050b13;
  overflow: hidden;
  border-top: 1px solid rgba(0, 153, 220, 0.35);
  border-bottom: 1px solid rgba(0, 153, 220, 0.18);
}

.market-ticker-wrap {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(5, 11, 19, 0.92);
}

.market-live {
  height: 100%;
  min-width: 72px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.market-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-color);
  box-shadow: 0 0 10px rgba(0, 226, 138, 0.9);
  animation: livePulse 1.3s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}

.market-ticker-viewport {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.market-ticker-track {
  height: 100%;
  display: flex;
  width: max-content;
  will-change: transform;
}

.market-ticker-group {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.market-ticker-item {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.market-symbol {
  color: var(--text-color);
  font-weight: 700;
}

.market-price {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.market-change {
  font-weight: 700;
}

.market-change.positive {
  color: var(--green-color);
}

.market-change.negative {
  color: var(--red-color);
}

/* Optional fade edges */
.market-ticker-viewport::before,
.market-ticker-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.market-ticker-viewport::before {
  left: 0;
  background: linear-gradient(to right, #050b13, transparent);
}

.market-ticker-viewport::after {
  right: 0;
  background: linear-gradient(to left, #050b13, transparent);
}

/* Responsive */
@media (max-width: 767px) {
  .market-ticker-wrap {
    height: 36px;
  }

  .market-live {
    min-width: 62px;
    padding: 0 12px;
    font-size: 10px;
  }

  .market-ticker-item {
    padding: 0 16px;
    gap: 7px;
    font-size: 11px;
  }

  .market-ticker-viewport::before,
  .market-ticker-viewport::after {
    width: 28px;
  }
}
/* market ticker end */

/* banner */

.banner-section {
  background: transparent;
  padding: 70px 0;
  overflow: hidden;
}
section.banner-section {
  position: relative;
}

section.banner-section:after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 90%);
  filter: blur(20px);
  z-index: -1;
}

.banner-card {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%), var(--banner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius-small);
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;

  padding: 130px 70px 120px 70px;
}

.banner-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.banner-content p {
  margin: 20px 0 40px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}

.banner-btn span {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.banner-btn:hover {
  border-color: #009fe3;
  background: rgba(0, 159, 227, 0.12);
  color: #ffffff;
}

.banner-btn:hover span {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .banner-section {
    padding: 55px 0;
  }

  .banner-card {
    min-height: 310px;
  }

  .banner-content {
    padding: 50px;
    max-width: 440px;
  }
}

@media (max-width: 575px) {
  .banner-section {
    padding: 40px 0;
  }

  .banner-section .container {
    width: min(100% - 28px, 1180px);
  }

  .banner-card {
    min-height: 430px;
    align-items: flex-end;
    background-position: center right;
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 11, 20, 0.15) 0%,
        rgba(2, 11, 20, 0.78) 48%,
        rgba(2, 11, 20, 0.98) 100%
      ),
      var(--banner-bg);
  }

  .banner-content {
    padding: 34px 24px;
    max-width: 100%;
  }

  .banner-content h2 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 12.5px;
    line-height: 1.7;
    margin: 15px 0 22px;
  }

  .banner-btn {
    min-height: 36px;
    padding: 0 16px;
    font-size: 10px;
  }
}

/* banner end */

/* insigts */

.insights-section {
  position: relative;
  padding: 150px 0px;
}

.insights-section:before {
  content: url("/assets/images/bg-diagram-2.png");
  position: absolute;
  top: -100px;
  right: 0px;
  z-index: -1;
}

.insights-section h2 {
  max-width: 552px;
  margin-bottom: 50px;
}

#insightsGrid img {
  width: 100%;
}
/* insigts end */

/* expertise */

.expertise-section {
  position: relative;
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(0, 125, 255, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(0, 120, 255, 0.08),
      transparent 28%
    ),
    transparent;
  padding: 150px 0;
  overflow: hidden;
}

.expertise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent 50%),
    radial-gradient(circle at 30% 60%, rgba(0, 153, 220, 0.08), transparent 35%);
  pointer-events: none;
}

.expertise-section .container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.expertise-inner {
  display: flex;
  justify-content: space-between;
  gap: 110px;
  align-items: start;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 95px;
  row-gap: 85px;
}

.expertise-card {
  max-width: 310px;
}

.expertise-icon {
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 34px;
  background: rgba(0, 159, 227, 0.04);
  box-shadow: 0 0 28px rgba(0, 159, 227, 0.08);
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #6e5cff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-card h3 {
  margin: 0 0 18px;
}

.expertise-card p {
  margin: 0;
  color: var(--text-light-color);
  font-size: 14px;
  line-height: 1.75;
}

.expertise-content {
  max-width: 660px;
}

.expertise-content h2 {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -1.2px;
}

.expertise-content p {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--text-light-color);
  font-size: 15px;
  line-height: 1.85;
}

.expertise-btn {
  margin-top: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .expertise-section {
    padding: 90px 0;
  }

  .expertise-section .container {
    width: min(100% - 40px, 1280px);
  }

  .expertise-inner {
    flex-direction: column;
    gap: 70px;
  }

  .expertise-content {
    order: -1;
  }

  .expertise-grid {
    column-gap: 55px;
    row-gap: 55px;
  }

  .expertise-card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .expertise-section {
    padding: 70px 0;
  }

  .expertise-section .container {
    width: min(100% - 28px, 1280px);
  }

  .expertise-inner {
    gap: 55px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .expertise-icon {
    margin-bottom: 22px;
  }

  .expertise-card h3 {
    font-size: 18px;
  }

  .expertise-card p,
  .expertise-content p {
    font-size: 13px;
  }

  .expertise-content h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .expertise-btn {
    width: 100%;
  }
}

/* expertise end */

/* research */

.research-carousel-section:before {
  content: url("/assets/images/bg-diagram.png");
  position: absolute;
  top: -250px;
  left: 0px;
  z-index: -1;
}

.research-carousel-section {
  position: relative;
  padding: 150px 0px;
}

.research-carousel-header {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-carousel-header h2 {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.research-carousel-prev,
.research-carousel-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 159, 227, 0.55);
  background: rgba(0, 159, 227, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.research-carousel-prev:hover,
.research-carousel-next:hover {
  background: #009fe3;
  border-color: #009fe3;
  transform: translateY(-2px);
}

.research-carousel-swiper {
  overflow: hidden;
}

.research-card {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.research-card:hover {
  border-color: rgba(0, 159, 227, 0.5);
  box-shadow: 0 24px 55px rgba(0, 159, 227, 0.12);
}

.research-card:hover .research-card-img img {
  transform: scale(1.1);
}

.research-card-img {
  overflow: hidden;
  background: #061522;
  transition: 0.3s;
  border-radius: 10px;
}

.research-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.research-card:hover .research-card-img img {
  transform: scale(1.06);
}

.research-card-body {
  padding: 20px;
}

.research-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 159, 227, 0.65);
  color: #009fe3;
  font-size: 12px;
  line-height: 1;
}

.research-tag.yellow {
  border-color: rgba(255, 194, 64, 0.7);
  color: #ffc240;
}

.research-tag.green {
  border-color: rgba(0, 210, 143, 0.7);
  color: #00d28f;
}

.research-meta {
  margin: 18px 0 14px;
  color: var(--text-dark-color);
  font-weight: 600;
  font-family: gotham;
  font-size: 14px;
  line-height: 1.5;
}

.research-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-family: "Montserrat";
  line-height: 1.6;
  font-weight: 400;
}

.research-carousel-pagination {
  display: none;
  margin-top: 28px;
  text-align: center;
}

.research-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.research-carousel-pagination .swiper-pagination-bullet-active {
  background: #009fe3;
}

/* .swiper.research-carousel-swiper {
    position: relative !IMPORTANT;
    overflow: visible !IMPORTANT;
} */

.carousel-main-container {
  position: relative;
}

button.research-carousel-prev {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 100;
  left: -25px;
}

button.research-carousel-next {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 100;
  right: -25px;
}

.swipper-wrapper {
  overflow: hidden !important;
}

/* Tablet */
@media (max-width: 991px) {
  .research-carousel-section {
    padding: 80px 0;
  }

  .research-carousel-header {
    justify-content: space-between;
  }

  .research-carousel-header h2 {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .research-carousel-section {
    padding: 65px 0;
  }

  .research-carousel-header {
    justify-content: center;
    margin-bottom: 32px;
  }

  .research-carousel-header h2 {
    text-align: center;
    font-size: 30px;
  }

  .research-carousel-pagination {
    display: block;
  }

  .research-card-img {
    height: 230px;
  }
}

/* research end */
