@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Thin.otf') format('opentype');
  font-weight: 100; /* Thin */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-ThinItalic.otf') format('opentype');
  font-weight: 100; /* Thin */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-ExtraLight.otf') format('opentype');
  font-weight: 200; /* Extra Light */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-ExtraLightItalic.otf') format('opentype');
  font-weight: 200; /* Extra Light */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Light.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-LightItalic.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Regular.otf') format('opentype');
  font-weight: 400; /* Regular */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Italic.otf') format('opentype');
  font-weight: 400; /* Regular */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Medium.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-MediumItalic.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-SemiBold.otf') format('opentype');
  font-weight: 600; /* SemiBold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-SemiBoldItalic.otf') format('opentype');
  font-weight: 600; /* SemiBold */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Bold.otf') format('opentype');
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-BoldItalic.otf') format('opentype');
  font-weight: 700; /* Bold */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-ExtraBold.otf') format('opentype');
  font-weight: 800; /* Extra Bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-ExtraBoldItalic.otf') format('opentype');
  font-weight: 800; /* Extra Bold */
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-Black.otf') format('opentype');
  font-weight: 900; /* Black */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grift';
  src: url('assets/fonts/OpenType-PS/Grift-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}




:root {
  /* Background Colors */
  --color-background-light: #E7E8E2; /* Light gray for subtle background */
  --color-background-white: #FFFFFF; /* White for main content areas */

  /* Set main page background to light gray */
  --page-background-main: var(--color-background-light);

  /* Button Color */
  --color-button-primary: #FEAA29; /* Orange */
  --color-button-primary-dark: #D99424; /* Darker orange for hover */
  --color-button-gradient-start: #FF8C00; /* Darker orange for gradient start */
  --color-button-gradient-end: #FFA500; /* Lighter orange for gradient end */


  /* Typography Colors */
  --impactree-blue: orange; /* Updated to orange as requested */
  --impactree-darkblue: #1e4d72; /* Used for titles and headers */
  --impactree-lightgray: #f8fafc; /* For the very light background */
  --impactree-lightblue: #e7f3ff; /* For the gradient and benefit icon background */
  --impactree-text-gray: #4a5568; /* For subtitles and general text */
  --impactree-form-footer: #718096; /* For form footer text */
  --impactree-quote-red: #ff4d4f; /* For testimonial quote */
  --impactree-dark-bg: #181818; /* For testimonial card background */
  --impactree-white: #fff;
  --impactree-form-border: #e5e7eb; /* A light border for inputs */

  --color-typography-headline-gradient: linear-gradient(45deg, #1e4d72, orange, #4da6ff); /* Updated to include orange */
  --color-typography-content-dark: #1A0C0A; /* Dark typography color */
  --color-typography-content-light: #A8A8A8; /* Light gray typography color */

  /* New colors for demo page sections */
  --demo-left-bg: #e7e8e2;
  --demo-right-bg: #ffffff;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Grift', Arial, sans-serif;
    /* Remove this line: padding-top: 80px; */
    background: var(--page-background-main);
    background-attachment: fixed;
    font-weight: 500;
  }
/* Full width container override */
.container {
  max-width: 100%;
  padding: 0 2rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}


/* Button changes for "Request Demo" and "Book Demo" to orange gradient glow */
.btn-orange-glow {
  background: linear-gradient(45deg, var(--color-button-gradient-start), var(--color-button-gradient-end));
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Grift', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(254, 170, 41, 0.6); /* Initial glow */
  position: relative;
  overflow: hidden; /* For pseudo-element glow */
  z-index: 1;
}

.btn-orange-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-orange-glow:hover::before {
  transform: translateX(0%);
}

.btn-orange-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(254, 170, 41, 0.8), 0 8px 20px rgba(254, 170, 41, 0.4); /* Enhanced glow on hover */
  color: white;
  filter: brightness(1.1); /* Slight brightness increase */
}

/* Changing btn-hero-secondary to be a solid orange button */
.btn-hero-secondary {
  background: var(--color-button-primary); /* Solid orange */
  border: none; /* No border */
  color: white; /* White text */
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Grift', sans-serif; /* Buttons - Grift SemiBold */
  font-weight: 600; /* SemiBold */
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(254, 170, 41, 0.4); /* Add shadow for consistency */
}

.btn-hero-secondary:hover {
  background: #D99424; /* Slightly darker orange on hover */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 170, 41, 0.6); /* Consistent hover shadow */
}


.d-flex .btn-danger {
  background-color: orange; /* Bootstrap danger color */
  border-color: orange;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.d-flex .btn-danger:hover {
  background-color: orange;
  border-color: orange;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .d-flex .btn-danger {
    width: 100%;
    margin-top: 1rem;
  }
}


/* Features Section (from compass.html) */
.features-section {
  padding: clamp(40px, 8vw, 60px) 0;
  background: #f8fafc;
  width: 100%;
  max-width: 100%;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 20px);
  width: 100%;
}
.feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 5vw, 40px);
  margin-bottom: clamp(40px, 8vw, 60px);
  width: 100%;
}
.feature-item:last-child {
  margin-bottom: 0;
}
.feature-item.reverse {
  flex-direction: row-reverse;
}
.feature-content {
  flex: 1 1 300px;
  min-width: 280px;
}
.feature-content h3 {
  font-family: 'Orlean', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(8px, 2vw, 12px);
  color: #007bff;
  line-height: 1.2;
}
.feature-content p {
  color: #4a5568;
  margin-bottom: clamp(16px, 3vw, 24px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e4d72;
}
.feature-list li:last-child {
  margin-bottom: 0;
}
.feature-list li i {
  color: #007bff;
  font-size: 1.1em;
  flex-shrink: 0;
}
.feature-image {
  flex: 1 1 300px;
  min-width: 260px;
  text-align: center;
}
.feature-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: clamp(12px, 2vw, 18px);
  box-shadow: 0 4px 24px rgba(30,77,114,0.07);
}

