/* Site fixes and T.U.A Events branding */

:root {
  --tua-brand-orange: #e69110;
  --tua-brand-orange-dark: #c97a0d;
  --tua-brand-navy: #05071f;
}

.page-heading .line:after {
  border-top-color: var(--tua-brand-orange) !important;
}

/* ---- T.U.A Events logo & brand identity ---- */
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo--header {
  max-height: 56px;
  width: auto;
}

.brand-logo--footer {
  max-height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-wrapper {
  width: auto;
  max-width: 240px;
  display: flex;
  align-items: center;
}

.logo-wrapper a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.footer-img img.brand-logo {
  max-width: 220px;
}

@media (max-width: 1024px) {
  .brand-logo--header {
    max-height: 48px;
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    padding: 20px 0 10px;
  }

  .brand-logo--header {
    max-height: 42px;
  }

  .logo-wrapper {
    max-width: 180px;
  }

  .footer-img img.brand-logo {
    max-width: 180px;
  }
}

@media (max-width: 479px) {
  .brand-logo--header {
    max-height: 36px;
  }

  .logo-wrapper {
    max-width: 150px;
  }
}

/* Brand accent overrides */
.events-details .view-all,
.publication-wrap .read-more-pub a {
  background-color: var(--tua-brand-orange);
}

.events-details .view-all:hover,
.publication-wrap .read-more-pub a:hover,
.publication-wrap .read-more-pub a:focus {
  background-color: var(--tua-brand-orange-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.ham-icon-wrap:focus-visible {
  outline-color: var(--tua-brand-orange);
}

/* Montserrat via Google Fonts CDN in HTML; keep stack consistent */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
select,
textarea {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

/* Prevent horizontal scroll on small screens */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Hero video / poster fallback */
.main-banner .banner-slider {
  position: relative;
  overflow: hidden;
}

.main-banner video.landing {
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.main-banner .slides {
  background-size: cover !important;
  background-position: center center !important;
}

/* Hero headline + CTA buttons — T.U.A brand orange */
.main-banner .tabs-sec .tab-wrapper .tabs h1 {
  color: var(--tua-brand-orange) !important;
}

.main-banner .tab-button-wrapper {
  border-top-color: var(--tua-brand-orange) !important;
}

.main-banner .tab-button-wrapper .tab-buttons {
  border-color: var(--tua-brand-orange) !important;
  color: var(--tua-brand-orange) !important;
}

.main-banner .tab-button-wrapper .tab-buttons:hover,
.main-banner .tab-button-wrapper .tab-buttons:focus {
  background-color: var(--tua-brand-orange) !important;
  color: #fff !important;
}

/* Our core sectors — icon circle backgrounds */
.sector-section .sector-ion svg circle {
  fill: var(--tua-brand-orange) !important;
}

.sector-section .sector-ion svg circle[fill="none"],
.sector-section .sector-ion svg circle[fill="transparent"] {
  fill: none !important;
}

/* Trade Shows & similar icons render the background via <use href="#circle"> */
.sector-section .sector-ion svg use {
  fill: var(--tua-brand-orange) !important;
}

.sector-section .sector-ion svg use#B1NgirVnV3G,
.sector-section .sector-ion svg clippath use {
  fill: none !important;
}

.sector-section .sector-ion svg rect[fill="#d6e03d"],
.sector-section .sector-ion svg rect[fill="#D6E03E"],
.sector-section .sector-ion svg rect[fill="#d6e03e"] {
  fill: var(--tua-brand-orange) !important;
}

/* Header layout — nav in flow at top; fixed only with .sticky after scroll */
@media (min-width: 1025px) {
  .main-header .container {
    display: flex;
    flex-direction: column;
  }

  .main-header:not(.sticky) .nav-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 3px;
    background: transparent;
    padding-top: 0;
  }

  .main-header .header-wrapper {
    width: 100%;
    flex: 0 0 auto;
  }

  .main-header .header-wrapper .row {
    align-items: center;
  }

  .main-header .header-wrapper .search-wrapper .search-bar {
    max-width: 100%;
    float: none;
  }
}

@media (max-width: 1024px) {
  .main-header .header-wrapper .search-wrapper {
    position: relative;
    z-index: 2;
  }

  .main-header .ham-icon-wrap {
    position: relative;
    z-index: 3;
  }
}

/* Header marquee - fix frozen slick save state */
.header-wrapper .search-wrapper .search-bar {
  align-items: center;
  gap: 0;
}

.head-marquee {
  overflow: hidden;
  height: 38px;
  max-height: 38px;
  display: flex;
  align-items: center;
}

.head-marquee .list-marquee,
.head-marquee ul.list-marquee {
  width: 100%;
  height: 38px;
  margin: 0;
}

.head-marquee .slick-list {
  height: 38px !important;
  overflow: hidden !important;
}

.head-marquee .slick-track {
  height: 38px !important;
}

.head-marquee .slick-slide {
  width: 100% !important;
  height: 38px !important;
}

.head-marquee .slick-slide > a {
  display: block;
  height: 38px;
}

.head-marquee .slick-slide li {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-marquee .slick-slide p {
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  padding: 0 10px;
  line-height: 1.4;
  max-height: none;
  width: 100%;
}

.header-wrapper .search-wrapper .search-bar #event-select {
  height: 38px;
  align-self: center;
}

.header-wrapper .search-wrapper .search-bar #event-select a {
  height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tua-brand-orange);
  white-space: nowrap;
}

.header-wrapper .search-wrapper .search-bar .search-icon {
  height: 38px;
  align-self: center;
}

/* Upcoming events carousel */
section.events-section .event-slider .event-slider-wrapper.slick-initialized {
  position: relative;
}

section.events-section .event-slider .event-slider-wrapper .slick-arrow {
  display: block !important;
  z-index: 2;
}

section.events-section .event-slider .event-slider-wrapper .slick-prev {
  left: -8px;
}

section.events-section .event-slider .event-slider-wrapper .slick-next {
  right: -8px;
}

section.events-section .event-slider .single-events {
  height: auto;
}

section.events-section .event-slider .slick-list {
  overflow: hidden;
}

/* Keep event titles/details above overflowing poster images (stacking only) */
section.events-section .event-slider .single-events .single-events-wrapper {
  position: relative;
  isolation: isolate;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img {
  z-index: 0;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-title,
section.events-section .event-slider .single-events .single-events-wrapper .event-details {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

@media (max-width: 768px) {
  section.events-section .event-slider .event-slider-wrapper .slick-prev {
    left: 0;
  }

  section.events-section .event-slider .event-slider-wrapper .slick-next {
    right: 0;
  }
}

/* Mobile navigation */
@media (max-width: 991px) {
  .ham-icon-wrap {
    display: block !important;
    cursor: pointer;
  }

  .nav-wrapper {
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-wrapper.is-open {
    display: block;
  }

  .nav-bar .menu-list {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-bar .main-menu > a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-bar .sub-menu {
    position: static !important;
    display: none;
    box-shadow: none;
    padding-left: 12px;
  }

  .nav-bar .main-menu.submenu-open .sub-menu {
    display: block;
  }

  .search-bar {
    flex-wrap: wrap;
  }

  .head-marquee {
    max-width: 100%;
    flex: 1 1 100%;
    order: 3;
    margin-top: 8px;
  }

  .exhibitor-wrapper .exhibitor-box {
    margin-bottom: 16px;
  }

  .social-fixed {
    display: none;
  }

  .member-images {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .member-images img {
    max-height: 60px;
    width: auto;
  }

  .black-footer .row,
  .footer-sub .row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .black-footer .social-c ul,
  .footer-sub .social-c ul {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .main-banner .tab-button-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .main-banner .tab-buttons {
    width: 100%;
    text-align: center;
  }

  .press-slider .slick-slide,
  .slider-wrap .slick-slide {
    padding: 0 8px;
  }
}

/* Search overlay */
#search-section {
  transform: translateY(-100%);
}

#search-section.is-visible {
  transform: translateY(0);
}

/* Slick dots tap targets */
.slick-dots li button {
  min-width: 24px;
  min-height: 24px;
}

/* Footer social icons using FA CDN */
.footer-sub .fa,
.black-footer .fa {
  font-size: 18px;
}

/* Suppress intrusive third-party UI when offline */
#onetrust-consent-sdk,
#ot-sdk-btn-floating,
.onetrust-pc-dark-filter {
  display: none !important;
}

/* ---- Experience Our Events section ---- */
.events-details .events-left-wrapper.img-wrapper,
.events-details .img-wrapper {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.events-details .page-heading.head-withbtn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.events-details .page-heading.head-withbtn h2 {
  margin: 0;
  flex: 1 1 auto;
}

.events-details .page-heading.head-withbtn a {
  float: none;
}

.events-details .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tua-brand-orange);
  color: #fff;
  border: 0;
  padding: 12px 20px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.events-details .view-all img {
  width: 16px;
  height: auto;
}

.events-details .row.img-content-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  gap: 0;
}

.events-details .events-left-section {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.events-details .event-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.events-details .event-slider .slide {
  position: relative;
}

.events-details .event-slider a.popup-gallery {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.events-details .event-slider .slide > a.popup-gallery {
  display: block;
  height: 100%;
  min-height: 0;
}

.events-details .events-left-wrapper .slick-slide,
.events-details .events-left-wrapper .slide {
  position: relative;
  height: 260px;
  max-height: none;
}

.events-details .events-left-wrapper .slick-list,
.events-details .events-left-wrapper .slick-track {
  height: 260px !important;
}

.events-details .events-left-wrapper .slick-slide img,
.events-details .events-left-section img,
.events-details .event-slider img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-details .mask.rgba-black-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.events-details .event-slider figcaption,
.events-details .fig-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 16px 48px 16px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.events-details .col-lg-6 figcaption {
  padding: 20px 56px 20px 20px;
}

.events-details .fig-cap h5 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.events-details .col-lg-6 .fig-cap h5 {
  font-size: 20px;
}

.events-details .right-ar {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 28px;
}

.events-details .right-ar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.events-details .slick-arrow {
  z-index: 3;
  width: 36px;
  height: 36px;
}

.events-details .slick-prev {
  left: 8px;
}

.events-details .slick-next {
  right: 8px;
}

@media (max-width: 1024px) {
  .events-details .col-lg-6.events-left-section,
  .events-details .col-lg-3.events-left-section {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .events-details .col-lg-6.events-left-section,
  .events-details .col-lg-3.events-left-section,
  .events-details .col-md-6.events-left-section,
  .events-details .col-md-3.events-left-section {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .events-details .page-heading.head-withbtn {
    flex-direction: column;
    align-items: flex-start;
  }

  .events-details .page-heading.head-withbtn a {
    width: 100%;
  }

  .events-details .view-all {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .events-details .events-left-wrapper .slick-slide,
  .events-details .events-left-wrapper .slide,
  .events-details .events-left-wrapper .slick-list,
  .events-details .events-left-wrapper .slick-track {
    height: 210px !important;
  }

  .events-details .fig-cap h5 {
    font-size: 14px;
  }
}

/* ---- Digital News Platforms section ---- */
.publication-wrap {
  background-color: #f2f5f8;
  background-image: url(../media/4656/public-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 50px;
}

.publication-wrap .page-heading {
  padding-bottom: 24px;
  margin-bottom: 0;
}

.publication-wrap .publication-slider-col,
.publication-wrap .pub-slider {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 15px;
}

.publication-wrap .pub-slider {
  overflow: visible;
}

.publication-wrap .pub-row {
  width: 100%;
}

.publication-wrap .pub-row-iner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 48px;
  min-height: 0;
}

.publication-wrap .publication-left {
  flex: 1 1 55%;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}

.publication-wrap .publication-right {
  flex: 0 0 40%;
  width: auto;
  max-width: 440px;
  padding: 0;
  margin: 0;
}

.publication-wrap .pub-left-outer {
  max-width: 560px;
}

.publication-wrap .pub-left-outer h3 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  text-transform: none;
}

.publication-wrap .pub-left-outer p {
  font-size: 16px;
  line-height: 1.65;
  color: #5c6f7c;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

.publication-wrap .read-more-pub {
  margin-top: 28px;
}

.publication-wrap .read-more-pub a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--tua-brand-orange);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.publication-wrap .read-more-pub a:hover,
.publication-wrap .read-more-pub a:focus {
  background-color: var(--tua-brand-orange-dark);
  color: #fff !important;
}

.publication-wrap .read-more-pub a i {
  padding: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.publication-wrap .read-more-pub a:hover i,
.publication-wrap .read-more-pub a:focus i {
  padding: 0;
  transform: translateX(4px);
}

.publication-wrap .pub-right-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #e8eef2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publication-wrap .pub-right-outer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.publication-wrap .pub-slider-static .slick-dots,
.publication-wrap .pub-slider .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 24px;
}

.publication-wrap .pub-slider-static .slick-dots {
  display: none !important;
}

.publication-wrap .pub-slider:not(.pub-slider-static) .slick-slide {
  height: auto;
}

@media (max-width: 991px) {
  .publication-wrap {
    padding: 48px 0 40px;
    background-size: cover;
  }

  .publication-wrap .pub-row-iner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 28px 24px;
  }

  .publication-wrap .publication-left,
  .publication-wrap .publication-right {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .publication-wrap .pub-left-outer {
    max-width: 100%;
  }

  .publication-wrap .pub-right-outer {
    aspect-ratio: 16 / 9;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .publication-wrap .publication-slider-col,
  .publication-wrap .pub-slider {
    padding: 0;
  }

  .publication-wrap .pub-row-iner {
    padding: 24px 20px;
    gap: 24px;
    border-radius: 6px;
  }

  .publication-wrap .pub-left-outer h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .publication-wrap .pub-left-outer p {
    font-size: 15px;
  }

  .publication-wrap .read-more-pub {
    margin-top: 20px;
  }

  .publication-wrap .read-more-pub a {
    width: 100%;
    justify-content: center;
  }
}

/* Focus styles for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.ham-icon-wrap:focus-visible {
  outline: 2px solid var(--tua-brand-orange);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Inner pages (About, Sectors, Events, etc.) ---- */
.inner-page-banner .banner-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.inner-page-banner .inner-banner-content {
  padding: 48px 0;
}

.inner-page-banner .inner-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.inner-page-banner .inner-desc {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
}

.sub-menu a.active {
  color: var(--tua-brand-orange) !important;
  font-weight: 700;
}

/* Primary navigation — T.U.A brand orange */
.nav-wrapper .nav-bar .menu-list li.main-menu.active > a,
.nav-wrapper .nav-bar .menu-list li.main-menu:hover > a {
  color: var(--tua-brand-orange) !important;
}

.nav-wrapper .nav-bar .menu-list li.main-menu:after {
  background-color: var(--tua-brand-orange) !important;
}

.nav-wrapper .nav-bar .menu-list li.main-menu.active:after {
  width: 100%;
}

.nav-wrapper .nav-bar .menu-list li.main-menu .sub-menu a:hover,
.nav-wrapper .nav-bar .menu-list li.main-menu .sub-menu a:focus,
.nav-wrapper .nav-bar .menu-list li.main-menu .sub-menu a.active {
  color: var(--tua-brand-orange) !important;
}

@media screen and (max-width: 1024px) {
  .nav-wrapper .nav-bar .menu-list li.main-menu.active > a,
  .nav-wrapper .nav-bar .menu-list li.main-menu.submenu-open > a,
  .nav-wrapper .nav-bar .menu-list li.main-menu:hover > a {
    color: var(--tua-brand-orange) !important;
  }
}

.main-menu.home-icon a {
  font-size: 18px;
  padding: 0 12px;
}

.black-footer #ot-sdk-btn {
  display: none !important;
}

.black-footer .copyright a {
  color: rgba(255, 255, 255, 0.75);
}

/* Events listing page */
.filter__wrapper {
  margin-bottom: 24px;
}

.filter__wrapper .filter-select,
.filter__wrapper .filter-select-main {
  min-height: 44px;
}

.event-listing .event-card,
.events-listing .event-card {
  height: 100%;
}

@media (max-width: 1024px) {
  .inner-page-banner .banner-bg {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .inner-page-banner .banner-bg {
    min-height: 200px;
  }

  .inner-page-banner .inner-banner-content {
    padding: 32px 0;
  }

  .inner-page-banner .inner-title {
    font-size: 1.75rem;
  }
}

/* ---- About us: How we do it ---- */
.industry-section .video-section,
.industry-section .first-half,
.industry-section .second-half {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.industry-section .video-wrapper-static .slide {
  display: block;
}

.industry-section .video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.industry-section a.video {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.industry-section a.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 31, 0.18);
  transition: background 0.2s ease;
}

.industry-section a.video::before {
  content: "\f04b";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background: var(--tua-brand-orange);
  color: #fff;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.industry-section a.video:hover::after {
  background: rgba(5, 7, 31, 0.28);
}

.industry-section .second-half p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .industry-section.plain-video-bg .row.two-col-section {
    direction: ltr;
  }

  .industry-section.plain-video-bg .industry-section-wrapper .two-col-section .col-lg-6.second-half {
    padding-right: 15px;
    margin-top: 24px;
  }

  .industry-section .video-section {
    margin-bottom: 8px;
  }
}

/* ---- Events page: Search Events filter ---- */
.events-pg .filter__wrapper {
  background: #fff;
  border: 1px solid #ececec !important;
  border-radius: 8px;
  padding: 24px 20px 20px !important;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.events-pg .filter__wrapper h2 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.events-pg form#filter_form {
  align-items: flex-end;
  margin-left: -10px;
  margin-right: -10px;
}

.events-pg form#filter_form > div {
  max-width: none;
  flex: 0 0 25%;
  padding-left: 10px;
  padding-right: 10px;
}

.events-pg .submit-btn {
  position: static;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 16px;
  padding-left: 10px;
  padding-right: 10px;
}

.events-pg .submit-btn button {
  background: var(--tua-brand-orange);
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 32px;
  text-transform: uppercase;
}

.events-pg .submit-btn button:hover {
  background: var(--tua-brand-orange-dark);
}

.events-pg #reset_events_filter {
  background: transparent;
  border: 1px solid #c8c8c8;
  color: #333;
}

.events-pg #reset_events_filter:hover {
  background: #f5f5f5;
  border-color: #999;
}

.events-pg .events-filter-status {
  color: #666;
  font-size: 0.95rem;
  margin: 12px 0 0;
  padding: 0 2px;
}

.events-pg .events-no-results {
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 6px;
  margin-bottom: 24px;
  padding: 28px 20px;
  text-align: center;
}

.events-pg .events-no-results p {
  color: #666;
  margin: 0;
}

.events-pg .filter__wrapper .select2-container {
  width: 100% !important;
}

.events-pg .filter__wrapper .submit-btn {
  position: static !important;
}

.events-pg .event-listing-wrapper {
  padding-top: 24px;
}

.events-pg .tab-content > .tab-pane {
  display: none !important;
  opacity: 1;
  visibility: visible;
}

.events-pg .tab-content > .tab-pane.active,
.events-pg .tab-content > .tab-pane.active.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.events-pg .tab-content > .tab-pane.active .media-card,
.events-pg .tab-content > .tab-pane.active.show .media-card {
  opacity: 1;
  visibility: visible;
}

.events-pg .tab-content > .tab-pane .events-no-results:not([hidden]) {
  display: block;
  padding: 48px 15px;
  text-align: center;
}

@media (max-width: 991px) {
  .events-pg form#filter_form > div {
    flex: 0 0 50%;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .events-pg form#filter_form > div {
    flex: 0 0 100%;
  }

  .events-pg .submit-btn {
    flex-direction: column;
  }

  .events-pg .submit-btn button {
    width: 100%;
  }
}

/* ---- Tech News homepage section ---- */
.tech-news-section {
  position: relative;
  padding: 72px 0 64px;
  background-color: #ececec;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='%23ffffff' fill-opacity='0.55'%3E%3Cpolygon points='120,18 222,120 120,222 18,120'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 240px;
  background-position: center top;
  overflow: hidden;
}

.tech-news-section .page-heading {
  margin-bottom: 42px;
}

.tech-news-carousel {
  position: relative;
  padding: 0 58px 42px;
}

.tech-news-slider-wrap {
  position: relative;
  overflow: hidden;
}

.tech-news-slider {
  width: 100%;
  margin: 0;
}

.tech-news-slider .slick-list {
  overflow: hidden;
  margin: 0 -20px;
  padding: 4px 0;
}

.tech-news-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.tech-news-slider .slick-slide {
  display: flex !important;
  height: auto !important;
  float: left;
}

.tech-news-slider .slick-slide > div {
  width: 100%;
  display: flex;
  height: 100%;
}

.tech-news-section .slick-slide img {
  width: auto;
  height: auto;
}

.tech-news-slide {
  width: 100%;
  padding: 0 20px;
  height: auto;
  outline: none;
  box-sizing: border-box;
}

.tech-news-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: 100%;
  padding: 4px 2px 12px;
  box-sizing: border-box;
}

.tech-news-card__title {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #000000;
}

.tech-news-card__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  flex: 1 1 auto;
}

.tech-news-card__media {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.tech-news-card__image-frame {
  width: 100%;
  background: #ffffff;
  border: 5px solid #000000;
  border-radius: 26px;
  padding: 18px 20px;
  min-height: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.tech-news-section .tech-news-card__image-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.tech-news-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.08em;
}

.tech-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  gap: 14px;
}

.tech-news-card__excerpt {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.tech-news-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 11px 20px;
  background: #000000;
  color: #ffcc00;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  margin-top: auto;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tech-news-card__cta:hover,
.tech-news-card__cta:focus {
  background: #1a1a1a;
  color: #ffe566;
  text-decoration: none;
}

/* Single full-width slide: title on top, image left + excerpt right below */
@media (min-width: 992px) and (max-width: 1399px) {
  .tech-news-card__title {
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.12;
    margin-bottom: 18px;
    text-align: right;
  }

  .tech-news-card__main {
    flex-direction: row;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
  }

  .tech-news-card__media {
    flex: 0 0 38%;
    max-width: 38%;
    width: auto;
  }

  .tech-news-card__image-frame {
    height: 160px;
    padding: 22px 26px;
  }

  .tech-news-card__body {
    flex: 1;
    align-items: flex-end;
    text-align: right;
    gap: 18px;
  }

  .tech-news-card__excerpt {
    font-size: 15px;
    line-height: 1.62;
    -webkit-line-clamp: 5;
  }
}

/* Carousel navigation */
.tech-news-carousel__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid #000000;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.tech-news-carousel__arrow span {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.tech-news-carousel__arrow--prev {
  left: 0;
}

.tech-news-carousel__arrow--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.tech-news-carousel__arrow--next {
  right: 0;
}

.tech-news-carousel__arrow--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

.tech-news-carousel__arrow:hover,
.tech-news-carousel__arrow:focus {
  background: #000000;
  border-color: #000000;
  outline: none;
}

.tech-news-carousel__arrow:hover span,
.tech-news-carousel__arrow:focus span {
  border-color: #ffcc00;
}

.tech-news-carousel .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.tech-news-carousel .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.tech-news-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.tech-news-carousel .slick-dots li button:before {
  display: none;
}

.tech-news-carousel .slick-dots li.slick-active button {
  background: #000000;
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .tech-news-section {
    padding: 58px 0 52px;
  }

  .tech-news-carousel {
    padding: 0 50px 38px;
  }
}

@media (max-width: 991px) {
  .tech-news-carousel {
    padding: 0 46px 36px;
  }

  .tech-news-carousel__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .tech-news-section {
    padding: 48px 0 40px;
  }

  .tech-news-carousel {
    padding: 0 0 34px;
  }

  .tech-news-carousel__arrow {
    display: none !important;
  }

  .tech-news-slider .slick-list {
    margin: 0 -14px;
  }

  .tech-news-slide {
    padding: 0 14px;
  }

  .tech-news-card__title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .tech-news-card__image-frame {
    height: 110px;
    padding: 16px 18px;
  }

  .tech-news-card__main {
    gap: 14px;
  }
}

/* ---- Contact Us page ---- */
.tua-contact-banner .banner-bg {
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
}

.tua-contact-page {
  padding: 56px 0 72px;
  background: #f8f9fa;
}

.tua-contact-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 520px;
}

.tua-contact-grid {
  margin-bottom: 48px;
}

.tua-contact-alert {
  margin-bottom: 28px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}

.tua-contact-alert--success {
  background: #e8f7ee;
  color: #1f6b3f;
  border: 1px solid #b8e6c8;
}

.tua-contact-alert--error {
  background: #fdecec;
  color: #8b1e1e;
  border: 1px solid #f5c2c2;
}

.tua-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.tua-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tua-contact-card:hover {
  transform: translateY(-2px);
  border-color: #e69110;
  box-shadow: 0 8px 24px rgba(230, 145, 16, 0.12);
}

.tua-contact-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000;
  color: #e69110;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tua-contact-card__body h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e69110;
}

.tua-contact-card__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #111;
}

.tua-contact-card__body a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tua-contact-card__body a:hover {
  color: #e69110;
}

.tua-contact-social h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}

