 
  :root {
    --bg: #0b1220;        /* deep navy */
    --card: #ffffff;
    --muted: #9fb0d3;
    --text: #ecf1ff;
    --brand: #5bd0ff;
    --accent: #7effa1;
    --ring: rgba(91,208,255,.35);
  }

  /* ==================== Global Styles ==================== */
  * {
     box-sizing: border-box;
  margin: 0;
  padding: 0;
    
  }

  /* scrollbar track */
::-webkit-scrollbar {
  width: 10px;              /* scrollbar এর চওড়া */
}

/* scrollbar background (track) */
::-webkit-scrollbar-track {
  background: #000000;          /* dark background */
}

/* scrollbar thumb (drag অংশ) */
::-webkit-scrollbar-thumb {
  background: #43599c;          /* gray thumb */
  border-radius: 6px;        /* গোলাকার */
}

/* hover করলে রঙ পরিবর্তন */
::-webkit-scrollbar-thumb:hover {
  background: #6cc2e4;       /* gold hover effect */
}


  html, body {
      margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal overflow */
  }

  body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: rgb(11, 1, 54);
    color: var(--text);
  }

  a {
    color: var(--brand);
    text-decoration: none;
  }

  .container {
    max-width: 1160px;
    margin-inline: auto;
    padding: 0 20px;
  }

  /* ==================== Header / Navbar ==================== */
  header {
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: saturate(1.4) blur(10px);
  background: rgba(11,18,32,0.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-left: 20px;   /* এখানে px বসালাম */
  padding-right: 20px;
  }

  .nav {
     display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;   
  top: 0;
  left: 0;
  width: 100%;
  }

  .brand {
    display: flex;
    gap: .75rem;
    align-items: center;
    font-weight: 800;
    letter-spacing: .2px;
  }

  .brand .mark {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  background: radial-gradient(120% 120% at 30% 20%, var(--brand), #8ad6ff 35%, #1e90ff 65%, #1a2c4a);
  box-shadow: 0 6px 22px rgba(91,208,255,.35),
              inset 0 0 0 1px rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* লোগো বাইরে বের হবে না */
}

 



.mark img {
  width: 100%;   /* লোগো ছোট করবে */
  height: auto;
}

  .brand span {
    font-size: 1.02rem;
  }

  nav ul {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav a {
    padding: 6px 8px;
    border-radius: 10px;
    color: #e9f2ff;
  }

  nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .cta {
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg,#47c6ff,#1ea5ff);
    color: #eff0f1!important;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(30,165,255,.35);
  }

  /* ==================== Hero Section ==================== */
  .hero {
    position: relative;
    overflow: hidden;
  }

  .gridbg {
    position: absolute;
    inset: 0;
    background-image: 
      url('hero.jpg'), /* hero image */
      radial-gradient(circle at 50% -10%, rgba(255, 111, 1, 0.25), transparent 40%),
      radial-gradient(circle at 80% 10%, rgba(13, 201, 63, 0.18), transparent 45%),
      radial-gradient(800px 400px at 50% 110%, rgba(6, 221, 64, 0.08), transparent 60%);
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
  }


  .gridbg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
  z-index: 1;
}

  /* Hero container and overlay */
  .hero .container {
    position: relative;
    z-index: 2; /* text above image & overlay */
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    padding: 64px 20px 48px;
    
  }

  .badge {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0f45b8;
    border: 1px solid rgba(230, 235, 237, 0.25);
    box-shadow: inset 0 0 0 1px rgba(235, 36, 36, 0.04);
    font-weight: 600;
    color: #cfe7ff;
  }

  .headline {
  font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 14px 0 10px;
    font-weight: 800;
    text-shadow: 2px 2px 18px rgba(233, 222, 24, 0.7);

    
  }

  .sub {
    color: white;
    font-size: clamp(1rem,1.6vw,1.1rem);
    max-width: 46ch;
  }

  .card .sub
  {
    color: black;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 20px;
  }


  /* ==================== Why Choose Us ==================== */
#why-choose {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 20px;
  backdrop-filter: blur(12px) saturate(1.4);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(91, 208, 255, 0.35);
  border-color: var(--brand);
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.why-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

  .button {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg,#10192b,#0b1323);
    color: #e9f2ff;
  }

  .button:hover {
    border-color: rgba(121, 168, 186, 0.4);
    box-shadow: 0 10px 28px var(--ring);
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
  }

  .card {
    background: linear-gradient(180deg,#ffffff,#ffffff);
    border: 1px solid rgba(71, 40, 196, 0.06);
    border-radius: 16px;
    padding: 16px;
  }

  .card h4 {
    margin: 0 0 6px;
    color: black;
  }

  

  /* ==================== Sections ==================== */
  section {
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }

  h2 {
    font-size: clamp(1.6rem,2.6vw,2.1rem);
    margin: 0 0 14px;
  }

  .lead {
    color: var(--muted);
    max-width: 70ch;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #101a2d;
    border: 1px solid rgba(255,255,255,.06);
    color: #b6c7e9;
    font-weight: 600;
  }

  .list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
  }

  .list li {
    background: #10182a;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 10px 12px;
    color: #dbe8ff;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 16px;
  }

  .feature {
    background: linear-gradient(180deg,#0f1930,#0b1220);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 18px;
  }

  .kpis {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 16px;
  }

  .kpis .k {
     background: #0f182a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6); /* gold shadow */
  }

  .k .big {
    font-size: 1.6rem;
    font-weight: 800;
  }

  .k .small {
    color: var(--muted);
  }

  .grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
  }

  .grid2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
  }

  /* ==================== Footer ==================== */
  footer {
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #b6c7e9;
  }

  .footgrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
  }

  .copy {
    margin-top: 10px;
    color: #8ea4cc;
    font-size: .92rem;
  }

