@charset "UTF-8";
body, .site-main {
  font-family: "Roboto", sans-serif !important;
}
body a, .site-main a {
  text-decoration: none;
}

body.customize-support:not(.wp-admin) {
  background: #0f0f0f !important;
  color: #FFF !important;
}

.header-body .topbar {
  background: #111;
  color: #cfcfcf;
  font-size: 13px;
}
.header-body .topbar small {
  color: inherit;
}
.header-body .topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-body .site-header {
  background: #0f0f0f;
}
.header-body .site-header .header-gr {
  display: flex;
  justify-content: space-between;
}
.header-body .menu-item a {
  color: #ddd !important;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  text-decoration: none;
}
.header-body .menu-item a:hover {
  color: #fff !important;
}
.header-body .menu-item.active a {
  color: #f2c21a !important;
  font-weight: 600;
}
.header-body .btn-contact {
  background: #f2c21a;
  color: #111;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  margin-left: 30px;
}
.header-body .btn-contact:hover {
  filter: brightness(0.95);
}
.header-body .lang-links a {
  color: #cfcfcf;
  font-size: 12px;
  margin-left: 8px;
}
.header-body .brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header-body .brand-tagline {
  font-size: 11px;
  color: #bdbdbd;
  letter-spacing: 0.6px;
}

.wp-admin .media-frame-content .media-types-required-info {
  display: none;
}
.wp-admin .media-frame-content .compat-attachment-fields .label {
  min-width: 20%;
}
.wp-admin .media-frame-content .compat-attachment-fields .field {
  width: 75%;
}

/* ===================== footer.scss ===================== */
.site-footer {
  background: #111;
  color: #ccc;
  font-size: 0.95rem;
  position: relative;
}
.site-footer .newsletter-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.site-footer .newsletter-form input {
  background: transparent;
  border: 1px solid #888;
  border-radius: 6px;
  color: #fff;
  height: 46px;
  padding: 0 12px;
  margin-right: 20px;
}
.site-footer .newsletter-form input::placeholder {
  color: #aaa;
}
.site-footer .newsletter-form input:focus {
  border-color: #f2c21a;
  box-shadow: none;
}
.site-footer .newsletter-form .btn-subscribe {
  background: #f2c21a;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  padding: 0 20px;
  transition: 0.3s;
  white-space: nowrap;
}
.site-footer .newsletter-form .btn-subscribe:hover {
  filter: brightness(0.9);
}
.site-footer .footer-main {
  padding-top: 1rem;
}
.site-footer .footer-main .footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}
.site-footer .footer-main ul.footer-menu {
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
  margin: 0;
  width: 100%;
  text-align: left;
}
.site-footer .footer-main ul.footer-menu li {
  list-style: none;
  font-weight: 600;
  font-size: 18px;
}
.site-footer .footer-main ul.footer-menu li a {
  color: #fff;
  line-height: 30px;
  text-decoration: none;
}
.site-footer .footer-main ul.footer-menu li a:hover {
  color: #fff !important;
  text-decoration: none;
}
.site-footer .footer-main ul.footer-menu .sub-menu {
  padding: 0;
}
.site-footer .footer-main ul.footer-menu .sub-menu li {
  font-size: 15px;
  font-weight: normal;
}
.site-footer .footer-main ul.footer-menu .sub-menu li a {
  color: #ddd;
}
.site-footer .footer-main .footer-desc {
  max-width: 280px;
  color: #aaa;
}
.site-footer .footer-main .footer-contact li {
  font-size: 15px;
  color: #ddd;
  line-height: 28px;
}
.site-footer .footer-main .footer-contact a {
  font-size: 15px;
  color: #ddd;
  text-decoration: none;
}
.site-footer .footer-main .footer-contact a:hover {
  color: #f2c21a;
}
.site-footer .footer-main .footer-contact-info {
  padding-left: 50px;
}
.site-footer .footer-logo {
  position: relative;
}
.site-footer .footer-logo:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 50%;
  border-right: 1px solid rgba(221, 221, 221, 0.431372549);
}
.site-footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom {
  color: #ddd;
}
.site-footer .footer-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: 0.3s;
}
.site-footer .footer-icons a:hover {
  color: #f2c21a;
}

@media (max-width: 767.98px) {
  .site-footer {
    text-align: center;
  }
  .site-footer .newsletter-form {
    flex-direction: column;
  }
  .site-footer .newsletter-form input {
    margin-bottom: 0.5rem;
  }
  .site-footer .footer-icons {
    justify-content: center;
  }
}
.scrollTop {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background-color: #f2c21a;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9999999;
}
.scrollTop a, .scrollTop a:hover {
  font-size: 24px;
  color: #fff;
}

#primary .site-main {
  background: #121212;
}