.tua-contact-social ul {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tua-contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #e69110;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tua-contact-social a:hover {
  background: #e69110;
  color: #fff;
  transform: translateY(-2px);
}

.tua-contact-form-wrap {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 32px 28px 36px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
}

.tua-contact-form .tua-form-row {
  margin-bottom: 18px;
}

.tua-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #222;
}

.tua-contact-form label .required {
  color: #e69110;
}

.tua-contact-form input,
.tua-contact-form textarea,
.tua-contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #111;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.tua-contact-form input:focus,
.tua-contact-form textarea:focus,
.tua-contact-form select:focus {
  outline: none;
  border-color: #e69110;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 145, 16, 0.15);
}

.tua-contact-form .tua-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tua-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 32px;
  border: 0;
  border-radius: 4px;
  background: #000;
  color: #e69110;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.tua-contact-submit:hover,
.tua-contact-submit:focus {
  background: #e69110;
  color: #fff;
  transform: translateY(-1px);
}

.tua-contact-map {
  margin-top: 12px;
}

.tua-contact-map__frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.tua-contact-map__frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 991px) {
  .tua-contact-page {
    padding: 40px 0 56px;
  }

  .tua-contact-form-wrap {
    margin-top: 36px;
    padding: 28px 22px 30px;
  }

  .tua-contact-form .tua-form-row--half {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tua-contact-map__frame iframe {
    min-height: 300px;
  }
}

.tua-partnership-form-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 24px;
}

