@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.hosted-documents-swiper{
    height: 100%;
}
.hosted-documents-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--dark-primary);
}

.wrapper {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  color: var(--content-light);
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

.dark-mode {
  --primary-green: #0BB781;
  --content-light: #888E91;
  --content-secondary: #4E5356;
  --white: #FFFFFF;
  --black: #000000;
  --dark-primary: #101010;
  --dark-secondary: #1B1B1B;
  --transition: all 0.5s ease-in-out;
  --f1: nasalizationregular;
}


/*:root {*/
/*  --primary-green: #0BB781;*/
/*  --content-light: #888E91;*/
/*  --content-secondary: #4E5356;*/
/*  --white: #FFFFFF;*/
/*  --black: #000000;*/
/*  --dark-primary: #101010;*/
/*  --dark-secondary: #1B1B1B;*/
/*  --transition: all 0.5s ease-in-out;*/
/*  --f1: nasalizationregular;*/
/*}*/


::selection {
  background: var(--c5);
}

.spacing {
  margin: 100px 0px;
}

.container-fluid {
  max-width: calc(1800px + var(--bs-gutter-x, 2rem)) !important;
  /* fallback = 2rem */
}

.container {
  max-width: calc(1400px + var(--bs-gutter-x, 2rem)) !important;
}

.web-title {
  margin-bottom: 100px;
}

.web-title h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.75vw, 3.25rem);
  color: var(--white);
  font-family: var(--f1);
}

.web-title p {
  margin-top: 16px;
}

.web-title h5 {
  color: var(--primary-green);
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.btn {
  font-weight: 400;
  font-size: 14px;
  border-radius: 16px;
  padding: 8px 24px;
  width: 298px;
  height: 50px;
  border: 1px solid var(--primary-green);
  transition: var(--transition);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary {
  color: var(--white);
}

.btn-outline-primary:hover {
  background: var(--primary-green);
  color: var(--dark-primary);
  border-color: var(--primary-green);
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  border-color: var(--primary-green);
  background: transparent;
  color: var(--white);
}

.btn-primary svg path {
  transition: var(--transition);
}

.btn-primary:hover svg path {
  fill: var(--primary-green);
}

.btn:disabled,
.btn.disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:disabled:hover,
.btn.disabled:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

/* Header Wrapper */
button.navbar-toggler {
  background-color: var(--primary-green);
  padding: 10px 18px;
}

button.navbar-toggler i {
  color: var(--white);
  font-size: 20px;
}

header.header {
  position: absolute;
  width: 100%;
  top: 50px;
  z-index: 999;
}

.navbar {
  background: #000000;
  border-radius: 16px;
  border: 1px solid var(--primary-green);
  padding: 0px 45px;
}

/* Navbar Brand (Logo) */
.navbar-brand {
  position: relative;
}

.navbar-brand img {
  height: 47px;
  width: auto;
}

/* Default hide both just in case */
.logo-white,
.logo-black {
  display: none;
}

/* When body has dark-mode → show white logo */
body.dark-mode .logo-white {
  display: inline-block;
}

body.dark-mode .logo-black {
  display: none;
}

/* Navbar Menu */
.navbar-nav {
  gap: 4px;
}

.navbar-nav li {
  transition: var(--transition);
}

.navbar-nav li a {
  color: var(--content-light);
  transition: var(--transition);
  position: relative;
  font-size: 18px;
  font-weight: 400;
  padding: 32px 20px;
  line-height: 1;
}

.navbar-nav li:hover a,
.navbar-nav .current-menu-item a {
  color: var(--primary-green);
  font-weight: 500;
}

.navbar-nav li:hover a::after,
.navbar-nav .current-menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-green);
}

/* Login Button */
.btn-signup a,
.btn-Login a {
  width: 100px;
  height: 46px;
  padding: 16px;
  font-weight: 500;
}

.btn-signup a {
  width: 112px;
  color: var(--dark-primary);
}

/* Theme Toggle Switch */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle .icon {
  width: 24px;
  height: 25px;
}

.theme-toggle input[type="checkbox"] {
  display: none;
}

.theme-toggle label {
  width: 60px;
  height: 30px;
  background: var(--content-light);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0;
}

.theme-toggle label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.theme-toggle input:checked+label {
  background: var(--primary-green);
}

.theme-toggle input:checked+label::after {
  left: 33px;
  background: #fff;
}


/* banner css start */