/* BlockUI container */
.blockUI.blockMsg {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Spinner sk-wave căn giữa */
.sk-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Spinner màu vàng */
.sk-wave .sk-rect {
  background-color: #FFCC00 !important;
}

.block-banner-homepage {
  height: 60vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.block-banner-homepage .banner-inner {
  color: #fff;
}
.block-banner-homepage .banner-inner .banner-content {
  padding-top: 10vh;
  padding-bottom: 30px;
}
.block-banner-homepage .banner-inner .banner-content .banner-title {
  font-size: 58px;
  font-weight: 700;
}
.block-banner-homepage .banner-inner .banner-content .light-title {
  font-size: 58px;
  font-weight: 300;
}
.block-banner-homepage .banner-inner .banner-content .small-title {
  font-size: 22px;
}
.block-banner-homepage .banner-inner a {
  background: #f2c21a;
  padding: 14px 60px;
  font-weight: 600;
  color: #000;
  border-radius: 12px;
  text-decoration: none;
}
.block-banner-homepage .banner-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.block-banner-homepage .scroll-icon {
  width: 35px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out;
}
.block-banner-homepage .scroll-icon:hover {
  border-color: #fff;
}
.block-banner-homepage .arrow {
  width: 10px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 10px;
}
@keyframes pulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.block-our-service {
  background: #121212;
  padding: 100px 0 50px;
  color: #fff;
}
.block-our-service .small-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.block-our-service h2 {
  font-size: 42px;
  margin-bottom: 80px;
}
.block-our-service .service-items {
  overflow: hidden;
  padding-bottom: 80px;
}
.block-our-service .accordion-panels {
  display: flex;
  width: 100%;
  height: 610px;
  gap: 12px;
}
.block-our-service .panel {
  flex: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.block-our-service .panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-our-service .panel .panel-title-vertical {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: #fff;
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.block-our-service .panel .panel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.block-our-service .panel .panel-content h2 {
  font-size: 42px;
  margin: 0 0 50px 0;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 3px;
}
.block-our-service .panel .panel-content .panel-btn {
  padding: 12px 50px;
  background: #FFC800;
  border-radius: 10px;
  color: #000;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
}
.block-our-service .panel.is-active {
  flex: 4;
}
.block-our-service .panel.is-active .panel-title-vertical {
  opacity: 0;
}
.block-our-service .panel.is-active .panel-content {
  opacity: 1;
  pointer-events: all;
}

.block-our-project {
  background: #121212;
  color: #fff;
  padding: 50px 0;
}
.block-our-project .small-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.block-our-project h2 {
  font-size: 42px;
  margin: 0;
  width: 90%;
}
.block-our-project .title-gr {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.block-our-project .title-gr a {
  color: #f2c21a;
  border: 1px solid #f2c21a;
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.block-our-project .title-gr a:hover {
  background-color: #FFCC00;
  color: #1a1a1a;
}
.block-our-project .title-gr a i {
  margin-left: 12px;
  font-size: 20px;
}
.block-our-project .project-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 20px 0;
}
.block-our-project .project-slider-wrapper .project-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  outline: none;
}
.block-our-project .project-slider-wrapper .project-arrow--prev {
  left: -26px;
}
.block-our-project .project-slider-wrapper .project-arrow--next {
  right: -26px;
}
.block-our-project .project-slider-wrapper .project-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.block-our-project .project-slider-wrapper .project-slider::-webkit-scrollbar {
  display: none;
}
.block-our-project .project-slider-wrapper .project-slider .project-track {
  display: flex;
  align-items: stretch;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 36%;
  padding-right: 24px;
  height: 600px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide.is-active {
  width: 66%;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide.is-active .project-card {
  border: 4px solid #FFD600;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide.is-active .project-card .project-info a {
  display: flex;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide .project-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide .project-card .project-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide .project-card .project-info .project-caption {
  margin: 0;
  padding: 4px 10px;
  color: #fff;
  font-size: 42px;
  font-weight: 500;
}
.block-our-project .project-slider-wrapper .project-slider .project-track .project-slide .project-card .project-info a {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFD600;
  justify-content: center;
  align-items: center;
  color: #121212;
  font-size: 24px;
}
.block-our-project .project-slider-wrapper .project-dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 12px;
}
.block-our-project .project-slider-wrapper .project-dots .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #FFD600;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.block-our-project .project-slider-wrapper .project-dots .dot.is-active {
  background: #FFD600;
  transform: scale(1.1);
}

.block-our-gallery {
  background-color: #121212;
  padding: 80px 0;
  color: #fff;
}
.block-our-gallery .small-title {
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}
.block-our-gallery .gallery-title {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  margin-bottom: 50px;
}
.block-our-gallery .gallery-wrapper {
  position: relative;
}
.block-our-gallery .gallery-slider {
  margin: 0 -15px;
}
.block-our-gallery .gallery-slider .slick-slide {
  padding: 0 15px;
}
.block-our-gallery .gallery-slider .slick-list {
  overflow: hidden;
}
.block-our-gallery .gallery-slider .slick-dots li {
  margin: 0 4px;
}
.block-our-gallery .gallery-slider .slick-dots li button:before {
  color: #f2c21a;
  opacity: 0.4;
  font-size: 14px;
}
.block-our-gallery .gallery-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.block-our-gallery .gallery-slide {
  outline: none;
}
.block-our-gallery .gallery-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.block-our-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.block-our-gallery .gallery-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.block-our-gallery .gallery-arrow {
  width: 56px;
  height: 56px;
  border: 2px solid #ffc107;
  border-radius: 50%;
  background: transparent;
  color: #ffc107;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.block-our-gallery .gallery-arrow svg {
  width: 24px;
  height: 24px;
}
.block-our-gallery .gallery-arrow:hover {
  background-color: #ffc107;
  color: #1a1a1a;
}
.block-our-gallery .gallery-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.block-our-gallery .gallery-link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.block-our-gallery .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid #ffc107;
  border-radius: 30px;
  background: transparent;
  color: #ffc107;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.block-our-gallery .btn-view-all svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.block-our-gallery .btn-view-all:hover {
  background-color: #ffc107;
  color: #1a1a1a;
}
.block-our-gallery .btn-view-all:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .block-our-gallery {
    padding: 60px 0;
  }
  .block-our-gallery .gallery-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .block-our-gallery .gallery-controls {
    margin-top: 30px;
  }
  .block-our-gallery .gallery-arrow {
    width: 48px;
    height: 48px;
  }
  .block-our-gallery .btn-view-all {
    padding: 14px 28px;
    font-size: 14px;
  }
}

.block-why-choose-us {
  background-color: #121212;
  color: #FFFFFF;
  padding-bottom: 40px;
}
.block-why-choose-us .small-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.block-why-choose-us .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
}
.block-why-choose-us .why-choose-us-details {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 52%;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-items .why-choose-us-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  gap: 15px;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-items .why-choose-us-item .why-choose-us-image {
  width: 60px;
  height: 60px;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-items .why-choose-us-item .why-choose-us-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-items .why-choose-us-item .why-choose-us-caption {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 0px;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-feature-img {
  width: 48%;
}
.block-why-choose-us .why-choose-us-details .why-choose-us-feature-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.block-testimonial {
  background-color: #121212;
  color: #FFFFFF;
  padding: 80px 0;
}
.block-testimonial .small-title {
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}
.block-testimonial .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #FFCC00;
  margin-bottom: 60px;
  max-width: 800px;
}
.block-testimonial .testimonial-items {
  position: relative;
}
.block-testimonial .testimonial-slider {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}
.block-testimonial .testimonial-slider .slick-slide {
  padding: 0 5px;
}
.block-testimonial .testimonial-slider::-webkit-scrollbar {
  display: none;
}
.block-testimonial .testimonial-slider .slick-dots li {
  margin: 0 4px;
}
.block-testimonial .testimonial-slider .slick-dots li button:before {
  color: #f2c21a;
  opacity: 0.4;
  font-size: 14px;
}
.block-testimonial .testimonial-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.block-testimonial .testimonial-slider .testimonial-item {
  background-color: #282828;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  border-radius: 20px;
  min-width: 350px;
  flex-shrink: 0;
  scroll-snap-align: start;
  max-width: 400px;
  height: 100%;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-icon {
  margin-bottom: 25px;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-icon img {
  width: 50px;
  height: 35px;
  object-fit: cover;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-text {
  margin-bottom: 40px;
  flex: 1;
  min-height: 375px;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-user .name-role {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #FFCC00;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-user .name-role .name {
  font-weight: 700;
}
.block-testimonial .testimonial-slider .testimonial-item .testimonial-user .name-role .role {
  font-weight: 400;
}
@media (max-width: 768px) {
  .block-testimonial {
    padding: 60px 0;
  }
  .block-testimonial .title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 40px;
  }
  .block-testimonial .testimonial-slider .testimonial-item {
    min-width: 300px;
    padding: 30px 20px;
  }
  .block-testimonial .testimonial-slider .testimonial-item .testimonial-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.block-our-partners {
  background-color: #121212;
  color: #FFFFFF;
  padding: 80px 0 100px;
}
.block-our-partners .small-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #FFFFFF;
}
.block-our-partners .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #FFFFFF;
  margin-bottom: 60px;
  max-width: 100%;
}
.block-our-partners .partners-items {
  position: relative;
}
.block-our-partners .partners-slider {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 0;
  position: relative;
}
.block-our-partners .partners-slider::-webkit-scrollbar {
  display: none;
}
.block-our-partners .partners-slider .slick-dots li {
  margin: 0 4px;
}
.block-our-partners .partners-slider .slick-dots li button:before {
  color: #f2c21a;
  opacity: 0.4;
  font-size: 14px;
}
.block-our-partners .partners-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.block-our-partners .partners-slider .partners-item {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.block-our-partners .partners-slider .partners-item .partners-image {
  background-color: #1E1E1E;
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  max-width: 240px;
  height: 100px;
  transition: all 0.3s ease;
}
.block-our-partners .partners-slider .partners-item .partners-image:hover {
  background-color: #282828;
  transform: translateY(-5px);
}
.block-our-partners .partners-slider .partners-item .partners-image img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}
.block-our-partners .partners-slider .partners-item .partners-image img:hover {
  filter: brightness(1.1);
}
@media (max-width: 1024px) {
  .block-our-partners {
    padding: 60px 0 80px;
  }
  .block-our-partners .title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 50px;
  }
  .block-our-partners .partners-slider {
    gap: 20px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image {
    padding: 30px 45px;
    min-width: 180px;
    min-height: 100px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image img {
    max-width: 130px;
    max-height: 70px;
  }
}
@media (max-width: 768px) {
  .block-our-partners {
    padding: 50px 0 60px;
  }
  .block-our-partners .small-title {
    font-size: 12px;
  }
  .block-our-partners .title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 40px;
  }
  .block-our-partners .partners-slider {
    gap: 15px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image {
    padding: 25px 35px;
    min-width: 160px;
    min-height: 90px;
    border-radius: 15px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image img {
    max-width: 110px;
    max-height: 60px;
  }
}
@media (max-width: 480px) {
  .block-our-partners {
    padding: 40px 0 50px;
  }
  .block-our-partners .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  .block-our-partners .partners-slider {
    gap: 12px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image {
    padding: 20px 30px;
    min-width: 140px;
    min-height: 80px;
    border-radius: 12px;
  }
  .block-our-partners .partners-slider .partners-item .partners-image img {
    max-width: 100px;
    max-height: 50px;
  }
}

.pagenotfound {
  background: #121212;
  text-align: center;
  color: #FFF;
  padding: 100px 0 200px;
}
.pagenotfound img {
  margin-bottom: 60px;
  width: 65%;
}
.pagenotfound .heading {
  font-size: 58px;
  font-weight: 500;
  margin: 0;
}
.pagenotfound .desc {
  color: #C8C8CD;
  margin-bottom: 80px;
}
.pagenotfound a {
  background: #f2c21a;
  padding: 14px 60px;
  font-weight: 600;
  color: #000;
  border-radius: 12px;
}
.pagenotfound a:hover {
  text-decoration: none;
}

.block-gallery-container {
  background-color: #121212;
  color: #FFFFFF;
  padding-bottom: 50px;
}
.block-gallery-container .gallery-header {
  margin-bottom: 60px;
}
.block-gallery-container .gallery-header .gallery-label {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.block-gallery-container .gallery-header .gallery-title {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -1px;
}
.block-gallery-container .gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}
.block-gallery-container .gallery-wrapper .gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.block-gallery-container .gallery-wrapper .gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  transition: transform 0.5s ease;
}
.block-gallery-container .gallery-wrapper .gallery-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
.block-gallery-container .gallery-wrapper .gallery-side .gallery-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 200px;
}
.block-gallery-container .gallery-wrapper .gallery-side .gallery-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.block-gallery-container .controls-wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
  justify-content: space-between;
  align-items: center;
}
.block-gallery-container .controls-wrapper .nav-arrows {
  display: flex;
  gap: 12px;
}
.block-gallery-container .controls-wrapper .nav-arrows .nav-button {
  width: 48px;
  height: 48px;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}
.block-gallery-container .controls-wrapper .nav-arrows .nav-button:hover {
  border-color: #FFCC00;
  color: #FFCC00;
  transform: scale(1.1);
}
.block-gallery-container .controls-wrapper .nav-arrows .nav-button:active {
  transform: scale(0.95);
}
.block-gallery-container .controls-wrapper .view-all-btn {
  padding: 12px 28px;
  border: 2px solid #FFCC00;
  background-color: transparent;
  color: #FFCC00;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}
.block-gallery-container .controls-wrapper .view-all-btn:hover {
  background-color: #FFCC00;
  color: #1a1a1a;
}
.block-gallery-container .controls-wrapper .view-all-btn:active {
  transform: scale(0.95);
}
.block-gallery-container .pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.block-gallery-container .pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFCC00;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.block-gallery-container .pagination .dot.active {
  background-color: #FFCC00;
  width: 12px;
  opacity: 1;
}
.block-gallery-container .pagination .dot:hover {
  background-color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-container {
    padding: 40px 20px;
  }
  .gallery-container .gallery-header .gallery-title {
    font-size: 48px;
  }
  .gallery-container .gallery-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-container .gallery-wrapper .gallery-main img {
    height: 300px;
  }
  .gallery-container .controls-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .gallery-container .controls-wrapper .nav-arrows {
    width: 100%;
    justify-content: center;
  }
  .gallery-container .controls-wrapper .view-all-btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-container .pagination {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    padding: 30px 16px;
  }
  .gallery-container .gallery-header .gallery-title {
    font-size: 36px;
  }
  .gallery-container .gallery-wrapper .gallery-main img {
    height: 250px;
  }
  .gallery-container .gallery-wrapper .gallery-side .gallery-secondary {
    height: 120px;
  }
  .gallery-container .controls-wrapper .nav-arrows .nav-button {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .gallery-container .controls-wrapper .view-all-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.block-global-map {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #FFFFFF;
  padding-bottom: 50px;
}
.block-global-map .container {
  /* Responsive */
}
.block-global-map .container .header {
  margin-bottom: 30px;
}
.block-global-map .container .header h3 {
  font-size: 42px;
  margin: 0 0 10px 0;
  font-weight: bold;
}
.block-global-map .container .header .subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #f0c040;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.block-global-map .container .header.projects-page {
  margin-bottom: 30px;
}
.block-global-map .container .header.projects-page .subtitle {
  color: #f0c040;
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
}
.block-global-map .container .header.projects-page h3 {
  margin: 0 0 10px 0;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}
.block-global-map .container .map-wrapper {
  display: flex;
  gap: 30px;
  position: relative;
  min-height: 600px;
  /* Map Container */
}
.block-global-map .container .map-wrapper .country-selector-container {
  width: 150px;
  max-height: max-content;
  flex-shrink: 0;
  background-color: #282828;
  overflow: hidden;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container .arrow-btn {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 24px;
  color: #FFCC00;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container .arrow-btn:hover {
  color: #fde68a;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container .arrow-btn:focus {
  outline: none;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container .arrow-btn:focus-visible {
  outline: 2px solid #FFCC00;
  outline-offset: 2px;
}
.block-global-map .container .map-wrapper .country-selector-container .arrow-container .arrow-btn i {
  font-size: 32px;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list {
  padding: 10px 15px;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item {
  text-align: center;
  padding: 10px 0;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  opacity: 0.3;
  transition: all 0.25s ease;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item.active {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 32px;
  opacity: 1;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item.active .divider {
  opacity: 1;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item.near {
  opacity: 0.7;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item .divider {
  height: 1px;
  background-color: #FFCC00;
  width: 100%;
  margin-bottom: 10px;
}
.block-global-map .container .map-wrapper .country-selector-container .country-list .country-item .divider.divider-bottom {
  margin-top: 10px;
  margin-bottom: 0;
}
.block-global-map .container .map-wrapper .country-selector-container .selected-text {
  text-align: center;
  margin-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.95rem;
}
.block-global-map .container .map-wrapper .country-selector-container .selected-text span {
  color: #fff;
  font-weight: 600;
}
.block-global-map .container .map-wrapper .map-container {
  flex: 1;
  position: relative;
}
.block-global-map .container .map-wrapper .map-container #map {
  width: 100%;
  height: 600px;
  position: relative;
}
.block-global-map .container .map-wrapper.projects-page {
  background-color: #000000;
  align-items: center;
}
.block-global-map .container .map-wrapper.homepage #map {
  background-image: url("/wp-content/themes/flagstick/assets/images/bg-global-map.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.block-global-map .container .map-wrapper.homepage #map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  pointer-events: none;
}
.block-global-map .container .map-wrapper.homepage #map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .block-global-map .container .map-wrapper {
    flex-direction: column;
  }
  .block-global-map .container .map-wrapper .country-list-sidebar {
    width: 100%;
    order: 2;
  }
  .block-global-map .container .map-wrapper .country-list-sidebar .country-list-scroll {
    max-height: 300px;
  }
  .block-global-map .container .map-wrapper .map-container {
    order: 1;
  }
}

.jvectormap-tip {
  position: absolute !important;
  background: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  padding: 10px !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  border: 1px solid #f0c040 !important;
  z-index: 100000 !important;
  pointer-events: none !important;
  min-width: 200px !important;
}

.jvectormap-marker {
  cursor: pointer;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.block-news {
  padding: 60px 20px;
  background-color: #121212;
}
.block-news .small-title {
  letter-spacing: 2px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.block-news .title-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 20px;
}
.block-news .title-link .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #ffffff;
  flex: 1;
  max-width: 700px;
}
.block-news .title-link .view-all-link {
  background-color: #282828;
  color: #FFCC00;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #282828;
  white-space: nowrap;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.block-news .title-link .view-all-link:hover {
  background-color: #333;
  border-color: #FFCC00;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.block-news .title-link .view-all-link span {
  margin-left: 8px;
}
.block-news .new-control {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
.block-news .new-control button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #A7A7A7;
  color: #A7A7A7;
  font-size: 18px;
  cursor: pointer;
}
.block-news .new-control button:hover {
  color: #FFCC00;
  border-color: #FFCC00;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.block-news .new-control button:focus {
  outline: none;
}
.block-news .new-control button:focus-visible {
  outline: 2px solid #FFCC00;
}

.news-items {
  width: 100%;
}
.news-items .news-slider .slick-arrow {
  display: none !important;
}
.news-items .news-slider .slick-slide {
  padding: 0 5px;
}
.news-items .news-slider .slick-dots {
  bottom: -50px;
}
.news-items .news-slider .slick-dots li {
  margin: 0 4px;
}
.news-items .news-slider .slick-dots li button:before {
  color: #f2c21a;
  opacity: 0.4;
  font-size: 14px;
}
.news-items .news-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
.news-items .news-slider .news-card {
  background-color: #282828;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #282828;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  height: 100%;
  transform: translateY(-4px);
}
.news-items .news-slider .news-card:hover .thumb::after {
  opacity: 0.8;
}
.news-items .news-slider .news-card:hover .read-more {
  color: #FFCC00;
}
.news-items .news-slider .news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.news-items .news-slider .news-card .thumb {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #1a1a1a;
  opacity: 1;
  transition: transform 0.3s ease;
}
.news-items .news-slider .news-card .thumb:hover {
  transform: scale(1.05);
}
.news-items .news-slider .news-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
}
.news-items .news-slider .news-card .date-badge {
  position: absolute;
  bottom: 215px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  backdrop-filter: blur(4px);
}
.news-items .news-slider .news-card .date-badge strong {
  color: #FFCC00;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
}
.news-items .news-slider .news-card .date-badge span {
  color: #FFFFFF;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
.news-items .news-slider .news-card h3 {
  padding: 80px 20px 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}
.news-items .news-slider .news-card h3:hover {
  text-decoration: underline;
}
.news-items .news-slider .news-card p {
  padding: 0 20px;
  color: #F5F5F5;
  flex-grow: 1;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.news-items .news-slider .news-card .read-more {
  padding: 0 20px 20px;
  color: #FFCC00;
  transition: color 0.3s ease;
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.news-items .news-slider .news-card .read-more:hover {
  text-decoration: underline;
}
.news-items .news-slider .news-card .read-more span {
  margin-left: 4px;
}

.news-page-container {
  background-color: #121212;
  color: #FFFFFF;
}
.news-page-container .news-wrapper {
  position: relative;
}
.news-page-container .news-wrapper .title-pages {
  position: absolute;
  color: #FFFFFF;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 10;
  background-color: #FFCC00;
}
.news-page-container .news-wrapper .title-pages h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 15px 0px;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
.news-page-container .news-wrapper .featured-image {
  z-index: 5;
  width: 100%;
  height: 650px;
}
.news-page-container .news-wrapper .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-page-container .news-list-container {
  padding-top: 70px;
  padding-bottom: 60px;
}
.news-page-container .news-list-container .second-title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #FFFFFF;
}
.news-page-container .news-list-container .news-items {
  padding-top: 24px;
}
.news-page-container .news-list-container .news-items .news-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-page-container .news-list-container .news-items .news-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-page-container .news-list-container .news-items .news-slider {
    grid-template-columns: 1fr;
  }
}
.news-page-container .news-list-container .news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 40px;
}
.news-page-container .news-list-container .news-pagination .prev-page,
.news-page-container .news-list-container .news-pagination .next-page {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}
.news-page-container .news-list-container .news-pagination .prev-page:hover:not(:disabled),
.news-page-container .news-list-container .news-pagination .next-page:hover:not(:disabled) {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.1);
}
.news-page-container .news-list-container .news-pagination .prev-page:disabled,
.news-page-container .news-list-container .news-pagination .next-page:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.news-page-container .news-list-container .news-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-page-container .news-list-container .news-pagination .page-numbers .page-number {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.news-page-container .news-list-container .news-pagination .page-numbers .page-number:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.2);
}
.news-page-container .news-list-container .news-pagination .page-numbers .page-number.active {
  background-color: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
}
.news-page-container .news-list-container .news-pagination .page-numbers .ellipsis {
  color: #888;
  cursor: default;
  padding: 0 4px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .news-page-container .news-list-container .news-pagination {
    gap: 10px;
  }
  .news-page-container .news-list-container .news-pagination .page-numbers .page-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .news-page-container .news-list-container .news-pagination .prev-page,
  .news-page-container .news-list-container .news-pagination .next-page {
    font-size: 14px;
  }
  .news-page-container .news-list-container .news-pagination .prev-page i,
  .news-page-container .news-list-container .news-pagination .next-page i {
    display: none;
  }
}

.news-detail-container {
  padding-top: 50px;
  margin-top: 0px;
  /* Featured Image Section */
  /* Article Text */
  /* Gallery */
  /* Tags and Share */
  /* Pagination */
  /* Sidebar */
}
.news-detail-container .main-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}
@media (max-width: 768px) {
  .news-detail-container .main-content {
    grid-template-columns: 1fr;
  }
}
.news-detail-container .featured-image-container {
  position: relative;
  margin-bottom: 30px;
}
.news-detail-container .featured-image-container .featured-image {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}
.news-detail-container .article-text-content {
  margin-bottom: 40px;
}
.news-detail-container .article-text-content p {
  margin-bottom: 20px;
  text-align: justify;
  color: #D6D6D6;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.news-detail-container .article-text-content p img {
  width: 48%;
  height: auto;
  border-radius: 20px;
}
.news-detail-container .article-text-content p:has(img:nth-of-type(1):not(:has(img:nth-of-type(2)))) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.news-detail-container .article-text-content p:has(img:nth-of-type(2)):not(:has(img:nth-of-type(3))) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.news-detail-container .article-text {
  margin-bottom: 40px;
}
.news-detail-container .article-text p {
  margin-bottom: 20px;
  text-align: justify;
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
}
.news-detail-container .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .news-detail-container .gallery {
    grid-template-columns: 1fr;
  }
}
.news-detail-container .gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}
.news-detail-container .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-detail-container .gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.news-detail-container .tags-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .news-detail-container .tags-share {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.news-detail-container .tags-share .tags {
  display: flex;
  gap: 15px;
  align-items: center;
}
.news-detail-container .tags-share .tags span {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.news-detail-container .tags-share .tags a {
  color: #FEFEFE;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s ease;
}
.news-detail-container .tags-share .tags a:hover {
  color: #FFCC00;
  text-decoration: underline;
}
.news-detail-container .tags-share .tags .spacing {
  width: 1px;
  height: 18px;
  background-color: #FEFEFE;
}
.news-detail-container .tags-share .share {
  display: flex;
  gap: 12px;
  align-items: center;
}
.news-detail-container .tags-share .share span {
  font-weight: 500;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
}
.news-detail-container .tags-share .share .share-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1A1A1A;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}
.news-detail-container .tags-share .share .share-btn:hover {
  background: #FFCC00;
  color: #1a1a1a;
}
.news-detail-container .tags-share .share .share-btn:focus {
  outline: none;
}
.news-detail-container .tags-share .share .share-btn:focus-visible {
  outline: none;
}
.news-detail-container .tags-share .share .share-btn i {
  width: 100%;
  height: 100%;
  align-content: center;
}
.news-detail-container .pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(254, 254, 254, 0.3);
}
@media (max-width: 768px) {
  .news-detail-container .pagination {
    flex-direction: column;
    gap: 20px;
  }
}
.news-detail-container .pagination .nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #C8C8CD;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.news-detail-container .pagination .nav-btn:hover {
  color: #FFCC00;
}
.news-detail-container .sidebar {
  position: sticky;
  top: 40px;
  height: fit-content;
}
@media (max-width: 768px) {
  .news-detail-container .sidebar {
    position: static;
  }
}
.news-detail-container .sidebar .sidebar-section {
  margin-bottom: 55px;
  background-color: #1A1A1A;
  padding: 29px 25px;
  border-radius: 10px;
}
.news-detail-container .sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.news-detail-container .sidebar .categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-detail-container .sidebar .categories .category-btn {
  margin: 8px 0;
  padding: 10px 15px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  background: #1a1a1a;
  color: #D6D6D6;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.news-detail-container .sidebar .categories .category-btn:hover {
  border-color: #FFCC00;
  color: #FFCC00;
}
.news-detail-container .sidebar .categories .category-btn.active {
  background: #FFCC00;
  color: #1a1a1a;
  border-color: #FFCC00;
}
.news-detail-container .sidebar .categories .category-btn .category-badge {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 191, 255, 0.2);
  color: #FFCC00;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
}
.news-detail-container .sidebar .categories .category-btn.active .category-badge {
  background: rgba(26, 26, 26, 0.4);
}
.news-detail-container .sidebar .recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-detail-container .sidebar .recent-posts .post-item {
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 6px;
}
.news-detail-container .sidebar .recent-posts .post-item .post-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.news-detail-container .sidebar .recent-posts .post-item .post-thumbnail:hover {
  transform: scale(1.05);
}
.news-detail-container .sidebar .recent-posts .post-item .post-info a {
  text-decoration: none;
  color: #FFFFFF;
}
.news-detail-container .sidebar .recent-posts .post-item .post-info a:hover {
  text-decoration: underline;
}
.news-detail-container .sidebar .recent-posts .post-item .post-info a h4 {
  margin-bottom: 4px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.news-detail-container .sidebar .recent-posts .post-item .post-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #C8C8CD;
}

.block-common-banner {
  background: #f2c21a;
  position: relative;
  color: #000000;
}
.block-common-banner .breadcrumbs-custome {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.block-common-banner .breadcrumbs-custome .category {
  font-size: 28px;
  padding: 12px 0;
  margin: 0;
  color: #000000;
  text-decoration: none;
}
.block-common-banner .breadcrumbs-custome .category:hover {
  text-decoration: underline;
}
.block-common-banner h1 {
  font-size: 28px;
  padding: 12px 0;
  margin: 0;
}
.block-common-banner img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.block-common-banner .info-bar {
  position: absolute;
  z-index: 5;
  bottom: 50px;
  width: 100%;
  color: #FFF;
}
.block-common-banner .info-bar .center-dot {
  padding: 0 10px;
}
.block-common-banner .info-bar .heading {
  font-size: 42px;
  font-weight: 500;
  margin-top: 15px;
}

.block-contact-infomation {
  padding: 50px 0 200px;
  background: #121212;
  color: #FFF;
}
.block-contact-infomation h2 {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.block-contact-infomation .contact-item {
  border: 1px solid rgba(254, 254, 254, 0.3019607843);
  border-radius: 16px;
  padding: 30px;
}
.block-contact-infomation .contact-item img {
  width: 60px;
}
.block-contact-infomation .contact-item .type {
  color: #C8C8CD;
  margin: 50px 0 10px;
}
.block-contact-infomation .contact-item .content {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
.block-contact-infomation .contact-form {
  background: #282828;
  margin-top: 80px;
  border-radius: 16px;
  padding: 80px;
}
.block-contact-infomation .contact-form .title-form {
  text-align: center;
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 50px;
}
.block-contact-infomation .contact-form .wpcf7 form {
  max-width: 700px;
  margin: 0 auto;
}
.block-contact-infomation .contact-form .contact-form-row.two-columns {
  display: flex;
  gap: 20px;
}
.block-contact-infomation .contact-form .contact-form-row .form-group,
.block-contact-infomation .contact-form .form-group {
  width: 100%;
}
.block-contact-infomation .contact-form .wpcf7 input[type=text],
.block-contact-infomation .contact-form .wpcf7 input[type=email],
.block-contact-infomation .contact-form .wpcf7 select,
.block-contact-infomation .contact-form .wpcf7 textarea {
  width: 100%;
  background: #252525;
  border: 1px solid #666;
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.block-contact-infomation .contact-form .wpcf7 input:focus,
.block-contact-infomation .contact-form .wpcf7 select:focus,
.block-contact-infomation .contact-form .wpcf7 textarea:focus {
  border-color: #FFD600;
}
.block-contact-infomation .contact-form .wpcf7 input::placeholder,
.block-contact-infomation .contact-form .wpcf7 textarea::placeholder,
.block-contact-infomation .contact-form .wpcf7 select {
  color: #aaa;
}
.block-contact-infomation .contact-form .wpcf7 textarea {
  height: 160px;
  resize: none;
}
.block-contact-infomation .contact-form .wpcf7 .form-submit input[type=submit] {
  background: #FFD600;
  color: #000;
  font-weight: 700;
  border: none;
  padding: 12px 80px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  display: inline-block;
}
.block-contact-infomation .contact-form .wpcf7 .form-submit input[type=submit]:hover {
  opacity: 0.85;
}
.block-contact-infomation .contact-form .form-submit {
  text-align: center;
  margin-top: 30px;
}
.block-contact-infomation .contact-form .wpcf7 select {
  appearance: none;
  margin-bottom: 16px;
}

.block-all-services {
  background: #121212;
  padding: 50px 0 200px;
}
.block-all-services h2 {
  font-size: 42px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 30px;
}
.block-all-services .service-items .service {
  margin-bottom: 30px;
}
.block-all-services .service-items .service img {
  width: 100%;
}
.block-all-services .service-items .service .info-gr {
  background: #f2c21a;
  padding: 15px 30px;
  color: #121212;
}
.block-all-services .service-items .service .info-gr p {
  margin: 0;
}
.block-all-services .service-items .service .info-gr .heading {
  font-size: 28px;
  font-weight: 500;
}

.block-about-us {
  background: #121212;
  padding: 100px 0;
  color: #FFF;
}
.block-about-us .left-image img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: 16px;
}
.block-about-us .about-info {
  margin-top: 50px;
  padding-left: 5%;
  padding-right: 12%;
}
.block-about-us .about-info h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}
.block-about-us .about-info .features-list {
  margin-top: 40px;
}
.block-about-us .about-info .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.block-about-us .about-info .features-list .feature-item p {
  margin: 0;
}

.block-overview {
  background: #121212;
  padding: 50px 0;
}
.block-overview .feature-item {
  position: relative;
  margin-bottom: 20px;
}
.block-overview .feature-item img {
  width: 100%;
}
.block-overview .feature-item .info-gr {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 28%;
}
.block-overview .feature-item .info-gr .number {
  color: #FFFFFF;
  font-size: 62px;
  font-weight: 500;
  margin: 0;
}
.block-overview .feature-item .info-gr .content {
  font-size: 18px;
  color: #f2c21a;
}

.block-working-process {
  background: #121212;
  padding: 100px 0;
}
.block-working-process h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #FFF;
}
.block-working-process .description {
  color: #C8C8CD;
  width: 70%;
  margin-bottom: 50px;
}
.block-working-process .working-processs .process {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
  position: relative;
}
.block-working-process .working-processs .process .process-number {
  background: #4e4b4b;
  color: #FFF;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.block-working-process .working-processs .process .process-info {
  border: 1px solid rgba(255, 204, 0, 0.3019607843);
  border-radius: 15px;
  padding: 25px 50px;
}
.block-working-process .working-processs .process .process-info .process-heading {
  font-size: 28px;
  color: #f2c21a;
}
.block-working-process .working-processs .process .process-info .process-content {
  color: #FFF;
}
.block-working-process .working-processs .process .process-info .process-content p {
  margin-bottom: 10px;
}
.block-working-process .working-processs .process:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 1px;
  height: 100%;
  background: #FFF;
  opacity: 0.6;
}

.block-video-full-screen {
  background: #121212;
  position: relative;
  padding-bottom: 100px;
}
.block-video-full-screen .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FFD500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
}
.block-video-full-screen .play-btn:hover {
  opacity: 1;
}
.block-video-full-screen video {
  width: 100%;
  height: 80vh;
  background: #121212;
  object-fit: cover;
}

.block-our-team {
  background: #121212;
  padding-bottom: 100px;
}
.block-our-team .subtitle {
  color: #f2c21a;
}
.block-our-team h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #FFF;
}
.block-our-team .team-item .team {
  position: relative;
}
.block-our-team .team-item .team img {
  width: 100%;
  border-radius: 16px;
}
.block-our-team .team-item .team .info-gr {
  position: absolute;
  bottom: 20px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  background: #121212;
  padding: 15px 20px;
}
.block-our-team .team-item .team .info-gr p {
  margin: 0;
}

.block-start-project {
  background: #f2c21a;
  position: relative;
}
.block-start-project img {
  position: absolute;
  width: 50%;
  right: 0;
  height: 100%;
  object-fit: cover;
}
.block-start-project .info-form {
  padding: 80px 0;
  width: 95%;
}
.block-start-project .info-form .subtitle {
  margin-bottom: 5px;
}
.block-start-project .info-form h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
}
.block-start-project .info-form .form-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-start-project .info-form .form-row p {
  display: flex;
  gap: 20px;
  margin: 0;
  width: 100%;
  flex-wrap: nowrap;
}
.block-start-project .info-form .form-row .wpcf7-form-control-wrap {
  flex: 1 1 50%;
  max-width: 50%;
}
.block-start-project .info-form .form-row br {
  display: none !important;
}
.block-start-project .info-form .form-row input.wpcf7-form-control,
.block-start-project .info-form .form-row select.wpcf7-form-control {
  width: 100%;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  background: #fff;
  outline: none;
}
.block-start-project .info-form .form-row input.wpcf7-form-control::placeholder,
.block-start-project .info-form .form-row select.wpcf7-form-control::placeholder {
  color: #7d8b97;
}
.block-start-project .info-form .form-row input.wpcf7-form-control:focus,
.block-start-project .info-form .form-row select.wpcf7-form-control:focus {
  border-color: #333;
}
.block-start-project .info-form .form-row select.wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' width='14' height='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10L2 4h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.block-start-project .info-form .submit-row {
  display: flex;
  margin-top: 25px;
}
.block-start-project .info-form .submit-row p {
  margin: 0;
}
.block-start-project .info-form .btn-submit {
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}
.block-start-project .info-form .btn-submit::after {
  content: "➤";
  font-size: 16px;
}
.block-start-project .info-form .btn-submit:hover {
  background: #000;
  color: #fff;
}
.block-start-project .info-form .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 8px;
}

.block-testimonial-aboutus {
  background: #121212;
  padding: 100px 0;
}
.block-testimonial-aboutus .subtitle {
  color: #FFF;
}
.block-testimonial-aboutus h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #FFF;
  color: #f2c21a;
}
.block-testimonial-aboutus .testimonial-item .testimonial {
  position: relative;
  padding: 0 10px;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr {
  padding: 100px 200px;
  border: 3px solid #f2c21a;
  border-radius: 25px;
  text-align: center;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr .content {
  font-size: 20px;
  line-height: 28px;
  color: #FFF;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr .star i {
  margin: 0 5px;
  color: #f2c21a;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr .client-info {
  color: #f2c21a;
}
.block-testimonial-aboutus .testimonial-item .testimonial .info-gr .client-info .name {
  font-weight: 500;
}
.block-testimonial-aboutus .testimonial-item .testimonial .quote {
  position: absolute;
}
.block-testimonial-aboutus .testimonial-item .testimonial .quote.quote-left {
  top: -55px;
  left: 50px;
}
.block-testimonial-aboutus .testimonial-item .testimonial .quote.quote-right {
  bottom: -55px;
  right: 50px;
}
.block-testimonial-aboutus .testimonial-item .slick-list {
  padding: 50px 0;
}
.block-testimonial-aboutus .testimonial-item .slick-arrow {
  display: none !important;
}
.block-testimonial-aboutus .testimonial-item .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.block-testimonial-aboutus .testimonial-item .slick-dots li {
  width: 12px;
  height: 12px;
  list-style: none;
}
.block-testimonial-aboutus .testimonial-item .slick-dots li button {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #f2c21a;
  background: transparent;
  opacity: 1;
  transition: 0.2s ease;
}
.block-testimonial-aboutus .testimonial-item .slick-dots li button:before {
  display: none !important;
}
.block-testimonial-aboutus .testimonial-item .slick-dots li.slick-active button {
  background: #f2c21a;
}

:root {
  --background: #121212;
  --foreground: #FFFFFF;
  --muted: oklch(0.97 0 0);
  --muted-foreground: #A7A7A7;
  --primary: #000000;
  --card: #FFFFFF;
  --yellow: #FFCC00;
}

.project-page-container {
  background-color: var(--background);
}
.project-page-container .projects-hightlight {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}
.project-page-container .projects-hightlight .project-item {
  position: relative;
  width: 100%;
}
.project-page-container .projects-hightlight .project-item .project-thumbnail {
  width: 100%;
  height: 600px;
  z-index: 1;
}
.project-page-container .projects-hightlight .project-item .project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-page-container .projects-hightlight .project-item .project-content {
  position: absolute;
  max-width: 600px;
  height: 350px;
  background-color: #FFFFFF;
  left: 0px;
  bottom: 50px;
  z-index: 100;
}
.project-page-container .projects-hightlight .project-item .project-content .project-content-link {
  text-decoration: none;
}
.project-page-container .projects-hightlight .project-item .project-content .project-content-link:hover {
  text-decoration: none;
}
.project-page-container .projects-hightlight .project-item .project-content .project-head {
  background-color: #FFCC00;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
}
.project-page-container .projects-hightlight .project-item .project-content .project-head .project-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
}
.project-page-container .projects-hightlight .project-item .project-content .project-summary {
  padding: 24px 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.project-page-container .projects-hightlight .project-item .project-content .project-link {
  padding: 10px 24px 15px 24px;
}
.project-page-container .projects-hightlight .project-item .project-content .project-link a {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
.project-page-container .projects-hightlight .project-item .project-content .project-link a:hover {
  text-decoration: underline;
}
.project-page-container .projects-hightlight .project-item .project-content .project-link a i {
  margin-left: 8px;
}
.project-page-container .projects-normal {
  margin-top: 70px;
}
.project-page-container .projects-normal .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .project-page-container .projects-normal .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .project-page-container .projects-normal .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-page-container .projects-normal .card {
  cursor: pointer;
  background-color: var(--background);
}
.project-page-container .projects-normal .card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--background);
  aspect-ratio: 4/3;
  margin-bottom: 16px;
}
.project-page-container .projects-normal .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-page-container .projects-normal .card .image-wrapper:hover img {
  transform: scale(1.05);
}
.project-page-container .projects-normal .card .image-wrapper:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.project-page-container .projects-normal .card .image-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  opacity: 0;
  visibility: hidden;
  /* fade-in */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.project-page-container .projects-normal .card .image-wrapper .overlay .badge-text {
  display: flex;
  gap: 12px;
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.project-page-container .projects-normal .card .image-wrapper .overlay .badge-text span {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 5px 18px;
}
.project-page-container .projects-normal .card .image-wrapper .overlay .arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  border-color: var(--yellow);
}
.project-page-container .projects-normal .card .image-wrapper .overlay .arrow-btn:hover {
  opacity: 0.9;
}
.project-page-container .projects-normal .card .image-wrapper .overlay .arrow-btn .btn-link {
  color: var(--background);
  font-size: 16px;
}
.project-page-container .projects-normal .card .title-link {
  color: var(--foreground);
  text-decoration: none;
}
.project-page-container .projects-normal .card .title-link:hover {
  text-decoration: underline;
}
.project-page-container .projects-normal .card .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.project-page-container .projects-normal .card .designer {
  font-size: 14px;
  color: var(--muted-foreground);
  margin: 0;
}
.project-page-container .projects-normal .load-more-wrapper {
  margin-top: 40px;
  text-align: center;
}
.project-page-container .projects-normal .load-more-wrapper .load-more-btn {
  padding: 12px 32px;
  background-color: var(--yellow);
  color: var(--background);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.project-page-container .projects-normal .load-more-wrapper .load-more-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.project-page-container .projects-normal .load-more-wrapper .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.project-page-container .projects-normal .load-more-wrapper .load-more-btn .btn-loader {
  display: inline-block;
}

.projects-detail-container {
  color: var(--foreground);
  padding-top: 40px;
}
.projects-detail-container .project-country {
  font-weight: 400;
  font-size: 28px;
  line-height: 44px;
  color: #FFFFFF;
}
.projects-detail-container .project-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 66px;
  color: #FFFFFF;
}
.projects-detail-container .project-designer {
  margin: 0px;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #D6D6D6;
}
.projects-detail-container .detail-content p:has(img) img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.projects-detail-container .detail-content p {
  padding-bottom: 20px;
  margin: 0;
  text-align: justify;
  color: #D6D6D6;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background-color: var(--background);
}
.projects-detail-container .detail-content p.slick-slider {
  position: relative;
  padding-bottom: 30px;
}
.projects-detail-container .detail-content p.slick-slider .slick-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.projects-detail-container .detail-content p.slick-slider .slick-dots li {
  margin: 0 4px;
}
.projects-detail-container .detail-content p.slick-slider .slick-dots li button:before {
  color: #f2c21a;
  opacity: 0.4;
  font-size: 14px;
}
.projects-detail-container .detail-content p.slick-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.black-all-gallery {
  background: #121212;
  padding: 100px 0;
}
.black-all-gallery h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #FFF;
}
.black-all-gallery .tab-slider {
  width: 100%;
  display: flex;
  align-items: center;
  background: #111;
  padding: 12px 0;
}
.black-all-gallery .arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  color: #777;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
}
.black-all-gallery .tabs-view {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin: 0 12px;
}
.black-all-gallery .tabs-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 12px;
  transition: transform 0.3s ease;
}
.black-all-gallery .tab {
  padding: 10px 22px;
  background: #1c1c1c;
  border: 1px solid #333;
  color: #d7b43c;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  width: 180px;
}
.black-all-gallery .tab.active {
  background: #f5c518;
  border-color: #f5c518;
  color: #000;
  font-weight: 600;
}
.black-all-gallery .gallery {
  margin-top: 20px;
}
.black-all-gallery .gallery-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.black-all-gallery .gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
}
.black-all-gallery .active-grid {
  display: grid;
}
@media (max-width: 768px) {
  .black-all-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .black-all-gallery .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*# sourceMappingURL=style.css.map */
