/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./components/sections/BentoGrid.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
/* Bento Grid Masonry Layout */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

@media (max-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* Resource Card Styles */
.resource-card {
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* background removed - now controlled via inline styles only */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Colors */
.resource-card.card-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.resource-card.card-purple {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.resource-card.card-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.resource-card.card-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

/* Card Tags/Badges */
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  height: 28px;
  line-height: 1;
}

.badge-featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
}

.badge-core {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
}

.badge-integration {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-whitepaper {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border: none;
}

.badge-guide {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  border: none;
}

.badge-defense {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
}

.badge-pricing {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  border: none;
}

.badge-security {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-ai-innovation {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-transformation {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-intelligence {
  background: white;
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-deployment {
  background: white;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-scalability {
  background: white;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-performance {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-enterprise {
  background: white;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-solution {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-optimizing {
  background: rgba(255, 255, 255, 0.95);
  color: #4338ca;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Resource Card Lists */
.resource-card ul {
  list-style: none;
  padding-left: 0 !important;
}

.resource-card ul li {
  position: relative;
  padding-left: 24px !important;
  display: flex;
  align-items: flex-start;
}

.resource-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #3b82f6;
}

/* White checkmarks for dark theme cards */
.resource-card[data-theme="dark"] ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

.resource-card.card-teal ul li::before,
.resource-card.card-purple ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .resource-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .resource-card {
    padding: 20px;
  }

  .card-tag {
    font-size: 0.625rem;
    padding: 4px 10px;
    height: 24px;
  }
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/solutions/ai-financial-intelligence-and-risk-analytics/styles.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************/
/* === GLOBAL STYLES === */
body {
  font-family: var(--font-primary);
}

/* === BRAND COLOR PALETTE === */
.primary-gradient {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
}

.hero-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

.bg-brand-light {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.text-gradient {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === INTERACTIVE BUTTON EFFECTS === */
.gradient-btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.gradient-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.gradient-btn-primary:hover::before {
  left: 0;
}

.gradient-btn-primary > * {
  position: relative;
  z-index: 1;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-10px); }
  70% { transform: translateY(-5px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes rippleEffect {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes growBar {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fillRing {
  from { stroke-dashoffset: 251.2; }
}

/* === VISUAL EFFECTS & DECORATIONS === */
.typing-cursor::after {
  content: '|';
  animation: blink 1s infinite;
  color: #3b82f6;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* === HERO SECTION STYLES === */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 200px;
  background: white;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.3));
  top: -10%;
  left: -5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.2));
  bottom: 10%;
  right: -5%;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  top: -15%;
  right: 10%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  top: 30%;
  right: -10%;
  animation: shapeFloat 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 5%;
  animation: shapeFloat 22s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1598px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

.left-content {
  max-width: 700px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.hero-h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: white;
  border: 2px solid white;
  color: #1e40af;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* === ANIMATED VISUAL DASHBOARD CARD === */
.visual-dashboard {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  animation: cardFloat 6s ease-in-out infinite;
  max-width: 550px;
  margin-left: auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Animated Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.metric-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out backwards;
}

.metric-box:nth-child(1) { animation-delay: 0.2s; }
.metric-box:nth-child(2) { animation-delay: 0.3s; }
.metric-box:nth-child(3) { animation-delay: 0.4s; }

.metric-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
  border-radius: 50%;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-change {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Animated Chart */
.chart-container {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  animation: slideInUp 0.6s ease-out 0.5s backwards;
}

.chart-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 12px;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chart-bar-visual {
  width: 100%;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
  animation: growBar 1s ease-out backwards;
}

.chart-bar-item:nth-child(1) .chart-bar-visual { animation-delay: 0.6s; }
.chart-bar-item:nth-child(2) .chart-bar-visual { animation-delay: 0.7s; }
.chart-bar-item:nth-child(3) .chart-bar-visual { animation-delay: 0.8s; }
.chart-bar-item:nth-child(4) .chart-bar-visual { animation-delay: 0.9s; }

.chart-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}

/* Progress Ring */
.progress-ring-container {
  display: flex;
  justify-content: space-around;
  animation: slideInUp 0.6s ease-out 1s backwards;
}

.progress-ring-item {
  text-align: center;
}

.progress-ring {
  width: 80px;
  height: 80px;
  position: relative;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  stroke: #e5e7eb;
  fill: none;
  stroke-width: 8;
}

.progress-ring-circle {
  stroke: #3b82f6;
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  animation: fillRing 1.5s ease-out 1.2s backwards;
}

.progress-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
}

.progress-ring-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 8px;
}

/* === BENTO GRID CARD STYLES === */ 
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.resource-card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Bento Grid Layout - 4 Column System */
.card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.card-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.card-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.card-wide-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
}

/* Badge Type Variations - Gradient Backgrounds */
.badge-featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.badge-core {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  color: white;
}

.badge-whitepaper {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.badge-guide {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
}

.badge-defense {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-pricing {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.card-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-features li::before {
  content: '✓';
  color: var(--card-color-1);
  font-weight: bold;
  font-size: 1rem;
}

/* Bento Grid List Items with Checkmarks */
.resource-card ul {
  list-style: none;
  padding-left: 0 !important;
}

.resource-card ul li {
  position: relative;
  padding-left: 24px !important;
  display: flex;
  align-items: flex-start;
}

.resource-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #10b981;
  line-height: 1.6;
}

/* White checkmarks for gradient background cards (Smart Playbooks & RFP Automation) */
.resource-card.card-teal ul li::before,
.resource-card.card-purple ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  color: #1e40af;
  margin-top: auto;
  align-self: flex-start;
}

.card-cta:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-cta svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* Card Color Schemes */
.card-blue {
  --card-color-1: #3b82f6;
  --card-color-2: #2563eb;
  background: white;
}

.card-purple {
  --card-color-1: #6366f1;
  --card-color-2: #4f46e5;
  background: white;
}

.card-green {
  --card-color-1: #3b82f6;
  --card-color-2: #2563eb;
  background: white;
}

.card-orange {
  --card-color-1: #3b82f6;
  --card-color-2: #2563eb;
  background: white;
}

.card-pink {
  --card-color-1: #6366f1;
  --card-color-2: #4f46e5;
  background: white;
}

.card-teal {
  --card-color-1: #3b82f6;
  --card-color-2: #2563eb;
  background: white;
}

.dashboard-container {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
  border-radius: 12px;
  padding: 24px;
  color: #1e40af;
}

.pipeline-stage {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px;
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 30px;
  }
  .hero-h1 {
    font-size: 3rem;
  }
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-large, .card-wide-tall {
    grid-column: span 2;
    grid-row: span 2;
  }
  .card-medium, .card-tall, .card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .card-large, .card-tall, .card-medium, .card-wide, .card-wide-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* === SHIMMER AND GLOW ANIMATIONS === */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes dashboardGlow {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
  }
  50% {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.2);
  }
}

/* === CHAT MESSAGE ANIMATIONS === */
@keyframes chatMessageSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === HIGHER EDUCATION SPECIFIC STYLES === */

/* Compliance Badges */
.compliance-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.compliance-badge {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  transition: all 0.3s ease;
}

.compliance-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Stakeholder Cards */
.stakeholder-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stakeholder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.stakeholder-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #3b82f6;
}

/* Success Stories Cards */
.success-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #3b82f6;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.success-metric {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.success-feature {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.success-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.success-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.success-link:hover {
  color: #2563eb;
  transform: translateX(4px);
  display: inline-block;
}

/* Regional Hubs */
.hub-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  color: #6b7280;
}

.hub-item i {
  color: #3b82f6;
}

