	.cursor.hover,
.cursor-border.hover {
  opacity: 1;
}

.cursor-border.hover {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  backdrop-filter: blur(4px);
}

.cursor-border.hover::after {
  content: "Xem thêm";
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-family: "Kanit", sans-serif;
}

.hero {
  padding-top: 60px;
}
.hero-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
}
.hero-content {
  max-width: 600px;
}
.hero-content h1 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 35px 0;
  letter-spacing: -2px;
  color: #111;
  position: relative;
}
.hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}
.hero-content .description {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.5;
}
.project-thumbnails {
  display: flex;
  gap: 10px;
}
.project-thumbnails img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 40px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-project {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.featured-project img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}
.cta-button {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.button-ecruit {
  appearance: none;
  background-color: #121212;
  border-width: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: Clarkson, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding: 1.5em 2.2em;
  border-radius: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1), background-color 100ms cubic-bezier(0.694, 0, 0.335, 1),
    color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}

.button-ecruit:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: #ebebeb;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  border: 1px solid gray;
  border-radius: 20px;
}
.button-ecruit:hover {
  color: #121212;
}
.button-ecruit:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
.button-ecruit span {
  z-index: 1;
  position: relative;
}
.button-ecruit:after {
  background-color: #ffffff;
}
.cta-button .arrow-icon {
  font-size: 16px;
  margin-left: 12px;
  transition: all 0.3s ease;
}
.button-ecruit:hover .arrow-icon {
    transform: rotate(-45deg);
}
.brand-showcase {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
  background: #f4f1ee;
}
.showcase-item {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(100% / 6);
  min-width: 300px;
}
.showcase-item .item-title {
  color: #121212;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35em;
  white-space: nowrap;
  letter-spacing: 2px;
  padding: 18px 0;
}
.showcase-track {
  display: flex;
  padding-top: 0;
  gap: 30px;
  animation: showcase-slide 25s linear infinite;
  width: max-content;
}
.showcase-item .separator {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 10px;
}
.project-collection {
  padding-top: 80px;
}
.project-list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: height 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.project-card:hover::before {
  height: 0;
}
.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.project-card .seo-button a {
  padding: 8px 16px;
  border-radius: 20px;

  font-size: 14px;
  font-weight: 500;
}
.project-card .seo-button a:hover {
  background-color: #ffff;
}
.project-label::after {
  content: "→";
  font-size: 16px;
}