/* ==================== What We Offer (Left-Right Timeline) ==================== */
/* ==================== What We Offer (Two-Column Timeline) ==================== */
#offer {
  text-align: center;
}

#offer .lead.centered {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: var(--muted);
}

.offer-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.offer-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5bc8ff, #7b61ff, #ff61c0);
  transform: translateX(-50%);
  border-radius: 3px;
}

.offer-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px; /* tighter spacing */
}

.offer-item {
  width: 45%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.offer-item.left {
  justify-content: flex-end;
  text-align: right;
}

.offer-item.right {
  justify-content: flex-start;
  text-align: left;
}

.offer-item .icon {
  background: var(--brand, #5bc8ff);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(91, 200, 255, 0.4);
  flex-shrink: 0;
}

.offer-item .content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 10px;
}

.offer-item h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #fff;
}

.offer-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ==================== Animations ==================== */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fade-in-left.show,
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .offer-timeline::before {
    display: none;
  }

  .offer-row {
    flex-direction: column;
    gap: 20px;
  }

  .offer-item {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}
/* Central line glow */
.offer-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5bc8ff, #7b61ff, #ff61c0);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(123, 97, 255, 0.6),
              0 0 15px rgba(91, 200, 255, 0.4);
}

/* Icon glowing pulse */
.offer-item .icon {
  background: var(--brand, #5bc8ff);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(91, 200, 255, 0.6);
  animation: pulse 2.5s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 8px rgba(91, 200, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(91, 200, 255, 0.8),
                0 0 25px rgba(123, 97, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 8px rgba(91, 200, 255, 0.6);
  }
}

  /* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  padding-right: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;       /* সাদা বার */
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger span:hover span {
  background: #f1c40f;    /* hover করলে gold color */
}

/* Toggle Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


@media (max-width: 980px) {
  .hero .container {
    text-align: center;
    padding-top: 80px; /* prevent overlap with navbar */
  }
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cards {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  h1, .headline {
    font-size: clamp(1.2rem, 6vw, 2.0rem);
  }
  h2 {
    font-size: clamp(0.8rem, 5vw, 0.7rem);
  }
  .lead {
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 0;
  }
  nav ul {
    top: 56px;
    right: 10px;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .hero .container {
    padding: 100px 16px 48px; /* ensure room below fixed header */
  }
  .cards, .features, .grid3, .grid2, .kpis, .two-col {
    grid-template-columns: 1fr !important;
  }
  .hero-cta {
    flex-direction: column;
    gap: 20px;
  }
  .button {
    justify-content: center;
    width: 100%;
  }
  .footgrid {
    text-align: center;
  }
  .footgrid .brand {
    justify-content: center;
  }
  .copy {
    margin-top: 6px;
  }
}




/* Show hamburger on mobile */
@media (max-width: 740px) {
  .hamburger {
    display: flex;
  }
  nav ul {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    background: rgba(11,18,32,0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 16px;
    border-radius: 12px;
    width: 400px;
    padding-bottom: 30px;
  }
  nav ul.show {
    display: flex;
  }
}

  /* ==================== Responsive ==================== */
  @media (max-width: 980px) {
    .hero .container { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr 1fr; }
    .kpis { grid-template-columns: 1fr 1fr; }
    .grid3 { grid-template-columns: 1fr 1fr; }
    .footgrid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    nav ul { display: none; }
    .features, .kpis, .grid3 { grid-template-columns: 1fr; }
  }


  /* Prevent horizontal overflow on small screens */
html, body {
  overflow-x: hidden;
}

/* Make all grid-based layouts shrink properly */
.container, .hero .container, 
.cards, .features, .grid3, .grid2, .kpis, .two-col {
  max-width: 100% !important;
}

/* Ensure cards/features don’t force overflow */
.card, .feature, .k {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}



  h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .lead {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 1rem;
      color: #aaa;
    }

    .product-category {
      margin-bottom: 60px;
    }

    .product-category h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      color: #fff;
      text-align: center;
    }

    .product-category p {
      font-size: 0.95rem;
      color: #aaa;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .product {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: #111;
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      transition: all 0.8s ease;
    }

    .product img {
      width: 80%;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    }

    .product::after {
       
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      padding: 5px 12px;
      border-radius: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Show animation */
    .product.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ==================== Category Colors ==================== */
    .product-category.knitwear .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(0, 200, 100, 0.6);
    }
    .product-category.knitwear .product::after {
      background: rgba(0, 200, 100, 0.85);
      color: #fff;
    }
    .product-category.knitwear .product:hover::after { opacity: 1; }

    .product-category.woven .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(0, 120, 255, 0.6);
    }
    .product-category.woven .product::after {
      background: rgba(0, 120, 255, 0.85);
      color: #fff;
    }
    .product-category.woven .product:hover::after { opacity: 1; }

    .product-category.outerwear .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
    }
    .product-category.outerwear .product::after {
      background: rgba(255, 140, 0, 0.85);
      color: #fff;
    }
    .product-category.outerwear .product:hover::after { opacity: 1; }

    .product-category.sportswear .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(220, 50, 50, 0.6);
    }
    .product-category.sportswear .product::after {
      background: rgba(220, 50, 50, 0.85);
      color: #fff;
    }
    .product-category.sportswear .product:hover::after { opacity: 1; }

    .product-category.denim .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(40, 40, 180, 0.6);
    }
    .product-category.denim .product::after {
      background: rgba(40, 40, 180, 0.85);
      color: #fff;
    }
    .product-category.denim .product:hover::after { opacity: 1; }

    .product-category.accessories .product:hover img {
      transform: scale(1.08);
      filter: brightness(0.9);
      box-shadow: 0 0 15px rgba(150, 60, 200, 0.6);
    }
    .product-category.accessories .product::after {
      background: rgba(150, 60, 200, 0.85);
      color: #fff;
    }
    .product-category.accessories .product:hover::after { opacity: 1; }

    /* Responsive */
    @media (max-width: 992px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .product img { height: 200px; }
    }

    @media (max-width: 576px) {
      .product-grid {
        grid-template-columns: 1fr;
      }
      .product img { height: 180px; }
    }



