.category-title {
  padding: 30px;
  /* increase for more gap */
}

/* LONG LEFT LINE */
.category-title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 20px;
  width: 76%;
  /* controls long line length */
  height: 1px;
  background: #ca943d;
}

/* SHORT RIGHT LINE */
.category-title::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 9%;
  /* small line after triangle */
  height: 1px;
  background: #ca943d;
}

/* TRIANGLE */
.category-title span {
  position: absolute;
  top: 2px;
  right: 15%;
  /* position triangle */
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 13px solid #ca943d;
}

/* Product Page
for Product Grids */
.grid-item .category-title {
  padding: 20px;
  padding-bottom: 12px;
  position: relative;
  display: block;
}

/* LONG LEFT LINE */
.grid-item .category-title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 20px;
  width: 70%;
  /* controls long line length */
  height: 1px;
  background: #ca943d;
}

/* SHORT RIGHT LINE */
.grid-item .category-title::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 10%;
  /* small line after triangle */
  height: 1px;
  background: #ca943d;
}

/* TRIANGLE */
.grid-item .category-title span {
  position: absolute;
  top: 2px;
  right: 18%;
  /* position triangle */
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 13px solid #ca943d;
}

/* mission vision values */
.divider-triangle-line {
  display: flex;
  align-items: center;
  margin-top: 25px;
  width: 100%;
}

.divider-triangle-line .line-left {
  width: 40px;
  height: 1px;
  background: #b5b5b5;
}

.divider-triangle-line .line-right {
  flex-grow: 1;
  height: 1px;
  background: #b5b5b5;
}

.divider-triangle-line .triangle-up {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #b5b5b5;
  margin: 0 4px;
}

/* ===== SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.social-sidebar a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  text-decoration: none;
  background-color: #ca943d;
  color: #fff;
  overflow: hidden;
  width: 42px;
  height: 42px;
  border-radius: 6px 0 0 6px;
  transition:
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 2px 2px 8px rgba(202, 148, 61, 0.3);
}

.social-sidebar a:hover {
  width: 165px;
  background-color: #b5802a;
  box-shadow: 3px 3px 14px rgba(202, 148, 61, 0.55);
}

.social-sidebar a .icon-wrap {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.social-sidebar a .label {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding-left: 12px;
  opacity: 0;
  transition:
    opacity 0.25s ease 0.1s;
  pointer-events: none;
}

.social-sidebar a:hover .label {
  opacity: 1;
}

/* ===== DEMO PAGE CONTENT ===== */
.demo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-left: 60px;
}

.demo-box {
  background: white;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
}

.demo-box h2 {
  color: #ca943d;
  font-size: 24px;
  margin-bottom: 10px;
}

.demo-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== PRODUCT FEATURE ICON'S STYLE ===== */
.product-features img {
  width: 40%;
  margin-bottom: 10px;
}

.product-features span {
  color: white;
}

.product-features .icon-first {
  margin-bottom: 40px;
}