section.home-banner-sec {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  padding-top: 180px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

section.home-banner-sec::before {
  content: "";
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.65) 9.78%, rgba(16, 16, 16, 0.95) 70.91%, #101010 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  bottom: 0;
}

.home-banner-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
}


.home-banner-content .home-banner-title h1 {
  font-size: clamp(1.625rem, 1.175rem + 2.25vw, 3.875rem);
  color: var(--white);
  font-family: var(--f1);
}

.home-banner-content .home-banner-title h4 {
  font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-top: 8px;
}

.home-banner-content .home-banner-title h4 strong {
  color: var(--primary-green);
  font-weight: 600;
}

.home-banner-content p {
  font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
}

.home-banner-btn {
  margin-top: 20px;
}

.theme-toggle .icon.sun path {
  stroke: #4E5356;
}

.theme-toggle .icon.moon path {
  stroke: var(--primary-green);
}


.home-banner-image {
  max-width: 909px;
  /* desktop ke liye limit */
  width: 100%;
  /* responsive shrink */
  margin: 0 auto;
  position: relative;
}

.banner-laptop {
  width: 100%;
  /* laptop image bhi shrink ho */
  height: auto;
  display: block;
}

/* Slider ko laptop ki screen ke andar fit karne ke liye percentage use karo */
.swiper.bannerSwiper {
  position: absolute;
  top: 4.5%;
  left: 13%;
  width: 74%;
  height: 74%;
  overflow: hidden;
  /* Bahar na niklay */
  border-radius: 16px;
  /* Laptop screen ke corners ke sath */
}

.home-banner-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* image screen mein fill ho */
  border-radius: 16px;
}



/* End */

/* who it work css start */
.who-it-work-card-main {
  padding: 47px 32px;
  background-color: var(--dark-secondary);
  border-radius: 16px;
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
}

.who-it-work-card-main:hover {
  transform: translateY(-30px);
  transition: var(--transition);
}

.who-it-work-card-image {
  margin-bottom: 20px;
}

.who-it-work-card-image img {
  width: 62px;
  height: 62px;
}

.who-it-work-card-number {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--f1);
  color: var(--black);
}

.who-it-work-card-content h4 {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  color: var(--white);
  font-weight: 600;
}

.who-it-work-card-content p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 500;
  margin-top: 10px;
}

.who-it-work-btn {
  margin-top: 70px;
}

/* who it work css end */

.speed-section-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.speed-section-card {
  position: relative;
  cursor: pointer;
}

.speed-section-card-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 30px;
  padding-right: 50px;
  position: absolute;
  bottom: 0;
  width: 100%;
  gap: 20px;
}

.speed-section-card {
  position: relative;
}

.speed-section-card-image img {
  aspect-ratio: 892/728;
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.speed-section-card-content h4 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  color: var(--white);
  font-family: var(--f1);
  font-weight: 400;
  max-width: 100% !important;
}

.speed-section-card-content.long-content h4 {
  max-width: 100%;
}

.speed-section-card-content a {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--white);
  font-weight: 500;
}

.speed-section-card-content a svg,
.crypto-ready-card-btn a svg {
  transition: var(--transition);
}

.speed-section-card:hover .speed-section-card-content a svg,
.crypto-ready-card:hover .crypto-ready-card-btn a svg {
  transform: translateX(25px);
}

.trading-feature h3 button {
  font-size: clamp(1.5rem, 1.175rem + 1.625vw, 3.125rem);
  color: var(--content-light);
  font-family: var(--f1);
  background: transparent;
  padding: 0;
}

.trading-feature h3 button:after {
  content: unset;
}

.trading-feature .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.trading-feature .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.trading-feature-main .trading-feature:first-child h3 {
  color: var(--white) !important;
}

.trading-section-title.web-title {
  margin-bottom: 40px;
}

.trading-feature p {
  margin-top: 15px;
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
  max-width: 900px;
  margin-bottom: 10px;
}

.trading-feature p:last-child {
  margin-bottom: 0px;
}

.trading-feature {
  border: 0px;
  border-bottom: 1px solid var(--dark-secondary);
  margin-bottom: 20px;
  padding-bottom: 40px;
  background: transparent;
  border-radius: 0px;
}

.trading-feature-main .trading-feature:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}

.trading-video-only img,
.trading-video.lazy-video video,
.trading-video img {
  border-radius: 24px;
  border: 1px solid var(--primary-green);
}