.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 40px;
  flex-wrap: wrap;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px; /* align with icon center */
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #5bd0ff, #0b1220);
  z-index: 0;
}

.timeline-item {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  width: 280px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(91,208,255,0.35);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: #101a2d;
  border: 3px solid #5bd0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.3);
  box-shadow: 0 0 20px #5bd0ff;
}

.timeline-content h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #cfe7ff;
}

.timeline-content ul li {
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.timeline-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #5bd0ff;
}

@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
  }

  .timeline-item {
    width: 80%;
    margin-bottom: 60px;
  }

  .timeline-icon {
    left: calc(50% - 35px);
    top: -35px;
  }
}

  .compliance-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
  }

  .compliance-section h2 {
    font-size: 28px;
    color: #05386B;
    margin-bottom: 20px;
  }

  .compliance-svg {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  /* Hover Animations */
  .leaf:hover path {
    transform: rotate(10deg);
    transition: transform 0.5s ease-in-out;
  }

  .shield:hover path {
    fill: #379683;
    transition: fill 0.3s ease-in-out;
  }

  .graph:hover rect {
    transform: translateY(-10px);
    transition: transform 0.3s ease-in-out;
  }


  #buyers {
  width: 100%;
 
  background: url('global.jfif') no-repeat center center/cover; /* 🔹 replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white; /* makes text visible on dark images */
  padding: 80px 0;
}

#buyers .overlay {
  background: rgba(0, 0, 0, 0.5); /* 🔹 dark overlay for readability */
  width: 100%;
  height: 100%;
  padding: 40px 0;
}

#buyers h2,
#buyers p,
#buyers .big,
#buyers .small {
  color: #fff; /* ensures text is readable */
}


