    @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Raleway', sans-serif;
      background: rgb(21, 23, 29);
      color: #fff;
      overflow-x: hidden;
      /* Prevents horizontal scrolling issues */
      line-height: 1.5;
    }

    /* background animation starts from here  */
    .grid-background {
      z-index: -1;
      position: relative;
      /* top: 0;
        left: 0; */
      width: 100%;
      /* extra size for smooth scrolling */
      height: 200%;
      background-image:
        linear-gradient(rgba(45, 62, 62, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 62, 62, 0.15) 1px, transparent 1px);
      background-size: 25px 25px;
      /* size of each square */
    }

    /* background animation ends from here  */
    /* navigation starts here  */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: rgba(13, 13, 18, 0.95);
      /* dark translucent */
      color: white;
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-cont {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    .brand-logo {
      width: 40px;
      height: 43px;
    }

    .brand {
      display: flex;
      align-items: center;
    }

    .brand-name {
      color: #fff;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 75px;
    }

    .nav-links a:hover {
      color: #06b6d4;
      /* cyan highlight on hover */
      transition: 1s;
    }

    .btn-outline:hover {
      background-color: #06b6d4;
      /* cyan highlight on hover */
      transition: 1s;
    }

    .menu-toggle:hover {
      color: #06b6d4;
      /* cyan highlight on hover */
      transition: 1s;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
    }

    .btn-outline {
      background: none;
      color: white;
      border: 1px solid white;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 10px;
    }

    /* Hamburger menu - hidden on desktop */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Nabar 2 */
    .nav-2 {
      margin-top: 8px;
      padding: 12px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color: rgb(41, 44, 53);
      position: sticky;
      top: 60px;
      z-index: 1000;

    }

    .nav-2-links a {
      color: #06b6d4;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .nav-links {
        display: flex;
        gap: 20px;
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* below the navbar */
        left: 0;
        width: 100%;
        background-color: rgba(13, 13, 18, 0.95);
        /* dark translucent */
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
      }

      /* navbar 2 mobile  */
      .nav-2 {
        display: none;
      }

      .nav-links.show {
        max-height: 500px;
        /* adjust for number of links */
      }

      .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #555;
      }

      .btn-outline {
        display: none;
        /* hide register button on mobile */
      }

      .menu-toggle {
        display: block;
      }
    }

    /* navigation ends here  */
    /* Section 2 starts here  */
    @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&display=swap');

    :root {
      --bg: #0b0d13;
      --text: #e5e7eb;
      --muted: #b7bec9;
      --accent: #2ed0ff;
      --card: #1b1f28;
      --pink: #ff3db8;
      --purple: #b74fff;
    }

    .wrap {
      max-width: 1120px;
      margin: 30px auto;
      padding: 32px 20px 64px;
      position: relative;
      text-align: center;
      z-index: 0;
    }

    /* Accent lines & dot */
    .accent-line {
      position: absolute;
      height: 4px;
      border-radius: 2px;
      animation: pulse 0.5s infinite ease-in-out;
    }

    .accent-line.a {
      width: 42px;
      top: 14px;
      left: 14px;
      background: var(--pink);
    }

    .accent-line.b {
      width: 72px;
      top: 34px;
      left: 0;
      background: var(--purple);
    }

    .accent-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
      top: 86px;
      left: 20px;
      animation: blink 1.8s infinite ease-in-out;
    }

    .accent-line,
    .accent-dot {
      position: absolute;
      left: 0;
      /* default */
    }

    .accent-line.right,
    .accent-dot.right {
      left: auto;
      right: 0;
      /* push to right */
    }

    /* Bottom accent (narrow + fading ends) */
    .accent-bottom {
      position: relative;
      left: 50%;
      bottom: 1px;
      width: 860px;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--pink), transparent);
      transform: translateX(-50%);
      animation: fadeSlide 4s infinite ease-in-out;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scaleX(1);
        opacity: .7;
      }

      50% {
        transform: scaleX(1.2);
        opacity: 1;
      }
    }

    @keyframes blink {

      0%,
      100% {
        opacity: .4;
        transform: scale(.9);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    @keyframes fadeSlide {

      0%,
      100% {
        opacity: .4;
        transform: translateX(-50%) scaleX(.7);
      }

      50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
      }
    }

    /* Headings */
    .title {
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0;
      font-variant-numeric: lining-nums proportional-nums;
      margin: 6px 0 16px;
      white-space: nowrap;
    }

    .title .strong {
      font-weight: 900;
      color: var(--accent);
    }

    .title .light {
      font-weight: 400;
      color: var(--text);
    }

    .lead {
      text-align: justify;
      max-width: 860px;
      margin: 0 auto 32px;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    .row-cards {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 30px 0 44px;
      position: relative;
      z-index: 1;
    }

    /* Shared card styles + hover animation */
    .card {
      margin: 20px 10px;
      border-radius: 16px;
      height: 260px;
      /* Fixed height for all cards */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 18px 40px rgba(140, 61, 255, 0.4);
    }

    /* Image Card */
    .card-img {
      width: 508px;
      background: url(media/Group\ \(2\).png) center/cover no-repeat;
      padding: 80px 30px;
      color: #fff;
      font-weight: 800;
      font-size: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Form Card */
    .card-form {
      width: 380px;
      background: var(--card);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    .field {
      border: 0;
      outline: 0;
      background: #0e1016;
      color: #fff;
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 14px;
    }

    /* Gradient button */
    .btn {
      border: 0;
      outline: 0;
      cursor: pointer;
      border-radius: 10px;
      padding: 12px 16px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(270deg, #1f68ff, #8c3dff, #1f68ff);
      background-size: 200% 200%;
      animation: shimmer 5s ease infinite;
      transition: transform .06s ease, opacity .2s ease;
    }

    .btn:active {
      transform: scale(.97);
    }

    .btn:hover {
      opacity: .95;
    }

    @keyframes shimmer {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* section 2 */
    .latest {
      margin-top: 8px;
    }

    .latest p {
      text-align: justify;
      max-width: 860px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    /* Responsive */
    @media (max-width: 860px) {
      .title {
        font-size: clamp(30px, 8vw, 56px);
        line-height: 1.0;
      }

      .card-img {
        padding: 44px 24px;
        font-size: 28px;
      }
    }

    /* section 2 ends here  */
    /* last section starts here  */
    :root {
      --bg: #0b0c11;
      --grid: #1a1b22;
      --text: #ffffff;
      --muted: #a0a6b3;
      --input-bg: #0f1014;
      --border: #2a2d36;
      --accent1: #004dff;
      --accent2: #007bff;
    }

    body {
      font-family: "Raleway", sans-serif;
      color: var(--text);
    }

    .request-section {
      position: relative;
      padding: 50px 20px 60px;
      overflow: hidden;
    }

    /* grid background */
    .request-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    /* polygon bg */
    .request-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 450px;
      height: 350px;
      background: url("polygon-bg.png") no-repeat bottom right / contain;
      z-index: -1;
    }

    .request-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: flex-start;
    }

    /* Left Side */
    .left h2 {
      font-size: 56px;
      font-weight: 900;
      line-height: 56px;
      margin-bottom: 20px;
    }

    .left p {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .info {
      font-size: 15px;
      line-height: 1.6;
    }

    .info div {
      margin-bottom: 8px;
    }

    .socials {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .socials a {
      color: #ffffff00;
      display: inline-flex;
    }

    .socials a svg {
      width: 24px;
      height: 24px;
    }

    .instagram-button svg {
      width: 50px;
      /* Width of the icon */
      height: 50px;
      /* Height of the icon */
      fill: #E1306C;
      /* Instagram pink color */
      transition: transform 0.3s, fill 0.1s;
    }

    .instagram-button:hover svg {
      transform: scale(1.2);
      /* Slightly enlarge on hover */
      fill: #C13584;
      /* Darker Instagram pink on hover */
    }

    .instagram-button {
      display: inline-block;
      text-decoration: none;
      /* Remove underline */
    }


    /* Form */
    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeUp 1s ease both;
    }

    .row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    input,
    input[type="text"] textarea {
      /* width: 100%; */
      background: #0b0c11;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border .3s ease;

    }

    input:focus,
    textarea:focus {
      border-color: var(--accent2);
    }

    textarea {
      resize: none;
    }

    .btn {
      width: 150px;
      padding: 14px;
      border-radius: 40px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: #fff;
      transition: all .3s ease;
    }

    .btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Disclaimer */
    .disclaimer {
      text-align: justify;
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .left {
      animation: fadeUp 1s ease both;
    }

    /* Responsive */
    @media(max-width: 1024px) {
      .request-inner {
        grid-template-columns: 1fr;
      }

      .left h2 {
        font-size: 42px;
        line-height: 48px;
      }
    }

    @media(max-width: 600px) {
      .row {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .left h2 {
        font-size: 34px;
      }
    }

    /* last section starts here  */
    :root {
      --bg: #0b0c11;
      --grid: #1a1b22;
      --text: #ffffff;
      --muted: #a0a6b3;
      --input-bg: #0f1014;
      --border: #2a2d36;
      --accent1: #004dff;
      --accent2: #007bff;
    }

    body {
      font-family: "Raleway", sans-serif;
      background: var(--bg);
      color: var(--text);
    }


    /* grid background */
    .request-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    /* polygon bg */
    .request-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 450px;
      height: 350px;
      background: url("polygon-bg.png") no-repeat bottom right / contain;
      z-index: -1;
    }

    .request-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: flex-start;
    }

    /* Left Side */
    .left h2 {
      font-size: 56px;
      font-weight: 900;
      line-height: 56px;
      margin-bottom: 20px;
    }

    .left p {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .info {
      font-size: 15px;
      line-height: 1.6;
    }

    .info div {
      margin-bottom: 8px;
    }

    .socials {
      display: flex;
      gap: 18px;
      margin-top: 28px;
      margin-bottom: 28px;
    }

    .socials a svg {
      width: 24px;
      height: 24px;
      fill: #fff;
      transition: all 0.3s ease;
    }

    .socials a:hover svg {
      fill: var(--accent2);
      transform: scale(1.4);
    }

    /* Form */
    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeUp 1s ease both;
    }

    .row {
      display: flex;
      gap: 18px;
      margin: 0px 0px;
    }

    input,
    textarea {
      width: 100%;
      background: #000000 !important;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border .3s ease;
    }

    input:focus,
    textarea:focus {
      border-color: var(--accent2);
    }

    textarea {
      resize: none;
    }

    .btn-submit {
      width: 150px;
      padding: 14px;
      border-radius: 40px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: #fff;
      transition: all .3s ease;
    }

    .btn-submit:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Disclaimer */
    .disclaimer {
      margin-top: 60px;
      margin-bottom: 40px;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .left {
      animation: fadeUp 1s ease both;
    }

    /* Responsive */
    @media(max-width: 1024px) {
      .request-inner {
        grid-template-columns: 1fr;
      }

      .left h2 {
        font-size: 42px;
        line-height: 48px;
      }
    }

    @media(max-width: 600px) {
      .row {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .left h2 {
        font-size: 34px;
      }
    }

    .input-color {
      background: #0b0c11 !important;
    }

    /* corner image starts here */


    /* Corner image as background box in the bottom-right */
    .request-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 700px;
      height: 220px;
      background-image: url("media/Group\ 5.png");
      background-repeat: no-repeat;
      background-position: bottom right;
      background-size: contain;
      pointer-events: none;
      z-index: 0;
    }

    /* keep your content above the image */
    .request-inner {
      position: relative;
      z-index: 1;
    }



    @media (max-width: 768px) {
      .request-section::after {
        z-index: -1;
      }
    }


    /* grid background starts here */
    /* Full-page grid background */
    body {
      margin: 0;
      padding: 0;
      background-color: #0a0a0a;
      /* dark base */
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: driftGrid 60s ease-in-out infinite;
      color: #fff;
    }

    /* Floating / drifting animation */
    @keyframes driftGrid {
      0% {
        background-position: 0 0, 0 0;
      }

      50% {
        background-position: 20px 40px, 40px 20px;
      }

      100% {
        background-position: 0 0, 0 0;
      }
    }

    /* grid background ends  here */
    /* Hero section css starts here  */
    .hero {
      /* margin-top: 120px; */
      display: flex;
      align-items: center;
      justify-content: center;
      height: 500px;
      width: 100vw;
      padding: 20px;
      padding-bottom: 70px;
      padding: 80px 130px 60px;
    }

    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      /* text-align: center; */
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 5px;
      font-weight: bolder;
    }

    .hero-content p {
      max-width: 500px;
      margin-bottom: 20px;
      color: #ddd;
      text-align: justify;
    }

    .buttons {
      display: flex;
      gap: 20px;
    }

    .buttons button {
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .buttons .buy {
      background: #2d7ef7;
      color: white;
    }

    .buttons .sell {
      background: #21bbc9;
      color: white;
    }

    .buttons .auction {
      background: none;
      color: white;
      border: 1px solid #fff;
      padding: 8px 20px;
    }

    .buttons button:hover {
      opacity: 0.8;
      transform: scale(1.05);
    }

    /* Right Column */
    .hero-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-image img {
      width: 100%;
      max-width: 460px;
      height: auto;
      padding: 10px;
      border-radius: 20px;
      object-fit: contain;
      background: transparent;
      box-shadow: none;
      mix-blend-mode: normal;
      filter: none;
    }


    /* Legacy video styling for backward compatibility */
    video {
      min-width: 382px;
      height: 347px;
      object-fit: cover;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-container {
        padding: 20px 40px;
      }

      .card-img {
        width: 380px;
      }

      .request-section {
        position: relative;
        padding: 80px 14px 60px;
        overflow: hidden;
      }

      .hero {
        flex-direction: column;
        height: auto;
        padding-top: 10px;
        /* margin-top: 100px; */
      }

      .accent-bottom {
        width: 360px;
      }

      .text h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        font-weight: bolder;
        text-align: center;
      }

      .text p {
        text-align: justify;
      }

      .hero-content,
      .hero-image {
        flex: none;
        width: 100%;
      }

      .para-text {
        text-align: justify;
        display: block;
        width: 80vw;
        padding: 0px 10px;
      }

      .hero-image img {
        width: 80vw;
        max-width: none;
        height: auto;
        padding: 10px;
        margin-top: 20px;
        object-fit: contain;
      }

      /* Legacy video styling for backward compatibility */
      video {
        margin-top: 30px;
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        /* crops if needed */
      }
    }

    /* error  */
    /* Prevent background accents from blocking interaction */
    .grid-background,
    .accent-line,
    .accent-dot,
    .accent-bottom {
      pointer-events: none;
      /* don’t capture clicks */
      z-index: -1;
      /* keep them behind */
    }

    /* Ensure form card is on top */
    .card-form,
    .card-form * {
      position: relative;
      z-index: 10;
      /* higher than backgrounds */
    }

    /* Hero section css ends here  */

    /* <!-- NEW CONTENT SECTION STARTS HERE --> */
    .Web3 {
      margin-top: 8px;
      display: flex;
      flex-direction: column;
    }

    .Web3 p {
      text-align: justify;
      max-width: 860px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }
    .crypto-list{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .crypto-list li{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0px 30px;
      /* border:2px solid red; */
      padding: 0px;
      list-style: none;
      height: 140px;
      width:110px;
    }
    .crypto-icons{
      height: 40px;
      width: 40px;
    }

   .features-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.features-left,
.features-right {
  flex: 1 1 45%; /* take equal width, shrink/grow as needed */
  max-width: 100%;
}

.features-left p,
.features-right p {
  padding: 10px 10px;
  text-align: justify; /* aligns the content neatly */
}

/* 📱 Mobile screens */
@media (max-width: 768px) {
  .features-list {
    flex-direction: column;
    align-items: stretch; /* full width */
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-left p,
  .features-right p {
    padding: 10px;
    text-align: justify;
  }
}
/* glowing arrow starts here  */

/* Brand-inspired glow-arrow - Version 2 (Subtle Drift) */
.glow-arrow {
   position: relative;
   display: inline-block;
   width: 28px;
   height: 22px;
   margin-right: 8px;
   vertical-align: middle;
}

/* Triangle element */
.glow-arrow::before {
   content: '';
   position: absolute;
   left: 2px;
   top: 50%;
   transform: translateY(-50%);
   width: 0;
   height: 0;
   border-left: 10px solid #2ed0ff;
   border-top: 6px solid transparent;
   border-bottom: 6px solid transparent;
   filter: drop-shadow(0 0 4px #2ed0ff);
   animation: triangle-drift 3s infinite ease-in-out;
}

/* Dot element */
.glow-arrow::after {
   content: '';
   position: absolute;
   right: 2px;
   top: 50%;
   transform: translateY(-50%);
   width: 5px;
   height: 5px;
   background: #ff3db8;
   border-radius: 50%;
   box-shadow: 0 0 6px #ff3db8;
   animation: dot-pulse 3s infinite ease-in-out 0.5s;
}

@keyframes triangle-drift {
   0%, 100% {
       transform: translateY(-50%) translateX(0);
       opacity: 0.8;
   }
   50% {
       transform: translateY(-50%) translateX(6px);
       opacity: 1;
   }
}

@keyframes dot-pulse {
   0%, 100% {
       transform: translateY(-50%) scale(1);
       opacity: 0.6;
   }
   50% {
       transform: translateY(-50%) scale(1.4);
       opacity: 1;
   }
}
/* glowing arrow ends here  */
/* card ecosystem starts here  */

    .card-container {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 20px !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      padding: 0 10px !important;   /* prevents overflow */
      box-sizing: border-box !important;
      justify-items: center !important;
      text-align: center !important;
    }

    .card-eco {
      background: linear-gradient(135deg, var(--purple), var(--accent));
      color: white;
      width: 220px;
      height: 280px;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      justify-content:space-evenly;
      align-items: center;
      text-align: center;
      padding: 20px 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .card-eco::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .card-eco:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 0 30px var(--accent);
    }

    .card-eco:hover::before {
      opacity: 0.15;
    }

    /* .card-eco i {
      font-size: 48px;
      margin-bottom: 15px;
      color: white;
      text-shadow: 0 0 10px rgba(255,255,255,0.5);
    } */

    .card-eco h3 {
      margin: 10px 0 5px;
      font-size: 20px;
      font-weight: bold;
      /* border: 2px solid red; */
    }

    .card-eco p {
      text-align: center;
      font-size: 14px;
      color: #f1f1f1;
      /* border: 2px solid red; */
    }
    .eco-icons{
      height: 60px;
      width: 60px;
      /* border: 2px solid red; */
    }
/* card ecosystem ends here  */

.btn-movement {
      position: relative;
      display: inline-block;
      border: none;
      outline: none;
      cursor: pointer;
      border-radius: 12px;
      padding: 14px 24px;
      font-weight: 400;
      font-size: 18px;
      color: #fff;
      background: linear-gradient(270deg, #1f68ff, #8c3dff, #1f68ff);
      background-size: 300% 300%;
      animation: shimmer 6s ease infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      text-decoration: none;
      box-shadow: 0 0 12px rgba(140, 61, 255, 0.5);
    }

    /* Hover animation */
    .btn-movement:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 0 25px #8c3dff, 0 0 50px #1f68ff;
    }

    /* Ripple effect container */
    .btn-movement span {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      animation: ripple 0.6s linear;
      background-color: rgba(255, 255, 255, 0.5);
      pointer-events: none;
    }

    /* Gradient shimmer */
    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Ripple animation */
    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }
/* <!-- NEW CONTENT SECTION ENDS HERE --> */


/* Testing code for accent lines */

.accent-line {
  position: absolute;
  height: 4px;
  border-radius: 2px;
  animation: pulse 3s infinite ease-out;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scaleX(0.9);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.3);
  }
  100% {
    opacity: 0.5;
    transform: scaleX(0.9);
    transform-origin: right;
  }
}

/* Testing code */
/* CRYPTO ICONS */
.crypto-list {
  display: grid; /* use grid, not flex */
  grid-template-columns: repeat(5, 1fr); /* desktop default: 5 in a row */
  gap: 20px;
  justify-items: center;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

/* Tablets: 3 per row */
@media screen and (max-width: 991px) {
  .crypto-list {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  text-align: center;
  }
}

/* Phones: 2 per row */
@media screen and (max-width: 600px) {
  .crypto-list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  text-align: center;
  }
}

/* Tiny phones */
@media screen and (max-width: 360px) {
  .crypto-list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  text-align: center;
    gap: 10px;
    padding: 0 5px;
  }
}


/* ROADMAP */
.roadmap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.roadmap-item {
  flex: 0 1 calc(25% - 20px);
  padding: 20px;
  background: #1b1f28;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .roadmap-item {
    flex: 0 1 calc(50% - 20px);
  }
}

/* OUR ECOSYSTEM */
.ecosystem-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ecosystem-item {
  flex: 0 1 calc(25% - 20px);
  padding: 20px;
  background: #1b1f28;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .ecosystem-item {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .ecosystem-item {
    flex: 0 1 100%;
  }
}

/* WHY US */
.why-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.why-item {
  flex: 0 1 calc(25% - 20px);
  padding: 20px;
  background: #1b1f28;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .why-item {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .why-item {
    flex: 0 1 100%;
  }
}
/* ===========================
   Mobile Overrides (Force with !important)
=========================== */
/* our ecosystes cards */
/* Default Desktop (leave your existing styles for desktop untouched) */


/* Default Desktop (keep as-is) */


/* Desktop - leave it alone (no override) */

/* Tablets & Mobiles: 2 per row */
@media screen and (max-width: 991px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Extra small phones: still 2 per row, but tighter spacing */
@media screen and (max-width: 480px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 5px !important;
  }
  .card-eco {
    width: 100% !important; 
    max-width: 100% !important;
  }
  .eco-icons {
    max-width: 60px !important;
    height: auto !important;
  }
}
/* Why Us Title Fix */
.why-us .section-title {
  text-align: center !important;
  margin: 0 auto 40px auto !important;
  padding: 0 15px !important;
  font-size: 26px !important;
  line-height: 1.3 !important;
  word-wrap: break-word !important;
  max-width: 100% !important;
}
/* ===== Mobile text wrapping + centering hotfix (place at very end) ===== */
@media (max-width: 768px) {
  /* Make the heading container play nicely on small screens */
  .wrap {
    padding: 24px 16px 48px !important;
  }

  /* Center section content */
  .Web3,
  .Web3 .title {
    text-align: center !important;
  }

  /* Force long titles and notes to break into new lines */
  h1.title,
  h2.title,
  h3.title,
  .title {
    white-space: normal !important;          /* overrides the desktop nowrap */
    overflow-wrap: anywhere !important;      /* modern wrapping */
    word-break: break-word !important;       /* extra safety */
    max-width: 100% !important;
    display: block !important;
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.25 !important;
    margin: 8px 0 12px !important;
    padding: 0 12px !important;              /* keeps text away from edges */
  }

  /* Ensure the inner spans can wrap too */
  .title .strong,
  .title .light {
    display: inline !important;
    white-space: normal !important;
  }

  /* Make “phase notes” and parenthetical subtitles slightly smaller */
  .title .lig

  /* corner image testing */
 /* Corner Wrapper with background image */
 .corner-wrapper {
  position: relative;
  width: 100%;
  height: 220px; /* adjust if image looks cut off */
  background-image: url("media/Group\ 5.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  pointer-events: none; /* background doesn’t block clicks */
}


