@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@200;300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#root {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

body {
  width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  font-family: "DM Sans", Helvetica, Arial, sans-serif !important;
}
*{
  line-height: 1.2 !important;
}
p{
  line-height: 1.5 !important;
}
.new-lending div.grid {
  height: auto !important;
}

.new-lending .logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}

.new-lending .logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}

.new-lending .logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}

.new-lending .card {
  padding: 2em;
}

.new-lending .read-the-docs {
  color: #888;
}

.new-lending .sticky {
  position: sticky !important;
  top: 0 !important;
}

.new-lending header.sticky {
  position: sticky !important;
  top: 0 !important;
}
.new-lending header{
  height: 80px !important;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.new-lending header.fixed{
  height: 65px !important;
}
.new-lending header.fixed button{
  font-size: 14px !important;
}
html {
  scroll-behavior: smooth !important;
}

.new-lending .gradient-primary {
  background: linear-gradient(134deg, #1551fe, #7093ff);
  overflow: hidden;
  position: relative;
}

.new-lending .gradient-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.new-lending .glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.new-lending .glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(21, 81, 254, 0.1);
  color: #000;
  font-size: 14px;
}

.new-lending .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  filter: blur(30px);
  animation: floating-shape 6s ease-in-out infinite;
}
.new-lending .contact .floating-shape{
  filter: blur(60px) !important;
}
@keyframes floating-shape {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.new-lending .text-gradient {
  background: linear-gradient(134deg, #1551fe, #7093ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-lending .card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.new-lending .shine-effect {
  position: relative;
  overflow: hidden;
}

.new-lending .shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}


/* Hover opacity for nav links */
.new-lending .hover-opacity {
  transition: opacity 0.3s ease;
}

.new-lending .hover-opacity:hover {
  opacity: 0.8;
}

/* Mobile menu hover background */
.new-lending .hover-bg-white-10:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Logo height helpers (Bootstrap doesn't have h-8, etc.) */
.new-lending .h-8 {
  height: 2rem;
}

.new-lending .h-10 {
  height: 2.5rem;
}

.new-lending .h-12 {
  height: 3rem;
}

.new-lending .h-md-10 {
  height: 2.5rem;
}

@media (min-width: 768px) {
  .new-lending .h-md-10 {
    height: 2.5rem;
  }

  .new-lending .h-md-12 {
    height: 3.3rem;
  }
}

.z-index-1050 {
  z-index: 1050 !important;
}

.bg-dark.bg-opacity-75 {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.border-white.border-opacity-25 {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Hero-specific button styles - reusing glass effect */
.new-lending .primary-btn {
  background: white;
  border: 1px solid white;
  transition: all 0.3s ease;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
}
.new-lending .primary-btn.btn-lg{
  height: 48px !important;
}
.new-lending .primary-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.new-lending .glass-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
}

.new-lending .hero .primary-btn, .new-lending .hero .glass-btn{
  font-size: 18px;
}

.new-lending .glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive display classes matching original */
.new-lending .display-1 {
  font-size: 5.5rem;
}

@media (min-width: 768px) {
  .new-lending .display-md-4 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1200px) {
  .new-lending .display-xl-1 {
    font-size: 72px;
  }
}

/* Larger lead text on big screens */
.new-lending .lead {
  font-size: 16px;
}
.new-lending .lead.lead-lg{
  font-size: 18px;
}
@media (min-width: 992px) {
  .new-lending .lead {
    font-size: 18px;
  }
  .new-lending .lead.lead-lg{
    font-size: 20px;
  }
}

/* Negative positioning helpers */
.new-lending .top-negative-20 {
  top: -5rem;
}

.new-lending .start-negative-20 {
  left: -5rem;
}

.new-lending .end-negative-10 {
  right: -2.5rem;
}

/* Size helpers for floating shapes */
.new-lending .w-75 {
  width: 18.75rem !important;
}

.new-lending .h-75 {
  height: 18.75rem !important;
}

.new-lending .w-96 {
  width: 24rem !important;
}

.new-lending .h-96 {
  height: 24rem !important;
}

.new-lending .w-50 {
  width: 12rem !important;
}

.new-lending .h-50 {
  height: 12rem !important;
}

.new-lending .w-64 {
  width: 16rem !important;
}

.new-lending .h-64 {
  height: 16rem !important;
}

.new-lending .w-40 {
  width: 10rem !important;
}

.new-lending .h-40 {
  height: 10rem !important;
}

.new-lending .w-48 {
  width: 12rem !important;
}

.new-lending .h-48 {
  height: 12rem !important;
}

@media (min-width: 768px) {
  .new-lending .w-md-96 {
    width: 24rem !important;
  }

  .new-lending .h-md-96 {
    height: 24rem !important;
  }

  .new-lending .w-md-64 {
    width: 16rem !important;
  }

  .new-lending .h-md-64 {
    height: 16rem !important;
  }

  .new-lending .w-md-48 {
    width: 12rem !important;
  }

  .new-lending .h-md-48 {
    height: 12rem !important;
  }
  .new-lending .py-md-8{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .new-lending .py-md-6{
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

.opacity-20 {
  opacity: 0.2 !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

/* Responsive display headings - matching original sizes */
.new-lending .display-lg-3 {
  font-size: 30px;
}
@media (min-width: 992px) {
  .new-lending .display-lg-3 {
    font-size: 48px;
  }
}
.bottom-20 {
    bottom: 5rem;
}
/* Subtle primary color for badge text/icon */
.new-lending .text-primary {
  color: #1551fe !important;
}
.new-lending .border-primary.border-opacity-25 {
  border-color: rgba(21, 81, 254, 0.25) !important;
}

/* Stronger shadow for premium look */
.new-lending .shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}
.new-lending .container-fluid{
  max-width: 1440px !important;
  margin: 0 auto !important;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.new-lending .bg-light {
  background-color: #f8fafc !important; /* matches bg-slate-50 */
}

.new-lending .tokenization-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.new-lending .tokenization-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive display tweaks */
@media (min-width: 768px) {
  .new-lending .display-md-5 {
    font-size: 2.5rem;
  }
}
.tokenization-card-icon,.governance-icon{
  background-color: rgb(255 255 255 / 0.1);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.new-lending .benefits-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 12px;
  border: 1px solid rgb(191 219 254);
}

.new-lending .benefits-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Small text for card description */
.new-lending .small {
  font-size: 0.875rem;
  line-height: 1.6;
}
.benefit-card-icon{
  background: linear-gradient(134deg, #1551fe, #7093ff);
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
/* Gradient text (black → purple) */
.new-lending .bidirectional-gradient-text {
  background: linear-gradient(to right, #000000, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glowing backdrop effects */
.new-lending .bidirectional-glow-left, .new-lending .bidirectional-glow-right {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background-image: linear-gradient(to bottom right, rgb(15 23 42 / 70%), #2563eb);
  opacity: 0.5;
  filter: blur(24px);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease;
}
.new-lending .bidirectional-glow-right{
  background-image: linear-gradient(to bottom right, #9333ea, rgb(15 23 42 / 70%)) !important;
}
.new-lending .bidirectional-glow-left-card,.new-lending .bidirectional-glow-right-card{
  border: 1px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.bidirectional-card:hover .bidirectional-glow-left,.bidirectional-card:hover .bidirectional-glow-right{
  transform: scale(1.05);
}
.bidirectional-card:hover .bidirectional-glow-left-card{
  border-color: rgba(15, 23, 42, 0.5) !important;
}
.bidirectional-card:hover .bidirectional-glow-right-card{
  border-color: rgb(168 85 247 / 0.5) !important;
}
.bidirectional-glow-left-card .icon-div, .bidirectional-glow-right-card .icon-div{
  background: linear-gradient(134deg, #1551fe, #7093ff);
  height: 56px;
  width: 56px;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.bidirectional-glow-left-card .info-div, .bidirectional-glow-right-card .info-div{
  background-color: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  gap: 12px;
  display: flex;
  align-items: center;
  padding: 12px;
  color: #334155;
}
.bidirectional-glow-right-card .icon-div{
  background: linear-gradient(134deg, #9333ea, #0f172a);
}
.bidirectional-glow-right-card .info-div{
  background-color: rgb(250 245 255);
  border: 1px solid rgb(233 213 255);
}
.bidirectional-glow-right-card .info-div i{
  color: #9333ea;
}
.gradiant-line{
  height: 4px;
  width: 25%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gradiant-line-animated-div{
  height: 100%;
  background-image: linear-gradient(to right, rgb(15, 23, 42), #a855f7, rgb(15, 23, 42));
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.governance-icon{
  background-color: rgb(255 255 255 / 0.2) !important;
  color: #fff !important;
  border-radius: 50%;
}
.governance-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.governance-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; /* matches .shadow-2xl */
}
.h-400 { height: 400px; }

.investment-card {
  transition: all 0.3s ease;
}
.investment-card-img {
  transition: transform 0.5s ease;
}
.investment-card:hover .investment-card-img {
  transform: scale(1.1);
}
@media (min-width: 991px) {
  .investment-card-explore {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
}
.investment-card:hover .investment-card-explore {
  opacity: 1;
}

.bg-gradient-to-t {
  background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.7), transparent);
}

.rounded-3xl {
  border-radius: 1.5rem;
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.bg-dark {
  background-color: #0f172a !important;
}
.investment-card-shadow{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, #0f172aad, rgb(15 23 42 / 36%), #00000000);
}
.unifiedArchitecture-card{
  border: 1px solid rgb(191 219 254);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.unifiedArchitecture-card i{
  color: #2563eb;
}
.unifiedArchitecture-card:hover{
  box-shadow: #bfdbfe95 0px 8px 32px 0px;
  transform: translateY(-0.25rem);
}
.gradient-text-blue-purple{
  background: linear-gradient(134deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.enterprise-card{
  background-color: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 12px;
  gap: 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  padding: 16px;
}
.enterprise-card-icon{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, #0f172a, #2563eb);
  flex-shrink: 0;
  color: #fff;
  font-size: 24px;
}
.enterprise-card:hover{
  background-color: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.2);
  transform: translateX(10px);
}
.enterprise-card p{
  font-size: 14px;
  color: #94a3b8;
}
.glass-card-stats,.contact-form .input-field {
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
}
.enterprice-img-div{
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.enterprice-rating-div{
  background: linear-gradient(to bottom right, #0f172a, #2563eb);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 16px;
  position: absolute;
  top: -2rem;
  right: -1rem;
  animation: jump 2s infinite ease-in-out;
}
@keyframes jump {
  50%{
    top: -1.5rem;
  }
}
@media (max-width:767px) {
  .enterprice-rating-div{
    right: 1rem;
  }
}
.enterprice-img-div .img-shadow{
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, #0f172a, rgb(15 23 42 / 0.5), transparent);
}
@media (max-width:575px) {
  .glass-card-stats .h3,.enterprice-rating-div .h3{
    font-size: 18px;
  }
   .glass-card-stats .small,.enterprice-rating-div .small{
    font-size: 12px;
  }
}
.contact-form .input-field{
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  border-radius: 10px !important;
}
.contact-form .input-field::placeholder{
  color: #d9d9da !important;
}
.contact-form .input-field:focus{
  border-color: #fff !important;
}
.contact-form button{
  width: fit-content !important;
}
.back-to-top{
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
  background-color: #0f172a !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  outline: none;
  border:none !important;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 9999 !important;
}
.back-to-top:hover{
  background-color: #0f172ae6 !important;
  transform: scale(1.1) !important;
}
.back-to-top.show{
  opacity: 1;
  transform: scale(1);
}
.hero-text-line{
  background-color: rgb(255 255 255 / 0.3);
  border-radius: 999px;
  height: 4px;
  left: 0;
  right: 0;
  bottom: -5px;
  position: absolute;
  transition: all 0.3s ease;
  /* transform: scaleX(0); */
  animation: line 1s infinite linear;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes line {
  0%{
    transform: scaleX(0) !important;
  }
  100%{
    transform: scaleX(1) !important;
  }
}
