/* Base Styles & Reset */
/* Last updated: 2025-08-12 for full-width responsive design - Fixed mobile side-space issue */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary colors */
  --primary-color: #0052cc;
  --primary-dark: #003d99;
  --primary-light: #e6f0ff;
  
  /* Secondary colors */
  --secondary-color: #2e3b4e;
  --secondary-light: #53627a;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f5f7fa;
  --neutral-300: #e9ecf2;
  --neutral-400: #c4c9d4;
  --neutral-500: #8c93a4;
  --neutral-600: #5c6578;
  --neutral-700: #384152;
  --neutral-800: #1e2533;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Other */
  --border-radius: 6px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition-standard: all 0.3s ease;
  --max-content-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--neutral-700);
  line-height: 1.6;
  background-color: var(--neutral-200);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-standard);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}
h1.hero__title {
  color: var(--neutral-100);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modern Professional Hero Welcome Styles */
.hero__welcome {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-100);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
  position: relative;
}

.hero__welcome::before {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 0.125rem;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 0.125rem;
  opacity: 0.8;
}

.hero__welcome-subtitle {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.125rem;
  opacity: 0.95;
}

/* Responsive adjustments for better spacing and alignment */
@media (max-width: 768px) {
  .hero__welcome {
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .hero__welcome::before {
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero__welcome {
    margin-bottom: 1.25rem;
    gap: 0.125rem;
  }
  
  .hero__welcome::before {
    width: 2rem;
    bottom: -0.375rem;
  }
}

@media (max-width: 320px) {
  .hero__welcome {
    margin-bottom: 1rem;
  }
  
  .hero__welcome::before {
    width: 1.5rem;
    height: 0.0625rem;
  }
}



/* Professional Typography Enhancement */
.hero__text {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--neutral-100);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero__title .highlight {
  background: linear-gradient(135deg, #3beb05 0%, #43fd0a 50%, #61c761 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: none;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #13ee4a, #154908);
  border-radius: 2px;
  opacity: 0.8;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  }
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, button, textarea, select {
  font: inherit;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  box-sizing: border-box;
}

/* Container with max-width for specific sections that need it */
.container-limited {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  box-sizing: border-box;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.industries-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-header h2 {
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.view-all {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
}

.view-all i {
  transition: transform 0.3s ease;
}

.view-all:hover i {
  transform: translateX(4px);
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
  padding: var(--space-xs) 0;
  font-size: 0.85rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__links,
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar a {
  color: var(--neutral-200);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.top-bar a:hover {
  color: var(--neutral-100);
}
p.hero__subtitle {
  color: var(--neutral-200);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 36px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
/* Header & Navigation */
.header {
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
  transition: var(--transition-standard);
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s forwards;
  z-index: 1000;
}

.header--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo {
  display: block;
  z-index: 101;
}

.logo__image {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}

.header--sticky .logo__image {
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}

.nav__item {
  position: relative;
}

.nav__item > a {
  color: var(--neutral-700);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
}

.nav__item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav__item > a:hover {
  color: var(--primary-color);
}

.nav__item > a:hover::after {
  width: 80%;
  left: 10%;
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  cursor: pointer;
}

.dropdown__toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown__toggle i {
  transform: rotate(180deg);
}

/* Enhanced Dropdown Menu */
.dropdown__menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 100;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__content {
  display: flex;
  padding: var(--space-lg);
  gap: var(--space-xl);
}

.dropdown__column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.dropdown__column h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--neutral-300);
  color: var(--primary-color);
}

.dropdown__column a {
  padding: var(--space-sm) 0;
  color: var(--neutral-700);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}

.dropdown__column a:hover {
  color: var(--primary-color);
  padding-left: var(--space-sm);
}

.dropdown__column a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown__column a:hover:before {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--neutral-700);
  transition: var(--transition-standard);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition-standard);
  cursor: pointer;
  line-height: 1;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-color: var(--primary-color);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
  border-color: var(--secondary-color);
}

.btn--secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: var(--primary-light);
  color: white !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline:hover {
  background-color: var(--primary-light);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0; /* Reset padding as slides will take care of height */
  height: 550px; /* Fixed height for the hero section - desktop */
}

/* Tablet-specific hero height adjustments */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero {
    height: 400px; /* Reduced height for tablets */
  }
}

@media (max-width: 767px) {
  .hero {
    height: 450px; /* Mobile height */
  }
}

/* Hero Section Button Override */
.hero .btn--outline,
.hero__cta .btn--outline {
  background-color: var(--primary-light) !important;
  color: white !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.hero .btn--outline:hover,
.hero__cta .btn--outline:hover {
  background-color: var(--primary-light) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.default-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary-color));
}

.default-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('/api/placeholder/800/600') no-repeat right center;
  background-size: cover;
  opacity: 0.1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darken the image for better text visibility */
  z-index: -1;
}

.hero__content {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 3;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Clients Section */
.clients-section {
  padding: 80px 0;
  background: #fafbfc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 204, 0.01) 50%, transparent 100%);
  pointer-events: none;
}

.clients-content {
  position: relative;
  z-index: 2;
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.clients-header p {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.clients-logos {
  position: relative;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, white 5%, white 95%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, white 5%, white 95%, transparent 100%);
}

.clients-slider {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: clientsScroll 30s linear infinite;
  width: fit-content;
}

.clients-slider:hover {
  animation-play-state: paused;
}

.client-logo-item {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo-item:hover {
  transform: translateY(-2px);
}

.client-logo-item:hover .client-name-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.client-logo-link,
.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f3f4;
}

.client-logo-link:hover,
.client-logo-wrapper:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #e1e3e6;
}

.client-logo-img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-logo-fallback {
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

.client-name-tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--secondary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.client-name-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid var(--secondary-color);
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design for Clients Section */
@media (max-width: 1200px) {
  .clients-slider {
    gap: 60px;
  }
  
  .client-logo-item {
    width: 140px;
    height: 70px;
  }
  
  .client-logo-img {
    max-width: 100px;
    max-height: 50px;
  }
  
  .client-logo-fallback {
    width: 100px;
    height: 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-header {
    margin-bottom: 40px;
  }
  
  .clients-header h3 {
    font-size: 1.75rem;
  }
  
  .clients-header p {
    font-size: 1rem;
  }
  
  .clients-slider {
    gap: 40px;
    animation: clientsScrollMobile 25s linear infinite;
  }
  
  .client-logo-item {
    width: 120px;
    height: 60px;
  }
  
  .client-logo-img {
    max-width: 80px;
    max-height: 40px;
  }
  
  .client-logo-fallback {
    width: 80px;
    height: 40px;
    font-size: 1rem;
  }
  
  .client-name-tooltip {
    font-size: 0.7rem;
    padding: 4px 8px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 40px 0;
  }
  
  .clients-header h3 {
    font-size: 1.5rem;
  }
  
  .clients-slider {
    gap: 30px;
  }
  
  .client-logo-item {
    width: 100px;
    height: 50px;
  }
  
  .client-logo-img {
    max-width: 70px;
    max-height: 35px;
  }
  
  .client-logo-fallback {
    width: 70px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@keyframes clientsScrollMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .clients-slider {
    animation: none;
  }
}

/* Featured Insights Section - Full Width Professional Design */
.featured-insights {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.featured-insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 82, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46, 59, 78, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.featured-insights .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-header__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 24px;
  position: relative;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--neutral-600);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.view-all {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all:hover {
  background: linear-gradient(135deg, var(--primary-dark), #003580);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 82, 204, 0.4);
  color: white;
}

.view-all i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-all:hover i {
  transform: translateX(5px);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Uniform Insight Cards - Professional Design */
.insight-card {
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid transparent;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.01) 0%, rgba(46, 59, 78, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 82, 204, 0.1);
  border-left-color: var(--primary-color);
}

.insight-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.insight-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insight-card:hover .insight-card__image::after {
  opacity: 1;
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.1);
}

.insight-card__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 82, 204, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.insight-card__tag {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.insight-card__date {
  color: var(--neutral-500);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--neutral-600);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--neutral-200);
}

.insight-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neutral-600);
  font-weight: 500;
  font-size: 0.9rem;
}

.insight-card__author i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.insight-card__link {
  background: linear-gradient(135deg, #1a365d, #2d3748);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card__link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 82, 204, 0.4);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.insight-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.insight-card__link:hover i {
  transform: translateX(3px);
}

/* Remove all featured-specific and secondary-specific styles */
.insight-card--featured,
.insights-secondary {
  /* These classes are no longer needed */
}

/* Enhanced Tag Colors - Unified Color Scheme */
.insight-card__tag--primary,
.insight-card__tag--insight,
.insight-card__tag--tax,
.insight-card__tag--taxupdate,
.insight-card__tag--regulatoryinsight,
.insight-card__tag--analysisreport,
.insight-card__tag--article,
.insight-card__tag--tech,
.insight-card__tag--esg {
  background: linear-gradient(135deg, var(--primary-light), rgba(0, 82, 204, 0.2));
  color: var(--primary-color);
}

/* Placeholder Styles - More Creative */
.insight-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, var(--neutral-300) 0%, var(--neutral-200) 100%);
  color: var(--neutral-500);
  position: relative;
}

.insight-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cbd5e0' fill-opacity='0.3'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.insight-placeholder i {
  font-size: 2.5rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.insight-card--placeholder {
  border: 2px dashed var(--neutral-400);
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
  opacity: 0.8;
}

.insight-card--placeholder .insight-card__title {
  color: var(--neutral-600);
  font-style: italic;
}

.insight-card--placeholder .insight-card__desc {
  color: var(--neutral-500);
}

/* Removed individual tag color definitions - now using unified color scheme above */

/* Insight Placeholder Styles */
.insight-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, var(--neutral-300) 0%, var(--neutral-200) 100%);
  color: var(--neutral-500);
}

