/* Section 1 Banner */
/* Banner styling */
:root {
  --home-container-edge: 20px;
}

@media (min-width: 576px) {
  :root {
    --home-container-edge: calc((100vw - 540px) / 2 + 12px);
  }
}

@media (min-width: 768px) {
  :root {
    --home-container-edge: calc((100vw - 720px) / 2 + 12px);
  }
}

@media (min-width: 992px) {
  :root {
    --home-container-edge: calc((100vw - 960px) / 2 + 12px);
  }
}

@media (min-width: 1200px) {
  :root {
    --home-container-edge: calc((100vw - 1140px) / 2 + 12px);
  }
}

@media (min-width: 1400px) {
  :root {
    --home-container-edge: calc((100vw - 1320px) / 2 + 12px);
  }
}

.hero-top {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-banner {
  color: #fff;
}
.hero-content {
  width: 100%;
  max-width: 640px;
  margin-left: 0;
  text-align: left;
}

.hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: 'ClashDisplay', sans-serif;
}
/* LEFT INNER SPACING */
.hero-inner {
  padding-left: var(--home-container-edge);
  padding-right: clamp(24px, 4vw, 72px);
  display: flex;
  width: 100%;
}

.hero-content p {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-right-image img {
  width: 100%;

  object-fit: cover;
}

/* HERO Stats */
.hero-stats {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

.hero-stat {
  display: flex;
  align-items: flex-start;
  flex: 1 1 180px;
  min-width: 0;
}

.hero-stat img {
  width: 60px;
}

.hero-stat p {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 12px !important;
  margin: 0;
  color: #ccc;
}

.hero-stat-content {
  min-width: 0;
  margin-left: 12px !important;
}

.blue {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 15px !important;
  color: #363aff;
  font-weight: 600;
}
/* Wrapper with Background & IVERLAY */

.hero-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: url('../images/hero-banner.webp') no-repeat center top/cover;
}

/* DARK OVERLAY */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.87);
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  height: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.home-hero-line {
  flex: 0 0 1px;
  width: 1px;
  height: 100%;
  background-color: #ffffff0d;
}

/* CONTENT ABOVE OVERLAY */
.hero-wrapper > *:not(.hero-lines) {
  position: relative;
  z-index: 2;
}