/* Compass Description Section (from compass.html) */
.compass-description-section {
  background: linear-gradient(90deg, #e7f3ff 0%, #f8fafc 100%);
  padding: clamp(24px, 5vw, 48px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.compass-description-container {
  max-width: 100%;
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,77,114,0.07);
  padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.compass-description-container p {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #1e4d72;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ESG Tabs Section (from compass.html) */
.esg-tabs-section {
  background: #fff;
  margin-top: 100px;
  padding: clamp(32px, 6vw, 56px) 0 clamp(24px, 4vw, 40px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.esg-tabs-container {
  max-width: 100%;
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,77,114,0.07);
  padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px);
  text-align: center;
  border: 1.5px solid rgba(30,77,114,0.08);
}
.esg-tabs-btn-group-wrapper {
  padding: 0;
  background: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  max-width: 100%;
}
.esg-tabs-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid #e7f3ff;
  background: none;
  padding: 0;
  position: relative;
}
.esg-tab-btn {
  background: #e7f3ff;
  color: #007bff;
  border: none;
  border-radius: 14px 14px 0 0;
  padding: 14px 28px 12px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: none;
  position: relative;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  z-index: 1;
}
.esg-tab-btn.active {
  background: #fff;
  color: #007bff;
  box-shadow: 0 4px 16px rgba(30,77,114,0.10);
  border-bottom: 2px solid #007bff;
  z-index: 2;
}
.esg-tab-btn:not(.active) {
  border-bottom: 2px solid #e7f3ff;
}
.esg-tab-btn:hover:not(.active) {
  background: #f8fafc;
  color: #1e4d72;
}
.esg-tabs-content {
  margin-top: 0;
  width: 100%;
}
.esg-tab-content {
  display: none;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: #1e4d72;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 80px;
  padding: 18px 0 0 0;
  animation: fadeInTab 0.3s;
}
.esg-tab-content.active {
  display: block;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Table-like container for tabs */
.tab-table-container {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.tab-table-row {
  display: flex;
  border-bottom: 1px solid #e7f3ff;
}
.tab-table-row:last-child {
  border-bottom: none;
}
.tab-table-cell {
  flex: 1;
  padding: 20px;
  text-align: left;
  vertical-align: top;
}
.tab-table-cell:first-child {
  font-weight: 600;
  color: #007bff;
  background: #f8fafc;
  min-width: 200px;
}
/* Responsive Design (from compass.html) */
@media (max-width: 768px) {
  .esg-tabs-container {
    padding: 14px 2vw;
  }
  .esg-tab-btn {
    padding: 10px 12px 8px 12px;
    font-size: 0.98rem;
  }
  .tab-table-row {
    flex-direction: column;
  }
  .tab-table-cell:first-child {
    min-width: 100%;
    border-bottom: 1px solid #e7f3ff;
  }
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .feature-content {
    text-align: center;
    min-width: 100%;
  }
  .feature-image {
    min-width: 100%;
  }
  .feature-image img {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .esg-tabs-section {
    padding: 12px 0 8px 0;
  }
  .esg-tabs-container {
    padding: 8px 2px;
  }
  .esg-tab-btn {
    padding: 8px 6px 6px 6px;
    font-size: 0.93rem;
  }
  .esg-tab-content {
    font-size: 0.98rem;
  }
  .features-section {
    padding: 30px 0;
  }
  .feature-item {
    margin-bottom: 40px;
    gap: 20px;
  }
  .feature-content {
    padding: 0 8px;
  }
  .feature-image img {
    max-width: 320px;
  }
  .feature-list li {
    font-size: 0.9rem;
  }
}

/* Ensure consistent styling across all pages */
.language-selector {
  color: var(--color-typography-content-dark);
  background: none;
  border: 1px solid rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 1rem;
  font-weight: 500; /* Medium weight */
}

.language-selector:hover {
  background-color: rgba(0,0,0,0.1);
  color: var(--color-typography-content-dark);
}

.innovation-card {
  background: linear-gradient(135deg, var(--color-background-light) 0%, var(--color-background-white) 100%);
  border: 1px solid #D1D2CB;
}

.innovation-card .mega-menu-card-title {
  color: var(--color-typography-content-dark);
}

.innovation-card .mega-menu-card-link:hover {
  color: var(--color-button-primary);
  border-left-color: var(--color-button-primary);
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}



@keyframes typing {
  from { width: 0 }
  to { width: 100% } /* Adjust to content width */
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--color-button-primary); }
}

.hero-title {
  font-family: 'Grift', sans-serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  background: linear-gradient(45deg, #1e4d72, blue, #4da6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  /* Removed typing animation properties */
  white-space: normal; /* Changed from nowrap to allow text wrapping */
  overflow: visible; /* Changed from hidden to show all text */
  /* Removed border-right (cursor) and animation properties */
}

@keyframes textGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.2); }
}

/* New class for headline style text */
.headline-text-gradient {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  background: var(--color-typography-headline-gradient);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600; /* SemiBold */
  line-height: 1.2;
}


.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-typography-content-dark);
  font-family: 'Grift', sans-serif; /* Subheadings - Grift Medium */
  font-weight: 500; /* Medium weight */
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 95%;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}