.insight-placeholder i {
  font-size: 3rem;
  opacity: 0.6;
}

.insight-card--placeholder {
  opacity: 0.7;
  border: 2px dashed var(--neutral-400);
  background: var(--neutral-200);
}

.insight-card--placeholder .insight-card__content {
  text-align: center;
}

.insight-card--placeholder .insight-card__title {
  color: var(--neutral-600);
  font-style: italic;
}

.insight-card--placeholder .insight-card__desc {
  color: var(--neutral-500);
}

.insight-card__date {
  font-size: 0.85rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.insight-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card--featured .insight-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  -webkit-line-clamp: 2;
}

.insight-card__desc {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card--featured .insight-card__desc {
  font-size: 1rem;
  -webkit-line-clamp: 4;
  margin-bottom: 2rem;
}

.insight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.insight-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.insight-card__author i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.insight-card__link {
  background: linear-gradient(135deg, #1a365d, #2d3748);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.insight-card__link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 82, 204, 0.4);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.insight-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.insight-card__link:hover i {
  transform: translateX(3px);
}

/* Tag Colors for Different Content Types - All using unified primary color scheme */
.insight-card__tag--article,
.insight-card__tag--insight,
.insight-card__tag--analysis-report,
.insight-card__tag--tax-update,
.insight-card__tag--regulatory {
  background: linear-gradient(135deg, var(--primary-light), rgba(0, 82, 204, 0.2));
  color: var(--primary-color);
}

/* Responsive Design for Featured Insights */
@media (max-width: 1200px) {
  .featured-insights .container {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .insight-card {
    height: 460px;
  }
}

@media (min-width: 1601px) {
  .featured-insights .container {
    max-width: 1800px;
    padding: 0 40px;
  }
  
  .insights-grid {
    gap: 40px;
  }
  
  .insight-card {
    height: 500px;
  }
  
  .insight-card__content {
    padding: 28px;
  }
}

@media (min-width: 1920px) {
  .featured-insights .container {
    max-width: 2000px;
    padding: 0 60px;
  }
  
  .insights-grid {
    gap: 48px;
  }
  
  .insight-card {
    height: 520px;
  }
  
  .section-header h2 {
    font-size: 4rem;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .featured-insights {
    padding: 100px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
    position: relative;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .insight-card {
    height: auto;
    min-height: 440px;
  }
  
  .insight-card__image {
    height: 180px;
  }
  
  .insight-card__content {
    padding: 20px;
  }
  
  .insight-card__title {
    font-size: 1.15rem;
  }
  
  .insight-card__desc {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .insight-card__footer {
    padding-top: 12px;
  }
  
  .view-all {
    position: static;
    margin: 24px auto 0;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .featured-insights {
    padding: 80px 0;
  }
  
  .featured-insights .container {
    padding: 0 16px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insight-card {
    height: auto;
    min-height: 400px;
  }
  
  .insight-card__content {
    padding: 20px;
  }
  
  .insight-card__title {
    font-size: 1.2rem;
  }
  
  .insight-card__desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .featured-insights {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .insight-card__image {
    height: 180px;
  }
  
  .insight-card__content {
    padding: 18px;
  }
  
  .insight-card__title {
    font-size: 1.1rem;
  }
  
  .insight-card__footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Insights CTA - Full Width Professional Design */
.insights-cta {
  margin-top: 0;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.insights-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 59, 78, 0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0 8.3-6.7 15-15 15s-15-6.7-15-15 6.7-15 15-15 15 6.7 15 15zm0-30c0 8.3-6.7 15-15 15S0 8.3 0 0s6.7-15 15-15 15 6.7 15 15z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 40s ease-in-out infinite;
  pointer-events: none;
}

.insights-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.5), transparent);
}

.insights-cta .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.insights-cta__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.insights-cta h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.insights-cta p {
  font-size: 1.3rem;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 300;
}

.insights-cta .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 82, 204, 0.3);
}

.insights-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.insights-cta .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.4);
  color: white;
}

.insights-cta .btn:hover::before {
  left: 100%;
}

/* Responsive styles for CTA section */
@media (max-width: 767px) {
  .insights-cta {
    padding: 80px 0;
  }
  
  .insights-cta h3 {
    font-size: 2.2rem;
  }
  
  .insights-cta p {
    font-size: 1.1rem;
  }
  
  .insights-cta .btn {
    padding: 16px 32px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .insights-cta {
    padding: 60px 0;
  }
  
  .insights-cta .container {
    padding: 0 16px;
  }
  
  .insights-cta h3 {
    font-size: 1.8rem;
  }
  
  .insights-cta p {
    font-size: 1rem;
  }
}

/* Why Us Section - Professional and Eye-catching Design */
.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 82, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(46, 59, 78, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.why-us__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-us__text {
  padding-right: 20px;
}

.why-us__text .section-header__content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-us__text .section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-us__features {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--neutral-100);
  border-radius: 16px;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 82, 204, 0.15);
  border-color: var(--primary-light);
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-item__icon i {
  font-size: 1.5rem;
  color: var(--neutral-100);
}

.feature-item__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.feature-item__content p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

.why-us__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.why-us__visual {
  position: relative;
}

.why-us__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.why-us__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us__image:hover img {
  transform: scale(1.05);
}

.why-us__image-fallback {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--neutral-100);
  text-align: center;
}

.why-us__image-fallback i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.why-us__image-fallback span {
  font-size: 1.25rem;
  font-weight: 600;
}

.why-us__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  background: var(--neutral-100);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.12);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Why Us Section */
@media (max-width: 1200px) {
  .why-us__content {
    gap: 60px;
  }
  
  .why-us__text .section-header__content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }
  
  .why-us__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-us__text {
    padding-right: 0;
    text-align: center;
  }
  
  .why-us__image img,
  .why-us__image-fallback {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .why-us {
    padding: 60px 0;
  }
  
  .why-us__content {
    gap: 40px;
  }
  
  .why-us__text .section-header__content h2 {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .feature-item__icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-item__icon i {
    font-size: 1.25rem;
  }
  
  .why-us__cta {
    justify-content: center;
  }
  
  .why-us__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-item__number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .why-us__text .section-header__content h2 {
    font-size: 1.75rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .why-us__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .why-us__image img,
  .why-us__image-fallback {
    height: 300px;
  }
}

/* Industries Section */
.industries {
  background-color: var(--neutral-100);
  padding: var(--space-xxl) 0;
}

.industry-card {
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  background-color: var(--neutral-200);
  height: 100%;
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card__icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.industry-card h3 {
  margin-bottom: var(--space-sm);
}

.industry-card p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.card-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: var(--space-xs);
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}

/* Services Section - Modern Card Design */
.services {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 82, 204, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(46, 59, 78, 0.05) 0%, transparent 25%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 82, 204, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #667eea);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}

.service-card__icon i {
  font-size: 1.75rem;
  color: white;
  z-index: 1;
  position: relative;
}

.service-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--neutral-700);
  padding: 0.5rem 0;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.875rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  margin-top: auto;
  padding: 0.75rem 0;
  border-top: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.service-link i {
  transition: transform 0.2s ease;
  font-size: 0.875rem;
}

.service-link:hover i {
  transform: translateX(4px);
}

.services-cta {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.02), rgba(102, 126, 234, 0.02));
  pointer-events: none;
}

.services-cta h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.services-cta .btn {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Old Services Styles - Keep for backward compatibility but override */
.services-content {
  display: none; /* Hide old tab-based design */
}

.services-tabs {
  display: none;
}

.tab-content {
  display: none;
}

.tab-button {
  display: none;
}

/* CTA Section */
.cta {
  background: linear-gradient(160deg, var(--secondary-color), var(--secondary-light));
  padding: var(--space-xxl) 0;
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  transform: skewX(-30deg) translateX(50%);
}

.cta__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__content h2 {
  color: var(--neutral-100);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.cta__content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--neutral-400);
  padding-top: var(--space-xxl);
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column h3 {
  color: var(--neutral-100);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column ul li {
  margin-bottom: var(--space-sm);
}

.footer__column ul li a {
  color: var(--neutral-400);
  transition: var(--transition-standard);
  font-size: 0.95rem;
}

.footer__column ul li a:hover {
  color: var(--neutral-100);
  padding-left: var(--space-xs);
}

.footer__subscribe {
  grid-column: span 2;
}

.footer__subscribe p {
  margin-bottom: var(--space-md);
}

.subscribe-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--neutral-100);
}

.subscribe-form input::placeholder {
  color: var(--neutral-500);
}

.subscribe-form .btn {
  background-color: var(--primary-color);
  color: white;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--neutral-100);
  font-size: 1.1rem;
  transition: var(--transition-standard);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__middle {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.footer__links a {
  color: var(--neutral-400);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--neutral-100);
}

.footer__bottom {
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__copy {
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Add these styles to your CSS file */
.form-message {
  margin-top: 10px;
  min-height: 24px;
}

.success-message {
  color: #28a745;
  font-size: 0.9rem;
  margin: 0;
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  position: relative;
  display: flex;
}

.subscribe-form input[type="email"] {
  flex: 1;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
  
  .hero__title {
    font-size: 2.75rem;
  }
  
  .services-content {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service-card {
    padding: 1.75rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
  
  .services-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .services-cta h3 {
    font-size: 1.5rem;
  }
  
  .services-cta p {
    font-size: 1rem;
  }
  
  .services-tabs {
    flex-direction: row;
    min-width: auto;
    overflow-x: auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 0;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .services-cta {
    padding: 2rem 1.25rem;
    margin: 0 -var(--space-sm);
    border-radius: 12px;
  }
  
  .services-cta h3 {
    font-size: 1.375rem;
  }
  
  .services-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .services-cta .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .tab-button {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  
  .tab-button.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary-color);
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 var(--space-sm);
    max-width: 100%;
  }

  /* Mobile Insights Styles */
  .featured-insights {
    padding: 60px 0 80px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header h2::after {
    width: 40px;
    height: 3px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .view-all {
    position: static;
    margin: 20px auto 0;
    display: block;
    width: fit-content;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .insight-card--featured {
    min-height: auto;
  }

  .insight-card--featured .insight-card__image {
    height: 240px;
  }

  .insight-card--featured .insight-card__content {
    padding: 24px;
  }

  .insight-card--featured .insight-card__title {
    font-size: 1.5rem;
  }

  .insight-card--featured .insight-card__desc {
    font-size: 1rem;
  }

  .insight-card--featured .insight-card__footer {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .insight-card {
    height: auto;
    flex-direction: column;
  }

  .insight-card__image {
    width: 100%;
    height: 160px;
  }

  .insight-card__content {
    padding: 20px;
  }

  .insights-cta {
    margin-top: 60px;
    padding: 40px 24px;
  }

  .insights-cta h3 {
    font-size: 1.5rem;
  }

  .insights-cta p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .header__inner {
    padding: var(--space-md) 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-lg);
    padding: 5rem var(--space-lg) var(--space-lg);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  
  .nav--active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav__item > a {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--neutral-300);
  }
  
  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin-left: var(--space-md);
    margin-right: var(--space-md);
    border-top: none;
    border-left: 2px solid var(--primary-color);
  }
  
  .dropdown__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .dropdown:hover .dropdown__menu {
    max-height: 1000px;
    padding: var(--space-md);
  }
  
  .dropdown__content {
    flex-direction: column;
    padding: 0;
    gap: var(--space-md);
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero__title {
    font-size: 2.25rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  /* Mobile Hero Welcome Message Styles */
  .hero__welcome {
    font-size: 0.9rem;
    padding: 14px 24px;
    gap: 10px;
    margin-bottom: 24px;
    border-radius: 40px;
  }
  
  .hero__welcome-icon {
    width: 24px;
    height: 24px;
  }
  
  .hero__welcome-icon i {
    font-size: 12px;
  }
  
  .hero__title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero__title .highlight::after {
    height: 2px;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .insight-card--featured {
    grid-row: span 1;
  }
  
  .insights-secondary {
    gap: 1.25rem;
  }
  
  .insight-card__image {
    height: 180px;
  }
  
  .insight-card--featured .insight-card__image {
    height: 220px;
  }
  
  .insight-card__content {
    padding: 1.25rem;
  }
  
  .insight-card--featured .insight-card__content {
    padding: 1.5rem;
  }
  
  .insight-card__title {
    font-size: 1.125rem;
  }
  
  .insight-card--featured .insight-card__title {
    font-size: 1.375rem;
  }
  
  .insight-card__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .insights-cta {
    padding: 2rem 1.5rem;
  }
  
  .insights-cta h3 {
    font-size: 1.375rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .view-all {
    align-self: flex-start;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
  }
  
  .footer__subscribe {
    grid-column: 1;
  }
  
  .dropdown--active .dropdown__menu {
    max-height: 1000px;
    padding: var(--space-md);
  }
  
  .dropdown--active .dropdown__toggle i {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  :root {
    --space-xxl: 2rem;
    --space-xl: 1.5rem;
  }
  
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 var(--space-xs);
    max-width: 100%;
    width: 100%;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .top-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 var(--space-xs);
    max-width: 100%;
    width: 100%;
  }
  
  .hero {
    height: 350px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .hero__title {
    font-size: 1.5rem;
  }
  
  /* Small Mobile Hero Welcome Message Styles */
  .hero__welcome {
    font-size: 0.85rem;
    padding: 12px 20px;
    gap: 8px;
    margin-bottom: 20px;
    border-radius: 35px;
  }
  
  .hero__welcome-icon {
    width: 22px;
    height: 22px;
  }
  
  .hero__welcome-icon i {
    font-size: 11px;
  }
  
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .nav {
    width: 70%;
    max-width: 250px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 calc(var(--space-xs) / 2);
    max-width: 100%;
    width: 100%;
  }
  
  .nav {
    width: 65%;
    max-width: 220px;
  }
  
  .hero__title {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  
  /* Extra Small Mobile Hero Welcome Message Styles */
  .hero__welcome {
    font-size: 0.8rem;
    padding: 10px 18px;
    gap: 6px;
    margin-bottom: 18px;
    border-radius: 30px;
  }
  
  .hero__welcome-icon {
    width: 20px;
    height: 20px;
  }
  
  .hero__welcome-icon i {
    font-size: 10px;
  }
  
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
  
  .hero {
    height: 400px;
  }
  
  .hero__title {
    font-size: 1.75rem;
  }
  
  .insights-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .insights-secondary {
    gap: 1rem;
  }
  
  .insight-card__image {
    height: 160px;
  }
  
  .insight-card--featured .insight-card__image {
    height: 180px;
  }
  
  .insight-card__content {
    padding: 1rem;
  }
  
  .insight-card--featured .insight-card__content {
    padding: 1.25rem;
  }
  
  .insight-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .insight-card__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .insight-card--featured .insight-card__title {
    font-size: 1.25rem;
  }
  
  .insight-card__desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .insight-card--featured .insight-card__desc {
    font-size: 0.95rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .insight-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }
  
  .insight-card__author {
    font-size: 0.85rem;
  }
  
  .insight-card__link {
    font-size: 0.9rem;
    align-self: flex-end;
  }
  
  .insights-cta {
    padding: 1.5rem 1rem;
    margin: 0 -var(--space-sm);
    border-radius: 12px;
  }
  
  .insights-cta h3 {
    font-size: 1.25rem;
  }
  
  .insights-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .insights-cta .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
  
  .services-grid {
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
  }
  
  .service-card__icon i {
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .service-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    padding: 0.375rem 0;
  }
  
  .service-features li i {
    font-size: 0.75rem;
    width: 14px;
  }
  
  .service-link {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  .services-cta {
    padding: 1.5rem 1rem;
    margin: 0 -var(--space-xs);
    border-radius: 10px;
  }
  
  .services-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
  
  .services-cta p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .services-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .cta__content h2 {
    font-size: 1.75rem;
  }
  
  .cta__content p {
    font-size: 1rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .carousel {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    width: calc(100% + 2rem);
  }
  
  .footer__column {
    padding-bottom: var(--space-md);
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .services-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .tab-button {
    padding: var(--space-sm);
    font-size: 0.85rem;
    text-align: center;
    white-space: normal;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


@media (min-width: 577px) and (max-width: 991px) {
  .hero__cta {
    display: flex;
    flex-direction: row;
  }
  
  .industry-card {
    min-height: 220px;
  }
  
  .services-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .tab-button {
    scroll-snap-align: start;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }
  
  .dropdown:hover .dropdown__menu {
    transform: translateY(8px);
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .carousel__item {
    flex: 0 0 380px;
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 0 calc(var(--space-xl) * 1.5);
  }
  
  .hero__title {
    font-size: 3.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1600px) {
  .container {
    padding: 0 calc(var(--space-xl) * 2);
  }
  
  .hero__title {
    font-size: 4rem;
  }
  
  .hero__subtitle {
    font-size: 1.4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .carousel__item {
    flex: 0 0 400px;
  }
}

/* Enhanced responsiveness for 1600px-1919px range */
@media (min-width: 1600px) and (max-width: 1919px) {
  .hero {
    height: 620px; /* Intermediate height for better proportions */
  }
  
  .hero__title {
    font-size: 4.2rem; /* Better scaling between 4rem and 4.5rem */
  }
  
  .hero__subtitle {
    font-size: 1.45rem; /* Better scaling between 1.4rem and 1.5rem */
  }
  
  .hero__welcome {
    padding: 18px 32px; /* Slightly larger for better proportion */
    font-size: 1.05rem;
  }
  
  .hero__welcome-icon {
    width: 30px;
    height: 30px;
  }
  
  .hero__welcome-icon i {
    font-size: 15px;
  }
  
  .hero__text {
    max-width: 750px; /* Slightly wider for larger screens */
  }
}

@media (min-width: 1920px) {
  .container {
    padding: 0 calc(var(--space-xl) * 2.5);
  }
  
  .hero__title {
    font-size: 4.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.5rem;
  }
  
  .hero {
    height: 700px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .carousel__item {
    flex: 0 0 420px;
  }
}

/* Enhanced CTA Actions */
.insights-cta__content {
  text-align: center;
}

.insights-cta__content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.insights-cta__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .insights-cta__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .insights-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 37, 51, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal--active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__container {
  position: relative;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--neutral-100);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal--active .modal__container {
  transform: translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--neutral-100);
}

.modal__header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

.modal__close {
  background: none;
  border: none;
  color: var(--neutral-100);
  font-size: 1.25rem;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  transition: var(--transition-standard);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal__body {
  padding: var(--space-xl);
  overflow-y: auto;
  max-height: calc(90vh - 120px);
}

.modal__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.modal__benefits {
  list-style: none;
  margin: 0 0 var(--space-xl) 0;
  padding: 0;
}

.modal__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.modal__benefits li:last-child {
  margin-bottom: 0;
}

.modal__benefits i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.modal__form .form-group {
  margin-bottom: var(--space-lg);
}

.modal__form .form-label {
  display: block;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.modal__form .form-input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--neutral-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition-standard);
  background: var(--neutral-100);
}

.modal__form .form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--neutral-600);
  cursor: pointer;
}

.modal__actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.modal__actions .btn {
  flex: 1;
}

.form-message {
  margin-top: var(--space-md);
}

.form-message .success-message {
  background: #d4edda;
  color: #155724;
  padding: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid #c3e6cb;
}

.form-message .error-message {
  background: #f8d7da;
  color: #721c24;
  padding: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid #f5c6cb;
}

.form-message i {
  margin-right: var(--space-xs);
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Footer subscription highlight effect */
.footer__subscribe.highlight {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 82, 204, 0.1));
  border-radius: var(--border-radius);
  transition: var(--transition-standard);
}

/* Enhanced button styles */
.btn--outline {
  background: #ff6b35;
  color: var(--neutral-100);
  border: 2px solid #ff6b35;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  transition: var(--transition-standard);
  cursor: pointer;
  font-size: 1rem;
}

.btn--outline:hover,
.btn--outline:focus {
  background: #e55a2b;
  color: var(--neutral-100);
  border-color: #e55a2b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Modal Adjustments */
@media (max-width: 767px) {
  .modal__container {
    width: 95%;
    margin: 2.5vh auto;
    max-height: 95vh;
  }
  
  .modal__header {
    padding: var(--space-lg);
  }
  
  .modal__header h3 {
    font-size: 1.25rem;
  }
  
  .modal__body {
    padding: var(--space-lg);
  }
  
  .modal__actions {
    flex-direction: column;
  }
  
  .modal__actions .btn {
    width: 100%;
  }
}

/* Specific tablet range fix (769px - 1024px) - Ensures desktop navigation */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Force desktop navigation layout */
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  
  .nav__list {
    flex-direction: row !important;
    gap: var(--space-sm) !important;
  }
  
  .nav__item > a {
    border-bottom: none !important;
  }
  
  /* Ensure dropdowns work correctly */
  .dropdown__menu {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    max-height: none !important;
    margin: 0 !important;
    border-left: none !important;
    border-top: 3px solid var(--primary-color) !important;
    background-color: var(--neutral-100) !important;
    box-shadow: var(--shadow-lg) !important;
  }
  
  .dropdown:hover .dropdown__menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    padding: var(--space-lg) !important;
  }
  
  .dropdown__content {
    flex-direction: row !important;
  }
}

/* Specific fix for exactly 768px - ensure desktop navigation */
@media (min-width: 768px) and (max-width: 768px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  
  .nav__list {
    flex-direction: row !important;
    gap: var(--space-md) !important;
  }
  
  .nav__item > a {
    border-bottom: none !important;
    padding: var(--space-sm) var(--space-md) !important;
  }
  
  /* Ensure dropdowns work correctly at 768px */
  .dropdown__menu {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    max-height: none !important;
    margin: 0 !important;
    border-left: none !important;
    border-top: 3px solid var(--primary-color) !important;
    background-color: var(--neutral-100) !important;
    box-shadow: var(--shadow-lg) !important;
  }
  
  .dropdown:hover .dropdown__menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    padding: var(--space-lg) !important;
  }
  
  .dropdown__content {
    flex-direction: row !important;
  }
}

/* Enhanced Tablet Responsiveness - iPad Mini & iPad Air */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Container adjustments for tablets */
  .container {
    max-width: 95%;
    padding: 0 20px;
  }
  
  /* Header adjustments */
  .header {
    padding: 0.75rem 0;
  }
  
  .header__inner {
    padding: var(--space-md) 0;
  }
  
  /* Navigation optimizations for tablets */
  .nav__list {
    gap: var(--space-sm);
  }
  
  .nav__item > a {
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-sm);
  }
  
  /* Adjust dropdown menu positioning for tablets */
  .dropdown__menu {
    min-width: 240px;
    left: -15px;
  }
  
  .dropdown__content {
    padding: var(--space-md);
    gap: var(--space-lg);
  }
  
  .dropdown__column {
    min-width: 160px;
  }
  
  .dropdown__column h3 {
    font-size: 0.95rem;
  }
  
  .dropdown__column a {
    font-size: 0.9rem;
    padding: var(--space-xs) 0;
  }
  
  /* Ensure logo scales appropriately */
  .logo__image {
    height: 36px;
  }
  
  .header--sticky .logo__image {
    height: 30px;
  }
  
  /* Ensure mobile menu toggle stays hidden for tablets */
  .mobile-menu-toggle {
    display: none;
  }

  /* Hero section for tablets */
  .hero {
    height: 400px; /* Reduced height for tablets */
    min-height: auto;
    padding: 0;
  }
  
  .hero__content {
    padding: 2rem 0;
  }
  
  .hero__content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero__content p {
    font-size: 1rem;
    max-width: 90%;
  }
  
  .hero__welcome {
    font-size: 0.9rem;
  }
  
  .hero__cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Services grid for tablets */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  /* Insights grid for tablets */
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .insight-card {
    height: auto;
    min-height: 450px;
  }
  
  .insight-card__content {
    padding: 20px;
  }
  
  .insight-card__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .insight-card__desc {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .insight-card__footer {
    margin-top: 16px;
    padding-top: 12px;
  }
  
  .insight-card__link {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  /* Why us section for tablets */
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  /* Footer for tablets */
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  /* Modal adjustments for tablets */
  .modal__container {
    width: 85%;
    max-width: 600px;
    margin: 2rem auto;
  }
  
  /* Form elements for tablets */
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
}

/* iPad Mini specific (768px - 820px) */
@media (min-width: 768px) and (max-width: 820px) {
  .hero {
    height: 350px; /* Even more reduced for smaller tablets */
  }
  
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__content p {
    font-size: 0.95rem;
  }
  
  .services__grid {
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  /* Insights adjustments for iPad Mini */
  .insights-grid {
    gap: 1.25rem;
  }
  
  .insight-card {
    height: auto;
    min-height: 420px;
  }
  
  .insight-card__image {
    height: 160px;
  }
  
  .insight-card__content {
    padding: 18px;
  }
  
  .insight-card__title {
    font-size: 1rem;
  }
  
  .insight-card__desc {
    font-size: 0.85rem;
  }
  
  /* Navigation optimizations for iPad Mini */
  .nav__list {
    gap: var(--space-xs);
  }
  
  .nav__item > a {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  /* Dropdown adjustments for smaller tablets */
  .dropdown__menu {
    min-width: 220px;
    left: -10px;
  }
  
  .dropdown__content {
    padding: var(--space-sm);
    gap: var(--space-md);
  }
  
  .dropdown__column {
    min-width: 140px;
  }
  
  .dropdown__column h3 {
    font-size: 0.9rem;
  }
  
  .dropdown__column a {
    font-size: 0.85rem;
  }
  
  /* Mobile menu toggle should stay hidden */
  .mobile-menu-toggle {
    display: none;
  }
}

/* iPad Air and larger tablets (821px - 1024px) */
@media (min-width: 821px) and (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
  
  .hero {
    height: 450px; /* Adjusted height for larger tablets */
  }
  
  .hero__content h1 {
    font-size: 2.5rem;
  }
  
  .hero__content p {
    font-size: 1.1rem;
    max-width: 85%;
  }
  
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  
  .insight-card {
    height: auto;
    min-height: 460px;
  }
  
  .insight-card__image {
    height: 180px;
  }
  
  .insight-card__content {
    padding: 22px;
  }
  
  .footer__top {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Navigation optimizations for larger tablets */
  .nav__list {
    gap: var(--space-md);
  }
  
  .nav__item > a {
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
  }
  
  /* Dropdown optimizations */
  .dropdown__menu {
    min-width: 250px;
    left: -18px;
  }
  
  .dropdown__content {
    padding: var(--space-lg);
    gap: var(--space-xl);
  }
  
  .dropdown__column {
    min-width: 170px;
  }
  
  .dropdown__column h3 {
    font-size: 1rem;
  }
  
  .dropdown__column a {
    font-size: 0.95rem;
  }
  
  /* Ensure mobile menu toggle stays hidden */
  .mobile-menu-toggle {
    display: none;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  
  /* Ensure no horizontal overflow */
  body {
    overflow-x: hidden;
  }
  
  .hero__content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero__content p {
    font-size: 1rem;
  }
  
  .services__grid,
  .insights__grid,
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Touch-friendly elements */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
  
  .nav__item a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo__image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
  
  .header {
    padding: 0.5rem 0;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .hero__content h1 {
    font-size: 2rem;
    color: #000 !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000 !important;
    background: #fff !important;
  }
}

/* Focus and accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Legacy tablet Modal Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .modal__container {
    width: 85%;
    max-width: 600px;
  }
}
/* Nexaurro Gradient Link Style */
.nexaurro-link {
  font-weight: 700;
  text-decoration: none !important;
  background: linear-gradient(90deg, #0052cc 0%, #7f53ac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s;
  opacity: 0.95;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.nexaurro-link:hover,
.nexaurro-link:focus {
  opacity: 1;
  filter: brightness(1.15);
}