/**
 * IECC Custom Styles
 * Professional UI enhancements
 */

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.loading-content {
  text-align: center;
}

.loading-message {
  color: #6c757d;
  margin: 0;
  font-size: 1rem;
}

/* Skeleton Loading */
.skeleton-loading {
  pointer-events: none;
}

.skeleton-line {
  height: 1rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Toast Container */
.toast-container {
  z-index: 9999;
}

.toast {
  min-width: 300px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form Validation */
.form-control.is-valid,
.form-select.is-valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Button Loading State */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.65;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

/* Progress Bar Animation */
.progress-bar {
  transition: width 0.6s ease;
}

/* Counter Animation */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Smooth Transitions */
.transition-all {
  transition: all 0.3s ease;
}

/* Badge Pulse */
.badge-pulse {
  animation: pulse 2s infinite;
}

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

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.75rem;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  border-radius: 10px;
  background: #dc3545;
  color: white;
}

/* Status Indicators */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-dot.online { background: #198754; }
.status-dot.offline { background: #6c757d; }
.status-dot.away { background: #ffc107; }
.status-dot.busy { background: #dc3545; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
  width: 2px;
  height: calc(100% - 0.5rem);
  background: #dee2e6;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #dee2e6;
  z-index: 1;
}

.timeline-item.active .timeline-icon {
  border-color: #0d6efd;
  background: #0d6efd;
  color: white;
}

/* Chart Container */
.chart-container {
  position: relative;
  height: 300px;
  margin: 1rem 0;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state-icon {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1rem;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.empty-state-text {
  color: #adb5bd;
}

/* Search Highlight */
.search-highlight {
  background: #fff3cd;
  padding: 0 0.25rem;
  border-radius: 2px;
}

/* Drag and Drop */
.drop-zone {
  border: 2px dashed #dee2e6;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.drop-zone:hover,
.drop-zone.drag-over {
  border-color: #0d6efd;
  background: #f8f9fa;
}

.drop-zone-icon {
  font-size: 3rem;
  color: #adb5bd;
  margin-bottom: 1rem;
}

/* Stats Card */
.stats-card {
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .toast {
    min-width: 250px;
  }
  
  .modal-dialog {
    margin: 0.5rem;
  }
  
  .table-responsive {
    font-size: 0.875rem;
  }
  
  .card-body {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .no-print {
    display: none !important;
  }
  
  .card {
    border: 1px solid #dee2e6;
    box-shadow: none;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
.form-control:focus,
.form-select:focus,
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

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

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

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

.slide-in-up {
  animation: slideInUp 0.3s ease;
}

.slide-in-down {
  animation: slideInDown 0.3s ease;
}

/* Utility Classes */
.cursor-pointer { cursor: pointer; }
.user-select-none { 
  -webkit-user-select: none;
  user-select: none; 
}
.overflow-hidden { overflow: hidden; }
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dark Mode Support (Future) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles can be added here */
}

/* Shape positioning from index.html */
.shape-hero-1 {
  top: -1.7rem;
  left: -1.5rem;
}

.shape-hero-2 {
  bottom: -1.8rem;
  right: -0.8rem;
  width: 85%;
  height: 90%;
}

.shape-about-1 {
  top: -2.2rem;
  left: -2.4rem;
}

.shape-about-2 {
  bottom: -1.8rem;
  right: -1.5rem;
  width: 85%;
  height: 90%;
}

/* Search overlay height */
.offcanvas-search {
  height: 60vh;
}

/* Header logo height */
.logo-header {
  max-height: 2.5rem;
}

/* Footer logo height */
.logo-footer {
  max-height: 3rem;
}

/* Footer Icon Logo */
.footer-icon-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 1.5rem auto 0;
}

/* Partner Profile Logo */
.partner-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.partner-logo-fallback {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Committee card shape */
.shape-committee-card {
  bottom: -0.75rem;
  right: -0.75rem;
  width: 98%;
  height: 98%;
  z-index: 0;
}

/* Checkout page styles */
.td-w-40 {
  width: 40%;
}

.textarea-h-100 {
  height: 100px;
}

.sticky-top-100 {
  top: 100px;
}

/* Policy Content Typography */
.policy-content p,
.policy-content li {
  line-height: 1.8;
}

.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5 {
  margin-bottom: 1.5rem;
}

/* Custom CTA Button Styles */
.btn-primary {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  box-shadow: 0 0.25rem 0.75rem rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7 !important;
  border-color: #0b5ed7 !important;
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.4);
  transform: translateY(-2px);
}

/* Footer Icon Logo */
.footer-icon-logo {
  width: 120px !important;
  max-width: 120px !important;
  height: auto;
  display: block;
  margin: 1.5rem auto 0;
}

/* Verification Page CAPTCHA Placeholder */
.captcha-placeholder {
  height: 48px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 1.5rem;
  letter-spacing: 5px;
}

.section-overlap {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* ============================================
   CONSORTIUM PAGE - UNIFIED STYLING
   ============================================ */

/* Consortium Status Cards */
.status-card {
  background: #ffffff !important;
  border: 1px solid rgba(13, 110, 253, 0.1) !important;
  border-top: 4px solid #0d6efd !important;
  border-radius: 0.625rem !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.03);
  z-index: 0;
  transition: all 0.6s ease;
}

.status-card:hover::before {
  right: -50px;
  background: rgba(13, 110, 253, 0.08);
}

.status-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 1rem 3rem rgba(13, 110, 253, 0.2) !important;
  border-top-color: #0d6efd !important;
}

.status-card .card-body {
  position: relative;
  z-index: 1;
}

.status-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.status-card:hover .status-icon {
  background: rgba(13, 110, 253, 0.12);
  transform: scale(1.1);
}

.status-card-primary {
  border-top-color: #0d6efd !important;
}

.status-card-primary:hover {
  border-top-color: #0d6efd !important;
  box-shadow: 0 1rem 3rem rgba(13, 110, 253, 0.25) !important;
}

.status-card-info {
  border-top-color: #0dcaf0 !important;
}

.status-card-info .status-icon {
  color: #0dcaf0;
}

.status-card-info:hover {
  box-shadow: 0 1rem 3rem rgba(13, 202, 240, 0.2) !important;
}

.status-card-success {
  border-top-color: #198754 !important;
}

.status-card-success .status-icon {
  color: #198754;
}

.status-card-success:hover {
  box-shadow: 0 1rem 3rem rgba(25, 135, 84, 0.2) !important;
}

.status-card-warning {
  border-top-color: #ff9800 !important;
}

.status-card-warning .status-icon {
  color: #ff9800;
}

.status-card-warning:hover {
  box-shadow: 0 1rem 3rem rgba(255, 152, 0, 0.2) !important;
}

/* ============================================
   MODERN STATUS CARD DESIGN (NEW)
   ============================================ */

.status-card-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.875rem;
  padding: 1.5rem;
  padding-top: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.status-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.12);
}

.status-card-header {
  height: 4px;
  width: 100%;
  margin: 0 -1.5rem 0 -1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.875rem 0.875rem 0 0;
}

.status-card-modern-primary .status-card-header {
  background: linear-gradient(90deg, #0d6efd 0%, #0dcaf0 100%);
}

.status-card-modern-info .status-card-header {
  background: linear-gradient(90deg, #0dcaf0 0%, #20c997 100%);
}

.status-card-modern-success .status-card-header {
  background: linear-gradient(90deg, #198754 0%, #0dcaf0 100%);
}

.status-card-modern-warning .status-card-header {
  background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
}

.status-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(13, 110, 253, 0.08);
  transition: all 0.3s ease;
}

.status-card-modern-primary .status-card-icon {
  color: #0d6efd;
}

.status-card-modern-info .status-card-icon {
  color: #0dcaf0;
}

.status-card-modern-success .status-card-icon {
  color: #198754;
}

.status-card-modern-warning .status-card-icon {
  color: #ff9800;
}

.status-card-modern:hover .status-card-icon {
  background: rgba(13, 110, 253, 0.12);
  transform: scale(1.15);
}

.status-card-body {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-value-modern {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #212529;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #adb5bd;
  line-height: 1.4;
}

.status-card .stat-value {
  font-size: 2rem !important;
  letter-spacing: -0.02rem;
  color: #0d6efd !important;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Institutional Card Enhancement */
.institutional-card {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0.625rem !important;
  transition: all 0.3s ease;
}

.institutional-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.1) !important;
  border-color: rgba(13, 110, 253, 0.15) !important;
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
}

/* Code Window Styling */
.code-window {
  background: #1e1e1e;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-window-header {
  background: #2d2d2d;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-window-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-window-header .dot-red {
  background: #ff5f57;
}

.code-window-header .dot-yellow {
  background: #ffbd2e;
}

.code-window-header .dot-green {
  background: #28c940;
}

/* Code Block */
.code-block {
  background: transparent !important;
  padding: 1.5rem !important;
  margin: 0 !important;
  font-family: 'Courier New', 'Monaco', monospace;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  color: #ffffff !important;
  border: none !important;
  overflow-x: auto !important;
  white-space: pre-wrap !important;
  word-break: break-word !important;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
}

.code-block pre {
  margin: 0;
  font-family: inherit;
}

.code-block code {
  color: #ffffff !important;
  font-family: inherit;
}

.code-block::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.code-block::-webkit-scrollbar-track {
  background: transparent;
}

.code-block::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.code-block::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.8) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Trust Flow Line */
.trust-flow-line {
  height: 2px;
  background: linear-gradient(to right, #0d6efd, #0dcaf0);
  position: relative;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.trust-flow-line:hover {
  opacity: 0.5;
}

/* Badge Styling */
.slogan-badge {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 600;
  border: 1px solid rgba(13, 110, 253, 0.2);
  transition: all 0.3s ease;
}

.slogan-badge:hover {
  background: rgba(13, 110, 253, 0.15);
  border-color: rgba(13, 110, 253, 0.3);
}

/* Hover Lift Effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(13, 110, 253, 0.15) !important;
}

/* Brand Logo Filter */
.brand-filter {
  height: 35px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-filter:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pulse Animation */
.pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #0dcaf0;
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 10px rgba(13, 202, 240, 0.5);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .code-block {
    font-size: 0.75rem !important;
    padding: 1rem !important;
  }
  
  .status-card .stat-value {
    font-size: 1.5rem !important;
  }
  
  .trust-flow-line {
    display: none;
  }
  
  .institutional-card {
    margin-bottom: 0.5rem;
  }
  
  .timeline-item {
    padding-left: 3.5rem;
  }
  
  .timeline-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 1rem !important;
  }
  
  .status-card-modern {
    padding: 1.25rem;
    min-height: 200px;
  }
  
  .stat-value-modern {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .status-card-header {
    margin-bottom: 1.25rem;
  }
}

/* ============================================
   TIMELINE & PROCESS WRAPPER STYLES
   ============================================ */

.process-wrapper {
  position: relative;
}

.process-wrapper.timeline {
  padding-left: 0;
  margin-left: 0;
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  width: 2px;
  height: calc(100% - 1rem);
  background: linear-gradient(to bottom, rgba(13, 110, 253, 0.3), transparent);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.15) !important;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  font-size: 1.25rem;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.05);
}

.timeline-item:hover .timeline-icon {
  background: rgba(13, 110, 253, 0.25) !important;
  box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.1);
  transform: scale(1.1);
}

.timeline-item h4 {
  font-weight: 700;
  color: #212529;
  transition: color 0.3s ease;
}

.timeline-item:hover h4 {
  color: #0d6efd;
}

/* ============================================
   INDUSTRY CARDS STYLES
   ============================================ */

.industry-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(13, 110, 253, 0.15);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.industry-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13, 110, 253, 0.95);
  color: white;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 0.25rem 0.75rem rgba(13, 110, 253, 0.3);
}

.industry-card .card-body {
  display: flex;
  flex-direction: column;
}

.industry-card h4 {
  color: #212529;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  flex-grow: 1;
  font-size: 0.9rem;
}

/* ============================================
   AI FEATURE ITEMS
   ============================================ */

.ai-feature-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(13, 110, 253, 0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 110, 253, 0.05);
}

.ai-feature-item:hover {
  background: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.1);
  transform: translateX(4px);
}
