/* Green Banner */
.green-banner {
  background-color: var(--secondary-color);
  color: white;
  padding: 8px 0;
  font-size: 12px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 80%;
  margin: 0 auto;
}

.top-banner-prev i,
.top-banner-next i,
.banner-arrow {
  color: #8b4513;
  font-size: 12px;
  cursor: pointer;
  background: #f3f3f3;
  padding: 5px 7px;
  border-radius: 4px;
}

.top-banner-prev i,
.top-banner-next i {
  width: 30px;
}

.banner-home-image-container {
  position: absolute;
  bottom: 20px;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.banner-home-image {
  width: 180px !important;
  height: auto !important;
  margin-left: auto;
}

.banner-text {
  color: black;
}

.banner-text.text-2 {
  width: 70%;
}

.banner-text.text-2 a {
  text-align: center;
}

.banner-text-type {
  font-weight: bold;
}

.read-more {
  color: #8b0000;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

.read-more:hover {
  color: black;
}

.banner-arrow:hover {
  color: var(--secondary-color) !important;
  background: #8b0000;
}

.banner-content .swiper {
  min-height: 22px;
}

.banner-content .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 100%;
  min-height: 22px;
}

/* .banner-content .swiper .swiper-button-next,
.banner-content .swiper .swiper-button-prev {
  height: 43px;
} */

/* Banner Slider */
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.post-type-archive-people .hero-section {
  height: 500px;
}

.post-type-archive-people .hero-section .swiper {
  height: 100%;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section .banner-single img {
  height: 500px;
}

.banner-image {
  max-height: 500px;
  height: 500px;
}

.banner-image img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}

.banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
  color: white;
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Information */
/* Header Section */
.info-container {
  background-color: var(--cool-grey-10);
  margin: 0;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--cool-grey-10);
}

.header-words {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-word {
  font-size: 44px;
  font-weight: normal;
  color: black;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.red-square {
  width: 12px;
  height: 12px;
  background-color: #8b0000;
  display: inline-block;
  margin-left: 4px;
  border-radius: 4px;
  margin-bottom: -25px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta i {
  width: 24px;
}

.cta-link {
  color: #8b0000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease;
}

.cta-arrow {
  color: var(--secondary-color);
  background: #8b0000;
  font-size: 12px;
  border-radius: 4px;
  padding: 5px 7px;
}

/* Two Column Layout */
.info-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 50px;
  min-height: 400px;
}

/* Left Column - Testimonial */
.testimonial-column {
  background-color: var(--secondary-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  word-break: break-word;
}

.testimonial-column .swiper {
  /* height: 100%; */
  width: 100%;
}

.testimonial-column .swiper,
.testimonial-column .swiper .swiper-wrapper {
  width: 100%;
  height: 100% !important;
  max-height: 230px;
}

.testimonial-column .swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-heading {
  color: black;
  font-size: 44px;
  font-weight: normal;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
}

.testimonial-content {
  text-align: center;
  width: 100% !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 30px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.5;
  color: black;
  font-weight: normal;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 180px;
  margin: 0 auto 20px;
  display: block;
}

.testimonial-source {
  font-weight: bold;
  color: #000;
  font-size: 14px;
  font-style: normal;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  left: 0;
  right: 0;
}

.testimonial-column .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-column .swiper .swiper-wrapper .swiper-slide .testimonial-content {
  width: 80% !important;
  margin: 0 auto;
}

/* .testimonial-next::after,
.testimonial-prev::after {
  font-size: 24px;
} */

.testimonial-section .swiper-wrapper .swiper-slide {
  width: 100% !important;
  max-width: 100% !important;
}

.testimonial-section .swiper-wrapper .swiper-slide .testimonial-content {
  max-width: 80%;
  margin: 0 auto;
  word-break: break-word;
}

/* Right Column - Statistics */
.stats-column {
  background-color: white;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border: 1.5px solid var(--secondary-color);
  border-radius: 4px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-underline {
  width: 150px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 0 auto 12px;
}

.stat-label {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Content */
.main-content {
  padding: 50px 0;
}

.what-we-do {
  background: var(--cool-grey-80);
  color: white;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.what-we-do .container {
  padding: 50px;
}

.wwd-heading {
  color: white;
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.wwd-paragraph {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.expertise-section {
  border: 1.5px solid #8f8f8f;
  border-radius: 4px;
  padding: 15px 5px;
}

.expertise-section.wwd {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px !important;
}

.what-we-do {
  height: 100%;
}

.expertise-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.expertise-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.expertise-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background-color: var(--secondary-color);
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
}

.expertise-card {
  background-color: white;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}

.expertise-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.2s ease;
}

.expertise-card:hover .expertise-text {
  color: white;
}

.expertise-card:hover .expertise-icon,
.expertise-card.active .expertise-icon {
  filter: brightness(0) saturate(100%) invert(91%) sepia(20%) saturate(554%)
    hue-rotate(123deg) brightness(93%) contrast(98%);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.expertise-text {
  font-size: 14px;
  color: black;
  margin: 0;
  line-height: 1.4;
  font-weight: normal;
  transition: color 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.has-submenu .expertise-text::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: var(--primary-color);
  font-size: 12px;
  transition: color 0.3s ease;
  margin-left: 4px;
  margin-bottom: -1px;
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
}

.expertise-card.has-submenu:hover .expertise-text::after {
  color: white;
}

.expertise-card.has-submenu.active {
  background-color: var(--primary-color);
  color: white;
  position: relative;
  z-index: 10000;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.expertise-card.has-submenu.active .expertise-text {
  color: white;
}

.expertise-card.has-submenu.active .expertise-text::after {
  color: white;
}

.practice-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.practice-popup.show {
  display: block;
  opacity: 1;
}

.practice-popup-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 320px;
  max-height: 400px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  transition: all 0.2s ease;
  opacity: 0;
}

.practice-popup.show .practice-popup-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.practice-popup-body {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.popup-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.popup-services-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  color: var(--oxford-blue-100);
}

.popup-services-list li:last-child {
  border-bottom: none;
}

.popup-services-list li:hover {
  padding-left: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

.milestone-image-wrapper-inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .banner-tax-page .desktop-banner,
  .banner-about-page .desktop-banner {
    display: block;
  }

  .banner-tax-page .mobile-banner,
  .banner-about-page .mobile-banner {
    display: none;
  }

  .swiper-pagination {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  body.blur
    .wp-site-blocks
    > *:not(.green-banner):not(.wp-block-template-part:has(.header)) {
    filter: blur(3px);
    transition: filter 200ms ease;
  }

  body.blur .header {
    filter: none !important;
  }

  .testimonial-column .swiper,
  .testimonial-column .swiper .swiper-wrapper {
    max-height: 330px !important;
  }
}

/* News Insights */
.news-insights-section {
  background: var(--cool-grey-05) !important;
  padding: 50px 0;
}

.ni-heading {
  line-height: 1.1;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: normal;
  color: #333;
}

.ni-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  align-items: center;
}

.news-search,
.insights-search {
  padding-top: 80px;
}

.news-search .ni-container,
.insights-search .ni-container {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  padding-top: 32px;
}

.news-search .ni-container .ni-grid,
.insights-search .ni-container .ni-grid {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 0;
  min-height: 100%;
}

.news-search .ni-container .ni-grid .ni-card,
.insights-search .ni-container .ni-grid .ni-card {
  min-height: 40px;
  border: none;
  border-radius: 0;
}

.news-search .ni-container .ni-grid .ni-meta,
.insights-search .ni-container .ni-grid .ni-meta {
  margin-bottom: 0;
}

.news-search .ni-container .ni-grid .ni-title,
.insights-search .ni-container .ni-grid .ni-title {
  font-weight: 700;
}

.news-search .ni-container .ni-grid .ni-card:hover,
.insights-search .ni-container .ni-grid .ni-card:hover {
  border: none;
  border-radius: 0;
}

.news-search .ni-container .ni-grid .ni-card:hover .ni-title,
.insights-search .ni-container .ni-grid .ni-card:hover .ni-title {
  color: #75263b;
}

.ni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  align-items: start;
  min-height: 200px;
}

.ni-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  justify-content: start;
  padding: 0;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  position: relative;
}

.ni-card .ni-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ni-meta {
  position: relative;
  margin-bottom: 14px;
  padding-top: 4px;
}

.ni-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: bold;
  color: black;
  text-transform: capitalize;
  margin-right: 8px;
  margin-bottom: -5px;
}

.ni-date {
  font-size: 12px;
  color: #6a6a6a;
}

.ni-title {
  font-size: 14px;
  color: #1d1d1d;
  line-height: 1.5;
  font-weight: normal;
  margin: 0 0 18px;
}

.home .ni-accent {
  display: block;
  height: 4px;
  margin-top: 8px;
  background: var(--secondary-color);
}

.ni-readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: bold;
  color: var(--oxford-blue-75);
  text-decoration: none;
  transition: color 0.25s ease;
  margin-top: auto;
}

.ni-readmore i {
  font-size: 12px;
  line-height: 1;
  color: #8b0000;
  background: transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  transition: all 0.25s ease;
}

.about-part .ni-readmore,
.ni-readmore i {
  color: #ffffff;
}

.about-part.no-pt {
  padding-top: 0;
}

.page-template-insights .ni-readmore i,
.page-template-news .ni-readmore i,
.home .ni-readmore i {
  color: #8b0000;
}

.ni-card:hover {
  border: 2px solid #d1e5a4;
  border-radius: 8px;
}

.home .ni-card:hover {
  border: 2px solid transparent;
  border-radius: 8px;
}

.ni-card:hover .ni-readmore {
  color: #8b0000;
}

.ni-card:hover .ni-readmore i {
  background: #8b0000;
  color: var(--secondary-color);
}

.ni-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #6a6a6a;
  text-decoration: none;
}

.ni-btn i {
  color: #6a0f1a;
}

.ni-btn-wrap {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.ni-btn:hover {
  background-color: #8b0000 !important;
  color: white;
}

.ni-btn:hover i {
  color: var(--secondary-color);
}

/* Help CTA band */
.help-cta-section {
  background: var(--primary-color);
}

.help-cta-section:hover {
  background: #cfd4da;
  transition: all 0.2s ease;
}

.help-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 50px 0;
}

.help-cta-text {
  font-size: 28px;
  font-weight: 400;
  color: white;
  text-transform: capitalize;
}

.help-cta-section:hover .help-cta-text {
  color: var(--primary-color);
}

.help-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  background: var(--primary-color);
  color: #cfd4da;
  border-radius: 4px;
}

.maroon-cta {
  background: var(--maroon-100);
}

.maroon-cta .help-cta-text {
  color: white;
}

.maroon-cta .help-cta-icon {
  color: white;
}

.no-box-arrow {
  background: none;
}

.no-box-arrow i {
  font-size: 24px;
}

/* People */
.people-section {
  margin-bottom: 100px;
  padding: 50px 0;
}

/* Filter Section */
.filter-section {
  margin-bottom: 50px;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.filter-item {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-height: 40px;
}

.filter-item::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-color);
}