.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.stat-number {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size: 2rem;
  font-weight: 600; /* SemiBold */
  color: var(--color-typography-content-dark);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-typography-content-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500; /* Medium weight */
}

/* Background Video Container */
.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* Ensure it's behind other content */
}

.video-background-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Ensures video covers the area */
  filter: blur(5px); /* Apply blur directly to the video */
  opacity: 0.8; /* Slightly reduce opacity for content readability */
}

.video-background-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay for better contrast */
  z-index: 1;
}


/* Enhanced Video Section (Existing, might be redundant if using video-background-container) */
/* Keeping for now, but assess if this section is still needed or how it integrates */
.video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 1s ease-out 0.3s both;
  margin-top: 0;
  max-height: 450px;
  width: 100%;
  padding: 0 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.05),
      0 10px 20px rgba(0, 0, 0, 0.03);
  background: transparent;
  padding: 0;
  transition: all 0.5s ease;
  max-height: 450px;
  margin: 0 auto;
}

.video-wrapper:hover {
  transform: translateY(-10px);
  box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.1),
      0 15px 30px rgba(0, 0, 0, 0.08);
}

.hero-video {
  width: 100%;
  height: 100%;
  max-height: 450px;
  border-radius: 20px;
  display: block;
  transition: all 0.5s ease;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 232, 226, 0.05), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

/* International Sustainability Benchmarks Section */
.benchmarks-section {
  background-color: var(--color-background-white);
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.benchmarks-container {
  width: 100%;
  padding: 0;
}

.benchmarks-logos-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding: 2rem 0;
}

.benchmarks-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-width: 2000px;
  width: max-content;
  animation: slideBenchmarks 28s linear infinite;
}

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

.benchmarks-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px;
}

.benchmarks-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
  display: block;
}

.benchmarks-logo img:hover {
  filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  transform: scale(1.08);
}

.benchmarks-logos::-webkit-scrollbar {
  display: none;
}

.benchmarks-logos-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Impact Outcomes Section */
.impact-outcomes-section {
  background-color: var(--color-background-white);
  padding: 2.5rem 0;
  width: 100%;
}

