@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Poppins", sans-serif;
}
.lander-form-wrapper {
  background-color: #9d1008;
  padding: 0 3px 3px 3px;
}
.lander-form {
  padding: 30px 30px 20px;
  position: relative;
  border: 2px solid #9d1008; /* Border with specified color */
  border-top: none; /* Removes top border */
  border-radius: 0 0 12px 12px; /* Rounds only the bottom corners */
  /* Orange Glow Effect */
  box-shadow: 0 0 35px #9d0f08b5 !important; /* Adjust the spread & opacity */
}

/* Add the video background using ::before */
.lander-form-header {
  font-size: 26px !important;
  font-weight: 700;
  margin: 0 !important;
  padding: 30px 20px !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  /* background: url("../images/7020340_Blue_4k_3840x2160-ezgif.com-video-to-gif-converter_scasgr.gif")
    center/cover no-repeat !important; */
  background-color: #9d1008;
  background-size: cover !important;
  border: 2px solid #9d1008 !important;
  position: relative !important; /* Ensures the overlay sits correctly */
  overflow: hidden !important;
  color: white !important;
  z-index: 1 !important; /* Moves text above the overlay */
  box-shadow: 0 0 35px #9d0f08b5 !important; /* Adjust the spread & opacity */
}

.line {
  height: 100%;
  width: 4px;
  min-height: 600px;
  background-color: #686868;
}

/* Masonry Grid Styling */
.masonry {
  column-count: 3;
  /* Default 3 columns */
  column-gap: 1rem;
}

@media (max-width: 1100px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .masonry {
    column-count: 1;
  }
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}

/* Scrollable container */
.scroll-container {
  max-height: 600px;
  /* Adjust height as needed */
  overflow-y: auto;
  padding-right: 8px;
  /* Prevent content from hiding behind scrollbar */
}

/* Custom scrollbar (optional) */
.scroll-container::-webkit-scrollbar {
  width: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.logo {
  width: 100px;
}
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.text-traders {
  margin-bottom: 40px;
}
@media (max-width: 820px) {
  .text-traders {
    max-width: 532px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 500px) {
  .text-traders {
    max-width: 300px;
    margin-bottom: 20px;
  }
  .title-traders {
    font-size: 20px !important;
  }
  .subtitle {
    font-size: 16px !important;
  }
  .rating-wrap {
    flex-direction: column;
    gap: 0;
  }
}

.steps-wrapper {
  margin: 60px auto 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps h2 {
  font-size: 36px;
  font-family: "Poppins";
}

.step {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  align-self: flex-start;
}

.step h4 {
  color: #9d1008;
  font-size: 24px;
  font-weight: 700;
}

.step p {
  color: #d1d5db;
  font-size: 20px;
}

.step-arrow {
  max-width: 100px;
}

@media (max-width: 1100px) {
  .steps-wrapper {
    margin: 40px auto 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .step {
    align-self: stretch;
    max-width: 100%;
  }

  .step-arrow {
    display: none;
  }

  .step img {
    max-width: 60px;
    width: 100%;
  }

  .step h4 {
    font-size: 20px;
  }

  .step p {
    font-size: 18px;
  }
}
