/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2026
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2026
BlankSlate is distributed under the terms of the GNU GPL
*/


@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:300,400,italic");

@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela-Regular.woff2') format('woff2'),
        url('fonts/Canela-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
    font-family: var(--font-inter);
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-canela);
}

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --color-bg-primary: #040402;
  --color-bg-secondary: #141414;
  --color-text-primary: #ffffff;
  --color-text-secondary: #f5f5f5;
  --color-text-muted: #ffffff99;
  --color-text-faded: #ffffff78;
  --color-text-label: #f5f5f5cc;
  --color-border: #ffffff26;
  --color-tag: #ffffffb2;
  --color-tag-separator: #ffffff4c;
  --gradient-border: linear-gradient(
    336deg,
    rgba(187, 177, 135, 1) 0%,
    rgba(104, 102, 86, 1) 16%,
    rgba(57, 53, 48, 1) 31%,
    rgba(44, 44, 40, 1) 100%
  );
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 9rem;
  --container-max: 1440px;
  --container-padding: 1.5rem;
  --font-canela: "Canela";
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --border-radius: 0.5rem;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 3rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 4rem;
  }
}

/* ===========================
   BASE STYLES
   =========================== */
.home {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: all .4s;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-lg) 0;
  transition: all .4s;
}

.logo {
  width: clamp(100px, 20vw, 133px);
  height: auto;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: center;
}

.nav-link {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-text-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: opacity 0.2s;
  white-space: nowrap;
    position: relative;
     opacity: 0.7;
}

.nav-link.active {
    opacity: 1;
}

.nav-link:hover,
.nav-link:focus {
  opacity: 1;
}

.header-divider {
  height: 1px;
  background-color: var(--color-border);
  margin-top: var(--spacing-md);
  width: 100%;
}

@media (min-width: 1024px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .navbar {
    gap: 10px;
  }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 1640px;
  padding: var(--spacing-2xl) var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  background-image: url(https://globa3.com/wp-content/uploads/2025/12/123sbg-2-1.jpg);
  background-size: 80%;
  background-position: 50% -15%;
  position: relative;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.hero-title {
  font-family: var(--font-canela);
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  line-height: 1.2;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.hero-description {
  font-family: var(--font-inter);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  max-width: 35rem;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 32rem;
  margin-left: auto;
  border-right: 1px solid var(--color-border);
  padding-right: 30px;
}

.aside-divider {
  width: 1px;
  height: 11.5rem;
  background-color: var(--color-border);
  align-self: flex-end;
}

.aside-text {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  text-align: right;
}

.aside-attribution {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-style: italic;
  color: var(--color-text-faded);
  text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding-top: 270px;
    margin-bottom: -620px;
  }
}

/* ===========================
   BUTTONS
   =========================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-xl);
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius);
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-inter);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  position: relative;
  width: fit-content;
  z-index: 3;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--border-radius);
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cta-centered {
  margin: var(--spacing-xl) auto 0;
}

.button-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-inter);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.text-button:hover,
.text-button:focus {
  opacity: 0.7;
}

/* ===========================
   APPROACH SECTION
   =========================== */
.approach-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.approach-marquee {
  overflow: hidden;
  margin-bottom: 210px;
  position: relative;
}

.marquee-content {
  font-family: var(--font-canela);
  font-size: clamp(2rem, 5vw, 5.75rem);
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  padding: var(--spacing-lg) 0;
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.approach-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.approach-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 39px;
  position: relative;
}

.diagram-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
}

.diagram-icon {
  width: clamp(5rem, 10vw, 10.5rem);
  height: clamp(5rem, 10vw, 10.5rem);
}

.diagram-label {
  font-family: var(--font-inter);
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 9.375rem;
}

.diagram-arrow {
  width: clamp(3rem, 8vw, 9.375rem);
  height: auto;
  display: none;
}

.approach-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  text-align: center;
  margin-top: 56px;
}

.approach-tagline {
  font-family: var(--font-canela);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.5;
  max-width: 65rem;
}

.approach-bg-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: none;
  mix-blend-mode: screen;
}

@media (min-width: 768px) {
  .diagram-arrow {
    display: block;
  }
}

@media (min-width: 1024px) {
  .approach-bg-image {
    display: block;
  }
}

