/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: "Unbounded", sans-serif;
  overflow-x: hidden;
}

/* 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;
}

/* NAV ICONS */
.left-arrow {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 40px;
}

.favicon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
}

.expand-icon {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 55px;
}

/* CONTENT WRAPPER */
.content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left-side {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
}

/* HEADING */
.heading {
  font-size: 45px;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff 40%, #8c8cff 80%);
  -webkit-background-clip: text;
  color: transparent;
}

/* DIVIDER */
.divider {
  width: 80%;
  height: 2px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, #34ff9d, transparent);
}

/* DESCRIPTION */
.description {
  font-size: 17px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 25px;
}

/* TAGLINE WITH ICON */
.tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: white;
  font-weight: 500;
  margin-bottom: 25px;
}

.tagline img {
  width: 40px;
}

/* 5 ICONS TOP + 4 ICONS BOTTOM */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 350px;
}

.tech-grid img {
  width: 48px;
  height: auto;
}

/* RIGHT SIDE */
.right-side {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin-right: 50px;
}

.main-image {
  width: 115%;        /* increased from 90% */
  max-width: 780px;   /* increased from 600px */
  object-fit: contain;
  transform: scale(1.05); /* slight boost */
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    text-align: center;
  }
  .tech-grid {
    margin: 0 auto;
  }
  .heading {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .heading {
    font-size: 32px;
  }
  .description {
    font-size: 15px;
  }
  .tech-grid img {
    width: 38px;
  }
}
