/* Webfont: Gumani-Medium */
@font-face {
  font-family: 'GumaniMed';
  src: url('/assets/font/Gumani.eot');
  /* IE9 Compat Modes */
  src: url('/assets/font/Gumani.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('/assets/font/Gumani.woff') format('woff'),
    /* Modern Browsers */
    url('/assets/font/Gumani.woff2') format('woff2'),
    /* Modern Browsers */
    url('/assets/font/Gumani.ttf') format('truetype');
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'GumaniMed';
  letter-spacing: normal;
  font-weight: 500;
}

p {
  font-size: 16px;
}

img {
  max-width: 100%;
}

html.sticky-header-active #header .header-body.header-body-bottom-border {
  border-bottom: 1px solid rgba(234, 234, 234, 0.5) !important;
  background: #fff;
}

html.sticky-header-active .header-body .text-color-light {
  color: #000 !important;
}

@media (min-width: 992px) {
  #header .header-nav-main nav>ul>li>a {
    font-size: 16px;
    font-style: normal;
    text-transform: capitalize;
  }
}

.hero-banner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}


.hero-banner .container, .hero-banner .row {
  height: 100%
}

.hero-banner h1 {
  color: #fff;
  font-size: 40px;
}

.hero-banner h2 {
  color: #fff;
  font-size: 28px;
}

.hero-banner p {
  color: #fff
}

.btn-hero {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 16px;
}

.btn-with-arrow-solid.btn-hero span {
  background-color: #fff;
}

.btn-with-arrow-solid.btn-hero span i {
  color: #000;
}

.btn-with-arrow-solid.btn-hero {
  padding-right: 60px;
}

.color-primary {
  color: #a78035;
}

section.section-bg {
  background: #f6f6f6;
}

.kwick-container {
  display: flex;
  width: 100%;
  /* Full-width container */
  height: 300px;
  /* Adjust as needed */
  overflow: hidden;
}