/* ===========================
   FIELDS SECTION
   =========================== */
.fields-section {
  padding: var(--spacing-3xl) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  letter-spacing: 0.225rem;
  color: var(--color-text-label);
  margin-bottom: var(--spacing-2xl);
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.field-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-md);
  text-align: center;
  padding: var(--spacing-lg);
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  justify-content: end;
  position: relative;
  transition: all .4s;
  min-height: 250px;
}

.field-icon {
  width: clamp(2rem, 5vw, 2.75rem);
  height: clamp(2rem, 5vw, 2.75rem);
  object-fit: contain;
  position: absolute;
  right: 20px;
  top: 20px;
}

.field-title {
  font-family: var(--font-canela);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}

.field-divider {
  display: none;
}

@media (min-width: 640px) {
  .fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .field-divider {
    display: block;
    width: 1px;
    background-color: var(--color-border);
    grid-column: span 2;
    height: 1px;
    margin: var(--spacing-md) 0;
  }
  
  .field-divider-horizontal {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .fields-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .field-divider {
    width: 1px;
    height: auto;
    grid-column: auto;
    margin: 0;
  }
  
  .field-divider-horizontal {
    grid-column: span 4;
    width: 100%;
    height: 1px;
  }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: var(--spacing-3xl) var(--container-padding) 0 var(--container-padding);
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.section-bg-image {
  position: absolute;
  width: 100%;
  pointer-events: none;
  left: 0;
  bottom: -380px;
  z-index: -1;
}

.section-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--spacing-3xl);
}

.about-text {
  font-family: var(--font-canela);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.4;
  max-width: 69rem;
}

/* ===========================
   CASE STUDIES SECTION
   =========================== */
.case-studies-section {
  padding: var(--spacing-3xl) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: var(--spacing-2xl);
  width: 100%;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  width: 100%;
}

.case-study-card {
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.1);
}

