/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Unbounded", sans-serif;
}

/* MAIN WRAPPER */
.LOGOS-IDENTITY {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND */
.cubitrek-UI {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* FLOAT ICONS */
.left-arrow {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
}

.favicon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 42px;
}

.expand-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 55px;
}

/* LAYOUT */
.content {
  display: flex;
  width: 100%;
  max-width: 1500px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left-side {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
  padding-top: 100px;
}

.title {
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff 40%, #9090ff 80%);
  -webkit-background-clip: text;
  color: transparent;
}

.divider {
  width: 80%;
  height: 2px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, #34ff9d, transparent);
}

.description {
  margin: 15px 0 25px;
  color: #fff;
  line-height: 26px;
  font-size: 17px;
}

/* SOCIAL ICON GRID (5 + 4 layout) */
.social-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 50px);
  justify-content: start;
  gap: 14px;
  margin: 25px 0;
}

.social-grid img {
  width: 30px;
  height: 30px;
}

/* TAGLINE WITH ICON */
.tagline {
  margin-top: 10px;
  font-size: 20px;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  color: white;
  line-height: 26px;
}

.tag-icon {
  width: 32px;
  margin-right: 8px;
  vertical-align: middle;
}

/* RIGHT IMAGE */
.right-side {
  flex: 1;
  text-align: right;
  min-width: 350px;
}

.main-image {
  width: 95%;
  max-width: 650px;
  object-fit: contain;
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .right-side {
    text-align: center;
  }

  .main-image {
    width: 80%;
  }

  .social-grid {
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }

  .description {
    font-size: 15px;
  }

  .social-grid img {
    width: 34px;
  }
}