.kwick-panel {
  flex-grow: 1;
  flex-basis: 150px;
  /* Ensure a consistent initial width */
  transition: all 0.3s ease-in-out;
  /* Smooth transition for all properties */
  margin: 0 4px;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel1 {
  background: #d5b57a;
}

.panel2 {
  background: #a78035;
}

.panel3 {
  background: #0e235c;
}

.panel4 {
  background: #202821;
}

/* Background image when expanded */
.kwick-panel.expanded.panel1 {
  background-image: url('/assets/web/images/home-cover.jpg');
  background-size: cover;
  background-position: center;
}

.kwick-panel.expanded.panel2 {
  background-image: url('/assets/web/images/retails-cover.jpg');
  background-size: cover;
  background-position: center;
}

.kwick-panel.expanded.panel3 {
  background-image: url('/assets/web/images/techpark-cover.jpg');
  background-size: cover;
  background-position: center;
}

.kwick-panel.expanded.panel4 {
  background-image: url('/assets/web/images/hotels-cover.jpg');
  background-size: cover;
  background-position: center;
}

/* Hide content by default, only show thumb */
.kwick-panel .thumb {
  display: block;
}

.kwick-icon {
  filter: invert(1);
  margin-bottom: 10px;
  width: 50px;
}

.thumb h4 {
  font-weight: 500;
}

.kwick-panel .content {
  display: none;
}

/* Show content when panel is expanded */
.kwick-panel.expanded .thumb {
  display: none;
}

.kwick-panel.expanded .content {
  display: block;
}

.kwick-panel .content {
  opacity: 0;
  position: relative;
  height: 100%;
  text-align: left;
  color: white;
  transition: opacity 0.3s ease-in-out;
}

.kwick-panel .content h4 {
  position: absolute;
  top: 50px;
  left: 50px;
  font-weight: 500;
  font-size: 28px;
}

.kwick-overlay {
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
}

/* Show content when expanded */
.kwick-panel.expanded .content {
  opacity: 1;
}

.kwick-container .panel1 {
  flex-grow: 4;
  /* Initial expansion for panel 1 */
}

/* Smooth hover effect */
.kwick-panel:hover {
  flex-grow: 4;
}

.kwick-panel:not(:hover) {
  flex-grow: 1;
}

@media (max-width: 991px) {
  .kwick-container {
    flex-direction: column;
    /* Stack panels in a column */
    height: auto;
    /* Allow height to adjust for mobile */
  }

  .kwick-panel {
    flex-grow: 0;
    height: 300px;
    /* Set height for each panel (adjust as necessary) */
  }

  /* Show background images for all panels on mobile */
  .panel1 {
    background-image: url('/assets/images/home-cover.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
  }

  .panel2 {
    background-image: url('/assets/images/retails-cover.jpg');
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
  }

  .panel3 {
    background-image: url('/assets/images/techpark-cover.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
  }

  .panel4 {
    background-image: url('/assets/images/hotels-cover.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
  }

  /* Hide content for mobile and just show the background */
  .kwick-panel .content {
    display: none;
  }
}

/* .project-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
}

.project-title a:hover {
  text-decoration: none !important;
}

.project-title h3 {
  color: #a78035;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
}

.project-title span {
  background: #a78035;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-title span i {
  color: #fff;
} */

.swiper-container {
  position: relative;
}

.swiper-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.swiper-navigation .swiper-button-next, .swiper-navigation .swiper-button-prev {
  background-color: transparent;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.swiper-navigation .swiper-button-next:after, .swiper-navigation .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}

.swiper-navigation .swiper-button-next {
  right: -50px;
}

.swiper-navigation .swiper-button-prev {
  left: -50px;
}

#footer {
  background: #202821;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
}

.footer-contact p {
  margin-bottom: 0;
  color: #fff;
}

.text-color-light {
  color: #fff !important;
}

.overlay-color-dark:not(.no-skin):before {
  background-color: #000 !important;
}

.mt-lg-minus {
  margin-top: -100px;
}

.mission-box {
  background: #fff;
  z-index: 999;
  position: relative;
  padding: 30px;
  margin-bottom: 50px;
}

.core-box {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #a78035, #e0c066) border-box;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 340px;
}

.core-box img {
  width: 60px;
  margin-bottom: 20px;
}

.big-padding {
  padding: 300px 0 !important;
}

.team-border {
  border: 1px solid #e8e8e8;
}

.team-border:first-child, .team-border:nth-child(2) {
  border-right: 0;
}

.team-border:nth-child(4), .team-border:nth-child(5) {
  border-top: 0;
  border-right: 0;
}

.team-border:nth-child(6) {
  border-top: 0;
}

.team-box {
  position: relative;
  padding: 35px 50px;
  overflow: hidden;
  height: 420px;
}

.team-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.team-info .team-name {
  width: 80%;
}

.team-cta span {
  background: #a78035;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-cta span i {
  color: #fff;
}

.team-cta a:hover {
  text-decoration: none !important;
}

.team-name h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 20px;
}

.team-name p {
  margin-bottom: 0;
  line-height: 20px;
}

.team-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.team-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-cover img {
  width: 100%;
}

.team-box:hover .team-hover {
  opacity: 1;
  transition-duration: 0.5s;
}

.team-hover .team-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 80%;
  z-index: 99;
}

.team-hover .team-info h5, .team-hover .team-info p {
  color: #fff;
}

.team-hover:before {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

@media (max-width: 991.98px) {
  .team-box {
    height: auto;
    padding: 30px 20px;
  }

  .team-hover img,
  .team-cover img {
    height: auto;
    object-fit: cover;
  }

  .team-hover .team-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 90%;
  }

  .team-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .team-info .team-name {
    width: 100%;
  }

  .team-cta span {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 575.98px) {
  .team-box {
    padding: 20px 15px;
  }

  .team-name h5 {
    font-size: 16px;
  }

  .team-name p {
    font-size: 14px;
  }

  .team-hover .team-info {
    bottom: 10px;
    left: 10px;
    width: 90%;
  }

  .team-cta span {
    width: 24px;
    height: 24px;
  }

  .modal-dialog.modal-lg {
    max-width: 95%;
    margin: 1rem auto;
  }

  .modal-body .col-lg-4,
  .modal-body .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .modal-body img {
    margin-bottom: 15px;
  }
}



.award-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-inline-start: 0;
}

.award-list li {
  margin: 10px;
  width: calc((100% - 60px) /3);
}

.award-img {
  width: 240px;
  height: 200px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-list-2 {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.award-list-2 li {
  width: 33%;
  height: 180px;
  padding: 10px;
}

/* NEW CSS FOR RESPONSIVENESS */
@media (max-width: 991.98px) {

  /* For screens smaller than 992px (e.g., tablets) */
  .award-list-2 li {
    width: 50%;
    /* Make it 2 columns */
    height: auto;
    /* Allow height to adjust */
    min-height: 150px;
    /* Ensure a minimum height if content is short */
  }
}

@media (max-width: 767.98px) {

  /* For screens smaller than 768px (e.g., larger phones) */
  .award-list-2 li {
    width: 100%;
    /* Make it 1 column */
    height: auto;
    /* Allow height to adjust */
    min-height: 120px;
    /* Adjust min height for single column */
    margin-bottom: 15px;
    /* Add space between stacked items */
  }

  /* Remove margin-bottom from the last item in the list if desired */
  .award-list-2 li:last-child {
    margin-bottom: 0;
  }
}

/* Custom styles for active tab */
.custom-tabs .custom-tab-link.active {
  background-color: #a78035 !important;
  color: white !important;
  border-color: #a78035 #a78035 transparent !important;
}

/* Custom class for centering text */
.custom-text-center {
  text-align: center;
}

/* Removed redundant .nav-tabs styles */
.custom-tabs li .custom-tab-link, .custom-tabs li .custom-tab-link:hover {
  background: var(--grey-100);
  color: var(--grey-500);
  border-bottom: none;
  border-left: 1px solid #EEE !important;
  border-right: 1px solid #EEE !important;
  border-top: 1px solid #EEE !important;
}

.career-box {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #a78035, #e0c066) border-box;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 390px;
}

.career-box img {
  width: 60px;
  margin-bottom: 20px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-image {
  width: 100%;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Adjust opacity here */
}

.professional-box img {
  width: 100%;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

.professional-body {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  /* Aligns items vertically */
  justify-content: space-between;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  gap: 10px;
  /* Adds spacing between text and button */
  min-height: 120px;
}

.professional-body h4 {
  flex: 1;
  /* Allows text to take available space */
  margin: 0;
}

.btn-circle {
  flex-shrink: 0;
  /* Prevents button from shrinking */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}


.btn-professional {
  background: #a78035;
  color: #fff;
  font-size: 16px;
}

.btn-with-arrow-solid.btn-professional {
  padding-right: 60px;
}

.btn-professional:hover {
  border-color: #000000;
  font-size: 16px;
}

.text-box {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  padding: 12px 16px;
  max-width: 280px;
  /* Reduce the width */
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  /* Slight transparency to blend with the image */
}

.text-box h2 {
  font-size: 1.2rem;
  /* Slightly smaller */
  margin-bottom: 6px;
  color: #333;
}

.text-box p {
  font-size: 0.8rem;
  /* Smaller text */
  color: #666;
  line-height: 1.3;
}

.career-image {
  width: 100%;
  height: 500px !important;
  /* Adjust height as needed */
  object-fit: cover;
  /* Ensures the image fills the space without distortion */
  display: block;
}

/* Media Card Container */
.media-card {
  position: relative;
  background: white;
  /* padding: 20px; */
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 205px;
  /* Ensures enough space for text and icon */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.media-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  justify-content: space-between;
}


.inner-news-container {
  background: #fff;
  padding: 50px 0;
}

.img-full {
  width: 100%;
}

.btn-professional-outline {
  border-color: #a78035;
  color: #000000;
  font-size: 16px;
}

.btn-professional-outline:hover {
  border-color: #a78035;
  font-size: 16px;
}

/* Arrow Container */
.media-arrow {
  align-self: flex-end;
  /* Keeps arrow at bottom right */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Arrow Icon */
.media-arrow-icon {
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease-in-out;
}

/* Hover Effects */
.media-arrow:hover {
  transform: rotate(360deg);
  background-color: #a78035;
}

.media-arrow:hover .media-arrow-icon {
  color: white;
  /* Changes arrow color to white when hovered */
}

/* Remove underline from the link inside the arrow */
.media-arrow a {
  text-decoration: none !important;
}


.guide-nav-tabs .guide-nav-link.active {
  border-bottom: solid #a78035 !important;
  color: #a78035 !important;
}

.guide-nav-tabs {
  display: flex;
  width: 100%;
}

.guide-nav-tabs .nav-item:hover {
  color: #a78035;
}

.guide-nav-tabs .nav-item {
  flex-grow: 1;
  text-align: center;
}

.guide-nav-tabs .nav-link {
  display: block;
  width: 100%;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #a78035;
  color: #ffffff;
}

#resultTable {
  display: none;
  /* Hide table initially */
}

#resultTable .table-responsive {
  width: 100%;
  overflow-x: auto;
}

#resultTable table {
  min-width: 800px;
  /* force horizontal scroll on small screens */
  border-collapse: collapse;
  width: 100%;
}

#resultTable th,
#resultTable td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}


input[type="text"] {
  border-color: transparent;
}

.logo-item {
  width: 100%;
  height: 130px;
}

.nsip-image {
  object-fit: contain;
  object-position: left;
  width: 100%;
  height: 100%;
}

.spacing-fix {
  margin-bottom: 0;
  padding-bottom: 0;
}

.logos .row {
  display: flex;
  align-items: center;
}

.map-image {
  width: 100%;
}

.selangor-image {
  width: 100%;
}

.icon img {
  width: 60px;
  margin-bottom: 20px;
}

.esg-logos {
  position: absolute;
  top: 260px;
  /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ESG-image {
  width: 80px;
  /* Adjust size as needed */
  height: auto;
}


.smart-box {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #a78035, #e0c066) border-box;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.smart-box img {
  width: 100px;
  margin-bottom: 20px;
}

.esg-image {
  width: 100%;
}

.mip-box {
  position: relative;
  border: 2px solid transparent;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.mip-box img {
  width: 80px;
  margin-bottom: 20px;
}

.project-logo {
  width: 280px;
}

.project-completed {
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
}

.project-completed h3 {
  color: #a78035;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 20px;
}

.project-completed p {
  margin-bottom: 0;
}

.competitive-box {
  position: relative;
  border: 2px solid transparent;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.competitive-box img {
  width: 80px;
  margin-bottom: 20px;
}

.competitive-box h4 {
  margin-bottom: 0px;
  padding: 10px
}

.innosphere-box {
  position: relative;
  border: 2px solid transparent;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.innosphere-box img {
  width: 80px;
  margin-bottom: 20px;
}

.priority-box {
  position: relative;
  border: 2px solid transparent;
  /*background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #a78035, #e0c066) border-box;*/
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 275px;
}

.priority-box img {
  width: 100px;
  margin-bottom: 20px;
}

.main-image {
  opacity: 0.5;
  /* Adjust opacity to make logos more visible */
  width: 100%;
}

.logo-container {
  position: absolute;
  top: 260px;
  /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}

.logo-block {
  text-align: center;
}

.logo-image {
  max-width: 110px;
  /* Adjust size as needed */
  height: auto;
  display: block;
}

.mySwiper2 {
  position: relative;
}

.mySwiper2+.swiper-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  /* allow arrows to float over */
}

.mySwiper2+.swiper-navigation .swiper-button-prev,
.mySwiper2+.swiper-navigation .swiper-button-next {
  pointer-events: all;
  background-color: transparent;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
}

.mySwiper2+.swiper-navigation .swiper-button-prev {
  left: -40px;
}

.mySwiper2+.swiper-navigation .swiper-button-next {
  right: -40px;
}

.mySwiper2+.swiper-navigation .swiper-button-prev:after,
.mySwiper2+.swiper-navigation .swiper-button-next:after {
  font-size: 20px;
  font-weight: 900;
}

.floating-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  background-color: #385a5c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 4px;
  transition: background 0.3s ease;
}

.float-btn:hover {
  background-color: #6c6c6c;
}

.float-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}


.brochure-links .info-box {
  background-color: #ffffff;
  border: none;
  /* removed border */
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  /* light shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochure-links .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  /* stronger shadow on hover */
}

.brochure-links .info-box h6 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  color: #000;
  /*font-family: 'Georgia', serif;*/
}

.smart-solution-box {
  position: relative;
  border: 2px solid transparent;
  /*background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #a78035, #e0c066) border-box;*/
  padding: 20px 10px;
  /* Reduced padding */
  text-align: center;
  border-radius: 8px;
  /* Slightly smaller radius for a less bulky look */
  margin-bottom: 15px;
  /* Reduced margin to fit in one row */
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow to make it pop */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 245px;
}

.smart-solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  /* Stronger shadow on hover */
}

.smart-solution-box img {
  width: 80px;
  /* Slightly reduced image size */
  margin-bottom: 15px;
  filter: brightness(1.2);
  /* Brightens the image to make it stand out more */
}


.project-title {
  display: flex;
  flex-direction: column;
  /* Stack the titles vertically */
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 20px;
  background: #fff;
}

.title-row {
  display: flex;
  justify-content: space-between;
  /* Space between title and arrow */
  align-items: center;
  /* Vertically align the title and arrow */
  width: 100%;
  /* Ensure the row takes full width */
}

.project-title h3 {
  color: #a78035;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
}

.project-title .location {
  color: #a78035;
  font-size: 18px;
  /* Adjust this size for the second line */
  margin-top: 5px;
}

.project-title span {
  background: #a78035;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-title span i {
  color: #fff;
}


/* Media Card Container */
/* .events-card {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.events-arrow {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
} */

.events-card {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* New wrapper for title + arrow */
.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Optional: spacing tweak for title */
.events-title {
  margin: 0;
  font-size: 1.2rem;
}

/* Arrow button styling */
.events-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}


/* Arrow Icon */
.events-arrow-icon {
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease-in-out;
}

/* Hover Effects */
.events-arrow:hover {
  transform: rotate(360deg);
  background-color: #a78035;
  color: #ffffff;
}

.events-arrow:hover .media-arrow-icon {
  color: white !important;
  /* Changes arrow color to white when hovered */
}

/* Remove underline from the link inside the arrow */
.events-arrow a {
  text-decoration: none !important;
}

.events-image {
  width: 100%;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  object-fit: cover;
  /* Ensures the image fills the space without distortion */
  display: block;
}


.row.masonry {
  column-count: 4;
  column-gap: 0;
  /* Remove column gaps */
  padding: 0;
  /* Remove padding if any */
  margin: 0;
  /* Remove margin if any */
}

.masonry-item {
  break-inside: avoid;
  margin: 0;
  /* Remove vertical spacing */
  padding: 0;
  /* Remove any internal padding */
}

.masonry-item img {
  width: 100%;
  height: auto;
  border-radius: 0;
  /* Optional: remove if you want sharp edges */
  display: block;
}

@media (max-width: 1200px) {
  .row.masonry {
    column-count: 3 !important;
  }
}

@media (max-width: 992px) {
  .row.masonry {
    column-count: 2 !important;
  }
}

@media (max-width: 576px) {
  .row.masonry {
    column-count: 1 !important;
  }
}



.form-control {
  border-color: rgba(0, 0, 0, 0.09) !important;
}

.mission-swiper {
  overflow: hidden;
  /* Hide the overflowing slides */
}


.mission-swiper-slide {

  flex: 0 0 auto;
  padding: 40px 20px 20px;
  /* Top padding increased to 40px */
  margin-right: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-height: 245px;
  position: relative;


}

.slide-number {
  position: absolute;
  top: 5px;
  left: 15px;
  /* Changed from right to left */
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  color: #a78035;
  /* Adjust color as needed */
}


.mission-swiper-slide:last-child {
  margin-right: 0;
}

.chinese-font {
  font-family: 'Microsoft YaHei';
  letter-spacing: normal;
  font-weight: 400;
}

.chinese-font h1, h2, h3, h4, h5, h6 {
  font-family: 'Microsoft YaHei';
  letter-spacing: normal;
  font-weight: 500;
}

.chinese-font .img-green {
  width: 90px !important;
}

/* Default: hide the ::before pseudo-element */
.mySwiper .swiper-slide::before {
  content: "";
  display: none;
}

@media (max-width: 767px) {

  /* Hide the desktop banner image on mobile */
  .mySwiper .swiper-slide img.img-banner {
    display: none !important;
  }

  /*
   * For mobile, the ::before pseudo-element will now handle BOTH
   * the background image AND the semi-transparent overlay.
   */
  .mySwiper .swiper-slide::before {
    content: "";
    display: block;
    /* Make the pseudo-element visible for mobile */
    position: absolute;
    inset: 0;
    /* Ensures it covers the entire swiper-slide area */

    /* Set the mobile-specific background image */
    background-image: url('/assets/web/images/nct-banner-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Good practice */

    /* Apply the overlay color using background-color */
    background-color: rgba(0, 0, 0, 0.3);
    /* The semi-transparent overlay color */

    /* Blend the background image with the background color to create the overlay effect */
    background-blend-mode: multiply;
    /* This is key for the overlay effect */

    z-index: 1;
    /* Places this combined background+overlay below the content */
  }


  .mySwiper .swiper-slide .hero-banner {
    position: relative;
    /* Maintain position for content z-index */
    background: none;
    /* Crucially, remove its own background on mobile */
    z-index: 2;
    /* Ensures the text/content is always on top of the background */
  }
}

.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
}

.page-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.page-header .row {
  margin-top: 0 !important;
  /* Reset mt-5 on mobile */
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 20px;
    /* Reduced top-bottom padding for mobile */
  }

  .page-header .row {
    margin-top: 0 !important;
  }

  .page-header h4 {
    /* Optional: Wrap text nicely on small screens */
    white-space: normal;
    word-break: break-word;
    padding: 0 10px;
    /* Added for text padding */
    font-size: 3rem;
    /* Adjust font size for smaller screens. Use rem for responsiveness. */
    line-height: 1.2;
    /* Improve line spacing if text wraps */
  }
}

/* Further reduce font size for even smaller screens if necessary */
@media (max-width: 576px) {
  .page-header h4 {
    font-size: 2.2rem;
    /* Even smaller font size for very small mobile devices */
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 60px 15px;
  }
}


@media (max-width: 991px) {
  #header .header-nav-main {
    position: absolute;
    background: #a78035;
    width: 100%;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 991px) {
  #header .header-nav-main.header-nav-main-square nav>ul>li a {
    border-radius: 0 !important;
    color: #fff;
  }
}

@media (max-width: 991px) {
  #header .header-nav-main nav>ul li a:active {
    background-color: transparent;
    color: inherit;
  }
}

@media (max-width: 991px) {
  #header .header-nav-main nav>ul li {
    border-bottom: 1px solid #e8e8e8;
    clear: both;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 34px;
  }

  .inner-news-container {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #000000;
}

@media (max-width: 576px) {
  .award-list li {
    margin: 10px;
    width: calc((100% - 60px) / 2);
  }

  .award-img {
    width: 100%;
    height: 100%;
  }
}