/* HERO-SECTION */

/* SECTION */
.ink-feature {
  padding: 60px 20px;
  /* background: #f5f5f5; */
}

/* WRAPPER */
.ink-wrapper {
  display: flex;
  align-items: end;
  gap: 50px;
}

/* IMAGE */
.ink-image {
  flex: 0 0 550px;
  max-width: 550px;
  width: 100%;
}

.ink-image img {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 550 / 414;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* CONTENT */
.ink-content {
  max-width: 520px;
}

.ink-content h2 {
  font-size: 64px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: f1;
}

.ink-content p {
  color: black;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: f2;
}

/* TAGS */
.ink-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ink-tags span {
  background: #D0E0F3;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: f2;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ink-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .ink-image {
    flex-basis: auto;
    max-width: 550px;
  }

  .ink-content h2 {
    font-size: 40px;
  }

  .ink-tags {
    justify-content: left;
  }
}

/* <!--═══════════════════════════════════════
      <TECHINCAIL SEPCIFICATION>
    ═══════════════════════════════════════ --> */

/* SECTION */
.tech-specs {
  /* background: #f4f4f4; */
  padding: 80px 20px;
}

/* WRAPPER */
.tech-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT SIDE */
.tech-left {
  flex: 1;
}

.tech-left h2 {
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  font-family: F1;
}

.tech-left p {
  font-size: 18px;
  color: black;
  max-width: 420px;
  line-height: 1.6;
  font-family: F2;
}

/* RIGHT GRID */
.tech-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

/* ITEM */
.spec-item h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: F3;
}

.spec-item h3 {
  font-size: 28px;
  color: #8b4c2e;
  margin-bottom: 5px;
  font-family: F4;
}

.spec-item p {
  font-size: 14px;
  color: #777;
  font-family: F2;
}

.tds-doc{
  justify-content: left !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tech-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .tech-left h2 {
    font-size: 48px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* <!--═══════════════════════════════════════
      <COLOR SEPC>
    ═══════════════════════════════════════ --> */

/* SECTION */
.ink-usecases {
  /* padding: 80px 20px; */
  background: #f4f4f4;
}

/* TITLE */
.section-title {
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-family: f1;
}

.section-title span {
  color: #d35400;
}

/* GRID */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.usecase-card {
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s ease;
}

/* COLORS */
.usecase-card.green {
  background: #faedcd !important;
}

.usecase-card.green2 {
  background: #fefae0 !important;
}

.usecase-card.cream {
  background: #e9edc9;
}

.usecase-card.beige {
  background: #ccd5ae;
}

/* ICON */
.usecase-card .icon {
  width: 50px;
  height: 50px;
  background: #c9d3df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.usecase-card .icon img {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  display: block;
}

/* TEXT */
.usecase-card h4 {
  font-size: 20px;
  color: #1f3a8a;
  margin-bottom: 10px;
  font-family: f3;
}

.usecase-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  font-family: f2;
}

/* HOVER */
.usecase-card:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .usecase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .usecase-grid {
    grid-template-columns: 1fr;
  }
}