.case-study-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: var(--spacing-lg);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.case-study-tags {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.tag {
  color: var(--color-tag);
}

.tag-separator {
  color: var(--color-tag-separator);
}

.case-study-title {
  font-family: var(--font-canela);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  font-weight: 400;
}

@media (min-width: 640px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

section.intro h1 {
    font-size: 104px;
}

section.intro p {
    font-size: 20px;
}

.intro-text {
    max-width: 700px;
    line-height: 35px;
    margin-top: 20px;
}

section.intro {
    padding: 150px 0;
    margin-top: -88px;
}

/* ===========================
   INSIGHTS SECTION
   =========================== */
.insights-section {
  padding: var(--spacing-3xl) var(--container-padding) 0 var(--container-padding);
  position: relative;
  min-height: 60vh;
}

.insights-side-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: none;
  top: 30%;
  z-index: -1;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.insight-card {
  border: 1px solid var(--color-border);
  background-image: url(https://globa3.com/wp-content/uploads/2025/12/rectangle-8-4.png);
  background-size: 105%;
  background-position: center;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}

.insight-card:hover {
  background-size: 110%;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.insight-logos {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.insight-logo {
  height: clamp(2.5rem, 5vw, 4.75rem);
  width: auto;
}

.insight-separator {
  font-family: var(--font-canela);
  font-size: clamp(2rem, 4vw, 3.625rem);
}

.insight-title {
  font-family: var(--font-canela);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-weight: 400;
}

@media (min-width: 768px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insights-side-image {
    display: block;
  }
}

/* ===========================
   LEADERSHIP SECTION
   =========================== */
.leadership-section {
  padding: var(--spacing-3xl) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.leader-card {
  border: 1px solid var(--color-border);
  display: flex;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  overflow: hidden;
}

.leader-image {
  width: 40%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.leader-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.leader-header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.leader-name {
  font-family: var(--font-canela);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
}

.leader-role {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: 0.2rem;
  color: var(--color-text-label);
}

.leader-bio {
  font-family: var(--font-inter);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .leader-card {
    grid-template-columns: 2fr 3fr;
  }
  
  .leader-image {
    aspect-ratio: auto;
  }
}

@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leader-card {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   GLOBAL PRESENCE SECTION
   =========================== */
.global-presence-section {
  padding: var(--spacing-3xl) var(--container-padding);
  position: relative;
  min-height: 60vh;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.location-card {
  border: 1px solid var(--color-border);
  background-color: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(12px);
  padding: var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: start;
  aspect-ratio: 1 / 2;
  transition: all .4s;
    cursor: pointer;
}

.location-map {
  width: 100%;
  height: auto;
  flex: 1;
  object-fit: contain;
}

.location-name {
  font-family: var(--font-canela);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  text-align: center;
  padding: 0 30px;
}

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: var(--spacing-3xl) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  width: clamp(100px, 20vw, 133px);
  height: auto;
}

.footer-locations {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.67;
  color: var(--color-text-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-nav-title {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.footer-link {
  font-family: var(--font-inter);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.67;
  color: var(--color-text-primary);
  transition: opacity 0.2s;
}

.footer-link:hover,
.footer-link:focus {
  opacity: 0.7;
}

.footer-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--spacing-xl) 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal-link {
  font-family: var(--font-inter);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-primary);
  transition: opacity 0.2s;
}

.footer-legal-link:hover,
.footer-legal-link:focus {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   ACCESSIBILITY
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-text-primary);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--spacing-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}


.hero .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: end;
}

section.fields-section > div > div:nth-child(8), section.fields-section > div > div:nth-child(7), section.fields-section > div > div:nth-child(6), section.fields-section > div > div:nth-child(5) {
    border-bottom: none;
}

section.fields-section > div > div:nth-child(8), section.fields-section > div > div:nth-child(4) {
    border-right: 1px solid var(--color-border);
}

.field-item:hover {
    background: #ffffff0f;
    cursor: pointer;
}

a.nav-link.active:after {
    background: #fff;
    width: 8px;
    height: 8px;
    position: absolute;
    content: '';
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
}

#approach > div.approach-content > div.approach-diagram > div:first-child {
    position: absolute;
    left: 0;
    top: 7px;
    align-items: baseline;
}

#approach > div.approach-content > div.approach-diagram > div:last-child {
    position: absolute;
    right: 0px;
    top: 7px;
    align-items: end;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.hidden {
    display: none;
}

section#insights .container {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body > div > footer > div.footer-content > nav > div:nth-child(2) {
    margin-top: 60px;
}

img.footer-image {
    position: absolute;
    z-index: -1;
    bottom: -65%;
    width: 100%;
    left: 0;
}

.location-card:hover {
    background: #ffffff0f;
}

header.header.scrolled {
    background: #040402;
}

header.header.scrolled .header-container {
    border-bottom: 1px solid #ffffff00;
}

section.big-quote {
    text-align: center;
    border-top: 1px solid hsl(0deg 0% 100% / 20%);
    border-bottom: 1px solid hsl(0deg 0% 100% / 20%);
    padding: 90px;
    font-size: 40px;
    line-height: 65px;
    font-family: var(--font-canela);
    font-weight: normal;
}

section.content-creative {
    padding: 120px 0;
    display: grid;
    grid-template-columns: 38% 45%;
    justify-content: space-between;
}

section.content-creative p {
    font-size: 20px;
    line-height: 35px;
    max-width: 455px;
    margin-bottom: 30px;
}

section.content-creative img {
    width: 100%;
    margin-bottom: 100px;
}

article.alignment img {
    margin-top: 100px;
}

article.creativity p {
    text-align: right;
    max-width: 600px;
}

article.creativity {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.inner_page #case-studies {
    padding-top: 0;
}

.inner_page section#insights {
    padding: 0;
}

section.frame-wrapper {
    position: relative;
    display: flex;
    padding: 70px;
    margin-bottom: 90px;
    justify-content: space-between;
    align-items: start;
}

section.frame-wrapper img.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

section.frame-wrapper article {
    position: relative;
    z-index: 2;
    max-width: 60%;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
    color: hsl(0deg 0% 100% / 70%);
}

section.frame-wrapper .icon {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 160px;
    object-fit: contain;
    margin-right: 10%;
}

section.frame-wrapper article header {
    margin-bottom: 30px;
}

section.frame-wrapper article header h2 {
    font-size: 34px;
    margin-bottom: 13px;
    color: #fff;
}

section.frame-wrapper article header p {
    font-size: 20px;
    line-height: 30px;
    max-width: 500px;
    color: #fff;
}

section.frame-wrapper.group-1 {
    flex-direction: row-reverse;
}

section.frame-wrapper.group-1 img.icon {
    margin-left: 10%;
}

section.frame-wrapper.group-3 {
    flex-direction: row-reverse;
}

section.frame-wrapper.group-3 img.icon {
    margin-left: 10%;
}

section.frame-wrapper.group-5 {
    flex-direction: row-reverse;
}

section.frame-wrapper.group-5 img.icon {
    margin-left: 10%;
}

section.frame-wrapper.group-7 {
    flex-direction: row-reverse;
}

section.frame-wrapper.group-7 img.icon {
    margin-left: 10%;
}

.framer > p:first-child {
    font-weight: 600;
    margin-bottom: 10px;
}

.framer {
    border-left: 1px solid hsl(0deg 0% 100% / 30%);
    padding-left: 30px;
    margin-top: 30px;
}

.framer ul li {
    list-style: initial;
    margin-bottom: 10px;
}

.framer ul {
    padding-left: 20px;
}

a.link-wrapper {
    color: #fff;
    text-decoration: underline;
}

.italic-style {
    font-style: italic;
    margin-top: 30px;
}

p.globa-sports-2 {
    font-style: italic;
    margin-top: 40px;
}

p.globa-sports-2:before {
    content: '';
    width: 100px;
    height: 1px;
    background: hsl(0deg 0% 100% / 30%);
    display: table;
    margin-bottom: 30px;
}

article.frame.leader {
    display: flex;
    padding-top: 160px;
    margin-top: 0px;
    border-top: 1px solid hsl(0deg 0% 100% / 20%);
}

article.frame.leader img.profile-image {
    width: 34%;
    object-fit: cover;
}

article.frame.leader .content {
    width: 73%;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

article.frame.leader .content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a img {
    width: 24px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

article.frame.leader .content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

p.co-founder {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.8);
}

article.frame.leader .content header {
    margin-bottom: 30px;
}

article.frame.leader:last-child {margin-top: 160px;}

img.page_bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    max-width: 1920px;
}

section.global_locations {
    border-top: 1px solid hsl(0deg 0% 100% / 20%);
    padding-top: 140px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

section.global_locations article.location {
    border: 1px solid hsl(0deg 0% 100% / 20%);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 60px;
}

section.global_locations article.location .content {
    width: 58%;
}

section.global_locations img.dotted_map {
    width: 22%;
}

section.global_locations .content p.p {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
}

section.global_locations .content h2 {
    font-size: 28px;
    margin-bottom: 22px;
}

section.intro.contact-form-page {
    background-image: url(https://globa3.com/wp-content/uploads/2025/12/Group-38-1.jpg);
    margin-top: 20px;
    padding: 80px;
    background-size: cover;
}

.from-layout {
    display: flex;
    justify-content: space-between;
}

.from-layout .sided:first-child {
    max-width: 470px;
}

section.intro.contact-form-page .intro-text {
    font-weight: 300;
    color: rgb(255 255 255 / 70%);
}

section.intro.contact-form-page .intro-text p {
    margin-bottom: 30px;
}

section.intro.contact-form-page h1 {
    margin-bottom: 40px;
}

.from-layout .sided h3 {
    font-size: 34px;
    margin-bottom: 16px;
}

.from-layout .sided p {
    font-size: 20px;
}

.form-layout {
    margin-top: 50px;
}

.form-layout input, .form-layout select, .form-layout textarea {
    width: 100%;
    font-size: 18px;
    padding: 20px 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid hsl(0deg 0% 100% / 20%);
    color: #fff;
    font-family: var(--font-inter);
    outline: none!important;
}

dvi.sided {
    width: 100%;
    max-width: 560px;
}

.form-layout input.wpcf7-form-control.wpcf7-submit {
    background: #BBB187;
    border: none;
    color: #000;
    font-weight: 500;
}

.form-layout textarea {
    max-height: 100px;
}

.form-layout, .form-layout > p {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-layout br {
    display: none;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    position: absolute;
    margin-top: 9px;
}

.wpcf7-validates-as-required.wpcf7-not-valid {
    border-bottom: 1px solid hsl(0deg 100% 50% / 50%);
}

section.intro.contact-form-page .wpcf7 form .wpcf7-response-output {
    border: none;
    border-bottom: 1px solid;
    padding: 20px 10px;
}

.form-layout select option {
    color: #000;
}

section.description p {
    font-weight: 300;
    margin-bottom: 40px;
}

section.description {
    max-width: 1024px;
    margin: 0 auto;
    line-height: 28px;
}

section.description a {
    color: #fff;
    text-decoration: underline;
}

section.description h3.wp-block-heading {
    font-size: 34px;
    margin-bottom: 20px;
}

section.description h4.wp-block-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

section.description section.description ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

section.description section.description ul li {
    list-style: initial;
    margin-bottom: 10px;
    font-weight: 300;
}

section.description h2.wp-block-heading {
    font-size: 60px;
    margin-bottom: 50px;
    margin-top: 70px;
}


.inner_page section#approach {
    margin-bottom: 230px;
    overflow: visible;
}



#psa-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  z-index: 9999;
}
#psa-modal-content {
  background: #121212;
  width: 90%;
  max-width: 950px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
#psa-modal-header {
  padding: 50px;
  border-bottom: 1px solid #ffffff0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#psa-modal-title {
  margin: 0;
  font-size: 1.8rem;
}
#psa-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
#psa-modal-body {
  padding: 50px;
}
.case-study-card {
  cursor: pointer;
}
.case-study-card:hover .case-study-title {
  text-decoration: underline;
}

a.read-insight-btn {color: #fff;align-items: center;display: flex;gap: 10px;margin-top: 40px;transition: all .3s;}

a.read-insight-btn:hover {
    opacity: 0.7;
}

div#psa-modal-body p {
    font-size: 20px;
    font-weight: 300;
    color: #ffffffbf;
    margin-bottom: 30px;
    line-height: 29px;
}

div#psa-modal-body p strong {
    color: #fff;
    font-weight: 400;
}

@media (max-width:768px) {
    aside.hero-aside {border-right: 0px;border-top: 1px solid var(--color-border);text-align: left;padding: 70px 0 0 0;margin-top: 80px;}

    .hero .container {
        flex-direction: column;
    }

    nav.navbar {
        display: none;
    }

    section.hero {
        min-height: auto;
        background-position: 50% 50%;
        background-size: cover;
        padding-top: 140px;
    }

    .aside-text {
        text-align: left;
    }
    .header-container {
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-description {
        max-width: 320px;
    }

    .hero-content {
        gap: 40px;
    }

    .approach-section {
        padding-top: 30px;
    }

    .fields-section,
    .about-section,
    .insights-section,
    .case-studies-section,
    .leadership-section,
    .global-presence-section{
        padding: 70px 30px;
    }

    .field-item {
        border: 1px solid var(--color-border)!important;
    }

    .fields-grid {
        gap: 20px;
    }

    img.field-icon {
        width: 40px;
        height: 40px;
    }

    h2.section-label {
        margin-bottom: 30px;
    }

    .section-header {
        margin: 0;
    }

    section#case-studies {
        padding-top: 0;
    }

    button.cta-button.cta-centered {
        margin: 0;
    }

    img.leader-image {
        width: 100%;
        aspect-ratio: 1/1;
        height: 320px;
        object-position: top;
    }

    article.leader-card {
        flex-direction: column;
    }

    .leader-content {
        padding: 30px;
    }

    .location-card img.location-map {
        height: 130px;
    }

    section#global-presence {
        position: relative;
    }

    img.footer-image.fade-in-section {
        bottom: 0;
    }

    .footer-content {
        gap: 60px;
        margin: 0 30px;
        border-top: 1px solid hsl(0deg 0% 100% / 20%);
        padding-top: 50px;
    }

    body > div > footer > div.footer-content > nav > div:nth-child(2) {
        margin: 0;
    }

    nav.footer-nav {
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-brand {
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    img.section-bg-image {
        bottom: -30px;
        object-fit: cover;
        height: 500px;
    }

    section#insights .container {
        padding-bottom: 70px;
        margin-bottom: 0;
    }

    section#insights {
        padding-bottom: 0;
    }

    footer.footer {
        padding-top: 50px;
    }

    .location-card {
        aspect-ratio: 1/1;
    }
    img.diagram-arrow.hidden {
        display: block;
    }
    
    #approach > div.approach-content > div.approach-diagram > div:first-child {
        display: none;
    }
    
    .diagram-step.hidden {
        display: block;
    }
    
    #approach > div.approach-content > div.approach-diagram > div:last-child {
        display: none;
    }
    
    img.diagram-arrow {
        display: block;
        transform: rotate(90deg);
        object-fit: cover;
        height: 9px;
        width: 67px;
        object-position: right;
    }
    
    .approach-diagram {
        flex-direction: column;
    }
    
    img.approach-bg-image {
        top: 40%;
        right: -170px;
        display: block;
        width: 180%;
    }
    
    .approach-marquee {
        margin-bottom: 100px;
    }
    
    .approach-content {
        gap: 30px;
    }
    
    .approach-section {
        padding-bottom: 50px;
    }
    
    span.diagram-label {
        font-size: 20px;
    }

    section.intro h1 {
        font-size: 46px;
    }

    section.intro p {
        font-size: 18px;
    }

    section.intro {padding: 60px 30px;}

    .inner_page section#approach {
        margin-bottom: 50px;
    }

    section.frame-wrapper {
        padding: 30px;
        margin: 0 30px 60px 30px;
        flex-direction: column!important;
    }

    section.frame-wrapper .icon {
        order: -1;
        margin: 0 0 30px 0!important;
        max-width: 100px;
    }

    section.frame-wrapper article {
        max-width: 100%;
    }

    section.frame-wrapper article header h2 {
        line-height: 36px;
        font-size: 30px;
    }

    section.frame-wrapper article header p {
        font-size: 18px;
    }

    .inner_page {
        padding-bottom: 0px!important;
    }
    .inner_page section#insights {
          padding: 0;
    }
    section.big-quote {
        font-size: 26px;
        line-height: 36px;
        padding: 70px 30px;
    }
    
    section.content-creative {
        grid-template-columns: 1fr;
        padding: 90px 30px 50px 30px;
    }
    
    article.creativity p {
        text-align: left;
    }
    
    article.alignment img {
        order: -1;
        margin: 0 0 60px 0;
    }
    
    article.alignment {
        display: flex;
        flex-direction: column;
        flex=d: ;
        flex=d: c;
        margin-bottom: 30px;
    }
    
    section.content-creative img {
        margin-bottom: 30px;
    }
    
    body > div > div.inner_page > section.big-quote.system.fade-in-section.is-visible {
        border-bottom: 0;
    }

    .page section#insights .container {
        border: none;
        padding: 0 30px;
    }

    section#insights .container article.insight-card {
        padding: 30px;
    }

    section#insights .container  h3.insight-title {
        width: 100%;
        text-align: left;
        font-size: 18px;
    }

    div#psa-modal-header {
        padding: 30px;
    }

    div#psa-modal-body {
        padding: 30px;
    }

    div#psa-modal-body p {
        font-size: 18px;
    }
    
    article.frame.leader {
        padding: 80px 30px 80px 30px;
        flex-direction: column;
    }

    article.frame.leader .content {
        width: 100%;
    }

    article.frame.leader:last-child {
        margin: 0;
    }

    article.frame.leader img.profile-image {
        width: 47%;
        margin-bottom: 30px;
        order: -1;
    }

    article.frame.leader .content h2 {
        font-size: 36px;
    }

    section.global_locations {border: none;padding: 30px;}

    section.global_locations article.location {
        flex-direction: column;
        padding: 30px;
    }

    section.global_locations article.location .content {
        width: 100%;
    }

    section.global_locations img.dotted_map {
        width: 90%;
        margin-bottom: 40px;
    }

    section.intro.contact-form-page {
        padding: 150px 30px 60px 30px;
        margin: 0;
    }

    .from-layout {
        flex-direction: column;
    }

    .from-layout .sided h3 {
        font-size: 26px;
        margin-top: 20px;
        border-top: 1px solid #ffffff30;
        padding-top: 50px;
    }

    .page-id-24 .inner_page {
        padding: 0;
    }
    
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1001;
  position: relative;
  margin-top: -4px;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-menu-overlay.active {
  opacity: 1;
  z-index: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: var(--color-bg-primary);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--color-border);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 17px;
}

.mobile-menu-logo {
  width: 100px;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  opacity: 0.7;
}

.mobile-nav-link:first-child {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 1100px) {
  .navbar {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: block;
  }
}