.regulation-section-title p,
.about-sec-content p {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

section.regulation-section::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 9.31%, rgba(16, 16, 16, 0.62) 40.05%, rgba(16, 16, 16, 0.95) 67.86%, #101010 100%);
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
}

.regulation-section-title h2 {
  max-width: 800px;
  margin: 0 auto;
}

.regulation-section-title.web-title {
  margin-bottom: 50px;
}

.liquiditySwiper-row {
  margin-left: 40px;
}

.liquiditySwiper-card {
  position: relative;
}

.liquiditySwiper-card-image img {
  aspect-ratio: 733/433;
  border-radius: 16px;
}

.liquiditySwiper-card-content {
  padding: 55px 40px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.liquidity-section-title.web-title {
  margin-bottom: 50px;
}

.liquiditySwiper-card-content h4 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  color: var(--white);
  font-family: var(--f1);
  font-weight: 400;
  max-width: 519px;
}

.partners-section-title p,
.partnership-section-title p {
  font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
}

.partnership-section-title {
  margin-bottom: 50px;
}

.faq-section .accordion-item {
  background: transparent;
  border-radius: 16px !important;
  margin-bottom: 30px;
  border: none !important;
}

.faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-section .accordion-button {
  background: transparent;
  border: none !important;
  padding: 32px 20px;
  font-weight: 600;
  border-radius: 16px 16px 0px 0px !important;
  border: 0 !important;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: var(--content-secondary);
  font-weight: 500;
  gap: 400px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--dark-secondary);
  color: var(--primary-green);
  box-shadow: none;
  border-radius: 0;
  border: 0;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: none !important;
}

.faq-section .accordion-body {
  background: var(--dark-secondary);
  padding: 32px 20px;
  padding-top: 0px;
  border-radius: 0px 0px 16px 16px !important;
  color: var(--white);
}

.accordion-content {
  padding: 0px 420px;
}

.accordion-body p,
.accordion-body a,
.accordion-body ul li {
  margin-bottom: 15px;
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  color: var(--white);
}

.accordion-body p:last-child,
.accordion-body ul li:last-child {
  margin-bottom: 0;
}

.accordion-body a {
  color: var(--white);
  border-bottom: 1px solid var(--primary-green);
}

.accordion-body ul {
  padding-left: 20px;
}

.accordion-body ul li::marker {
  color: var(--primary-green);
}

.faq-section .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg width="21" height="22" viewBox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.791 4.69336V16.6934" stroke="%23A0A3BD" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.79102 10.6934H16.791" stroke="%23A0A3BD" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  transform: unset;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.5 3.5L3.5 16.5" stroke="%230BB781" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.5 3.5L16.5 16.5" stroke="%230BB781" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  transform: unset;
}

.crypto-ready-card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.crypto-ready-card {
  background: var(--dark-secondary);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
  height: 100%;
  justify-content: space-between;
  border: 2px solid var(--dark-secondary);
  transition: var(--transition);
}

.crypto-ready-card:hover {
  border-color: var(--primary-green);
}

.crypto-ready-card-title {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.crypto-ready-card-content p {
  font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.25rem);
}

.crypto-ready-card-btn a {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--white);
}


.footer-bg {
  padding: 60px;
  background-color: #1B1B1B80;
  border-radius: 16px;
  border: 1px solid var(--content-secondary);
}

.footer-logo-main {
  max-width: 450px;
}

.footer-logo-main p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: var(--white);
  margin-top: 30px;
}

.footer-links h6 {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  color: var(--white);
  font-weight: 600;
  margin-top: 10px;
}

.footer-links ul li a,
.footer-links ul li,
.footer-copy p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--white);
  font-weight: 400;
}

.footer-links ul {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-risk {
  margin: 50px 0px;
}

.footer-risk p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  margin-bottom: 20px;
}

.footer-risk p:last-child {
  margin-bottom: 0;
}

.footer-risk p strong {
  color: var(--white);
}

.footer-social a {
  font-size: 20px;
  color: var(--white);
}


.our-value-card .our-value-card-image img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.our-value-card {
  padding: 30px;
  border-radius: 16px;
  background-color: var(--dark-secondary);
  height: 100%;
}

.our-value-card-content h4 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  color: var(--white);
  margin: 15px 0px;
}

.our-value-card-content p {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--white);
}

.mb-50 {
  margin-bottom: 50px;
}