.search-filter {
  position: relative;
}

.wp-block-search__button.has-icon {
  background-color: transparent;
  padding: 0;
}

.wp-block-search__button.has-icon svg path {
  stroke: #405268;
  fill: #405268;
}

.search-filter {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  background: white;
  transition: border-color 0.3s ease;
}

.search-filter .filter-input {
  width: 100%;
  height: 38px;
  padding: 0 0 0 24px;
  border: none !important;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  background: white;
  transition: border-color 0.3s ease;
}

.filter-input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.filter-input::placeholder {
  color: #999;
  font-size: 11px;
  font-weight: normal;
}

.filter-select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  background: white;
  appearance: none;
  cursor: pointer;
  text-transform: uppercase;
}

/* Custom nested select – closed state looks like .filter-select */
.nested-select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nested-select:focus,
.nested-select[aria-expanded="true"] {
  outline: none;
  border-color: var(--secondary-color);
}

/* Dropdown panel */
.nested-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow: auto;
  z-index: 20;
}

.nested-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.nested-item {
  padding: 10px 14px;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.nested-item:hover {
  background: #f7f7f7;
}

.nested-group-title {
  padding: 10px 14px 6px;
  font-size: 14px;
  color: black;
  cursor: pointer;
  /* selectable */
}

.nested-group-title:hover {
  background: #f7f7f7;
}

.nested-sublist {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0 0 0 18px;
}

.nested-subitem {
  padding: 8px 14px;
  cursor: pointer;
  color: black;
  font-size: 13px;
}

.nested-subitem:hover {
  background: #f7f7f7;
}

.filter-select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.chevron-icon {
  position: absolute;
  right: 12px;
  color: #666;
  font-size: 10px;
  pointer-events: none;
  z-index: 2;
}

.reset-filters-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.reset-filters-btn {
  background: transparent;
  border: 1px solid #bdbdbd;
  color: #6a6a6a;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-filters-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Profile Grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.profile-card {
  background: transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}

.profile-image,
.profile-image img {
  transition: all 0.3s ease;
}

.profile-card:hover .profile-image img {
  transform: scale(1.1);
}

.profile-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-info {
  padding: 20px 0;
}

.profile-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.profile-title {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
}

.profile-specialization {
  font-size: 12px;
  color: #666;
  margin: 0 0 4px 0;
  line-height: 1.4;
  text-align: left;
}

.profile-specialization:last-child {
  margin-bottom: 0;
}

/* Detail People */
.profile-banner-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 0;
}

.profile-banner-section .profile-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-bottom: 2px solid var(--primary-color);
}

.banner-tax-page.profile-banner-section .profile-banner-background,
.banner-about-page.profile-banner-section .profile-banner-background {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: none;
}

.banner-about-page.profile-banner-section
  .profile-banner-background
  .container-fluid {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}

.archive .profile-banner-section .profile-banner-background {
  border-bottom: none;
}

.banner-about-page.profile-banner-section .profile-banner-credit {
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 20px;
  padding-right: 40px;
}

.profile-banner-section .banner-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-banner-section .profile-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0;
  justify-content: space-around;
}

.banner-about-page.profile-banner-section .profile-banner-content {
  justify-content: start;
}

.tax-practice-area
  .banner-about-page.profile-banner-section
  .profile-banner-content,
.tax-sector .banner-about-page.profile-banner-section .profile-banner-content {
  justify-content: space-around;
}

.profile-banner-section .profile-banner-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.profile-banner-section .banner-profile-image {
  width: 100%;
  height: 95%;
  object-fit: contain;
}

.practice-sector-banner.profile-banner-section .banner-profile-image {
  width: auto;
  height: auto;
  filter: brightness(0) saturate(100%) invert(91%) sepia(20%) saturate(554%)
    hue-rotate(123deg) brightness(93%) contrast(98%);
}

.practice-sector-banner.profile-banner-section .profile-banner-image {
  align-items: center;
}

.profile-banner-section .profile-banner-text {
  width: 500px;
  background: rgba(1, 25, 54, 0.5);
  padding: 40px 40px 120px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  /* height: 100%; */
  margin-left: 20px;
}

.banner-about-page.profile-banner-section .profile-banner-text {
  padding: 40px 40px 40px 40px;
  justify-content: center;
}

.profile-banner-section .profile-banner-text.practice-sector-banner-text {
  padding: 40px 40px 40px 40px;
  justify-content: center;
}

.profile-banner-section .profile-name {
  color: white;
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 0 0;
  font-family: "Arial", sans-serif;
}

.profile-banner-section .profile-title {
  color: white;
  font-size: 24px;
  margin: 0 0 20px 0;
  font-family: "Arial", sans-serif;
}

.profile-banner-section .profile-role {
  color: white;
  font-size: 18px;
  margin: 0 0 8px 0;
  font-family: "Arial", sans-serif;
}

.profile-banner-section .profile-practice {
  color: white;
  font-size: 20px;
  margin: 0;
  font-family: "Arial", sans-serif;
}

.profile-banner-section .profile-detail-section {
  padding-bottom: 40px;
}

/* Main Content - 2 Column Layout */
.profile-detail-section .profile-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0;
  word-break: break-word;
}

/* Testimonial Section - Now inside left column */
.profile-detail-section .testimonial-section {
  margin: 0 0 40px 0;
  text-align: center;
  width: 100% !important;
}

.profile-detail-section .testimonial-container {
  max-width: 100%;
  margin: 0 auto;
}

.profile-detail-section .testimonial-section .swiper-button-next:after,
.profile-detail-section .testimonial-section .swiper-button-prev:after {
  font-size: 20px;
  color: var(--primary-color);
}

