:root {
    --color-primary: #000000;        /* Black for buttons */
    --color-primary-dark: #333333;   /* Dark gray for hover states */
    --color-primary-light: #F5F5F5;  /* Very light gray for backgrounds */
    --color-secondary: #0090F0;      /* Your bright blue */
    --color-tertiary: #00E6FF;       /* The cyan color from your palette */


    /* Light Theme Colors - maintained from original */
    --color-light-bg: #f8f9fa;
    --color-light-text: #1E293B;
    --color-light-gray-bg: #F1F5F9;
    --color-light-gray-border: #E2E8F0;

    /* Using Light Theme as Default */
    --bg-color: var(--color-light-bg);
    --text-color: var(--color-light-text);
    --gray-bg-color: var(--color-light-gray-bg);
    --gray-border-color: var(--color-light-gray-border);
}

/* Tailwind Overrides & Custom Classes */
.bg-primary { background-color: #000000 !important; }
.bg-primary-dark { background-color: #333333 !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-tertiary { background-color: var(--color-tertiary) !important; }
.text-primary { color: #000000 !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-tertiary { color: var(--color-tertiary) !important; }
.border-primary { border-color: #000000 !important; }

/* Updated gradient styles */
.bg-gradient-primary {
  background-color: #000000;
  color: white;
  font-weight: 600;
}

.bg-gradient-secondary {
  background-color: var(--color-secondary);
}

/* Simplified text gradient */
.text-gradient {
  color: #000000;
}

/* Remove glow effects */
.neon-glow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-glow {
  text-shadow: none;
}

/* Modern button styles */
.button-primary {
  background-color: #000000;
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button-primary:hover {
  background-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.button-secondary {
  background-color: white;
  color: #000000;
  border: 1px solid #000000;
  padding: 0.3rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
  text-decoration: none;
}

.button-secondary:hover {
  border-color: #000000;
  background-color: #F5F5F5;
  transform: translateY(-1px);
}

/* Modern card styling */
.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-border-color);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
}
.hero-section {
  position: relative;
  padding: 8rem 0;
  background-color: white;
  overflow: hidden;
  background: url('/img/HEADER_Home.jpg') no-repeat center right;
  background-size: cover;
  background-blend-mode: normal;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  /* Hide hero image on mobile */
  .hero-section {
    background-image: none;
    padding: 6rem 0;
  }

  /* Remove backdrop and center content on mobile */
  .hero-section .backdrop-container {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
  }

  /* Remove padding on trusted by section on mobile */
  .hero-section .pl-6 {
    padding-left: 0;
  }

  /* Center hero content on mobile */
  .hero-section .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Make industry tags stack better on mobile and center them */
  .hero-section .mt-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .industry-tag {
    margin: 0.25rem 0.1rem;
    height: 32px;
  }

  .industry-tag .icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .industry-tag img {
    width: 18px;
    height: 18px;
  }
}

.hero-content {
  animation: fadeIn 0.5s ease-out forwards;
  position: relative;
  z-index: 1;
}

.hero-content,
.feature-cards-container { /* Add a class to your feature cards container */
  position: relative;
  z-index: 1; /* Make sure content sits above the background */
}

/* Section alternative background */
.section-alt {
  background-color: var(--color-light-gray-bg);
}

/* Feature card styling (updated to match service cards) */
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  padding-top: calc(1.5rem + 3px); /* Adjusted for the missing border */
  border-top: none;
  position: relative;
  min-height: 180px; /* Ensures cards have enough vertical space */
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ED00FF, #00E6FF);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.feature-card-content {
  flex: 1;
  margin-bottom: 1rem;
}

.feature-card-icon {
  margin-bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0.5rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
}

/* Arrow icon at bottom of feature card */
.feature-card svg {
  margin-left: auto;
}

/* Title highlight for modern look */
.heading-highlight {
  position: relative;
  color: #000000;
  display: inline-block;
}

.heading-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background-color: #F5F5F5;
  z-index: -1;
}

/* Basic Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
  background: white;
}

header.scrolled {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-gray { background-color: var(--gray-bg-color); }
.border-gray { border-color: var(--gray-border-color); }

/* Subtly hide the bg-grid element for a cleaner look */
.bg-grid {
  opacity: 0;
}

/* Keep the radial gradient but make it more subtle */
.bg-gradient-radial {
  background: radial-gradient(circle at 70% 50%, var(--color-primary-light) 0%, transparent 70%);
  opacity: 0.1;
}

/* Animations - keeping all original animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }

/* Transitions & Hover Effects - keeping all original transitions */
.transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.hover\:transform:hover { transform: translateY(-10px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:visible { visibility: visible; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-primary:focus { border-color: var(--color-primary); }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus\:ring-primary:focus { --tw-ring-color: var(--color-primary); }
.focus\:ring-opacity-30:focus { --tw-ring-opacity: 0.3; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog Content Styles - keeping all original blog styles */
.blog-content {
    /* Base Typography */
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Headings */
.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

.blog-content h1 { font-size: 2.5rem; }
.blog-content h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-border-color);
}
.blog-content h3 { font-size: 1.75rem; }
.blog-content h4 { font-size: 1.5rem; }
.blog-content h5 { font-size: 1.25rem; }
.blog-content h6 { font-size: 1.125rem; }

/* Paragraph spacing */
.blog-content p {
    margin-bottom: 1.5em;
}

/* Links */
.blog-content a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.blog-content a:hover {
    border-color: #000000;
}

/* Lists */
.blog-content ul, .blog-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.5em;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

/* Code blocks */
.blog-content pre {
    background-color: var(--gray-bg-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Inline code */
.blog-content code:not(pre code) {
    background-color: var(--gray-bg-color);
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9em;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #000000;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--gray-bg-color);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    position: relative;
}

.blog-content blockquote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    color: #000000;
    opacity: 0.3;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Tables */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: 0.5rem;
}

.blog-content th {
    background-color: #000000;
    color: white;
    font-weight: 600;
    text-align: left;
}

.blog-content th, .blog-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-border-color);
}

.blog-content tr:nth-child(even) {
    background-color: var(--gray-bg-color);
}

/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-content figure {
    margin: 2rem 0;
    text-align: center;
}

.blog-content figcaption {
    color: var(--text-color);
    opacity: 0.75;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

/* Horizontal Rule */
.blog-content hr {
    border: 0;
    height: 1px;
    background-color: var(--gray-border-color);
    margin: 3rem 0;
}

/* Responsive video embeds */
.blog-content .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.blog-content .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Code block filename */
.blog-content .code-filename {
    background-color: var(--color-primary-dark);
    color: white;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    display: inline-block;
    margin-bottom: -1px;
}

/* Table of Contents */
.blog-content .toc {
    background-color: var(--gray-bg-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-content .toc-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.blog-content .toc-title::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h7" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.5rem;
}

.blog-content .toc ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

/* Callouts/Notes */
.blog-content .callout {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.blog-content .callout-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.blog-content .callout-title::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.5rem;
}

.blog-content .callout-info {
    background-color: rgba(59, 130, 246, 0.1);
    border-left-color: var(--color-secondary);
}

.blog-content .callout-info .callout-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>');
}

.blog-content .callout-warning {
    background-color: rgba(255, 174, 66, 0.1);
    border-left-color: #FFAE42;
}

.blog-content .callout-warning .callout-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>');
}

.blog-content .callout-tip {
    background-color: rgba(16, 185, 129, 0.1);
    border-left-color: var(--color-tertiary);
}

.blog-content .callout-tip .callout-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" /></svg>');
}

/* Reading progress bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 100;
    background: transparent;
}

.reading-progress-bar {
    height: 100%;
    background: #000000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Table of Contents - Mobile Toggle */
.toc-mobile-toggle {
    display: none;
}

@media (max-width: 768px) {
    .toc-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 1rem;
        background-color: var(--gray-bg-color);
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }

    .toc-mobile-content {
        display: none;
    }

    .toc-mobile-content.active {
        display: block;
    }
}

/* Readability improvements on mobile */
@media (max-width: 640px) {
    .blog-content {
        font-size: 1rem;
    }

    .blog-content h1 { font-size: 2rem; }
    .blog-content h2 { font-size: 1.75rem; }
    .blog-content h3 { font-size: 1.5rem; }
    .blog-content h4 { font-size: 1.25rem; }
    .blog-content h5, .blog-content h6 { font-size: 1.125rem; }

    .blog-content pre {
        padding: 1rem;
        font-size: 0.8rem;
    }

    .blog-content blockquote {
        padding: 0.75rem 1rem;
    }

    .blog-content table {
        display: block;
        overflow-x: auto;
    }
}

/* Service page specific styles */
.service-hero {
  background: linear-gradient(135deg, rgba(112, 71, 235, 0.6) 0%, rgba(16, 185, 129, 0.6) 100%);
  color: white;
  position: relative;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.service-hero p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.service-hero a {
  background-color: white;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-hero a:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Service card styles */
.service-card {
  padding: 1.5rem;
  padding-top: calc(1.5rem + 3px); /* Adjusted for the missing border */
  border-top: none;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ED00FF, #00E6FF);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: transparent;
}

.service-icon {
  width: 28px;
  height: 28px;
}

/* Make sure text inside clickable cards doesn't look like links */
a.service-card,
a.case-study-card,
a.blog-card {
  text-decoration: none;
  color: inherit;
}

/* Case study card styles */
.case-study-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}

.case-study-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
}

/* Testimonial card styling */
.testimonial-card {
  position: relative;
  padding: 2rem;
  padding-top: calc(2rem + 3px); /* Adjusted for the missing border */
  border-top: none;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ED00FF, #00E6FF);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: #F5F5F5;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}

/* Desktop Logos Display */
.client-logos-desktop {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.client-logos-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

/* Mobile Logos Display (Scrollable) */
.client-logos-mobile {
  display: none;
}

/* Client Logo Styling */
.client-logo {
  height: 2.5rem; /* Default for desktop */
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Clients Scroll Container For Mobile */
.clients-scroll-wrapper {
  position: relative;
  max-width: 100%;
  padding: 0 2rem;
}

.clients-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  position: relative;
  max-width: 100%;
}

/* Hide Scrollbar */
.clients-scroll-container::-webkit-scrollbar {
  display: none;
}

.clients-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Clients Scroll Content */
.clients-scroll-content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  padding: 0 1rem;
}

/* Scroll Arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: white;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  color: #1E293B;
}

.scroll-arrow svg {
  width: 16px;
  height: 16px;
}

.scroll-arrow-left {
  left: 0;
}

.scroll-arrow-right {
  right: 0;
}

.scroll-arrow:hover {
  background-color: #000000;
  color: white;
  border-color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .client-logos-wrapper {
    gap: 1rem;
  }

  .client-logo {
    height: 2.25rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop view and show mobile scroll view */
  .client-logos-desktop {
    display: none;
  }

  .client-logos-mobile {
    display: block;
  }

  .client-logo {
    height: 2rem;
  }
}

.industry-tag {
  background-color: #F1F5F9;
  border-radius: 9999px;
  height: 36px;
  padding: 0;
  padding-right: 16px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  margin: 0.35rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  box-shadow: none;
  overflow: hidden;
  text-decoration: none;
}

/* No underline for the text inside tags */
.industry-tag-text {
  text-decoration: none;
}

.industry-tag img {
  width: 20px;
  height: 20px;
  /* Icons are already light colored (F1F5F9), so no filter needed */
}

.industry-tag .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #000000;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.industry-tag:hover {
  background-color: #E2E8F0;
}

/* Mind Map Interactive Styles */
.mind-map {
  width: 100%;
  height: 100%;
}

.node-link {
  cursor: pointer;
}

.node-hover {
  transition: all 0.3s ease;
}

.node-link:hover .node-hover {
  transform: scale(1.05);
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

/* Fix for SVG clipping in Safari */
.mind-map a {
  outline: none;
}

/* Add pointer cursor to clickable regions */
.mind-map a * {
  cursor: pointer;
}

/* Menu styling */
header nav a,
header .relative.group a,
header nav a.button-primary {
  font-family: 'Roboto', sans-serif;
  font-weight: 300; /* Roboto Light */
}

/* Keep Contact button with normal weight */
header nav a.button-primary {
  font-weight: 400;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  /* Adjust header padding for mobile */
  header .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  /* Adjust section padding on mobile */
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Adjust spacing for section headings on mobile */
  section h2 {
    margin-bottom: 2rem !important;
  }
}
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
}

#mobile-menu a,
#mobile-menu button {
  font-family: 'Roboto', sans-serif;
  font-weight: 300; /* Roboto Light */
}
