@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
}
/*** Keyframes ***/
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, 30px) scale(1.08);
  }
  66% {
    transform: translate(-25px, 45px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes logoIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes sheen {
  0% {
    transform: translateX(-60%) rotate(20deg);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  45% {
    opacity: 0;
  }
  100% {
    transform: translateX(80%) rotate(20deg);
    opacity: 0;
  }
}
@keyframes itemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tagSheen {
  0% {
    transform: translateX(-70%) rotate(20deg);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  45% {
    opacity: 0;
  }
  100% {
    transform: translateX(90%) rotate(20deg);
    opacity: 0;
  }
}
@keyframes pulse-bar {
  0%, 100% {
    transform: scaleY(0.8);
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.7;
  }
}
@keyframes idle-wave {
  0% {
    height: 8px;
    opacity: 0.5;
  }
  100% {
    height: 25px;
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateY(-40px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(40px);
    opacity: 0.9;
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rise {
  0% {
    bottom: -10%;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 110%;
    opacity: 0;
  }
}
@keyframes social-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleX(1.1);
  }
}
@keyframes gradient-text {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*** Keyframes ***/
html, body {
  height: 100%;
  background-color: #e9e1d6;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat" !important;
  overflow-x: hidden;
  background-color: #e9e1d6;
  position: relative;
}

.back-image {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #081524 0%, #0d2236 40%, #0e2a2a 72%, #0b1f1e 100%);
}
.back-image .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.back-image .blob-1 {
  width: 480px;
  height: 480px;
  background: rgba(7, 143, 136, 0.25);
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}
.back-image .blob-2 {
  width: 380px;
  height: 380px;
  background: rgba(196, 154, 74, 0.18);
  bottom: -80px;
  right: -60px;
  animation-delay: -5s;
}
.back-image .blob-3 {
  width: 280px;
  height: 280px;
  background: rgba(34, 184, 170, 0.18);
  top: 40%;
  right: 18%;
  animation-delay: -2s;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

/*** Hide from Developement ***/
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/** Reveal **/
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: all 0.9s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity:0; transform:translateX(-60px); transition:opacity .7s ease, transform .7s ease; }
.reveal-right { opacity:0; transform:translateX( 60px); transition:opacity .7s ease, transform .7s ease; }
.reveal-left.active,
.reveal-right.active { opacity:1; transform:translateX(0); }

/** Reveal **/
/** Static **/
.theme-26__head {
  margin-bottom: clamp(60px, 2.5vw, 70px);
  margin-bottom: clamp(20px, 2.5vw, 20px);
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.theme-26__head.dr-back {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.theme-26__title {
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  font-weight: 700;
  font-family: "BukraGM";
  background: linear-gradient(360deg, #0F2A43, #357480, #2eb1be);
  background: rgba(0, 0, 0, 0.7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.theme-26__title.dr-back {
  background: rgba(255, 255, 255, 0.9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.theme-26__title::before {
  content: "";
  width: 5px;
  height: 40px;
  background: linear-gradient(to bottom, #0F2A43, #357480, #2eb1be);
  border-radius: 10px;
  animation: pulse-bar 2s ease-in-out infinite;
}
.theme-26__subtitle {
  margin: 0;
  opacity: 0.8;
  max-width: 60ch;
}
.theme-26__more {
  font-weight: 600;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.25s ease;
}
.theme-26__more:hover {
  opacity: 1;
  text-decoration: none;
}

.tg-viewall {
  --gap: .55rem;
  --pad-y: .15rem;
  --pad-x: .1rem;
  --ease: cubic-bezier(.2,.8,.2,1);
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  padding: var(--pad-y) var(--pad-x);
  text-decoration: none;
  color: #2eb1be;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  outline: none;
  font-size: 0.9rem;
}
.tg-viewall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  opacity: 0.9;
}
.tg-viewall__text {
  position: relative;
  transform: translateY(0);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.tg-viewall__icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}
.tg-viewall__icon svg {
  width: 100%;
  height: 100%;
  transform: translateX(-2px);
  transition: transform 0.35s var(--ease);
}
.tg-viewall:hover, .tg-viewall:focus-visible {
  text-decoration: none;
  color: #83d1dc;
}
.tg-viewall:hover::after, .tg-viewall:focus-visible::after {
  transform: scaleX(1);
}
.tg-viewall:hover .tg-viewall__text, .tg-viewall:focus-visible .tg-viewall__text {
  transform: translateX(-2px);
  opacity: 0.95;
}
.tg-viewall:hover .tg-viewall__icon svg, .tg-viewall:focus-visible .tg-viewall__icon svg {
  transform: translateX(3px);
}
.tg-viewall:active {
  transform: translateY(1px);
}
.tg-viewall.dark-back {
  color: #bce2e9;
}
.tg-viewall.dark-back:hover, .tg-viewall.dark-back:focus-visible {
  color: #2eb1be;
}
.tg-viewall.dr-back {
  color: #fff;
}

/** Static **/
/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  backdrop-filter: blur(3px);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.4), rgba(11, 18, 32, 0.2));
}
@media (max-width: 1300px) {
  .site-header {
    padding: 0 1rem;
  }
}
.site-header .header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: padding 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.site-header.is-shrink {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(11, 18, 32, 0.62));
}
.site-header.is-shrink .header-inner {
  padding: 0px 18px;
}
.site-header.is-shrink .brand {
  transform: scale(0.8);
}

/* ===== Brand ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #eef3ff;
  min-width: 210px;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.brand .trends-logo {
  max-width: 200px;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  animation: logoIn 1.5s cubic-bezier(0.2, 0.9, 0.2, 1) 0.1s forwards;
}
.brand .trends-logo.company-logo{
  padding:0 1rem;
  margin:0 1rem;
  max-width:200px;
}


.brand .trends-logo.company-logo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 40px;
    transform: translateY(-50%);
    background: linear-gradient(
        to bottom,
        transparent,
        #ffffff,
        transparent
    );
}
.brand .trends-logo img {
  width: 100%;
}
.brand .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 45%), linear-gradient(135deg, rgba(96, 165, 250, 0.8), rgba(167, 139, 250, 0.78));
  box-shadow: 0 10px 28px rgba(96, 165, 250, 0.12);
  position: relative;
  overflow: hidden;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  animation: logoIn 1.5s cubic-bezier(0.2, 0.9, 0.2, 1) 0.1s forwards;
}
.brand .brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-40%) rotate(20deg);
  animation: sheen 2.2s cubic-bezier(0.2, 0.9, 0.2, 1) 1.1s infinite;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transform: translateY(10px);
  opacity: 0;
  animation: logoIn 1.5s cubic-bezier(0.2, 0.9, 0.2, 1) 0.18s forwards;
}
.brand .brand-text strong {
  letter-spacing: 0.6px;
  font-size: 14px;
}
.brand .brand-text span {
  font-size: 12px;
  color: rgba(238, 243, 255, 0.72);
  margin-top: 3px;
}

/* ===== Nav ===== */
nav {
  flex: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav > li {
  position: relative;
  opacity: 0;
  transform: translateY(-8px);
  animation: itemIn 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}
.nav > li:nth-child(1) {
  animation-delay: 0.3s;
}
.nav > li:nth-child(2) {
  animation-delay: 0.45s;
}
.nav > li:nth-child(3) {
  animation-delay: 0.6s;
}
.nav > li:nth-child(4) {
  animation-delay: 0.75s;
}
.nav > li:nth-child(5) {
  animation-delay: 0.9s;
}
.nav > li:nth-child(6) {
  animation-delay: 1.05s;
}
.nav > li:nth-child(7) {
  animation-delay: 1.2s;
}
.nav > li:hover > .nav-link::after,
.nav > li:hover > .nav-trigger::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.nav-link,
.nav-trigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: #eef3ff;
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.25px;
  padding: 10px 12px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
  outline: none;
  position: relative;
}
.nav-link:hover,
.nav-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  color: #eef3ff;
}
.nav-link:focus-visible,
.nav-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.28);
}

.chev {
  width: 14px;
  height: 14px;
  opacity: 0.9;
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* ===== Submenu (no hover gap) ===== */
.submenu {
  position: absolute;
  top: 100%;
  margin-top: 0;
  right: 0;
  min-width: 260px;
  background: linear-gradient(90deg, #1f263d, #1f263d, #285b66, #088285);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), backdrop-filter 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  overflow: hidden;
}
.submenu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 280px at 20% 0%, rgba(255, 255, 255, 0.08), transparent 90%);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
}
.submenu .submenu-item {
  display: flex;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #eef3ff;
  font-size: 13px;
  transition: background 0.2s cubic-bezier(0.2, 0.9, 0.2, 1);
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.submenu .submenu-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.submenu .badge {
  margin-left: auto;
  font-size: 11px;
  color: rgba(238, 243, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

/* open state (JS) */
.has-sub.open > .submenu {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(18px);
}
.has-sub.open > .submenu::after {
  opacity: 1;
}
.has-sub.open > .submenu:not(.mega) {
  transform: translateY(0) scale(1);
}
.has-sub.open > .submenu.mega {
  /* transform: translateX(-50%) translateY(0) scale(1); */
  transform: translateX(-25%) translateY(0) scale(1);
}
.has-sub.open > .nav-trigger .chev {
  transform: rotate(180deg);
}

/* open state (hover desktop) */
@media (hover: hover) {
  .has-sub:hover > .submenu, .has-sub:focus-within > .submenu {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(18px);
  }
  .has-sub:hover > .submenu::after, .has-sub:focus-within > .submenu::after {
    opacity: 1;
  }
  .has-sub:hover > .submenu:not(.mega), .has-sub:focus-within > .submenu:not(.mega) {
    transform: translateY(0) scale(1);
  }
  .has-sub:hover > .submenu.mega, .has-sub:focus-within > .submenu.mega {
    transform: translateX(-75%) translateY(0) scale(1);
  }
  .has-sub:hover > .nav-trigger .chev, .has-sub:focus-within > .nav-trigger .chev {
    transform: rotate(180deg);
  }
  .has-sub.click-closed:hover > .submenu {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
  }
  .has-sub.click-closed:hover > .submenu::after {
    opacity: 0;
  }
  .has-sub.click-closed:hover > .submenu:not(.mega) {
    transform: translateY(8px) scale(0.98);
  }
  .has-sub.click-closed:hover > .submenu.mega {
    transform: translateX(-50%) translateY(8px) scale(0.98);
  }
}
/* ===== Mega ===== */
.mega {
  width: min(1200px, 100vw - 40px);
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  padding: 14px;
}
.mega .mega-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.mega .mega-header h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #fff;
  font-family: "Montserrat-Medium";
}
.mega .mega-header p {
  margin: 6px 0 0;
  color: rgba(238, 243, 255, 0.72);
  font-size: 12.5px;
  max-width: 62ch;
}
.mega .mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #eef3ff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.2, 1), background 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
  white-space: nowrap;
  font-size: 12.5px;
}
.mega .mega-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}
.mega .mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}
.mega .mega-col {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  overflow: hidden;
  position: relative;
}
.mega .mega-col::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--a1, rgba(255, 255, 255, 0.14)), var(--a2, rgba(255, 255, 255, 0.08)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}
.mega .mega-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-family: "Montserrat-Medium";
}
.mega .mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  margin: 2px 0;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(238, 243, 255, 0.92);
  font-size: 12.8px;
  transition: background 0.2s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.mega .mega-col a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.mega .mega-col a:hover .icon {
  transform: translateY(-1px);
  opacity: 1;
}
.mega .mega-col .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.9;
  transform: translateY(0);
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.22s cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* ===== Tags ===== */
.tag {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: 0.35px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 243, 255, 0.78);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.tag.is-new {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(96, 165, 250, 0.12);
  color: rgba(238, 243, 255, 0.9);
}
.tag.is-featured {
  border-color: rgba(167, 139, 250, 0.28);
  background: rgba(167, 139, 250, 0.12);
  color: rgba(238, 243, 255, 0.9);
}
.tag::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-60%) rotate(20deg);
  animation: tagSheen 2.6s cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
  opacity: 0.55;
}

/* ===== Mobile ===== */
.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(238, 243, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: absolute;
  right: 10px;
}
.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-toggle .hamburger {
  width: 20px;
  height: 14px;
  position: relative;
}
.mobile-toggle .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eef3ff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.mobile-toggle .hamburger span:nth-child(1) {
  top: 0;
}
.mobile-toggle .hamburger span:nth-child(2) {
  top: 6px;
}
.mobile-toggle .hamburger span:nth-child(3) {
  bottom: 0;
}
.mobile-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .site-header .header-inner {
    gap: 10px;
  }
  nav {
    flex: 0 0 auto;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(238, 243, 255, 0.12);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100vh - 90px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1);
  }
  .nav.mobile-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav > li {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .submenu {
    position: static;
    width: 100%;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    opacity: 1;
    pointer-events: auto;
    display: none;
    margin-top: 6px;
    padding: 10px;
  }
  .has-sub.open > .submenu {
    display: block;
  }
  .mega {
    width: 100%;
    padding: 10px;
  }
  .mega .mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 52vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .mega .mega-grid::-webkit-scrollbar {
    width: 8px;
  }
  .mega .mega-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }
  .mega .mega-header {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 0 0 10px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .brand {
    min-width: unset;
  }
}
/*** Footer ***/
.trends-footer {
  padding: 3rem 0 1.5rem;
  font-family: inherit;
  color: #ccc9c9;
  background: linear-gradient(to bottom, #050508 20%, #134769 100%);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.trends-footer #footer-dot-background-root {
  position: absolute;
  inset: 0;
  z-index: 0; /* 👈 behind content */
  pointer-events: none;
  top: 1rem;
}
.trends-footer > *:not(#footer-dot-background-root) {
  position: relative;
  z-index: 2;
}
.trends-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.trends-footer a:hover {
  opacity: 0.7;
}
.trends-footer__top, .trends-footer__middle, .trends-footer__bottom {
  width: min(1280px, 100% - 3rem);
  margin: 0 auto;
  z-index: 999;
}
.trends-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.trends-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.trends-footer__logo .trends-logo {
  max-width: 200px;
}
.trends-footer__logo .trends-logo img {
  width: 100%;
}
.trends-footer__logo-circle {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.trends-footer__logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.trends-footer__social .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .trends-footer__social .social-icons {
    gap: 16px;
  }
}
.trends-footer__social .social-icons .social-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
@media (max-width: 200px) {
  .trends-footer__social .social-icons .social-icon {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
}
.trends-footer__social .social-icons .social-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #b8893c, #1c7780, #0d2f4f, #b8893c);
  background-size: 300% 300%;
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  animation: gradientMove 6s linear infinite;
  transition: opacity 0.45s ease;
}
.trends-footer__social .social-icons .social-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #071827;
  z-index: 1;
}
.trends-footer__social .social-icons .social-icon i {
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 0.4s ease;
}
.trends-footer__social .social-icons .social-icon:hover {
  transform: translateY(-10px) scale(1.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(184, 137, 60, 0.22), 0 0 30px rgba(28, 119, 128, 0.2);
}
.trends-footer__social .social-icons .social-icon:hover::before {
  opacity: 1;
}
.trends-footer__social .social-icons .social-icon:hover i {
  transform: rotateY(360deg) scale(1.2);
}
.trends-footer__social .social-icons .social-icon:hover.active {
  animation: floatIcon 0.7s ease;
}
.trends-footer__social .social-icons .social-icon .pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(184, 137, 60, 0.4);
  animation: social-pulse 1s ease forwards;
  z-index: 0;
}
.trends-footer__middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}
@media (max-width: 930px) {
  .trends-footer__middle {
    flex-direction: column;
    row-gap: 3rem;
  }
}
.trends-footer__col {
  display: flex;
  grid-column: span 2;
}
@media (max-width: 930px) {
  .trends-footer__col {
    justify-content: center;
  }
}
@media (max-width: 490px) {
  .trends-footer__col {
    justify-content: inherit;
  }
}
.trends-footer__col.middle {
  justify-content: center;
  grid-column: span 3;
}
.trends-footer__col.end {
  justify-content: end;
}
.trends-footer__col .foot-cont.qrcode {
  width: 100%;
}
.trends-footer__col .foot-cont.qrcode h4 {
  text-align: center;
}
@media (max-width: 490px) {
  .trends-footer__col .foot-cont.qrcode h4 {
    text-align: inherit;
  }
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode {
  width: 100%;
  display: flex;
  min-height: 100px;
  justify-content: center;
}
@media (max-width: 490px) {
  .trends-footer__col .foot-cont.qrcode .sc-qrcode {
    justify-content: inherit;
  }
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
@media (max-width: 490px) {
  .trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode:nth-child(2) {
    display: none;
    visibility: hidden;
  }
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode .image-container {
  width: 120px;
  height: 120px;
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode .image-container img {
  width: 100%;
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode .qrcode-container {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5019607843), inset -20px -20px 60px rgba(255, 255, 255, 0.2509803922);
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode .qrcode-container img {
  height: 100%;
  width: 100%;
}
.trends-footer__col .foot-cont.qrcode .sc-qrcode .single-qrcode p {
  padding: 0.5rem;
  line-height: 2rem;
  text-align: center !important;
  font-size: 1.6rem;
  font-weight: 600;
}
.trends-footer__col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.trends-footer__office p {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #ccc9c9;
}
.trends-footer__office a {
  font-size: 0.95rem;
  font-weight: 600;
}
.trends-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
@media (max-width: 930px) {
  .trends-footer__links ul {
    display: flex;
  }
}
@media (max-width: 490px) {
  .trends-footer__links ul {
    display: grid;
  }
}
.trends-footer__links a {
  font-size: 0.85rem;
  font-weight: 500;
}
.trends-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.trends-footer__bottom .ft-bottom-cont {
  display: flex;
}
.trends-footer__bottom .ft-bottom-cont.start {
  justify-content: start;
}
.trends-footer__bottom .ft-bottom-cont.middle {
  justify-content: center;
}
.trends-footer__bottom .ft-bottom-cont.end {
  justify-content: end;
}
.trends-footer__copy p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc9c9;
}
.trends-footer__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trends-footer__social img {
  max-width: 80px;
}
.trends-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #ccc9c9;
  white-space: nowrap;
}
@media (max-width: 1310px) {
  .trends-footer__bottom .ft-bottom-cont.start {
    flex-direction: column;
  }
}
@media (max-width: 880px) {
  .trends-footer__bottom {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1rem;
  }
  .trends-footer__bottom .ft-bottom-cont {
    justify-content: center !important;
  }
  .trends-footer__bottom .ft-bottom-cont.start {
    flex-direction: row;
  }
}
@media (max-width: 780px) {
  .trends-footer__middle {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  .trends-footer__col.end {
    justify-content: start;
  }
}
@media (max-width: 550px) {
  .trends-footer__top {
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .trends-footer__middle {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
  }
  .trends-footer__col.middle {
    justify-content: start;
  }
  .trends-footer__bottom .ft-bottom-cont.start {
    flex-direction: column;
  }
  .trends-footer__copy p {
    text-align: center;
    padding: 0.3rem 0;
  }
}
@media (max-width: 490px) {
  .trends-footer__top {
    align-items: flex-start;
  }
}

/*** Footer ***/
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-canvas .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: drift linear infinite;
}
.bg-canvas .orb.orb-1 {
  width: 520px;
  height: 520px;
  background: #83d1dc;
  top: -120px;
  left: -100px;
  animation-duration: 22s;
}
.bg-canvas .orb.orb-2 {
  width: 380px;
  height: 380px;
  background: #acd8ab;
  bottom: -80px;
  right: -60px;
  animation-duration: 28s;
  animation-direction: reverse;
}
.bg-canvas .orb.orb-3 {
  width: 280px;
  height: 280px;
  background: #2eb1be;
  top: 40%;
  left: 55%;
  animation-duration: 18s;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(53, 116, 128, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/*** FILTER ***/
.filter-container {
  width: 100%;
}
.filter-container .filter-container-inner {
  margin: 0 auto;
  max-width: 1300px;
}
.filter-container .filter-container-inner .am-main {
  width: 100%;
  position: relative;
  font-size: 0.8rem;
}
.filter-container .filter-container-inner .am-main .fi-container {
  width: auto;
}
.filter-container .filter-container-inner .am-main .filter-button {
  cursor: pointer;
  margin: 0;
}
.filter-container .filter-container-inner .am-main .filter-button svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-container .filter-container-inner .am-main .filter-button .line {
  fill: none;
  stroke: white;
  stroke: #03817c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-container .filter-container-inner .am-main .filter-button .line-top-bottom {
  stroke-dasharray: 12 63;
}
.filter-container .filter-container-inner .am-main .filter-button {
  /* input:checked + svg {
        transform: rotate(-45deg);
     }
     input:checked + svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
     }*/
}
.filter-container .filter-container-inner .am-main .filter-button.open svg {
  transform: rotate(-45deg);
}
.filter-container .filter-container-inner .am-main .filter-button.open svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.filter-container .filter-container-inner .am-main .filterIcon {
  width: 2rem;
  height: 1.5rem;
  display: block;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  box-sizing: border-box;
}
.filter-container .filter-container-inner .am-main .filterIcon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #03817c;
  border-radius: 5px;
  opacity: 1;
  z-index: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  transform-origin: left center;
}
.filter-container .filter-container-inner .am-main .filterIcon span::after {
  display: block;
  position: absolute;
  height: 0.6rem;
  width: 0.6rem;
  background: #FFFFFF;
  border-radius: 50%;
  border: 2px solid #03817c;
  opacity: 1;
  z-index: 5;
  top: -45%;
  content: "";
  transition: 0.25s ease-in-out;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(1) {
  top: 0;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(1)::after {
  left: 15%;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(2) {
  top: 48%;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(2)::after {
  left: 60%;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(3) {
  top: 96%;
}
.filter-container .filter-container-inner .am-main .filterIcon span:nth-child(3)::after {
  left: 20%;
}
.filter-container .filter-container-inner .am-main .filterIcon.open span::after {
  opacity: 0;
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(1)::after {
  left: 60%;
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(2) {
  top: 46%;
  opacity: 0;
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(2)::after {
  left: 15%;
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(3) {
  bottom: 0;
  transform: rotate(-45deg);
}
.filter-container .filter-container-inner .am-main .filterIcon.open span:nth-child(3)::after {
  left: 45%;
}
.filter-container .filter-container-inner .am-main .filterIcon:hover span:nth-child(1)::after {
  left: 25%;
}
.filter-container .filter-container-inner .am-main .filterIcon:hover span:nth-child(2)::after {
  left: 50%;
}
.filter-container .filter-container-inner .am-main .filterIcon:hover span:nth-child(3)::after {
  left: 40%;
}
.filter-container .filter-container-inner .am-main .fiterItems {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 0px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.67);
  border-radius: 0.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.6px);
  -webkit-backdrop-filter: blur(6.6px);
}
.filter-container .filter-container-inner .am-main .fiterItems form {
  display: grid;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .filter-container .filter-container-inner .am-main .fiterItems .fi-row {
    grid-column: span 4;
  }
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.full-row {
  grid-column: span 4;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row input[type=text], .filter-container .filter-container-inner .am-main .fiterItems .fi-row select {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #00a19b;
  border-radius: 0.5rem;
  padding: 2px 20px;
  outline: none;
  color: #454545;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row input[type=text]::-moz-placeholder {
  color: #454545;
  opacity: 1;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row input[type=text]::placeholder {
  color: #454545;
  opacity: 1;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row input[type=text]::-ms-input-placeholder { /* Edge 12 -18 */
  color: #454545;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.action-palace {
  display: flex;
  flex-direction: row;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.action-palace .fi-col {
  display: flex;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.action-palace button {
  background-color: transparent;
  border: none;
  margin: 10px;
  cursor: pointer;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.action-palace button i {
  font-size: 1.2rem;
  color: #03817c;
  padding: 0.5rem;
  border: 1px solid #03817c;
  border-radius: 0.5rem;
}
.filter-container .filter-container-inner .am-main .fiterItems .fi-row.action-palace button i:hover {
  background-color: #03817c;
  color: #fff;
}
.filter-container .filter-container-inner .am-main .fiterItems.filter-active {
  padding: 24px 15px;
  height: 275px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: height 0.4s ease;
}
@media (max-width: 600px) {
  .filter-container .filter-container-inner .am-main .fiterItems.filter-active {
    height: 430px;
  }
}
.filter-container .filter-container-inner .am-main.event-action .fiterItems.filter-active {
  height: 220px;
}

.filterContents {
  padding: 20px 0;
  font-size: 0.9rem;
}
.filterContents a {
  padding: 0 30px;
  color: #03817c;
}
.filterContents a:hover {
  color: #00a19b;
}

/*** FILTER ***/
/*** Publications ***/
.publication-section {
  padding: clamp(25px, 6vw, 50px) clamp(16px, 4vw, 48px);
}
.publication-section .publication-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .publication-section .publication-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .publication-section .publication-grid {
    grid-template-columns: 1fr;
  }
}
.publication-section .publication-grid .publication-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(15px);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  will-change: transform;
  text-decoration: none;
  color: inherit;
  padding: 0;
}
.publication-section .publication-grid .publication-card .card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/24;
  overflow: hidden;
}
.publication-section .publication-grid .publication-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.publication-section .publication-grid .publication-card:hover {
  box-shadow: 0 20px 48px rgba(13, 27, 42, 0.13);
  transform: translateY(-3px) !important;
}
.publication-section .publication-grid .publication-card:hover .card-image img {
  transform: scale(1.06);
}
.publication-section .publication-grid .publication-card:hover .card-image .card-image-overlay {
  opacity: 1;
}

/*** Publications ***/
.load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, #357480, #1fa2ad);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(31, 162, 173, 0.25);
  transition: all 0.3s ease;
  border: none;
  font-size: 0.8rem;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(31, 162, 173, 0.35);
}

.home-section {
  position: relative;
}

.home-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
}

/*** Breadcrumbs ***/
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.breadcrumbs .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs .breadcrumb-item .breadcrumb-link {
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumbs .breadcrumb-item .breadcrumb-link.home-link {
  text-decoration: none !important;
}
.breadcrumbs .breadcrumb-item .active {
  opacity: 0.7;
}

/*** Breadcrumbs ***//*# sourceMappingURL=common-2026.css.map */