/* Industries Map Section */
.industries-map-section {
  background-color: var(--color-background-white);
  padding: 2.5rem 0;
  width: 100%;
}

/* Client Section: Trusted by teams at */
.trusted-by-section {
  background-color: var(--color-background-white);
  padding: 2.5rem 0;
  width: 100%;
}

.trusted-by-section p {
  text-align: center;
  color: var(--color-typography-content-light);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-weight: 500; /* Medium weight */
}

.scrolling-logos-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.company-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-width: 2000px;
  width: max-content;
  animation: slideLogos 30s linear infinite;
}

.company-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
}

.company-logo img:hover {
  filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  transform: scale(1.08);
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Flippable Cards */
.flip-card-container {
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
  height: 220px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-card-front {
  background: var(--color-background-white);
}

.flip-card-back {
  background: linear-gradient(135deg, #1e4d72 0%, #007bff 100%);
  color: white;
  transform: rotateY(180deg);
}

.flip-number {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size: 5rem;
  font-weight: 600; /* SemiBold */
  margin-bottom: 0;
  letter-spacing: -2px;
  line-height: 1;
}

.flip-desc {
  font-size: 1.18rem;
  font-weight: 500; /* Medium weight */
  margin-bottom: 0;
  line-height: 1.3;
}

.flip-card-front .flip-number {
  color: var(--color-button-primary);
}

.flip-card-front .flip-desc {
  color: var(--color-typography-content-dark);
}

.flip-card-back .flip-number {
  color: var(--color-background-white);
}

.flip-card-back .flip-desc {
  color: rgba(255,255,255,0.9);
}

/* Sustainability Matters Section - Enhanced Spacing */
.sustainability-matters-content-section {
  background-color: var(--color-background-white);
  padding: 4rem 0;
  width: 100%;
}

.sm-main-title {
  color: var(--color-typography-content-dark);
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size: 2.25rem;
  font-weight: 600; /* SemiBold */
  margin-bottom: 2rem;
  letter-spacing: -0.75px;
  position: relative;
  padding-bottom: 1.25rem;
  text-align: center;
}
main {
  padding-top: 80px; /* This should match your navbar height */
}

.sm-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-button-primary);
  border-radius: 2px;
}

.sm-top-text {
  font-size: 1.2rem;
  color: var(--color-typography-content-dark);
  font-family: 'Grift', sans-serif; /* Subheadings - Grift Medium */
  font-weight: 500; /* Medium weight */
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.sm-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-card {
  background: var(--color-background-white);
  border-left: 5px solid var(--color-button-primary);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.sm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.sm-card-icon {
  background: var(--color-background-light);
  color: var(--color-button-primary);
  border-radius: 50%;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  min-width: 70px;
  min-height: 70px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sm-card-content {
  flex: 1;
}

.sm-card-title {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size: 1.3rem;
  font-weight: 600; /* SemiBold */
  color: var(--color-typography-content-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.sm-card-desc {
  color: var(--color-typography-content-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  font-weight: 500; /* Medium weight */
}

.sm-card-cta {
  color: var(--color-button-primary);
  font-family: 'Grift', sans-serif; /* CTA - Grift SemiBold */
  font-weight: 600; /* SemiBold */
  margin-top: 1rem;
  display: inline-block;
}

/* Callout section */
.sm-callout {
  background: var(--color-background-light);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-weight: 600; /* SemiBold (as it's a prominent callout) */
  font-size: 1.3rem;
  color: var(--color-typography-content-dark);
  border: 1px solid rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sustainability-matters-content-section {
    padding: 3rem 0;
  }
  
  .sm-main-title {
    font-size: 1.8rem;
    margin-bottom: 1.75rem;
  }
  
  .sm-top-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .sm-cards-container {
    gap: 1.75rem;
    padding: 0 1rem;
  }
  
  .sm-card {
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.5rem;
  }
  
  .sm-card-icon {
    margin: 0 auto;
  }
  
  .sm-card-title {
    text-align: center;
  }
  
  .sm-callout {
    font-size: 1.1rem;
    padding: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .sm-card {
    padding: 1.5rem;
  }
  
  .sm-card-icon {
    min-width: 60px;
    min-height: 60px;
    padding: 1rem;
  }
}

/* Danger Card Variant */
.danger-card {
  border-left: 5px solid #dc3545;
  box-shadow: 0 4px 24px rgba(220,53,69,0.10);
}

.danger-card:hover {
  box-shadow: 0 8px 32px rgba(220,53,69,0.15);
}

.danger-icon {
  background: #fbeaec;
  color: #dc3545;
}


.everest-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left;
  padding: 0 1rem;
  position: relative;
  z-index: 4;
}

.everest-title {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size:  clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300; /* SemiBold */
  color: var(--color-typography-content-dark);
  margin-bottom: 1.5rem;
  position: relative;
  text-align: left;
}
.everest-title.animate {
  opacity: 1;
  transform: translateY(0);
}
.everest-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-button-primary);
  border-radius: 2px;
}

.everest-subtitle {
  font-family: 'Grift', sans-serif; /* Subheadings - Grift Medium */
  font-size: 1.2rem;
  font-weight: 500; /* Medium weight */
  color: var(--color-typography-content-light);
  line-height: 1.6;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.highlight {
  font-family: 'Orlean', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: var(--color-typography-content-dark);
  background: linear-gradient(120deg, rgba(254,170,41,0.2) 0%, rgba(254,170,41,0) 100%);
  padding: 0 0.2em;
  border-radius: 4px;
}


.everest-content-wrapper {
  position: relative;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  width: 100%;
  margin-top: 2rem;
}

.everest-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/images/Everest-landing.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 1;
  filter: blur(3px); /* Added subtle blur back */
  transition: filter 0.5s ease;
}


.everest-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 2;
} 
*/
.everest-cards-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.everest-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4-24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  margin: auto;
}

.everest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.everest-card:nth-child(1) {
  animation-delay: 0.2s;
}

.everest-card:nth-child(2) {
  animation-delay: 0.4s;
}

/* Card Content Styling */
.card-title {
  font-family: 'Grift', sans-serif; /* Headings - Grift SemiBold */
  font-size: 1.5rem;
  font-weight: 600; /* SemiBold */
  color: var(--color-typography-content-dark);
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.card-subtitle {
  font-family: 'Grift', sans-serif; /* Subheadings - Grift Medium */
  font-size: 1.1rem;
  font-weight: 500; /* Medium weight */
  color: var(--color-typography-content-dark);
  margin-bottom: 0.8rem;
}

.navigator-card .card-subtitle {
  color: var(--color-typography-content-dark);
}

.card-description {
  font-family: 'Orlean', sans-serif; /* Content - Orlean (medium) */
  font-weight: 500; /* Medium weight */
  color: var(--color-typography-content-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-tagline {
  font-family: 'Orlean', sans-serif; /* Content - Orlean (medium) */
  font-weight: 500; /* Medium weight */
  font-style: italic;
  color: var(--color-typography-content-light);
  margin-bottom: 1.5rem;
}

/* Learn More Link Styling */
.compass-card .card-link,
.navigator-card .card-link {
  font-family: 'Grift', sans-serif; /* Links/Buttons - Grift SemiBold */
  font-weight: 600; /* SemiBold */
  background-color: var(--color-background-light);
  color: var(--color-typography-content-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.compass-card .card-link:hover,
.navigator-card .card-link:hover {
  background-color: #D1D2CB;
}

.compass-card .card-link i,
.navigator-card .card-link i {
  margin-left: 0.5rem;
  color: var(--color-typography-content-dark);
}

/* Hide card icons */
.compass-card .card-icon,
.navigator-card .card-icon {
  display: none;
}



/* Responsive Design */
@media (max-width: 991.98px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-item {
    flex: 1;
  }

  .hero-title {
    font-size: 1.8rem;
    white-space: normal; /* Allow text to wrap on smaller screens */
    border-right: none; /* Remove cursor on smaller screens if desired */
    animation: none; /* Disable typing animation on smaller screens if desired */
    width: auto; /* Reset width */
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .video-container, .video-wrapper, .hero-video {
    max-height: 300px;
  }
  
  .everest-section {
    padding: 5rem 0;
    background-color: var(--color-background-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
  }
  

  .everest-content-wrapper {
    min-height: unset;
    border-radius: 12px;
  }

  .everest-cards-container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .everest-card {
    max-width: 90%;
    margin: 0 auto;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.0rem;
  }
  
  .video-container, .video-wrapper, .hero-video {
    max-height: 200px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .benchmarks-logo {
    width: 48px;
    height: 48px;
    padding: 4px;
  }
}