/* ------------------------- About Us Section CSS Start ----------------------------- */

/* ============================================================
   ABOUT SECTION — Dark Banner Style
   Teko → Heading | Roboto → Everything else
============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Roboto:wght@300;400;500;600;700&display=swap");

:root {
  --font-heading: "Teko", sans-serif;
  --font-body: "Roboto", sans-serif;
  --clr-bg: #0c1f10;
  --clr-green: #466439;
  --clr-green-mid: #1c3620;
  --clr-gold: #b8952a;
  --clr-text: rgba(255, 255, 255, 0.55);
  --clr-text-li: rgba(255, 255, 255, 0.75);
}

/* ============================= */
/* SECTION BASE                  */
/* ============================= */

div#about-section {
  background: var(--clr-bg);
}

.nx-about {
  padding: 0;
}

/* ============================= */
/* WRAPPER                       */
/* ============================= */

.nx-about-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.018) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.018) 40px
    );
}

/* gold diagonal line — thick */
.nx-about-wrapper::after {
  content: "";
  position: absolute;
  right: 38%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--clr-gold) 20%,
    var(--clr-gold) 80%,
    transparent 100%
  );
  opacity: 0.6;
  transform: skewX(-8deg);
  z-index: 3;
  pointer-events: none;
}

/* gold diagonal line — thin */
.nx-about-wrapper::before {
  content: "";
  position: absolute;
  right: calc(38% + 14px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--clr-gold) 20%,
    var(--clr-gold) 80%,
    transparent 100%
  );
  opacity: 0.22;
  transform: skewX(-8deg);
  z-index: 3;
  pointer-events: none;
}

/* ============================= */
/* LEFT — CONTENT                */
/* ============================= */

.nx-about-left {
  width: 55%;
  flex-shrink: 0;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ── TAG ── */
.nx-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 3px;
  background: var(--clr-green-mid);
  border: 1px solid rgba(184, 149, 42, 0.35);
  color: var(--clr-gold);
  font-family: var(--font-body);
  font-size: clamp(9px, 0.78vw, 10.5px);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

/* ── GOLD DIVIDER ── */
.nx-divider {
  width: 44px;
  height: 2px;
  background: var(--clr-gold);
  margin-bottom: 12px;
}

/* ── HEADING ── */
.nx-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.nx-heading span {
  color: var(--clr-gold);
}

/* ── DESCRIPTION ── */
.nx-desc {
  font-family: var(--font-body);
  font-size: clamp(12.5px, 1vw, 13.5px);
  line-height: 1.8;
  color: var(--clr-text);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 500px;
}

/* ── LIST ── */
.nx-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nx-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(12px, 0.95vw, 13.5px);
  font-weight: 500;
  color: var(--clr-text-li);
  line-height: 1.5;
}

/* ── BUTTON (optional) ── */
.nx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-gold);
  color: #0c1f10;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: clamp(10.5px, 0.85vw, 12px);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.22s,
    transform 0.22s;
  width: fit-content;
}

.nx-btn:hover {
  background: #d4a930;
  transform: translateY(-2px);
}

.nx-btn svg {
  transition: transform 0.22s;
}

.nx-btn:hover svg {
  transform: translateX(4px);
}

/* ============================= */
/* RIGHT — IMAGE                 */
/* Absolutely positioned: full   */
/* height, covers right 45%      */
/* ============================= */

.nx-about-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}

.nx-about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1) contrast(1.1) saturate(1.85);
}

/* strong left-to-right gradient fade */
.nx-about-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(
    90deg,
    var(--clr-bg) 0%,
    rgba(12, 31, 16, 0.8) 55%,
    transparent 100%
  );
  z-index: 2;
}

/* green tint */
.nx-about-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 20, 0.35);
  z-index: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1200px) {
  .nx-about-left {
    width: 58%;
    padding: 36px 40px;
  }

  .nx-about-right {
    width: 46%;
  }

  .nx-about-wrapper::after {
    right: 40%;
  }

  .nx-about-wrapper::before {
    right: calc(40% + 14px);
  }
}

@media (max-width: 992px) {
  .nx-about-wrapper {
    flex-direction: column;
    min-height: unset;
  }

  .nx-about-left {
    width: 100%;
    padding: 36px 28px;
  }

  .nx-about-right {
    position: relative;
    width: 100%;
    height: 240px;
    right: unset;
    top: unset;
    bottom: unset;
  }

  .nx-about-right img {
    filter: brightness(0.5) contrast(1.1);
  }

  .nx-about-right::before {
    width: 100%;
    background: linear-gradient(180deg, var(--clr-bg) 0%, transparent 60%);
  }

  .nx-about-wrapper::before,
  .nx-about-wrapper::after {
    display: none;
  }

  .nx-desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .nx-about-left {
    padding: 28px 20px;
  }

  .nx-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .nx-tag {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .nx-heading {
    text-align: center;
  }

  .nx-about-right {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .nx-about-left {
    padding: 24px 16px;
  }

  .nx-about-right {
    height: 160px;
  }

  .nx-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------- About Us Section CSS End ----------------------------- */