.profile-detail-section .testimonial-nav {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.profile-detail-section .testimonial-nav:hover {
  color: #666;
}

.profile-detail-section .testimonial-content {
  flex: 1;
}

.profile-detail-section .testimonial-quote {
  font-size: 20px;
  color: black;
  margin: 0 0 12px 0;
  line-height: 1.4;
  font-style: normal;
}

.profile-detail-section .testimonial-source {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Profile Tabs */
.profile-detail-section .profile-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
}

.profile-detail-section .tab-button {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 24px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.profile-detail-section .tab-button.active {
  background: none;
  color: var(--primary-color);
  border-bottom: 4px solid var(--secondary-color);
}

.profile-detail-section .tab-separator {
  width: 1px;
  height: 20px;
  background: #e0e0e0;
  margin: 0 10px;
}

.profile-detail-section .tab-content {
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.profile-detail-section .biography-text {
  font-size: 14px;
  line-height: 1.5;
  color: black;
  margin: 0 0 20px 0;
}

.profile-detail-section p {
  font-size: 16px;
  line-height: 1.4;
  color: black;
}

.profile-detail-section ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.profile-detail-section ul li {
  font-size: 16px;
  color: black;
  margin-bottom: 12px;
  line-height: 1.4;
}

.profile-detail-section ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

.profile-detail-section ol li {
  font-size: 16px;
  color: black;
  margin-bottom: 12px;
  line-height: 1.4;
}

.profile-detail-section .section-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 40px 0;
}

.profile-detail-section .profile-section {
  margin-bottom: 40px;
}

.profile-detail-section .section-heading {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.profile-detail-section .awards-list {
  margin-bottom: 5px;
}

.profile-detail-section .award-item {
  margin-bottom: 10px;
}

.profile-detail-section .award-item:last-child {
  margin-bottom: 0px;
}

.profile-detail-section .award-title {
  font-size: 16px;
  font-weight: normal;
  color: black;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.profile-detail-section .award-detail {
  font-size: 16px;
  color: #666;
  margin: 0;
  padding-left: 20px;
}

.profile-detail-section .award-testimonial {
  font-size: 16px;
  font-style: italic;
  color: black;
  margin: 0;
  padding: 0px 20px;
  text-align: center;
}

.profile-detail-section .publications-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.profile-detail-section .publications-list li {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
  line-height: 1.4;
}

.profile-detail-section .publications-list li:last-child {
  margin-bottom: 0px;
}

.profile-detail-section .memberships-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.profile-detail-section .memberships-list li {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
  line-height: 1.4;
}

.profile-detail-section .mobile-contact-social {
  display: none;
  margin-bottom: 30px;
}

.profile-detail-section .desktop-contact-social {
  display: block;
  margin-bottom: 40px;
}

.profile-detail-section .profile-right-column {
  padding-left: 20px;
}

.profile-detail-section .contact-section {
  margin-bottom: 40px;
}

.profile-detail-section .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
  font-size: 16px;
}

.profile-detail-section .contact-item i {
  color: #666;
  width: 16px;
}

.profile-detail-section .mail-link {
  color: #405268;
  text-decoration: underline !important;
  transition: color 0.3s ease;
}

.profile-detail-section .phone-link {
  color: #405268;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.profile-detail-section .social-section {
  margin-bottom: 40px;
}

.profile-detail-section .social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.profile-detail-section .social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.profile-detail-section .social-item:hover {
  background: #f8f9fa;
}

.profile-detail-section .social-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}

.profile-detail-section .social-label {
  font-size: 10px;
  color: #666;
  text-align: center;
  line-height: 1.2;
}

.profile-detail-section .second-heading {
  border-bottom: 4px solid var(--secondary-color);
  width: fit-content;
}

.profile-detail-section .border-bottom {
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.profile-detail-section .practice-areas-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.profile-detail-section .practice-areas-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: black;
  margin-bottom: 5px;
  padding: 0px;
}

.profile-detail-section .practice-areas-list li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-detail-section .practice-areas-list i {
  color: var(--primary-color);
  font-size: 12px;
  padding: 10px;
  width: 32px;
}

.profile-detail-section .practice-areas-list li:hover i {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 5px;
}

.profile-detail-section .qualifications-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.profile-detail-section .qualifications-list li {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Pagination */
.pagination-container {
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
}

.pagination-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 12px;
}

.pagination-container ul li span,
.pagination-container ul li a {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  padding: 8px 0 4px 0;
}

.pagination-container ul li .page-numbers.current {
  color: #8b0000;
  font-weight: 700;
  border-bottom: 4px solid #d1e5a4;
}

/* About Page */
.about-part {
  padding: 32px 0 0;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 48px;
}

.about-box {
  grid-column: span 1 / span 1;
  min-height: 400px;
}

.about-box.content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}

.about-box.content .ni-readmore-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.about-box.content.height-auto {
  height: auto;
  min-height: auto;
}

.has-border {
  border: 1.5px solid var(--secondary-color);
}

.has-border-green {
  border: 1.5px solid #bfdc80;
}

.has-border-maroon {
  border: 1.5px solid #75263b;
}

.has-bg-green {
  background-color: #bfdc80;
}

.has-bg-maroon {
  background-color: #75263b;
}

.has-border-gray {
  border: 1.5px solid var(--secondary-color);
}

.has-border-black {
  border: 1.5px solid #75263b;
}

.has-bg-gray {
  background-color: #7f8a99;
}

.has-bg-gray-light {
  background-color: #eaeaea;
}

.about-box.content.custom-image-bg {
  padding: 40px 20px;
}

.about-box.content a.ni-readmore {
  width: 100%;
  justify-content: start;
  margin-top: 0;
  position: relative;
  z-index: 10;
  font-size: 14px;
  line-height: 1.4;
}

.about-box.content a.text-white {
  color: white;
}

.ni-readmore.text-white i {
  color: white;
}

a.ni-readmore:hover {
  color: #50d8d7;
}

a.ni-readmore:hover i {
  background: #8b0000;
  color: var(--secondary-color);
}

.about-box.content:hover a.ni-readmore {
  color: #50d8d7;
}

.about-box.content:hover a.ni-readmore i {
  background: #50d8d7;
  color: #75263b;
}

.red a.ni-readmore:hover {
  color: #50d8d7;
}

.red a.ni-readmore:hover i {
  background: #50d8d7;
  color: #75263b;
}

.about-box {
  transition: all 0.3s ease;
}

.about-box-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-box-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-box .about-box-image figure {
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-part:has(.about-box.content:hover) .about-box-image img {
  transform: scale(1.05);
}

/* Our Journey */
.journey-content.founder-content {
  border: none !important;
  border-radius: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.content-border {
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #75263b;
}

.journey-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: normal;
}

.journey-content p {
  font-size: 16px;
  line-height: 1.4;
  color: black;
  font-weight: normal;
  margin-bottom: 16px;
}

.milestone-wrapper {
  margin-top: 40px;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #75263b;
}

.our-founder-page .milestone-wrapper {
  margin-top: 40px;
}

.milestone-wrapper h4 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.milestone-swiper {
  background-color: white;
  padding: 0;
  border-radius: 8px;
}

.our-founder-page .milestone-swiper {
  padding: 0;
}

.milestone-swiper .swiper-slide {
  padding: 0 64px;
}

.our-founder-page .milestone-swiper .swiper-slide {
  padding: 0 32px;
}

.milestone-swiper .swiper-slide .milestone-slide {
  overflow: hidden;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-content {
  max-width: 86%;
  margin-left: auto;
}

.our-founder-page
  .milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-content
  .milestone-year {
  font-size: 32px;
  height: 44px;
  font-weight: 500;
  color: #75263b;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  padding: 16px 0 20px;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-content ul {
  list-style: disc;
  padding: 20px 0 0;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4px;
}

.our-founder-page
  .milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-title {
  padding-top: 0;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.our-founder-page
  .milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-content {
  padding-bottom: 0;
}

.our-founder-page
  .milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-content
  .milestone-image-wrapper {
  border-radius: 8px;
  max-width: 80%;
  margin: 0 auto;
  min-height: 400px;
  position: relative;
}

.milestone-swiper .swiper-slide .milestone-slide .milestone-content .line {
  margin-bottom: 40px;
  height: 1px;
  width: 100%;
  background-color: #000000;
}

.milestone-swiper .swiper-slide .milestone-slide .line {
  margin-top: 20px;
  margin-bottom: 40px;
  height: 1px;
  width: 100%;
  background-color: #000000;
}

.our-founder-page
  .milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-content
  .milestone-image-wrapper
  img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.milestone-swiper
  .swiper-slide
  .milestone-slide
  .milestone-image-wrapper
  .image-credit {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  text-align: right;
  padding-top: 16px;
}

.milestone-swiper .swiper-button-prev.milestone-prev {
  left: 64px;
  top: 64px;
  width: 44px;
  font-size: 24px;
}

.milestone-swiper .swiper-button-next.milestone-next {
  right: calc(100% - 80px * 2);
  top: 64px;
  width: 44px;
  font-size: 24px;
}

.our-founder-page .milestone-swiper .swiper-button-prev.milestone-prev i,
.our-founder-page .milestone-swiper .swiper-button-next.milestone-next i {
  font-size: 24px;
}

.milestone-swiper .swiper-button-next,
.milestone-swiper .swiper-button-prev {
  display: flex !important;
  border: none;
  color: #8b0000 !important;
  cursor: pointer;
  padding: 0 4px;
  transition: background-color 0.3s ease;
  pointer-events: auto;
  background-color: #f3f3f3 !important;
  border-radius: 4px;
}

.milestone-swiper .swiper-button-next,
.milestone-swiper .swiper-button-prev {
  background-color: #8bf7dc !important;
  color: #742439 !important;
}

.our-founder-page .milestone-swiper .swiper-button-prev.milestone-prev {
  left: -80px;
  top: 50%;
  background-color: #bdda7e !important;
  color: #742439 !important;
}

.our-founder-page .milestone-swiper .swiper-button-next.milestone-next {
  right: -80px;
  top: 50%;
  background-color: #bdda7e !important;
  color: #742439 !important;
}

.milestone-swiper .swiper-button-next::after,
.milestone-swiper .swiper-button-prev::after {
  font-size: 28px;
}

.brunei-swiper .swiper-button-next::after,
.brunei-swiper .swiper-button-prev::after {
  font-size: 20px;
}

.testimonial-next,
.testimonial-prev {
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0 16px;
  transition: background-color 0.3s ease;
  pointer-events: auto;
  background-color: #f3f3f3 !important;
  border-radius: 4px;
}

.testimonial-next:hover,
.testimonial-prev:hover,
.milestone-swiper .swiper-button-next:hover,
.milestone-swiper .swiper-button-prev:hover {
  background-color: #8b0000 !important;
  color: var(--secondary-color) !important;
}

.brunei-swiper .swiper-button-next,
.brunei-swiper .swiper-button-prev {
  background-color: #bdda7e !important;
  color: #742439 !important;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.testimonial-single-next i,
.testimonial-single-prev i {
  color: #000;
}

.brunei-swiper .swiper-button-next:hover,
.brunei-swiper .swiper-button-prev:hover,
.our-founder-page .milestone-swiper .swiper-button-next:hover,
.our-founder-page .milestone-swiper .swiper-button-prev:hover {
  background-color: #742439 !important;
  color: #bdda7e !important;
}

.milestone-swiper .milestone-image-swiper .swiper-slide {
  padding: 0 40px;
}

.milestone-image-swiper .swiper-button-next {
  right: -40px;
}

.milestone-image-swiper .swiper-button-prev {
  left: -40px;
}

.brunei-swiper .swiper-button-next {
  right: 0;
}

.brunei-swiper .swiper-button-prev {
  left: 0;
}

/* What we do */
.expertise-grid.wwd-items {
  padding: 40px;
  display: block !important;
  border: 2px solid #75263b;
  border-radius: 8px;
  margin-top: 50px;
}

.expertise-grid.wwd-items .expertise-title {
  display: inline-block;
}

.expertise-grid.wwd-items .expertise-title:after {
  width: 100%;
}

.expertise-grid.wwd-items .expertise-section {
  background-color: #f6f7f7;
  padding: 40px;
  border: none;
  text-align: center;
}

.expertise-grid.wwd-items .expertise-cards {
  border-radius: 8px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

/* Our Founder */
.about-box-image.our-founder {
  max-width: 90%;
  margin: 0 auto !important;
  border-radius: 8px;
}

.our-founder-banner {
  padding: 32px;
  background-color: #bfdc80;
  border-radius: 8px;
}

.our-founder-banner figure {
  margin: 0 auto;
  max-width: 80%;
  min-height: 400px;
  border-radius: 8px;
}

.our-founder-banner figure img {
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}

.our-founder-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.our-founder-container .about-part {
  padding: 0;
}

.our-founder-container .text {
  padding: 40px;
  border-radius: 8px;
}

.our-founder-container figure .wp-element-caption {
  margin: 0;
  padding-top: 8px;
  text-align: right;
  color: #ffffff;
}

.our-founder .about-box {
  min-height: 400px;
  border-radius: 8px;
}

.our-founder .about-box.content {
  justify-content: center;
}

.our-founder .about-box:has(.about-box-image) {
  padding: 48px 0;
}

/* Partnership */
.partnership {
  border-radius: 8px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partnership .wp-block-columns {
  padding: 32px;
  border-radius: 8px;
  align-items: center !important;
}

.partnership h6 {
  font-size: 24px;
  line-height: 1.4;
  display: inline;
  font-weight: 600 !important;
}

/* About Menu */
.subpage-list {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none !important;
  flex-wrap: wrap;
  gap: 24px;
}

.subpage-list .subpage-item {
  font-weight: 700;
  color: #405268;
  transition: all 0.5s ease;
}

.subpage-list .subpage-item a {
  color: #405268;
  transition: all 0.5s ease;
}

.subpage-list .subpage-item:hover a {
  color: #75263b;
}

.subpage-list .subpage-item a i {
  color: #75263b;
}

.subpage-list .subpage-item:hover a i {
  color: #405268;
}

/* Box Notice */
.box-part {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 48px;
  padding: 32px 0 0;
}

.box-item {
  grid-column: span 1 / span 1;
  min-height: 400px;
}

.box-item.content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 48px;
  border-radius: 8px;
}

.box-item.content.justify-center {
  justify-content: center;
}

.box-item.content.justify-around {
  justify-content: space-around;
}

.box-item.content.justify-start {
  justify-content: start;
}

.box-item.content.align-center {
  align-items: center;
}

.box-item.content.has-image {
  padding: 0;
}

.box-item.content.height-auto {
  height: auto;
  min-height: auto;
}

.box-part-image {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  padding: 32px 0 0;
  column-gap: 32px;
  row-gap: 48px;
}

.box-part-career {
  margin: 32px 0 0;
  padding: 48px;
  border-radius: 8px;
}

.box-part-career .box-career-item {
  max-width: 80%;
  margin: 0 auto;
}

.box-part-career a {
  color: #34475e;
  text-decoration: underline;
}

.box-part-image .wp-block-column,
.image-has-content {
  position: relative;
}

.box-part-image .wp-block-column p,
.image-has-content p {
  position: absolute;
  max-width: max-content;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #773a46;
  padding: 8px 12px;
  color: white;
  border-radius: 8px;
}

/* Taxonomy */
.taxonomy-card {
  display: grid !important;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

/* Blogs */
.blogs.news-insights-section {
  padding-top: 0;
  background-color: white !important;
}

.blogs .filter-section {
  margin-bottom: 0;
  padding: 50px 0;
  background-color: white;
}

.blogs .filter-item::after {
  background: var(--apple-green-35);
}

.blogs.news .filter-item::after {
  background: #8cf8de;
}

.blogs .ni-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.blogs .ni-card {
  padding: 20px;
  border: 1px solid #75263b;
  border-radius: 0;
  min-height: 250px;
  height: 100%;
  transition: all 0.2s ease;
}

.blogs .ni-card .ni-inside {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  position: relative;
  transition: all 0.2s ease;
}

.blogs .ni-card .ni-meta .ni-title {
  font-weight: bold;
  margin: 8px 0;
}

.blogs .ni-readmore {
  justify-content: end;
  width: 100%;
}

.blogs .ni-card:hover .ni-inside {
  background-color: #75263b;
  border-radius: 8px;
}

.blogs .ni-card:hover .ni-inside .ni-meta .ni-title {
  color: white;
}

.post-type-archive-insights .blogs .ni-card:hover .ni-inside .ni-meta .ni-date {
  color: #d2e6a6;
}

.post-type-archive-news .blogs .ni-card:hover .ni-inside .ni-meta .ni-date {
  color: #8cf8de;
}

.blogs .ni-card:hover .ni-inside .ni-readmore {
  color: white !important;
}

.blogs .ni-card .ni-inside .ni-readmore i {
  color: #75263b;
}

.post-type-archive-news .blogs .ni-card:hover .ni-inside .ni-readmore i {
  background: #8cf8de !important;
  color: #75263b;
}

.post-type-archive-insights .blogs .ni-card:hover .ni-inside .ni-readmore i {
  background: #d2e6a6 !important;
  color: #75263b;
}

/* Brunei */
.brunei-container {
  display: flex;
  flex-direction: column;
}

.brunei-top-content .container-fluid {
  padding-top: 32px;
  padding-bottom: 32px;
}

.brunei-top-content p {
  font-size: 16px;
  line-height: 1.4;
  color: black;
  font-weight: normal;
  margin-bottom: 16px;
}

.brunei-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 32px;
}

.brunei-content-item {
  width: calc(50% - 16px);
  min-height: auto;
}

.brunei-content-item .block-image img {
  object-fit: unset;
}

.block-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.brunei-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 32px;
}

.brunei-map .map-left {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.brunei-map .map-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.map-container {
  position: relative;
  height: 100%;
}

.map-container .map-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
}

.box-item.content:has(.brunei-swiper) {
  padding: 20px;
  gap: 12px;
}

.brunei-swiper {
  margin: auto 0;
}

.brunei-swiper .slide-content {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.brunei-content .block-text p,
.slide-text,
.brunei-swiper p,
.address-right p,
.address-right a {
  font-size: 16px;
  line-height: 1.4;
  color: black;
  font-weight: normal;
  margin-bottom: 16px;
}

.brunei-content .text-green-75 .block-text p {
  color: #ffffff;
}

.slide-text {
  width: 100%;
}

.slide-text,
.brunei-swiper p {
  text-align: center;
}

.address-right {
  background-color: #75263b;
}

.address-right p,
.address-right a {
  color: #ffffff;
}

.brunei-content .text-white .block-text {
  color: #ffffff;
}

.brunei-content .text-blue-75 .block-text {
  color: #405268;
}

.brunei-content .text-green-75 .block-text {
  color: #d2e6a6;
}

.border-bottom-green {
  display: inline;
  border-bottom: 4px solid #a6fae5;
  width: auto !important;
}

.border-bottom-green-3 {
  display: inline;
  border-bottom: 4px solid #d7e7b5;
  width: auto !important;
}

.border-bottom-green-2 {
  display: inline;
  border-bottom: 4px solid #d1e5a4;
  width: auto !important;
}

.single-ni-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  word-break: break-word;
  /* gap: 20px; */
  /* padding-top: 50px; */
}

.single-ni-container .single-ni-col:first-child {
  grid-column: span 6;
  background-color: #d8dbdf;
  padding: 50px 50px;
}

.single-ni-container .single-ni-col:first-child .single-ni-col-inner {
  padding: 40px;
  background-color: white;
}

.single-ni-container
  .single-ni-col:first-child
  .single-ni-col-inner.practice-sector-inner {
  padding: 0;
  background-color: transparent;
}

.single-ni-container .single-ni-col:last-child {
  grid-column: span 2;
  padding: 50px 0;
}

.single-ni-container .single-ni-col:last-child .single-ni-col-inner {
  padding: 40px;
  background: #75263b;
  margin-left: -24px;
}

.practice-sector-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.practice-sector-container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}

.practice-sector-container .practice-sector-top,
.practice-sector-container .practice-sector-center,
.practice-sector-container .practice-sector-bottom {
  padding: 40px;
  background-color: white;
}

.practice-sector-prev,
.practice-sector-next {
  border: none;
  color: var(--primary-color);
  font-size: 32px;
  cursor: pointer;
  padding: 0 16px;
  transition: background-color 0.3s ease;
  pointer-events: auto;
  background-color: #f3f3f3 !important;
  border-radius: 4px;
}

.practice-sector-prev:hover,
.practice-sector-next:hover {
  background-color: #8b0000 !important;
  color: var(--secondary-color) !important;
}

.practice-sector-bottom {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.practice-sector-bottom-text {
  text-align: center;
  margin-bottom: 16px;
}

.practiceSectorslider .swiper-wrapper {
  align-items: center;
}

.practiceSectorslider .swiper-wrapper .swiper-slide .practiceSector-content {
  width: 80% !important;
  margin: 0 auto;
}

.practiceSectorslider
  .swiper-wrapper
  .swiper-slide
  .practiceSector-content
  .practiceSectortext {
  font-size: 18px;
  line-height: 1.5;
  color: black;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
}

.key-contact-section .testimonial-heading {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.default-page h5.practice-sector-title {
  text-align: start;
  font-size: 24px;
  font-weight: 700 !important;
  text-transform: capitalize;
  color: black;
  margin-bottom: 20px;
}

.practice-sector-center p {
  margin-top: 16px;
}

.key-contact-section .profile-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  gap: 0;
}

.key-contact-section .profile-grid .profile-info .profile-name {
  font-weight: 700 !important;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.post-category,
.key-contact-section .profile-grid .profile-info p {
  margin-bottom: 0 !important;
}

.key-contact-section .profile-grid .profile-info p.profile-specialization {
  font-size: 12px;
}

.key-contact-section .profile-grid .profile-info p.profile-title {
  font-size: 14px;
}

.key-contact-section .profile-grid .profile-info p {
  color: #ffffff;
}

h6.career {
  font-size: 20px;
  font-weight: 700 !important;
  text-transform: capitalize;
  line-height: 1.1;
}

h6.custom-commu {
  font-size: 20px;
  line-height: 1.2;
}

.select2-search--dropdown {
  padding: 0;
}

.select2-container .select2-selection--single {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 50%;
  right: 1px;
  width: 20px;
  transform: translateY(-50%);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  outline: none;
}

.select2-results__option {
  padding: 10px 14px;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #000;
  text-transform: capitalize;
}

.about-part.contact-us {
  padding-top: 0;
}

.contact-us .about-box.content {
  justify-content: center;
}

.contact-us .about-box.content p,
.contact-us .about-box.content .contact-list .contact-line {
  margin-bottom: 8px;
}

.contact-us .about-box.content .contact-list .contact-line:last-child {
  margin-bottom: 0;
}

.contact-us .about-box.content a.contact-email {
  text-decoration: underline;
  color: black;
}

.contact-us .about-box.content a {
  color: black !important;
}

.contact-us .contact-line span:first-child {
  min-width: 240px;
  color: #75263b;
}

.map-contact {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

.map-contact img {
  border-radius: 8px;
  padding-bottom: 20px;
}

.map-contact .ni-btn {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.journey-paragraph {
  font-size: 16px;
  line-height: 1.4;
  color: black;
  font-weight: normal;
  margin-bottom: 16px;
}

/* #page-careers .default-page,
#page-community .default-page {
  background-color: #f2f4f5;
} */

.page-id-21 .default-page {
  background-color: #f2f3f5;
}

#page-careers .default-page .box-part.no-pt,
#page-community .default-page .box-part.no-pt {
  padding-top: 0;
}

.page-template-our-founder .profile-banner-section .profile-name {
  max-width: 300px;
}

.wwd-content p {
  font-size: 16px;
  line-height: 1.4;
  color: black;
  font-weight: normal;
  margin-bottom: 16px;
}

.new-insight-banner {
  padding: 50px 0;
  background-color: #75263b;
}

.new-insight-banner-title {
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.post-type-archive-news .new-insight-banner-title {
  color: #8cf8de;
}

.post-type-archive-insights .new-insight-banner-title {
  color: var(--apple-green-35);
}

.error-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50vh;
}

.error-container h2 {
  font-size: 48px;
  font-weight: normal;
  color: black;
  line-height: 1.2;
  text-align: center;
}

.error-container p {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  text-align: center;
  font-weight: normal;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #6a6a6a;
  text-decoration: none;
}

.profile-team-member-container {
  padding-top: 56px;
}

.profile-team-member-container p.profile-team-member-heading {
  font-size: 14px;
  font-weight: normal;
  color: white;
  margin-bottom: 12px;
}

.profile-team-member-container .profile-team-member-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.profile-team-member-container .profile-team-member {
  padding: 8px 0;
}

.profile-team-member-container .profile-name {
  font-weight: 700 !important;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}

.profile-team-member-container .profile-specialization {
  color: #ffffff;
}

.key-contact-info.spacing-top {
  padding-top: 56px;
}

.key-contact-info p {
  font-size: 14px;
  line-height: 1.4;
  color: white;
  font-weight: normal;
  padding-bottom: 0;
  margin-bottom: 0;
}

.key-contact-info p a {
  color: #d2e6a6 !important;
  text-decoration: underline;
  transition: all 300ms ease;
}

.key-contact-info p a:hover {
  color: white !important;
}

.top-banner-next.swiper-button-next {
  right: 0;
}

.top-banner-prev.swiper-button-prev {
  left: 0;
}

.top-banner-prev.swiper-button-prev,
.top-banner-next.swiper-button-next {
  width: auto !important;
}

/* Responsive Design */
/* Removed empty 1440px media query */
@media screen and (max-width: 1200px) {
  .banner-content {
    max-width: 60%;
  }

  .read-more {
    display: none;
  }

  .journey-content,
  .content-border,
  .about-box.content,
  .expertise-grid.wwd-items .expertise-section {
    padding: 40px;
  }

  .our-founder .about-box:has(.about-box-image) {
    min-height: 400px;
    padding: 60px 56px;
  }

  .about-box-image.our-founder {
    max-width: 100%;
  }

  .box-part {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .box-part-image {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .box-item.content.order-1 {
    order: -1;
  }
}

@media screen and (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-content {
    max-width: 80%;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-title {
    max-width: 80%;
  }

  .our-founder-page
    .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-content {
    max-width: 100%;
  }

  .expertise-grid.wwd-items .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .profile-detail-section .profile-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .profile-banner-section {
    height: auto;
  }

  .banner-about-page.profile-banner-section {
    height: 500px;
  }

  .testimonial-heading {
    font-size: 40px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-single-next {
    right: 0;
  }

  .testimonial-single-prev {
    left: 0;
  }

  .about-part.contact-us {
    grid-template-columns: repeat(1, 1fr);
  }

  .our-founder-page
    .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-content
    .milestone-image-wrapper {
    min-height: 100%;
    max-width: 100%;
  }

  .our-founder-page .milestone-swiper .swiper-button-prev.milestone-prev {
    left: 0;
    top: 50%;
    background-color: #bdda7e !important;
    color: #742439 !important;
  }

  .our-founder-page .milestone-swiper .swiper-button-next.milestone-next {
    right: 0;
    top: 50%;
    background-color: #bdda7e !important;
    color: #742439 !important;
  }

  .milestone-swiper .milestone-image-swiper .swiper-slide {
    padding: 0;
  }

  .milestone-image-swiper .swiper-button-next {
    right: 0;
  }

  .milestone-image-swiper .swiper-button-prev {
    left: 0;
  }

  .single-ni-container {
    grid-template-columns: repeat(1, 1fr);
  }

  /* .single-ni-container .single-ni-col:first-child {
    grid-column: span 1;
  } */

  .single-ni-container .single-ni-col:last-child {
    grid-column: span 1;
    padding-top: 0;
  }

  .single-ni-container .single-ni-col:last-child .single-ni-col-inner {
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .banner-content .banner-text:has(.banner-text-type),
  .banner-content .read-more {
    display: none;
  }

  .banner-text.text-2 {
    width: 80%;
    margin: 0 auto;
  }

  .banner-content .banner-text a {
    text-decoration: underline;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .banner-content .swiper .swiper-wrapper .swiper-slide {
    align-items: center;
  }

  /* .banner-content .swiper .swiper-button-next {
    right: 0;
  } */

  .banner-content .swiper .swiper-button-prev {
    left: 0;
  }

  .expertise-grid {
    display: flex !important;
    gap: 0;
    flex-direction: column;
  }

  .expertise-section {
    padding: 30px;
  }

  .info-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .header-words {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-word {
    font-size: 36px;
  }

  .info-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .testimonial-column .swiper,
  .testimonial-column .swiper .swiper-wrapper {
    max-height: 100%;
  }

  .testimonial-column {
    flex: none;
    padding: 40px 30px;
  }

  .stats-column {
    flex: none;
    padding: 40px 30px;
    gap: 30px;
  }

  .testimonial-heading {
    font-size: 28px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .ni-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .ni-btn-wrap {
    justify-content: center;
    padding-top: 20px;
  }

  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ni-grid {
    min-height: 150px;
  }

  .help-cta {
    padding: 20px 0;
  }

  .journey-content h2 {
    font-size: 34px;
  }

  .milestone-wrapper h4 {
    font-size: 18px;
  }

  .milestone-swiper .swiper-slide {
    padding: 0 40px;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-content {
    max-width: 82%;
  }

  .our-founder-page
    .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-content {
    max-width: 100%;
  }

  .milestone-swiper .swiper-button-prev.milestone-prev {
    left: 40px;
  }

  .milestone-swiper .swiper-button-next.milestone-next {
    right: calc(100% - 68px * 2);
  }

  .our-founder-container {
    gap: 24px;
  }

  .our-founder-container .about-part {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .our-founder .about-box {
    min-height: auto;
  }

  .our-founder-container .about-part .about-box.order-1 {
    order: -1;
  }

  .taxonomy-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs .ni-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-list {
    justify-content: start;
  }

  .box-part {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }

  .blogs .ni-card {
    border: none;
    border-bottom: 1px solid #75263b !important;
    padding-left: 0;
    padding-right: 0;
  }

  .blogs .ni-card .ni-inside {
    padding: 0;
  }

  .blogs .ni-card:nth-child(11),
  .blogs .ni-card:last-child {
    border-bottom: none !important;
  }
}

@media screen and (max-width: 768px) {
  .post-type-archive-people .hero-section {
    height: 100%;
  }

  .banner-content .banner-text a {
    max-width: 100%;
  }

  .banner-swiper .swiper-slide img {
    height: 400px;
    min-height: 400px;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-tax-page .desktop-banner,
  .banner-about-page .desktop-banner {
    display: none;
  }

  .banner-tax-page .mobile-banner {
    display: block;
  }

  .banner-about-page .mobile-banner {
    display: block;
    position: relative;
  }

  .hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 300px;
  }

  .hero-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .header-cta i {
    width: 30px;
  }

  .main-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-heading,
  .ni-heading {
    font-size: 28px;
  }

  .about-box.order-1 {
    order: -1;
  }

  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .expertise-card {
    height: 140px;
    padding: 20px;
  }

  .expertise-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }

  .expertise-text {
    font-size: 13px;
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .testimonial-column {
    padding: 40px 20px;
  }

  .testimonial-column .swiper {
    padding: 40px 0;
  }

  .stats-column {
    padding: 30px 20px;
    gap: 25px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .banner-swiper .swiper-slide,
  .banner-image {
    height: 300px;
  }

  .expertise-grid {
    gap: 30px;
  }

  .expertise-section {
    padding: 20px;
  }

  .expertise-title {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .info-header {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .header-words {
    gap: 25px;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
  }

  .header-word {
    font-size: 24px;
  }

  .testimonial-content {
    width: 90%;
    margin: 0 auto;
  }

  .red-square {
    width: 8px;
    height: 8px;
    margin-bottom: -15px;
  }

  .testimonial-controls {
    padding: 0 10px;
  }

  .testimonial-next,
  .testimonial-prev {
    display: none;
  }

  .testimonial-column
    .swiper
    .swiper-wrapper
    .swiper-slide
    .testimonial-content {
    max-width: 100% !important;
    width: 100% !important;
  }

  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-input,
  .filter-select,
  .search-filter,
  .search-filter .filter-input {
    font-size: 11px;
  }

  .search-filter {
    padding: 0 12px;
  }

  .reset-filters-container {
    justify-content: center;
    margin-top: 30px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertise-card.has-submenu.active {
    z-index: 0;
  }

  .practice-popup-header h3 {
    font-size: 16px;
  }

  .popup-services-list li {
    padding: 10px 0;
    font-size: 14px;
  }

  .hero-image {
    height: 300px;
  }

  .filter-section {
    margin-bottom: 40px;
  }

  .filter-container {
    gap: 12px;
  }

  .filter-item {
    min-height: 32px;
  }

  .filter-input,
  .filter-select {
    height: 32px;
    padding: 6px 10px;
  }

  .search-filter,
  .search-filter .filter-input {
    height: 32px;
  }

  .search-filter .filter-input {
    padding-left: 28px;
  }

  .chevron-icon {
    font-size: 8px;
    right: 8px;
  }

  .reset-filters-btn {
    padding: 8px 16px;
    font-size: 10px;
  }

  .profile-image {
    height: 220px;
  }

  .profile-info {
    padding: 12px 0;
  }

  .profile-name {
    font-size: 16px;
  }

  .profile-title {
    font-size: 13px;
  }

  .profile-specialization {
    font-size: 11px;
  }

  .practice-popup-content {
    width: 90%;
    max-width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .practice-popup.show .practice-popup-content {
    transform: translate(-50%, -50%) scale(1);
  }

  .practice-popup-header {
    padding: 12px 15px;
  }

  .practice-popup-body {
    padding: 12px 15px;
  }

  .profile-banner-section {
    height: auto;
    min-height: 300px;
  }

  .profile-banner-section .profile-banner-background {
    height: 70%;
  }

  .archive .profile-banner-section .profile-banner-background {
    height: 100%;
  }

  .archive.tax-practice-area .profile-banner-section,
  .archive.tax-sector .profile-banner-section {
    height: 100%;
    position: relative;
  }

  .banner-tax-page.profile-banner-section .profile-banner-background {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .archive.tax-practice-area .profile-banner-section .profile-banner-background,
  .archive.tax-sector .profile-banner-section .profile-banner-background {
    height: 300px;
  }

  .practice-sector-banner.profile-banner-section .banner-profile-image {
    width: 200px;
    height: 200px;
  }

  .banner-about-page.profile-banner-section .profile-banner-background {
    height: 300px;
  }

  .banner-about-page.banner-about-page.profile-banner-section {
    height: 100%;
  }

  .banner-about-page.profile-banner-section .profile-banner-content {
    justify-content: end;
  }

  .profile-banner-section .profile-banner-content {
    flex-direction: column;
    padding: 40px 0 0 0;
    text-align: center;
  }

  .archive.tax-practice-area .profile-banner-section .profile-banner-content,
  .archive.tax-sector .profile-banner-section .profile-banner-content {
    padding-top: 0;
  }

  .banner-about-page.profile-banner-section .profile-banner-content {
    padding: 0;
  }

  .profile-banner-section .profile-banner-image {
    order: 1;
    margin-bottom: -1px;
  }

  .banner-tax-page.profile-banner-section .profile-banner-image.icon-desktop {
    display: none;
  }

  .profile-banner-section .banner-profile-image {
    height: 300px;
  }

  .profile-banner-section .profile-banner-text {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: 200px;
    justify-content: start;
    padding: 40px 40px !important;
    margin: 0 auto;
    text-align: center;
    background: #808c9a;
  }

  .banner-tax-page.profile-banner-section .profile-banner-text {
    min-height: 100%;
  }

  .banner-about-page.profile-banner-section .profile-banner-text {
    max-width: auto;
    min-height: auto;
  }

  .banner-about-page.profile-banner-section .profile-banner-text.bg-mobile {
    background: #75263b !important;
  }

  .archive .profile-banner-section .profile-banner-text {
    background: #75263b !important;
    background-color: #75263b !important;
  }

  .profile-banner-section .profile-name {
    font-size: 28px;
    text-align: center;
  }

  .profile-banner-section .profile-title {
    font-size: 20px;
    text-align: center;
  }

  .profile-banner-section .profile-role,
  .profile-banner-section .profile-practice {
    font-size: 16px;
    padding-bottom: 6px;
  }

  .profile-detail-section .testimonial-container {
    flex-direction: row;
    gap: 5px;
  }

  .profile-detail-section .testimonial-quote {
    font-size: 18px;
  }

  .profile-detail-section .profile-tabs {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .profile-detail-section .social-item {
    min-width: 80px;
  }

  .profile-detail-section .mobile-contact-social {
    display: block;
  }

  .profile-detail-section .desktop-contact-social {
    display: none;
  }

  .profile-detail-section .testimonial-section {
    margin-bottom: 30px;
  }

  .profile-detail-section .profile-tabs {
    margin-top: 30px;
  }

  .profile-detail-section .profile-content {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .profile-detail-section .profile-right-column {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid #e0e0e0;
  }

  .profile-detail-section .border-bottom {
    padding-bottom: 30px;
  }

  .profile-detail-section .profile-section {
    margin-bottom: 30px;
  }

  .profile-detail-section .testimonial-section .swiper-button-next:after {
    right: 0;
  }

  .profile-detail-section .contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .profile-detail-section .social-section {
    margin-bottom: 20px;
  }

  .profile-detail-section .contact-item {
    justify-content: center;
  }

  .profile-detail-section .testimonial-section .swiper-button-prev:after {
    left: 0;
  }

  .ni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .ni-card {
    padding: 0;
  }

  .what-we-do .container {
    padding: 20px;
  }

  .what-we-do {
    min-height: 100%;
  }

  .wwd-heading {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .about-part {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-box,
  .box-item {
    min-height: 100%;
  }

  .about-box.content,
  .box-item.content,
  .content-border {
    padding: 20px;
  }

  .journey-content {
    padding: 40px 20px;
  }

  .milestone-wrapper {
    padding: 20px;
  }

  .journey-content h2 {
    font-size: 28px;
  }

  .milestone-swiper .swiper-slide {
    padding: 0 16px;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-content {
    max-width: 100%;
  }

  .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-image-wrapper
    .milestone-title {
    padding: 20px 0;
  }

  .milestone-swiper .swiper-button-prev.milestone-prev {
    left: calc(100% - 58px * 2);
  }

  .milestone-swiper .swiper-button-next.milestone-next {
    right: 20px;
  }

  .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-content
    .milestone-year {
    font-size: 24px;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-image-wrapper,
  .milestone-swiper
    .swiper-slide
    .milestone-slide
    .milestone-image-wrapper
    img {
    object-fit: contain;
    min-height: auto;
  }

  .our-founder-banner figure {
    max-width: 100%;
  }

  .our-founder-container .text {
    padding: 20px;
  }

  .our-founder .about-box:has(.about-box-image) {
    padding: 60px 20px;
  }

  .partnership p {
    margin-bottom: 40px;
  }

  .taxonomy-card {
    grid-template-columns: repeat(1, 1fr);
  }

  .brunei-content,
  .brunei-map {
    display: flex;
    flex-direction: column;
  }

  .brunei-content-item {
    width: 100%;
  }

  .blogs .ni-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .brunei-container {
    gap: 32px;
  }

  .single-ni-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .single-ni-container:has(.practice-sector-inner) {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .single-ni-container .single-ni-col:last-child .single-ni-col-inner {
    margin-left: 0;
  }

  .practice-sector-container .practice-sector-top,
  .practice-sector-container .practice-sector-center,
  .practice-sector-container .practice-sector-bottom {
    padding: 20px;
  }

  .single-ni-container .single-ni-col:first-child {
    grid-column: span 1;
    padding: 20px;
  }

  .single-ni-container .single-ni-col:last-child {
    grid-column: span 1;
    padding: 0 0 50px;
  }

  .key-contact-section .profile-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .info-content.container-fluid {
    gap: 30px;
  }

  /* .main-content .container-fluid {
    padding-left: 0;
    padding-right: 0;
  } */

  .map-contact img {
    min-height: 300px;
  }

  .contact-us .about-box.content .mail a {
    gap: 0;
    flex-wrap: wrap;
  }

  .milestone-swiper .swiper-slide .milestone-slide .milestone-title {
    max-width: 100%;
  }

  .milestone-swiper .milestone-image-swiper .swiper-slide {
    padding: 0 16px;
  }

  .expertise-grid.wwd-items .expertise-section {
    padding: 20px;
  }

  .partnership .wp-block-columns {
    padding: 16px;
    gap: 16px;
  }

  .page-template-our-founder .profile-banner-section .profile-name {
    max-width: 230px;
    margin: 0 auto;
  }

  .blogs .ni-card:nth-child(11) {
    border-bottom: 1px solid #75263b !important;
  }

  .single-ni-container .single-ni-col:first-child .single-ni-col-inner {
    padding: 20px;
  }

  .contact-line {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
  }

  .brunei-swiper .slide-content {
    max-width: 100%;
    padding: 12px 0;
  }

  .swiper-testimoial .swiper-pagination,
  .brunei-swiper .swiper-pagination {
    bottom: 0;
    display: block;
  }

  .brunei-swiper .swiper-button-next,
  .brunei-swiper .swiper-button-prev {
    display: none;
  }

  .swiper-pagination-bullet-active {
    background-color: #75263b !important;
  }
}

@media screen and (max-width: 639px) {
  .expertise-grid.wwd-items .expertise-cards,
  .box-part-image {
    grid-template-columns: repeat(1, 1fr);
  }

  .box-part-career .box-career-item {
    width: 100%;
    max-width: 100%;
  }

  .box-part-career {
    padding: 20px;
  }

  .our-founder-page .milestone-swiper {
    padding: 20px 0;
  }

  .our-founder-page .milestone-swiper .swiper-slide {
    padding: 0 12px;
  }

  .profile-detail-section .tab-button {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .header-word.first-word {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .help-cta-text {
    font-size: 18px;
  }

  .our-founder-page .milestone-swiper .swiper-button-next.milestone-next {
    right: -8px;
    transform: scale(0.6);
  }

  .our-founder-page .milestone-swiper .swiper-button-prev.milestone-prev {
    left: -8px;
    transform: scale(0.6);
  }
}

@media screen and (max-width: 480px) {
  .profile-detail-section .testimonial-quote {
    font-size: 14px;
  }

  .profile-detail-section .social-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .help-cta-text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .testimonial-column .swiper,
  .testimonial-column .swiper .swiper-wrapper {
    max-height: 260px !important;
  }

  .key-contact-section .profile-grid {
    gap: 12px;
  }

  .key-contact-section .profile-grid .profile-card {
    padding: 12px;
    margin: 0 -12px;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;
    border-radius: 8px;
  }

  .key-contact-section .profile-grid .profile-card:hover {
    border: 2px solid #d1e5a4;
  }

  .key-contact-section .profile-grid .profile-info {
    padding: 0;
  }
}

.career-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.career-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.career-row.gap {
  gap: 20px;
}

.career-row-top {
  margin-bottom: 20px;
}

.career-column {
  min-height: 400px;
}

/* Top Left: Headline */
.career-headline {
  background-color: #75263b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 48px;
}

.wwd-heading.career-title {
  color: #a6fae5;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Top Right: Application */
.career-application {
  background-color: #727272;
  padding: 48px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.community-application {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.application-email {
  text-decoration: underline;
  color: #a4f8e3;
}

.application-title {
  color: #a4f8e3;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.career-application p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #e5e5e5;
}

.career-link {
  color: #a4f8e3;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

/* Bottom Left: Accordion */
.career-accordion {
  background-color: #ffffff;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #7f8a99;
  border-radius: 4px;
  padding: 20px;
  text-transform: capitalize;
}

.accordion-item.active .accordion-header {
  background: #75263b;
  color: white;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding-bottom: 20px;
  border: 1px solid #7f8a99;
  border-top: none;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  opacity: 1;
}

.accordion-content p {
  margin-bottom: 16px;
  color: #000000;
  line-height: 1.4;
}

.accordion-content p a {
  text-decoration: underline;
}

.accordion-content ul {
  padding-left: 24px;
  list-style-type: disc;
  margin-top: 16px;
  margin-bottom: 16px;
}

.accordion-content ol {
  padding-left: 24px;
  list-style-type: decimal;
  margin-top: 16px;
  margin-bottom: 16px;
}

.accordion-content ul li,
.accordion-content ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
}

.accordion-content ul li ul,
.accordion-content ol li ul {
  margin: 8px 0;
}

/* Bottom Right: Gallery with Swiper */
/* .career-gallery {
  background-color: #f5f5f5;
  padding: 40px;
  border: 3px solid #6b3838;
  align-self: start;
  height: fit-content;
} */

.gallery-wrapper {
  position: relative;
  width: 100%;
}

.careerSwiper {
  width: 100%;
  height: 100%;
}

.careerSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  position: relative;
  border-radius: 4px;
  width: 100% !important;
}

.careerSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.careerSwiper .swiper-slide p {
  position: absolute;
  max-width: max-content;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #773a46;
  padding: 8px 12px;
  margin-bottom: 16px;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  width: max-content;
  text-align: center;
}

/* Swiper Navigation Buttons */
.careerSwiper .swiper-button-prev,
.careerSwiper .swiper-button-next {
  background-color: white !important;
  color: #742439 !important;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.careerSwiper .swiper-button-prev:hover,
.careerSwiper .swiper-button-next:hover {
  background-color: #6b3838 !important;
  color: white !important;
}

.careerSwiper .swiper-button-prev:hover:after,
.careerSwiper .swiper-button-next:hover:after {
  color: #ffffff;
}

/* Swiper Pagination */
.careerSwiper .swiper-pagination {
  bottom: 10px;
}

.careerSwiper .swiper-pagination-bullet {
  background: #6b3838;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.careerSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #6b3838;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .career-row {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .career-column {
    min-height: 300px;
  }

  .career-application,
  .career-headline {
    padding: 40px 20px;
  }

  .career-column.career-accordion {
    min-height: 100%;
  }

  .career-column.career-gallery {
    padding-left: 0;
    padding-right: 0;
    min-height: 100%;
  }

  .careerSwiper .swiper-slide p {
    font-size: 12px;
  }

  .careerSwiper {
    height: 100%;
  }

  .careerSwiper .swiper-button-prev,
  .careerSwiper .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .careerSwiper .swiper-button-prev:after,
  .careerSwiper .swiper-button-next:after {
    font-size: 14px;
  }
}

/* Search Results Styles - Giống People Section */
.search-results-section {
  margin-bottom: 60px;
}

.search-people-section,
.search-posts-section {
  margin-bottom: 60px;
}

.search-people-section .ni-heading,
.search-posts-section .ni-heading {
  margin-bottom: 30px;
}

.search-results-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.search-results-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.search-result-item {
  background: transparent;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.search-result-item:hover {
  transform: translateY(-5px);
}

.search-result-content {
  background: transparent;
}

.search-result-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.search-post-type {
  text-transform: capitalize;
  padding: 4px 10px;
  background: var(--secondary-color);
  border-radius: 4px;
  font-weight: 500;
  color: #333;
  font-size: 12px;
}

.search-post-date {
  color: #666;
  line-height: 24px;
  font-size: 12px;
}

.search-result-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.search-result-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-result-title a:hover {
  color: var(--oxford-blue-100);
}

.search-result-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--oxford-blue-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-read-more:hover {
  gap: 12px;
}

.search-read-more i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.search-read-more:hover i {
  transform: translateX(4px);
}

.no-search-results {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  grid-column: 1 / -1;
}

.no-search-results p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.search-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  grid-column: 1 / -1;
}

@media screen and (max-width: 1024px) {
  .search-results-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .search-results-title {
    font-size: 24px;
  }

  .search-results-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .search-result-title {
    font-size: 16px;
  }
}

.profile-banner-section .contact-section {
  display: none;
}

.profile-section.print {
  display: none;
}

@media print {
  header,
  footer,
  .green-banner,
  .profile-detail-section .border-bottom,
  .help-cta-section,
  .breadcrumbs {
    display: none !important;
    visibility: hidden !important;
  }

  .profile-banner-section {
    height: 500px !important;
  }

  .profile-banner-section .profile-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    height: 100%;
    padding: 0;
    justify-content: space-around;
  }

  .profile-banner-section .profile-banner-content {
    flex-direction: column;
    padding: 40px 0 0 0;
    text-align: center;
  }

  .archive.tax-practice-area .profile-banner-section .profile-banner-content,
  .archive.tax-sector .profile-banner-section .profile-banner-content {
    padding-top: 0;
  }

  .banner-about-page.profile-banner-section .profile-banner-content {
    padding: 0;
  }

  .profile-banner-section .banner-profile-image {
    height: 300px;
  }

  .profile-banner-section .profile-banner-text {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: 300px;
    justify-content: start;
    padding: 20px 40px !important;
    margin: 0 auto;
    text-align: center;
    background: #808c9a;
  }

  .banner-tax-page.profile-banner-section .profile-banner-text {
    min-height: 100%;
  }

  .banner-about-page.profile-banner-section .profile-banner-text {
    max-width: auto;
    min-height: auto;
  }

  .banner-about-page.profile-banner-section .profile-banner-text.bg-mobile {
    background: #75263b !important;
  }

  .profile-detail-section .profile-content {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .profile-detail-section .profile-right-column {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid #e0e0e0;
  }

  .profile-detail-section .border-bottom {
    padding-bottom: 30px;
  }

  .profile-detail-section .profile-section {
    margin-bottom: 30px;
  }

  .profile-banner-section .profile-name {
    font-size: 28px;
    text-align: center;
  }

  .profile-banner-section .profile-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }

  .profile-banner-section .profile-role,
  .profile-banner-section .profile-practice {
    font-size: 16px;
    padding-bottom: 6px;
  }

  .profile-banner-section .profile-practice {
    display: none;
  }

  .profile-banner-section .contact-section {
    display: block;
  }

  .profile-banner-text .contact-item,
  .profile-banner-text .contact-item a {
    color: white;
    font-size: 20px;
    margin: 0;
    font-family: "Arial", sans-serif;
  }

  .profile-tabs,
  #biography,
  #experience,
  .profile-right-column .desktop-contact-social {
    display: none !important;
  }

  .profile-detail-section>.profile-section.border-bottom.had-print ,
  .profile-section.print,
  .profile-section.border-bottom.had-print {
    display: block !important;
    visibility: visible !important;
    color: #000000 !important;
    opacity: 1 !important;
  }

  .profile-detail-section .section-heading,
  .profile-detail-section .award-title {
    visibility: visible !important;
    color: #000000 !important;
    opacity: 1 !important;
  }

  

  body {
    margin: 0;
    padding: 0;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

.single-brunei .profile-detail-section p em {
  font-size: 12px;
  line-height: 1;
}