h2,h3,h4,h5,h6,a,p 
{
  color: rgb(193, 204, 205)!important;
}
 

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

    .formcarry-container {
      box-sizing: border-box;
      margin: 40px auto 0 auto;
      padding: 0;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: -0.01em;

      width: 400px;

      /* NORMAL */
      --fc-border-color: #ECEFF9;
      --fc-normal-text-color: #0E0B3D;
      --fc-normal-placeholder-color: #B3B8D0;

      /* PRIMARY COLOR | HSL FORMAT*/
      --fc-primary-color-hue: 220;
      --fc-error-color-hue: 356;
      --fc-primary-hsl: var(--fc-primary-color-hue), 100%, 54%;
      --fc-error-hsl: var(--fc-error-color-hue), 100%, 54%;

      /* HOVER */
      --fc-field-hover-bg-color: #F7F9FC;
      --fc-border-hover-color: #DDE0EE;
      --fc-field-hover-text-color: #B3B8D0;

      --fc-border-active-color: #1463FF;
    }

    .formcarry-container * {
      box-sizing: border-box;
    }

    .formcarry-container label {
      display: block;
      cursor: pointer;
    }

    .formcarry-container .formcarry-block:not(:first-child) {
      margin-top: 16px;
    }

    /*=============================================
    =            Fields           =
    =============================================*/
    
    .formcarry-container input,
    .formcarry-container textarea,
    .formcarry-container select {
      margin-top: 4px;
      width: 100%;
      height: 42px;
      border: 1px solid var(--fc-border-color);
      color: var(--fc-normal-text-color);
      border-radius: 6px;
      padding: 8px 12px;
      
      font-family: "Inter", sans-serif;
      font-size:14px;
      transition: 125ms background, 125ms color, 125ms box-shadow;
    }

    .formcarry-container textarea{
      min-height: 188px;
      max-width: 100%;
      padding-top: 12px;
    }

    .formcarry-container input::placeholder,
    .formcarry-container textarea::placeholder,
    .formcarry-container select::placeholder {
      color: var(--fc-normal-placeholder-color);
    }

    .formcarry-container input:hover,
    .formcarry-container textarea:hover,
    .formcarry-container select:hover {
      border-color: var(--fc-border-hover-color);
      background-color: var(--fc-field-hover-bg-color);
    }

    .formcarry-container input:hover::placeholder,
    .formcarry-container textarea:hover::placeholder,
    .formcarry-container select:hover::placeholder {
      color: var(--fc-field-hover-text-color);
    }

    .formcarry-container input:focus,
    .formcarry-container textarea:focus,
    .formcarry-container select:focus {
      background-color: #fff;
      border-color: hsl(var(--fc-primary-hsl));
      box-shadow: hsla(var(--fc-primary-hsl), 8%) 0px 0px 0px 3px;
      outline: none;
    }

    .formcarry-container select {
      background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9997 14.5001L8.46387 10.9642L9.64303 9.78589L11.9997 12.1434L14.3564 9.78589L15.5355 10.9642L11.9997 14.5001Z' fill='%236C6F93'/%3E%3C/svg%3E%0A");
      /* background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px); */
      background-size: 24px 24px;
      background-position: 98%;
      background-repeat: no-repeat;
      appearance: none;
      -webkit-appearance: none;
    }

    .formcarry-container button {
      font-family: "Inter", sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: -0.02em;
      height: 42px;
      line-height: 40px;
      width: 100%;
      border-radius: 6px;
      box-sizing: border-box;
      border: 1px solid hsla(var(--fc-primary-hsl));
      background-color: hsla(var(--fc-primary-hsl));
      color: #fff;
      cursor: pointer;
    }

    .formcarry-container button {
      font-family: "Inter", sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: -0.02em;
      height: 40px;
      line-height: 24px;
      width: 100%;
      border: 0;
      border-radius: 6px;
      box-sizing: border-box;
      background-color: hsla(var(--fc-primary-hsl));
      color: #fff;
      cursor: pointer;
      box-shadow: 0 0 0 0 transparent;
      
      transition: 125ms all;
    }
    
    .formcarry-container button:hover {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), hsla(var(--fc-primary-hsl));
    }
    
    .formcarry-container button:focus {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsla(var(--fc-primary-hsl));
      border-inline: 1px solid inline rgba(255, 255, 255, 0.6);
      box-shadow: 0px 0px 0px 3px rgba(var(--fc-primary-hsl), 12%);
    }

    .formcarry-container button:active {
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsla(var(--fc-primary-hsl));
    }

    .formcarry-container button:disabled {
      background-color: hsla(var(--fc-primary-hsl), 40%);
      cursor: not-allowed;
    }

    .formcarry-container input:focus:required:invalid,
    .formcarry-container input:focus:invalid, 
    .formcarry-container select:focus:required:invalid,
    .formcarry-container select:focus:invalid
    {
      color: hsl(var(--fc-error-hsl)); 
      border-color: hsl(var(--fc-error-hsl));
      box-shadow: 0px 0px 0px 3px hsla(var(--fc-error-hsl), 12%);
    }