.logo-branding {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.hsnl {
  grid-column: 1;
  grid-row: 2;
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.catalogue {
  grid-column: 2;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}

.packaging {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.info-section {
  grid-column: 3;
  grid-row: 2;
  background: white;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 16px;
}

.info-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.logo-content {
  background: url("/files_upload/mockup/thiet-ke-logo-cong-ty-anwa.jpg") center/cover;
  width: 100%;
  height: 100%;
}

.hsnl-content {
  background: url("/files_upload/thu-vien/bia_-ho-so-nang-luc-bulong-sai-gon-6_o264.jpg") center/cover;
  width: 100%;
  height: 100%;
}

.catalogue-content {
  background: url("/images_uploads/918_901_bia-ho-so-nang-luc-cong-ty-yen-sao_o264.jpg") center/cover;
  width: 100%;
  height: 100%;
}

.packaging-content {
  background: url("/files_upload/mockup/website/web-design-1103.jpg") center/cover;
  width: 100%;
  height: 100%;
}
.project .bp_btn_tabs {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #666 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project .bp_ul_tabs {
  justify-content: center;
  gap: 10px;
  border: none;
}
.project .nav-tabs .nav-link.active {
  background: #1a1a1a;
  color: white !important;
  border-color: #1a1a1a;
}
.project .bp-category-title {
  display: none;
}
.project .tab-content {
  padding: 40px 0;
}
.project .bp_block_item .row {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 150px;
  align-items: center;
}
.project .bp_hot_news_img {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.project .bp_number_count {
  display: none;
}
.project .cls_img_hot_news {
  text-align: left !important;
}
.project .news_title {
  order: -1;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.project .news_title a {
  color: #1a1a1a;
}
.project .cls_img_hot_news img {
  border-radius: 24px;
  height: 300px;
  object-fit: cover;
}
.project .bp_news_sub p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project .bp_news_sub > p:nth-child(2) {
  display: none;
}
.project .bp_block_item {
  padding: 40px 0;
  border-bottom: 1px solid #d0d0d0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project .bp_img_preview img {
  height: 500px;
  object-fit: cover;
  width: 100%;
  border-radius: 24px;
}
.project .bp_block_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 -12px 20px -10px rgba(0, 0, 0, 0.1);
}
.project .bp_hot_news_img,
.project .bp_img_preview {
  position: relative;
  overflow: hidden;
}
.project .bp_hot_news_img::before,
.project .bp_img_preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.project .bp_hot_news_img:hover::before,
.project .bp_img_preview:hover::before {
  left: 100%;
}

.project .bp_content_news_main {
  padding: 0;
}
.project .cls_content_hot_news {
  position: relative;
}
.project .bp-news-button-action {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 1px solid #121212;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.project .bp-news-button-action a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 2;
}
.project .bp-news-button-action i {
  color: #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project .bp-news-button-action::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.project .bp-news-button-action:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 255, 255, 0.8);
}

.project .bp-news-button-action:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
}

.project .bp-news-button-action:hover i {
  transform: rotate(45deg);
  color: #121212;
}
.project .phan_trang {
  justify-content: center;

  flex-wrap: wrap;
}
.project .item_page_active {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.phan_trang a,
.phan_trang span {
  min-width: 40px;
  text-align: center;
}
.project-item > .col:last-child .bp_block_item {
  border-block: none;
}
.project-title {
  max-width: 650px;
  margin: 0 auto;
}
.project-title p {
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

@keyframes showcase-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@media (min-width: 1600px) {
  .project-list {
    height: 700px;
    gap: 25px;
  }

  .info-section h1 {
    font-size: 48px;
  }

  .info-section p {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
  .project .bp_block_item .row {
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .project-list {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 15px;
  }

  .logo-branding {
    grid-column: 1;
    grid-row: 1;
    height: 240px;
  }

  .hsnl {
    grid-column: 2;
    grid-row: 1;
    height: 240px;
  }

  .catalogue {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 300px;
  }

  .packaging {
    grid-column: 1;
    grid-row: 3;
    height: 240px;
  }

  .info-section {
    grid-column: 2;
    grid-row: 3;
    height: 240px;
  }
}
@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    padding: 30px 10px 0 10px;
    gap: 20px;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .project-list {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    height: auto;
    gap: 15px;
  }

  .logo-branding {
    grid-column: 1;
    grid-row: 1;
    height: 200px;
  }

  .hsnl {
    grid-column: 2;
    grid-row: 1;
    height: 200px;
  }

  .catalogue {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 250px;
  }
  .packaging {
    grid-column: 1;
    grid-row: 3;
    height: 200px;
  }

  .info-section {
    grid-column: 2;
    grid-row: 3;
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 0;
  }
  .hero-visual {
    display: block;
    width: 100%;
  }
  .featured-project img {
    height: 220px;
  }
  .project .bp_block_item .row {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .project .bp_img_preview img {
    display: none;
  }
  .project .bp-news-button-action {
    bottom: 130px;
    right: unset;
  }
  .project .bp_block_item .row {
    grid-template-columns: 1fr;
  }
  .project-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .logo-branding,
  .hsnl,
  .catalogue,
  .packaging,
  .info-section {
    grid-column: 1;
    grid-row: auto;
    height: 240px;
  }
  .showcase-item .item-title {
    font-size: 18px;
  }
  .catalogue {
    height: 300px;
  }

  .info-section {
    height: auto;
    min-height: 200px;
  }
  .hero-content .description {
    font-size: 16px;
  }
  .hero {
    padding-top: 20px;
  }
  .project-title p {
    font-size: 36px;
  }
  .project .bp_btn_tabs {
    padding: 5px 15px;
    font-size: 14px;
  }
  .project .news_title {
    font-size: 20px;
  }
  .phan_trang {
    gap: 4px;
    padding: 0 10px;
  }

  .phan_trang a,
  .phan_trang span {
    padding: 6px 8px;
    font-size: 14px;
    min-width: 35px;
  }

  .item_page_active {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .phan_trang a:not(.bp_cls_prev):not(.bp_cls_next):not(.bp_cls_next_i) {
    display: none;
  }

  .phan_trang a:nth-child(2),
  .phan_trang a:nth-child(3),
  .phan_trang a:nth-child(4),
  .phan_trang a:nth-child(11),
  .phan_trang a:nth-child(12) {
    display: inline-flex;
  }

  .phan_trang::after {
    content: "...";
    color: #333;
    padding: 6px 4px;
    font-weight: bold;
  }
}
@media (max-width: 700px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .brand-showcase {
    font-size: 1.1rem;
    gap: 10px;
    padding: 10px 0;
  }
  .project-thumbnails img {
    width: 60px;
    height: 45px;
    border-radius: 20px;
  }
}
@media (max-width: 567px) {
  .cta-button {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .phan_trang {
    gap: 2px;
    padding: 0 5px;
  }

  .phan_trang a,
  .phan_trang span {
    padding: 4px 6px;
    font-size: 12px;
    min-width: 30px;
  }

  .item_page_active {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .phan_trang a:not(.bp_cls_prev):not(.bp_cls_next):not(.bp_cls_next_i) {
    display: none;
  }

  .phan_trang a:nth-child(2),
  .phan_trang a:nth-child(3),
  .phan_trang a:nth-child(4) {
    display: inline-flex;
  }

  .bp_cls_next_i {
    display: none !important;
  }
}