.tua-partnership-form-section .page-heading h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.tua-partnership-form-section .tua-contact-form-wrap {
  margin-top: 0;
}

/* Clients & Partners slider */
.member-section .members h6 {
  text-align: center;
  margin-bottom: 28px;
}

.member-images {
  position: relative;
  width: 100%;
}

.partners-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px;
}

.partners-slider {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.partners-slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.partners-logo-card {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partners-logo-card:hover {
  border-color: #e69110;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.partners-logo-card a,
.partners-logo-card .partners-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partners-logo-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partners-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.partners-nav:hover,
.partners-nav:focus {
  background: #e69110;
  border-color: #e69110;
  color: #fff;
  outline: none;
}

.partners-slider .slick-list {
  margin: 0 -12px;
}

.partners-slider .slick-track {
  display: flex;
  align-items: center;
}

.partners-slider .slick-slide {
  height: auto;
}

@media (max-width: 767px) {
  .partners-logo-card {
    height: 76px;
    padding: 8px 10px;
  }

  .partners-logo-card img {
    max-height: 52px;
  }

  .partners-nav {
    width: 34px;
    height: 34px;
  }

  .partners-slide {
    padding: 0 8px;
  }
}

/* Mission & Vision — About us */
.tua-mission-vision {
  padding: 56px 0 64px;
  background:
    linear-gradient(135deg, rgba(230, 145, 16, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.tua-mission-vision .page-heading {
  margin-bottom: 28px;
  text-align: left;
}

.tua-mission-vision__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
}

.tua-mission-vision__col {
  display: flex;
  float: none;
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
  box-sizing: border-box;
}

.tua-mission-vision__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 28px 28px 30px;
  border-top: 3px solid #e69110;
  background: #fff;
  box-sizing: border-box;
}

.tua-mission-vision__label {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e69110;
}

.tua-mission-vision__title {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.tua-mission-vision__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}

/* Tablet + mobile: stack vertically */
@media (max-width: 991px) {
  .tua-mission-vision {
    padding: 40px 0 48px;
  }

  .tua-mission-vision__col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 18px;
  }

  .tua-mission-vision__col:last-child {
    margin-bottom: 0;
  }

  .tua-mission-vision__item {
    padding: 22px 20px 24px;
  }

  .tua-mission-vision__title {
    font-size: 20px;
  }
}