.home-banner-sec.inner-banner-sec {
  object-fit: cover;
  padding-bottom: 400px;
  padding-top: 180px;
  margin: 0px;
}

.partners-page .partners-section-title p {
  font-size: clamp(1.5rem, 1.15rem + 1.75vw, 3.25rem);
  color: var(--white);
  font-family: var(--f1);
}

.partners-page .partners-img {
  background-color: var(--dark-secondary);
  padding: 52px;
  border-radius: 15px;
}

.partners-page .partners-img img {
  width: auto;
  margin: 0 auto;
  max-width: 400px;
}

footer.footer {
  margin-bottom: 50px;
  z-index: 999;
}

.footer-bg-image {
  position: absolute;
  top: -300px;
  left: 0;
  z-index: -1;
}

.regulation-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.hosted_documents-title h2 strong {
  color: var(--primary-green);
}

.hosted-documents-card {
  padding: 40px 30px;
  background-color: var(--dark-secondary);
  border: 1px solid #4C4C4C;
  border-radius: 16px;
}

.hosted-documents-card-icon img {
  width: 60px;
}

.hosted-documents-card-title {
  margin-top: 24px;
  margin-bottom: 30px;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: var(--white);
  font-family: var(--f1);
}

.file-actions button,
.file-actions a {
  width: 50%;
  border: 1px solid var(--white);
  background-color: transparent;
  border-radius: 8px;
  color: var(--white);
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  transition: var(--transition);
}

.file-actions a {
  border-color: var(--primary-green);
  background-color: var(--primary-green);
}

.file-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.file-actions .view-btn:hover {
  border-color: var(--primary-green);
  background-color: var(--primary-green);
}

.file-actions .download-btn:hover {
  background-color: transparent;
  border-color: var(--white);
}

.legal-statament-sec .swiper-pagination {
  bottom: -50px !important;
}

.legal-statament-sec .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--content-light);
}

.legal-statament-sec .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-green);
}

.flah-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.home-banner-sec .container {
  position: relative;
  z-index: 999;
}

.partners-page {
  position: relative;
  z-index: 9999;
}

section.single-success-stories {
  padding: 200px 0px;
  background-color: #0C0C0C;
  position: relative;
  z-index: 1;
}

section.single-success-stories::before {
  position: absolute;
  content: "";
  background-color: #0000002e;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.single-success-stories-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Headings */
.single-success-stories-content h2 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--f1);
}

.single-success-stories-content h3 {
  font-size: clamp(1.1875rem, 1.025rem + 0.8125vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--f1);
}

.single-success-stories-content h4 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}

.single-success-stories-content h5 {
  font-size: clamp(1.0625rem, 0.975rem + 0.4375vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
  ;
}

.single-success-stories-content h6 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.single-success-stories-content a {
  color: var(--c1);
  font-weight: 500;
  border-bottom: 1px solid;
}

/* Paragraph */
.single-success-stories-content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Bold Text */
.single-success-stories-content strong {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: var(--c1);
}

/* Lists */
.single-success-stories-content ul {
  padding-left: 1.2em;
  margin-bottom: 20px;
  list-style: disc !important;
}

.single-success-stories-content ul li {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  color: var(--content-light);
}

.single-success-stories-content ul li::marker {
  color: var(--primary-green);
}

.features-tranding .container {
  max-width: calc(1500px + var(--bs-gutter-x, 2rem)) !important;
}


.features-tranding-main-inner {
  position: relative;
  display: flex;
}

.features-tranding-main-inner .features-tranding-card {
  position: relative;
  flex-grow: 1;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  height: 500px;
  border-right: 1px solid #363636;
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
  transition: var(--transition);
  cursor: pointer;
  filter: grayscale(1);
  overflow: hidden;
}

.features-tranding-main-inner .features-tranding-card:hover {
  filter: grayscale(0);
}

.features-tranding-main-inner .features-tranding-card:first-child {
  border-left: 1px solid #363636;
  border-radius: 10px 0px 0px 10px;
}

.features-tranding-main-inner .features-tranding-card:last-child {
  border-radius: 0px 10px 10px 0px;
}

.features-tranding-main-inner .features-tranding-card:hover {
  flex-grow: 1.7;
}

.features-tranding-main-inner .features-tranding-card .features-tranding-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 15px;
  transition: 0.15s ease-in-out;
  min-width: 380px;
  overflow: hidden;
}

