/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Unbounded", sans-serif;
}

/* MAIN WRAPPER */
.webapp-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 40px;
}

/* BACKGROUND */
.webapp-section .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* TOP ICONS */
.nav-icon {
  position: absolute;
  width: 40px;
  z-index: 10;
}

.nav-icon.left {
  top: 25px;
  left: 25px;
}

.nav-icon.right {
  top: 25px;
  right: 25px;
}

.nav-icon.expand {
  bottom: 25px;
  right: 25px;
  width: 55px;
}

/* FLEX WRAPPER */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.left-col {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-image {
  width: 100%;
  max-width: 650px;
  object-fit: contain;
}

/* RIGHT COLUMN */
.right-col {
  margin-top: 100px;
  flex: 1;
  min-width: 320px;
}

.heading {
  font-size: 50px;
  font-weight: 500;
  background: linear-gradient(180deg, #fff 40%, #9b9be8 80%);
  -webkit-background-clip: text;
  color: transparent;
}

.divider {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34ff9d, transparent);
  margin: 20px 0;
}

.desc {
  color: white;
  font-size: 17px;
  line-height: 28px;
  width: 90%;
}

/* TECHNOLOGY ICONS */
.tech-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.tech-row img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* BOTTOM TAG */
.tag {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag img {
  width: 48px;
  height: 48px;
}

.tag span {
  color: white;
  font-size: 20px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .right-col, .left-col {
    text-align: center;
  }

  .heading {
    font-size: 40px;
  }

  .hero-image {
    max-width: 550px;
  }
}

@media (max-width: 600px) {
  .heading {
    font-size: 32px;
  }
  .desc {
    font-size: 15px;
  }
  .tech-row img {
    width: 40px;
    height: 40px;
  }
  .tag span {
    font-size: 16px;
  }
}