/* Banner Tag */
.tag {
  width: fit-content;
  border: 1px solid #363aff;
  background-color: transparent;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.accent-text {
  color: #363aff;
}

/* SECTION Two BACKGROUND */
.section-two {
  background-color: #0e0e18;
  background-image: url('../images/pinpoint.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  margin-top: -232px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.section-two > .container-fluid {
  width: 100%;
  padding-right: var(--home-container-edge);
  padding-left: var(--home-container-edge);
}

/* LEFT CONTENT */
.section-two-content {
  margin-bottom: 20px;
  font-family: 'ClashDisplay', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 640px;
  margin-left: 0;
  text-align: left;
}
.section-two-content h1 {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 50px;
}
.section-two-content p {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 20px;
  max-width: 500px;
}
/* FLOATING CENTER CARD */
.map-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  overflow: hidden;
  background: #363aff;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.map-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.map-card-top img {
  width: 48px;
  height: 48px;
}

.map-card .white-outline {
  border-color: rgba(255, 255, 255, 0.65);
}

.map-card-bottom {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.map-city {
  margin-bottom: 6px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.map-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

/* -----------------------SECTION THREE-------------------------------- */
.section-three {
  padding: 90px 0;
  background: #ffffff;
  color: #0e0e18;
}

.section-three-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  font-family: 'ClashDisplay', sans-serif;
  text-align: left;
}

.section-three-content p {
  max-width: 640px;
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
}

.section-three-action {
  display: flex;
  justify-content: flex-end;
}

.section-three .button-outline {
  color: #0e0e18;
}

.section-three .button-outline:hover {
  color: #ffffff;
}
.tag-section-three {
  border: 1px solid #363aff;
  color: #363aff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.btn-outline-section-three {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 183px;
  height: 55px;
  border: 1px solid #363aff;
  background-color: #363aff;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Arrow */
.btn-outline-section-three-arrow {
  display: flex;
  align-items: center;
  color: #363aff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.btn-outline-section-three:hover {
  background-color: transparent;
  color: #363aff;
  border: 1px solid #363aff;
}

.btn-outline-section-three:hover .button-arrow {
  transform: translate(4px, -4px);
}
/* ------------ */
.section-three-cards {
  margin-top: 60px;
}

.h-pipe-block {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 24, 0.12);
  font-family: 'ClashDisplay', sans-serif;
}

.h-pipe-img-w {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  background: #f4f4f7;
}

.h-pipe-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.top-right-tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 54px solid #ffffff;
  border-left: 54px solid transparent;
}

.h-pipe-block-t {
  padding: 24px;
}

.h-pipe-block-title {
  margin-bottom: 22px;
}

.body-copy-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.body-copy {
  font-size: 16px;
  line-height: 1.35;
}

.black {
  color: #0e0e18;
}

.h-pipe-stat-w {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h-pipe-stat-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.h-pipe-stat-blue {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #363aff;
  color: white;
}

.h-pipe-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.h-pipe-icon svg {
  display: block;
}

/* Section 4 RoadMAP */
/* WRAPPER Main One */
.roadmap {
  display: flex;
  align-items: stretch;
}

.roadmap-item {
  flex: 1;
  min-width: 120px;
  position: relative;
  border-right: 1px solid #b8afaf;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
}
.roadmap-item:first-child {
  border-left: 1px solid #b8afaf;
}
.roadmap-top {
  text-align: center;
}

.roadmap-bottom {
  margin-top: auto;
  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: var(--space-top, 120px);
}

.roadmap-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-line::after {
  content: '';
  width: 2px;
  background: #363aff;
  flex-grow: 1;
}

.roadmap-dot {
  width: 12px;
  height: 12px;
  background: #363aff;
  border-radius: 50%;
  display: block;
}

.roadmap-hr-line {
  border: 0;
  height: 4px !important;
  width: 100%;
  background-color: #363aff !important;
  margin: 0;
}

/* ICONs */
.roadmap-icon {
  margin-bottom: 10px;
}

.icon-carwash svg {
  width: 70px;
  height: 30px;
  color: #363aff;
}
.roadmap-icon svg {
  width: 70px;
  height: 30px;
  color: #363aff;
}
/* tezt */
.roadmap-item h6 {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 20px;
  margin-bottom: 5px;
}

.roadmap-item p {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
}

.roadmap-date {
  font-size: 20px;
  color: #363aff;
  font-family: 'ClashDisplay', sans-serif;
}

.roadmap-item {
  justify-content: flex-end;
}

.roadmap-bottom {
  margin-top: 24px;
  padding-top: 0;
}

.roadmap-line {
  height: var(--line-height, 200px);
}

.roadmap-item {
  border-right: 0;
}

.roadmap-item:first-child {
  border-left: 0;
}

.roadmap-item::after,
.roadmap-item:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 34px;
  width: 1px;
  background: #b8afaf;
}

.roadmap-item::after {
  right: 0;
}

.roadmap-item:first-child::before {
  left: 0;
}

/* -----------------------------Section FIVE 5-------------------------------------------- */
.section-five {
  padding: 90px 0;
  background-color: #f8f8f8;
  position: relative;
  clear: both;
}

.section-five::after {
  content: '';
  display: block;
  clear: both;
}

.section-five .post-cards {
  clear: both;
}

.section-five .post-card {
  height: 100%;
  overflow: visible;
}

.section-five .h-pipe-img-w {
  display: block;
  width: 100%;
  height: 280px;
  margin-bottom: 24px;
}

.section-five .h-pipe-img {
  height: 100%;
  margin-bottom: 0 !important;
}
.post-card h5 {
  font-family: 'ClashDisplay', sans-serif;
  color: black;
  font-size: 24px;
  margin-bottom: 10px;
  text-decoration: none !important;
}
.post-card p {
  color: black;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
.post-card-excerpt,
.post-card-excerpt p {
  color: black;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
.post-card a {
  text-decoration: none;
  color: black;
  font-family: 'ClashDisplay', sans-serif;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: 183px;
  height: 55px;
  background-color: transparent;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more-link span {
  color: #363aff;
}
.post-card {
  position: relative;
  overflow: hidden;
}
/* overlay */
.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

/* hover */
.post-card:hover .img-overlay {
  background: rgb(251 251 251 / 40%);
}
/* arrow movement + color on SAME hover */
.post-card:hover .read-more-link span {
  transform: translate(4px, -4px);
  color: #363aff;
}

/* underline the text */
.post-card:hover .read-more-link {
  text-decoration: underline;
}

/* Section-6------------------------------------------------------------------- */
.section-six {
  clear: both;
  background-color: #363aff;
  background-image: url('../images/logo-outlines-white.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 100px;
  display: flex;
  color: #fff;
  z-index: 2;
  position: relative;
  padding: 90px 0;
  font-family: 'ClashDisplay', sans-serif;
}
.tag-section-six {
  border: 1px solid #ffffff;
  background-color: #363aff;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.ss-accent-text {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 75px;
  color: #000000;
  font-weight: 600;
}
.section-six-content p {
  max-width: 640px;
  margin: 0;
  font-size: 75px;
  font-weight: 500;
  line-height: 1.12;
}

.section-six-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
p.ss-small {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-top: 12px;
}
.section-six-action {
  display: flex;
  justify-content: flex-end;
}
/* Outline BTN */
.btn-outline-section-six {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 183px;
  height: 55px;
  border: 1px solid #363aff;
  background-color: #ffffff;
  color: #363aff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Arrow */
.btn-outline-section-six-arrow {
  display: flex;
  align-items: center;
  color: #363aff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.btn-outline-section-six:hover {
  background-color: transparent;
  color: #ffff;
  border: 1px solid #ffffff;
}

.btn-outline-section-six:hover .button-arrow {
  transform: translate(4px, -4px);
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-banner {
    text-align: left;
    padding: 70px 0;
  }
  .hero-content {
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image {
    margin-top: 30px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .hero-stat {
    max-width: 100%;
    justify-content: flex-start;
  }
  .section-two {
    padding: 60px 0;
  }

  .section-two-content {
    align-items: flex-start;
    text-align: left;
    margin: 0 0 40px;
  }

  .map-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 36px auto 0;
    transform: none;
  }

  .section-three {
    padding: 60px 0;
  }

  .section-three-content {
    align-items: flex-start;
    text-align: left;
  }

  .section-three-content p {
    font-size: 34px;
  }

  .section-three-action {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .section-three-cards {
    margin-top: 44px;
  }

  .section-five .h-pipe-img-w {
    height: 240px;
  }

  /* Section 4 Road Map */
  .roadmap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .roadmap-item {
    flex: 0 0 45%;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .section-five .h-pipe-img-w {
    height: 220px;
  }

  .roadmap-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 1199px) {
  .hero-inner {
    padding-left: var(--home-container-edge);
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .section-two {
    padding: 80px 0;
    margin-top: -160px;
  }

  .section-six-content p,
  .ss-accent-text {
    font-size: 62px;
  }
}

@media (max-width: 991px) {
  .hero-top {
    margin-top: 0;
    align-items: flex-start;
  }

  .hero-inner {
    justify-content: flex-start;
    padding: 60px var(--home-container-edge) 36px;
  }

  .hero-content {
    max-width: 720px;
    margin: 0;
  }

  .hero-content p {
    max-width: 620px;
    margin-right: 0;
    margin-left: 0;
    font-size: 18px;
  }

  .hero-right-image {
    max-height: 420px;
    overflow: hidden;
  }

  .hero-right-image img {
    max-height: 420px;
    object-position: center;
  }

  .hero-stats {
    gap: 22px;
    margin-top: 36px;
  }

  .hero-stat {
    gap: 12px;
    align-items: center;
  }

  .section-two {
    display: block;
    margin-top: 0;
    padding: 72px 0;
    background-position: center bottom;
    background-size: 220px auto;
  }

  .section-two-content h1 {
    font-size: 40px;
  }

  .section-two-content p {
    max-width: none;
    font-size: 18px;
  }

  .section-three,
  .section-five,
  .section-six {
    padding: 64px 0;
  }

  .h-pipe-block {
    margin-bottom: 24px;
  }

  .roadmap-section {
    padding: 32px 0 !important;
  }

  .roadmap {
    gap: 20px;
  }

  .roadmap-item {
    flex: 0 0 calc(50% - 10px);
    min-height: auto;
    margin-bottom: 0;
    padding: 24px 16px;
    border: 1px solid rgba(14, 14, 24, 0.12);
    align-items: center;
    justify-content: space-between;
  }

  .roadmap-item::after,
  .roadmap-item:first-child::before {
    display: none;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-hr-line {
    height: 2px !important;
    margin: 16px 0 10px;
  }

  .roadmap-bottom {
    margin-top: 20px;
  }

  .section-five .row {
    row-gap: 28px;
  }

  .post-card h5 {
    font-size: 22px;
  }

  .post-card-excerpt,
  .post-card-excerpt p {
    font-size: 16px;
  }

  .section-six {
    background-position: right bottom;
    background-size: 320px auto;
  }

  .section-six-content,
  .section-six-action {
    text-align: left;
  }

  .section-six-action {
    justify-content: flex-start;
    margin-top: 26px;
  }

  .section-six-content p,
  .ss-accent-text {
    font-size: 42px;
  }

  p.ss-small {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .section-three > .container,
  .section-four > .container,
  .section-five > .container,
  .section-six > .container {
    padding-right: var(--home-container-edge);
    padding-left: var(--home-container-edge);
  }
}

@media (max-width: 576px) {
  .hero-banner {
    padding: 44px 0;
  }

  .hero-inner {
    padding: 48px var(--home-container-edge) 28px;
  }

  .tag,
  .tag-section-three,
  .tag-section-six {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-right-image {
    max-height: 320px;
  }

  .hero-right-image img {
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
  }

  .hero-stat {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .section-two {
    padding: 56px 0;
    background-size: 160px auto;
  }

  .section-two-content h1 {
    font-size: 34px;
  }

  .map-card {
    width: 100%;
    transform: none;
  }

  .section-three,
  .section-five,
  .section-six {
    padding: 52px 0;
  }

  .section-three-content p {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-three-action {
    margin-top: 24px;
  }

  .btn-outline-section-three,
  .btn-outline-section-six,
  .read-more-link {
    width: 100%;
    max-width: 220px;
  }

  .h-pipe-block-t {
    padding: 20px;
  }

  .body-copy-2 {
    font-size: 22px;
  }

  .h-pipe-stat-block {
    align-items: flex-start;
  }

  .top-right-tri {
    border-top-width: 42px;
    border-left-width: 42px;
  }

  .roadmap {
    display: block !important;
  }

  .roadmap-item {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }

  .section-five .h-pipe-img-w {
    height: 210px;
  }

  .post-card h5 {
    font-size: 21px;
  }

  .section-six-content p,
  .ss-accent-text {
    font-size: 34px;
  }

  p.ss-small {
    font-size: 16px;
  }
}