.features-tranding-main-inner .features-tranding-card .features-tranding-content h5 {
  position: relative;
  font-size: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
  margin-bottom: 15px;
  color: var(--white);
  font-weight: 600;
}

.features-tranding-main-inner .features-tranding-card .features-tranding-content p {
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  color: var(--white);
  transition: 0.15s ease-in-out;
  opacity: 0;
  display: none;
}

.features-tranding-main-inner .features-tranding-card:hover .features-tranding-content p {
  opacity: 1;
  display: block;
}

.crypto-bg {
  position: absolute;
  bottom: -380px;
  z-index: -1;
}

.crypto-bg::before {
  content: "";
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.65) 9.78%, rgba(16, 16, 16, 0.95) 70.91%, #101010 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.why-matter-sec-list ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-matter-sec-list ul li {
  color: var(--white);
  font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.25rem);
}

.why-matter-sec-list ul li::marker {
  color: var(--primary-green);
}

.why-matter-sec-title p {
  font-size: clamp(0.875rem, 0.775rem + 0.5vw, 1.375rem);
}

/* Section Wrapper */

/* Contact Box */
.contact-box {
  padding: 30px;
  background-color: var(--dark-secondary);
  border-radius: 16px;
  position: relative;
}

/* Form Alert Messages */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--content-light);
}

.file-help-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--content-light);
  opacity: 0.7;
  font-style: italic;
}

/* Small Loader Styles */
.small-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.small-spinner {
  width: 35px;
  height: 35px;
  border: 2px solid var(--white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin: 0;
  font-size: 14px;
  color: var(--content-light);
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  background: var(--dark-secondary);
  border: 1px solid var(--primary-green);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 6px rgba(11, 183, 129, 0.4);
}

textarea {
  resize: none;
  min-height: 120px;
}

.contact-info h3 {
  font-size: clamp(1.25rem, 1.0625rem + 0.9375vw, 2.1875rem);
  margin-bottom: 50px;
  color: var(--white);
  font-weight: 600;
}

.contact-info {
  padding-left: 50px;
}

.contact-info-card-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-card h5 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
  color: var(--white);
  font-family: var(--f1);
  margin-bottom: 20px;
}

.contact-info-card a,
.contact-info-card p {
  font-size: clamp(0.9375rem, 0.85rem + 0.4375vw, 1.375rem);
  color: var(--content-light);
  transition: var(--transition);
}

.contact-info-card a:hover,
.contact-info-card p:hover {
  color: var(--primary-green);
}

.contact-info-card {
  border-bottom: 1px solid var(--primary-green);
  ;
  padding-bottom: 40px;
}

.contact-info-card:last-child {
  padding: 0px;
  border: 0px;
}

/* Email Template Styles */
.email-template * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.email-template body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.email-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
}

.email-header {
  background: linear-gradient(135deg, #0BB781 0%, #0A9B6B 100%);
  padding: 30px;
  text-align: center;
}

.email-header h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: 600;
}

.email-header p {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
}

.email-body {
  padding: 40px 30px;
}

.email-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 25px 30px;
  text-align: center;
}

.email-info-box {
  background: #f8f9fa;
  border-left: 4px solid #0BB781;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.email-info-row {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.email-info-label {
  font-weight: 600;
  color: #0BB781;
  min-width: 120px;
  margin-right: 15px;
}

.email-info-value {
  color: #333;
  flex: 1;
}

.email-message-box {
  background: #ffffff;
  border: 2px solid #e9ecef;
  padding: 25px;
  margin: 25px 0;
  border-radius: 8px;
}

.email-message-box h3 {
  color: #0BB781;
  margin-bottom: 15px;
  font-size: 18px;
}

.email-btn {
  display: inline-block;
  background: #0BB781;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  margin: 15px 0;
}

.email-btn:hover {
  background: #0A9B6B;
}

.email-quick-actions {
  background: #e8f5f0;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.email-next-steps {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: center;
}

.email-next-steps h3 {
  color: #0BB781;
  margin-bottom: 15px;
  font-size: 20px;
}

.email-next-steps-content {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.email-next-steps-content p {
  margin: 10px 0;
  color: #555;
}

.email-step-number {
  color: #0BB781;
  font-weight: bold;
}

@media (max-width: 600px) {
  .email-container {
    width: 100% !important;
  }

  .email-body {
    padding: 25px 20px;
  }

  .email-info-row {
    flex-direction: column;
  }

  .email-info-label {
    min-width: auto;
    margin-bottom: 5px;
  }
}