/* ========================================
   iValue CoE Redesign - Design System
   Modern Dark Glass-morphism Theme
   ======================================== */

/* ==================== CSS Custom Properties ==================== */
:root {
  /* Background Layers */
  --bg-primary: #070B18;
  --bg-secondary: #0A1024;
  --bg-tertiary: #0F1B3D;

  /* Glass Surfaces */
  --glass-base: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Accents */
  --accent-primary: #00E5D8;
  --accent-secondary: #5B8CFF;
  --accent-warning: #FF6B6B;
  --accent-success: #00E5D8;

  /* Typography */
  --text-primary: #E6EAF2;
  --text-secondary: #9AA4C7;
  --text-muted: #6B7694;

  --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --h1-size: 72px;
  --h1-line-height: 1.1;
  --h1-weight: 700;

  --h2-size: 48px;
  --h2-line-height: 1.2;
  --h2-weight: 600;

  --h3-size: 32px;
  --h3-line-height: 1.3;
  --h3-weight: 600;

  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.02em;

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ==================== Base Styles ==================== */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-weight);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
}

h5 {
  font-size: var(--h5-size);
  line-height: var(--h5-line-height);
  color: var(--text-secondary);
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

/* ==================== Glass Morphism Components ==================== */
.glass-card {
  background: var(--glass-base);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.15);
}

.glass-nav {
  background: rgba(7, 11, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-modal {
  background: var(--bg-secondary);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.glass-input {
  background: var(--glass-base);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.glass-input:focus {
  background: var(--glass-hover);
  border-color: var(--accent-primary);
  outline: none;
}

.glass-input::placeholder {
  color: var(--text-muted);
}

/* ==================== Buttons ==================== */
.btn-primary {
  background: linear-gradient(135deg, #00E5D8, #00B8B0);
  color: #070B18;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 216, 0.3);
  color: #070B18;
}

.btn-secondary {
  background: var(--glass-base);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ==================== Navigation ==================== */
.navbar-redesign {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 11, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-redesign .navbar-brand {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.navbar-redesign .navbar-brand span {
  color: var(--accent-primary);
}

.navbar-redesign .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-fast);
  padding: 8px 16px;
}

.navbar-redesign .nav-link:hover,
.navbar-redesign .nav-link.active {
  color: var(--text-primary);
}

/* ==================== Hero Section ==================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://cdn.ivaluetv.com/public/coeherobg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(7, 11, 24, 0.85) 0%, 
    rgba(7, 11, 24, 0.75) 50%, 
    rgba(7, 11, 24, 0.9) 100%);
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 229, 216, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(91, 140, 255, 0.12) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Carousel */
.hero-section .carousel {
  margin-bottom: 40px;
}

.hero-section .carousel-inner {
  padding: 0 20px;
}

.hero-section .carousel-item h2 {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  padding: 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Glass Search Input */
.glass-input {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 216, 0.3) !important;
  border-radius: 16px;
  color: var(--text-primary) !important;
  padding: 16px 24px;
  font-size: 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 4px rgba(0, 229, 216, 0.1),
              0 12px 40px rgba(0, 229, 216, 0.2);
  outline: none;
}

.glass-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Badge Redesign */
.badge-redesign {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.badge-redesign:hover {
  background: rgba(0, 229, 216, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.2);
}

.badge-redesign:active {
  transform: translateY(0);
}

/* Tags Container */
#tagsDiv {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

/* ==================== Grid Layouts ==================== */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ==================== Cards ==================== */
.feature-card {
  background: var(--glass-base);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: 16px;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

/* Gradient Variations */
.feature-card.gradient-1::before {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.15), rgba(91, 140, 255, 0.15));
}

.feature-card.gradient-2::before {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
}

.feature-card.gradient-3::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
}

.feature-card.gradient-4::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
}

.feature-card.gradient-5::before {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.15));
}

.feature-card.gradient-6::before {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(239, 68, 68, 0.15));
}

.feature-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 229, 216, 0.2);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--text-primary);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: 20px;
}

/* Icon gradient backgrounds matching card gradients */
.gradient-1 .icon-box::before {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.3), rgba(91, 140, 255, 0.3));
}

.gradient-2 .icon-box::before {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.3));
}

.gradient-3 .icon-box::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
}

.gradient-4 .icon-box::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
}

.gradient-5 .icon-box::before {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(239, 68, 68, 0.3));
}

.gradient-6 .icon-box::before {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(239, 68, 68, 0.3));
}

.feature-card:hover .icon-box::before {
  opacity: 1;
}

.feature-card:hover .icon-box {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.3);
}

.icon-box i {
  font-size: 40px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.feature-card:hover .icon-box i {
  color: #fff;
  transform: scale(1.1);
}

/* ==================== Modals ==================== */
.modal-redesign .modal-content {
  background: var(--bg-secondary);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  color: var(--text-primary);
}

.modal-redesign .modal-header {
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 32px;
}

.modal-redesign .modal-title {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
}

.modal-redesign .modal-body {
  padding: 32px;
}

.modal-redesign .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.modal-redesign .btn-close:hover {
  opacity: 1;
}

/* ==================== Forms ==================== */
.form-control-redesign {
  background: var(--glass-base);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  transition: var(--transition-fast);
  width: 100%;
}

.form-control-redesign:focus {
  background: var(--glass-hover);
  border-color: var(--accent-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 229, 216, 0.1);
}

.form-control-redesign::placeholder {
  color: var(--text-muted);
}

.form-label-redesign {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* ==================== Sections ==================== */
.section-redesign {
  padding: 100px 0;
  position: relative;
}

/* ==================== About Section ==================== */
.about-section-redesign {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.about-section-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.about-content-box {
  background: var(--glass-base);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  height: 100%;
  transition: var(--transition-smooth);
}

.about-content-box:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 229, 216, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.1);
}

.about-content-box h3 {
  color: var(--accent-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-content-box h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.about-content-box p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.1), rgba(91, 140, 255, 0.1));
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.about-image-container:hover::before {
  opacity: 1;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.btn-read-more::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.5s ease;
}

.btn-read-more:hover::before {
  left: 100%;
}

.btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.4);
  color: #fff;
}

.btn-read-more i {
  transition: var(--transition-fast);
}

.btn-read-more:hover i {
  transform: translateX(4px);
}

/* ==================== Contact Section ==================== */
.contact-section-redesign {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact-info-box {
  background: var(--glass-base);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.05), rgba(91, 140, 255, 0.05));
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}

.contact-info-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 216, 0.3);
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.1);
}

.contact-info-box:hover::before {
  opacity: 1;
}

.contact-info-box > * {
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.contact-info-box:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.4);
}

.contact-icon i {
  font-size: 24px;
  color: var(--bg-primary);
}

.contact-info-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-map-container {
  background: var(--glass-base);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  height: 100%;
  min-height: 500px;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.contact-map-container:hover {
  border-color: rgba(0, 229, 216, 0.3);
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.1);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 12px;
  border: none;
}

/* ==================== Footer Section ==================== */
.footer-redesign {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #050812 100%);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
  position: relative;
}

.footer-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 12px;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer-links a:hover i {
  opacity: 1;
}

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-logo {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  max-width: 180px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--glass-base);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 18px;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-color: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.3);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent-secondary);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--accent-primary);
  font-size: 18px;
  margin-top: 2px;
}

.footer-newsletter {
  margin-top: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--glass-base);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  border-radius: 8px;
  color: var(--bg-primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.4);
}

/* ==================== Modal Redesign ==================== */
.modal-redesign .modal-content {
  background: linear-gradient(135deg, rgba(7, 11, 24, 0.98) 0%, rgba(10, 15, 35, 0.98) 100%);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.modal-redesign .modal-header {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.08), rgba(91, 140, 255, 0.08));
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 32px;
  position: relative;
}

.modal-redesign .modal-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.modal-redesign .modal-header h2,
.modal-redesign .modal-header .modalheaderclass {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-redesign .modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  opacity: 1;
  transition: var(--transition-fast);
  padding: 8px;
  width: 32px;
  height: 32px;
}

.modal-redesign .modal-header .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 59, 48, 0.2);
  border-color: rgba(255, 59, 48, 0.4);
  transform: rotate(90deg);
}

.modal-redesign .modal-body {
  padding: 32px;
  color: var(--text-secondary);
}

.modal-redesign .scrollable-content {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.modal-redesign .scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.modal-redesign .scrollable-content::-webkit-scrollbar-track {
  background: var(--glass-base);
  border-radius: 10px;
}

.modal-redesign .scrollable-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
}

.modal-redesign .scrollable-content::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* OEM Image Boxes in Modals */
.modal-redesign .box-custom-modal {
  background: var(--glass-base);
  /* backdrop-filter: blur(16px); */
  background-color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.modal-redesign .box-custom-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.05), rgba(91, 140, 255, 0.05));
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal-redesign .box-custom-modal:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 216, 0.4);
  box-shadow: 0 12px 40px rgba(0, 229, 216, 0.15);
}

.modal-redesign .box-custom-modal:hover::before {
  opacity: 1;
}

.modal-redesign .box-custom-modal img {
  position: relative;
  z-index: 1;
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
}

/* Modal Content Styling */
.modal-redesign p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.modal-redesign h3,
.modal-redesign h4,
.modal-redesign h5 {
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.modal-redesign ul,
.modal-redesign ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.modal-redesign ul li,
.modal-redesign ol li {
  margin-bottom: 8px;
}

/* Table Styling in Modals */
.modal-redesign .table {
  color: var(--text-secondary);
  border-color: var(--glass-border);
  margin-bottom: 0;
  background: transparent;
}

.modal-redesign .table thead {
  /* background: linear-gradient(135deg, rgba(0, 229, 216, 0.1), rgba(91, 140, 255, 0.1)); */
  background: #0b2f4f;
  position: sticky;
  top: -1px;
  z-index: 10;
    transition: all 0.3s ease;
}


.modal-redesign .table thead.scrolled {
  background: rgba(7, 11, 24, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.modal-redesign .table thead th {
  color: var(--text-primary);
  font-weight: 600;
  border-color: var(--glass-border);
  padding: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
}

.modal-redesign .table tbody {
  background: transparent;
}

.modal-redesign .table tbody tr {
  border-color: var(--glass-border);
  transition: var(--transition-fast);
  background: transparent;
}

.modal-redesign .table tbody tr:hover {
  background: rgba(0, 229, 216, 0.05);
}

.modal-redesign .table tbody td,
.modal-redesign .table tbody th {
  color: var(--text-secondary);
  border-color: var(--glass-border);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  background: transparent;
}

.modal-redesign .table tbody th {
  color: var(--text-primary);
  font-weight: 600;
}

.modal-redesign .table-bordered {
  border: 1px solid var(--glass-border);
}

.modal-redesign .border-primary {
  border-color: var(--accent-primary) !important;
}

/* Modal Backdrop */
.modal-redesign.show {
  backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  opacity: 0.8;
  background: rgba(7, 11, 24, 0.9);
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
  .modal-redesign .modal-header {
    padding: 20px 24px;
  }
  
  .modal-redesign .modal-header h2,
  .modal-redesign .modal-header .modalheaderclass {
    font-size: 20px;
  }
  
  .modal-redesign .modal-body {
    padding: 24px 20px;
  }
  
  .modal-redesign .box-custom-modal {
    height: 80px;
  }
  
  .modal-redesign .scrollable-content {
    max-height: 400px;
  }
  
  .modal-redesign .table {
    font-size: 13px;
  }
  
  .modal-redesign .table thead th,
  .modal-redesign .table tbody td,
  .modal-redesign .table tbody th {
    padding: 10px 12px;
  }
}

.section-header-redesign {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-redesign h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.section-header-redesign h2.text-gradient {
  display: inline-block;
}

.section-header-redesign p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== OEM/Clients Section ==================== */
.oem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.oem-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.oem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.05), rgba(91, 140, 255, 0.05));
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.oem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 216, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 229, 216, 0.2),
              0 0 20px rgba(0, 229, 216, 0.1);
}

.oem-card:hover::before {
  opacity: 1;
}

.oem-card img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.oem-card:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 229, 216, 0.5));
  transform: scale(1.05);
}

/* Special handling for logos that need color */
.oem-card.colored-logo img {
  filter: none;
  opacity: 0.9;
}

.oem-card.colored-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(0, 229, 216, 0.4));
  opacity: 1;
}

/* ==================== Footer ==================== */
.footer-redesign {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
  margin-top: 100px;
}

.footer-redesign h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-redesign ul {
  list-style: none;
  padding: 0;
}

.footer-redesign ul li {
  margin-bottom: 12px;
}

.footer-redesign a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-redesign a:hover {
  color: var(--accent-primary);
}

/* ==================== Utilities ==================== */
.container-redesign {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
}

.glow-accent {
  box-shadow: 0 0 20px rgba(0, 229, 216, 0.3);
}

.blur-bg {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

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

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==================== Responsive Typography ==================== */
@media (max-width: 768px) {
  :root {
    --h1-size: 40px;
    --h2-size: 32px;
    --h3-size: 24px;
  }

  .section-redesign {
    padding: 60px 0;
  }

  .glass-card,
  .feature-card {
    padding: 24px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--glass-hover);
}

/* ==================== Image Styling ==================== */
.img-fluid-redesign {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.img-glow {
  box-shadow: 0 10px 40px rgba(0, 229, 216, 0.2);
  border-radius: 16px;
}

/* ==================== Logo Box ==================== */
.logo-box {
  background: var(--glass-base);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  min-height: 100px;
}

.logo-box:hover {
  background: var(--glass-hover);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.logo-box:hover img {
  opacity: 1;
}

/* ==================== Badge ==================== */
.badge-redesign {
  background: var(--glass-base);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== Loading States ==================== */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== Override Bootstrap Dark Theme ==================== */
.modal-backdrop {
  background-color: rgba(7, 11, 24, 0.8);
}

.dropdown-menu {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.dropdown-item {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--glass-base);
  color: var(--text-primary);
}

/* ==================== Enhanced Navigation Styles ==================== */

/* Header scrolled state - keep dark theme */
.navbar-redesign.header-scrolled {
  background: rgba(7, 11, 24, 0.95) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 229, 216, 0.5);
  box-shadow: 0 8px 32px rgba(0, 229, 216, 0.1);
  transition: all 0.3s ease;
}

/* Mega Dropdown Menu Styling */
.navbar-redesign .mega-dropdown {
  background: linear-gradient(135deg, rgba(10, 16, 36, 0.98), rgba(15, 27, 61, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 28px !important;
  margin-top: 16px;
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.25), 
              0 0 0 1px rgba(0, 229, 216, 0.15),
              0 0 50px rgba(91, 140, 255, 0.15);
  width: 880px !important;
  max-width: 90vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: slideDownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* Quick Links Dropdown - Premium Design */
.navbar-redesign .quick-links-dropdown {
  background: linear-gradient(135deg, rgba(10, 16, 36, 0.98), rgba(15, 27, 61, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 28px !important;
  margin-top: 16px;
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.25), 
              0 0 0 1px rgba(0, 229, 216, 0.15),
              0 0 50px rgba(91, 140, 255, 0.15);
  width: 650px !important;
  position: absolute;
  animation: slideDownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.navbar-redesign .quick-links-dropdown-small {
  background: linear-gradient(135deg, rgba(10, 16, 36, 0.98), rgba(15, 27, 61, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 28px !important;
  margin-top: 16px;
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.25), 
              0 0 0 1px rgba(0, 229, 216, 0.15),
              0 0 50px rgba(91, 140, 255, 0.15);
  width: 800px !important;
  position: absolute;
  animation: slideDownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.navbar-redesign .quick-links-dropdown .dropdown-header {
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 0 18px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(0, 229, 216, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-redesign .quick-links-dropdown .dropdown-header::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

/* Quick Links Grid Layout */
.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.quick-link-card {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 14px 16px !important;
  background: rgba(0, 229, 216, 0.05);
  border: 1px solid rgba(0, 229, 216, 0.15);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s ease;
  border-radius: 12px 0 0 12px;
}

.quick-link-card:hover {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.15), 
    rgba(91, 140, 255, 0.15));
  border-color: var(--accent-primary);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.2);
}

.quick-link-card:hover::before {
  width: 4px;
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.2), 
    rgba(91, 140, 255, 0.2));
  border: 1px solid rgba(0, 229, 216, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-link-icon i {
  font-size: 24px;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.3), 
    rgba(91, 140, 255, 0.3));
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.3);
}

.quick-link-card:hover .quick-link-icon i {
  transform: scale(1.1);
}

.quick-link-content {
  flex: 1;
  min-width: 0;
}

.quick-link-content h6 {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  transition: color 0.3s ease;
}

.quick-link-content p {
  color: var(--text-secondary);
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.quick-link-card:hover .quick-link-content h6 {
  color: var(--accent-primary);
}

.quick-link-card:hover .quick-link-content p {
  color: var(--text-primary);
}

/* Quick Links Image Container */
.quick-links-image-container {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.12), 
    rgba(91, 140, 255, 0.12));
  border: 1px solid rgba(0, 229, 216, 0.35);
  border-radius: 14px;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quick-links-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 216, 0.15) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.quick-links-image {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 229, 216, 0.3));
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.quick-links-image:hover {
  transform: scale(1.05);
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Standard Dropdown Styling (for other simple dropdowns if needed) */
.navbar-redesign .dropdown-menu:not(.quick-links-dropdown):not(.mega-dropdown) {
  background: linear-gradient(135deg, rgba(10, 16, 36, 0.98), rgba(15, 27, 61, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 20px 60px rgba(0, 229, 216, 0.25), 
              0 0 0 1px rgba(0, 229, 216, 0.15),
              0 0 50px rgba(91, 140, 255, 0.15);
  min-width: 280px;
  animation: slideDownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* Mega dropdown columns spacing */
.navbar-redesign .mega-dropdown .row {
  margin: 0 -12px;
}

.navbar-redesign .mega-dropdown .row > div {
  padding: 0 12px;
}

/* Mega dropdown scrollable sections */
.mega-dropdown-scroll {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) rgba(0, 229, 216, 0.05);
}

.mega-dropdown-scroll::-webkit-scrollbar {
  width: 7px;
}

.mega-dropdown-scroll::-webkit-scrollbar-track {
  background: rgba(0, 229, 216, 0.05);
  border-radius: 10px;
  margin: 4px 0;
}

.mega-dropdown-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
  transition: background 0.3s ease;
}

.mega-dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.navbar-redesign .mega-dropdown .dropdown-item {
  color: var(--text-secondary);
  padding: 11px 18px;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  will-change: transform;
}

.navbar-redesign .mega-dropdown .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

.navbar-redesign .mega-dropdown .dropdown-item:hover {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.18), 
    rgba(91, 140, 255, 0.18));
  color: var(--accent-primary);
  transform: translateX(8px);
  padding-left: 26px;
  box-shadow: 0 4px 12px rgba(0, 229, 216, 0.15);
}

.navbar-redesign .mega-dropdown .dropdown-item:hover::before {
  height: 70%;
}

.navbar-redesign .mega-dropdown .dropdown-item:active {
  transform: translateX(6px) scale(0.98);
}

.navbar-redesign .mega-dropdown .dropdown-header {
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 0 18px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(0, 229, 216, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-redesign .mega-dropdown .dropdown-header::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

/* Offerings Info Box */
.offerings-info {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.12), 
    rgba(91, 140, 255, 0.12));
  border: 1px solid rgba(0, 229, 216, 0.35);
  border-radius: 14px;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.offerings-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 216, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.offerings-info > * {
  position: relative;
  z-index: 1;
}

.offerings-info .text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.offerings-info .text-secondary {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.offering-stats {
  margin-top: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(0, 229, 216, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.stat-item:hover {
  background: rgba(0, 229, 216, 0.15);
  transform: translateX(4px);
  border-left-color: var(--accent-secondary);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-primary);
  min-width: 45px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 500;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #070B18;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 16px rgba(0, 229, 216, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.5s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 229, 216, 0.45);
  color: #070B18;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 229, 216, 0.35);
}

/* Responsive optimization */
@media (max-width: 1200px) {
  .navbar-redesign .mega-dropdown {
    width: 820px !important;
    padding: 24px !important;
  }
  
  .mega-dropdown-scroll {
    max-height: 320px;
  }
  
  .offerings-info {
    min-height: 320px;
  }
}

@media (max-width: 992px) {
  .navbar-redesign .mega-dropdown {
    width: 95vw !important;
    left: 2.5vw;
    transform: none;
    border-radius: 12px;
    margin-top: 10px;
    padding: 20px !important;
  }
  
  .mega-dropdown-scroll {
    max-height: 280px;
  }
  
  .offerings-info {
    min-height: auto;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-redesign .mega-dropdown {
    width: 100vw !important;
    left: 0;
    right: 0;
    border-radius: 0 0 16px 16px;
    margin-top: 0;
    padding: 16px !important;
  }
  
  .mega-dropdown-scroll {
    max-height: 250px;
  }
  
  .navbar-redesign .mega-dropdown .dropdown-item {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 216, 0.4);
  color: #070B18;
}

/* Modern Dropdown Menu Styling */
.navbar-redesign .dropdown-menu {
  background: linear-gradient(135deg, rgba(10, 16, 36, 0.98), rgba(15, 27, 61, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 12px;
  margin-top: 12px;
  box-shadow: 0 16px 48px rgba(0, 229, 216, 0.2), 
              0 0 0 1px rgba(0, 229, 216, 0.1),
              0 0 40px rgba(91, 140, 255, 0.1);
  min-width: 280px;
  animation: slideDownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.navbar-redesign .dropdown-item {
  color: var(--text-secondary);
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.navbar-redesign .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  transition: height 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.navbar-redesign .dropdown-item:hover {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.15), 
    rgba(91, 140, 255, 0.15));
  color: var(--accent-primary);
  transform: translateX(8px);
  padding-left: 24px;
}

.navbar-redesign .dropdown-item:hover::before {
  height: 60%;
}

.navbar-redesign .dropdown-item:active {
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.25), 
    rgba(91, 140, 255, 0.25));
  transform: translateX(6px) scale(0.98);
}

/* Nested dropdown for Offerings */
.navbar-redesign .dropdown-submenu {
  position: relative;
}

.navbar-redesign .dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -12px;
  margin-left: 8px;
}

.navbar-redesign .dropdown-submenu > .dropdown-menu.show {
  display: block;
}

/* Scrollable dropdown for long lists */
.navbar-redesign .dropdown-menu-scroll {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.navbar-redesign .dropdown-menu-scroll::-webkit-scrollbar {
  width: 6px;
}

.navbar-redesign .dropdown-menu-scroll::-webkit-scrollbar-track {
  background: rgba(0, 229, 216, 0.05);
  border-radius: 10px;
}

.navbar-redesign .dropdown-menu-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
}

.navbar-redesign .dropdown-menu-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

/* Dropdown header styling */
.navbar-redesign .dropdown-header {
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 18px 12px;
  margin-bottom: 4px;
}

/* Dropdown divider styling */
.navbar-redesign .dropdown-divider {
  border-top: 1px solid rgba(0, 229, 216, 0.2);
  margin: 8px 0;
}

/* Dropdown toggle icons */
.navbar-redesign .dropdown-toggle::after {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.navbar-redesign .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Modern Button Styling */
/* Marketplace Button - Gradient with Glass Effect */
.navbar-redesign .btn-marketplace {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #070B18;
  padding: 12px 24px;
  margin-left: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.4),
              0 0 0 1px rgba(0, 229, 216, 0.3);
  letter-spacing: 0.5px;
}

.navbar-redesign .btn-marketplace::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  transition: left 0.6s ease;
}

.navbar-redesign .btn-marketplace i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.navbar-redesign .btn-marketplace:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.6),
              0 0 30px rgba(0, 229, 216, 0.4),
              0 0 0 1px rgba(0, 229, 216, 0.6);
  background: linear-gradient(135deg, #00FFF0, #7B9CFF);
  color: #000;
}

.navbar-redesign .btn-marketplace:hover::before {
  left: 100%;
}

.navbar-redesign .btn-marketplace:hover i {
  transform: rotate(-12deg) scale(1.1);
}

.navbar-redesign .btn-marketplace:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 6px 20px rgba(0, 229, 216, 0.5);
}

/* Login Button - Glass Morphism with Border */
.navbar-redesign .btn-login {
  background: rgba(0, 229, 216, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  padding: 12px 24px;
  margin-left: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 229, 216, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.navbar-redesign .btn-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 229, 216, 0.2), 
    rgba(91, 140, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-redesign .btn-login i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.navbar-redesign .btn-login span {
  position: relative;
  z-index: 1;
}

.navbar-redesign .btn-login:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  background: rgba(0, 229, 216, 0.15);
  color: var(--accent-primary);
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.3),
              0 0 20px rgba(0, 229, 216, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar-redesign .btn-login:hover::before {
  opacity: 1;
}

.navbar-redesign .btn-login:hover i {
  transform: translateX(3px);
}

.navbar-redesign .btn-login:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 229, 216, 0.25);
}

/* Legacy getstarted class support */
.navbar-redesign .getstarted {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #070B18;
  padding: 12px 28px;
  margin-left: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.3);
  letter-spacing: 0.5px;
}

.navbar-redesign .getstarted:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.5);
  background: linear-gradient(135deg, #00FFF0, #7B9CFF);
}

/* Nav link hover effects */
.navbar-redesign .nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 16px;
}

.navbar-redesign .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s ease;
}

.navbar-redesign .nav-link:hover,
.navbar-redesign .nav-link.active {
  color: var(--accent-primary);
}

.navbar-redesign .nav-link:hover::after,
.navbar-redesign .nav-link.active::after {
  width: 70%;
}

/* Dropdown divider styling */
.navbar-redesign .dropdown-divider {
  border-color: rgba(0, 229, 216, 0.2);
  margin: 8px 0;
}

/* Category headers in dropdowns */
.navbar-redesign .dropdown-header {
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px 4px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
  /* Mega Dropdown Adjustments */
  .navbar-redesign .mega-dropdown {
    width: 720px;
    max-width: 95vw;
  }

  .navbar-redesign .mega-dropdown .row > div {
    padding: 0 8px;
  }

  .navbar-redesign .mega-dropdown-scroll {
    max-height: 280px;
  }

  /* Quick Links Dropdown */
  .navbar-redesign .quick-links-dropdown {
    width: 600px;
    max-width: 95vw;
  }

  /* Button Adjustments */
  .navbar-redesign .btn-marketplace,
  .navbar-redesign .btn-login {
    padding: 10px 20px;
    font-size: 13px;
    margin-left: 8px;
  }

  .navbar-redesign .btn-marketplace i,
  .navbar-redesign .btn-login i {
    font-size: 14px;
  }
}

/* Mobile View (< 768px) */
@media (max-width: 767px) {
  /* Header Adjustments */
  .navbar-redesign {
    padding: 12px 0;
  }

  /* Logo Size */
  .navbar-redesign .logo img {
    max-height: 32px;
  }

  /* Show mobile toggle button */
  .mobile-nav-toggle {
    display: block !important;
  }

  /* Hide navigation by default on mobile */
  .navbar-redesign:not(.navbar-mobile) .navbar > ul {
    display: none !important;
  }

  /* Show navigation when mobile menu is active */
  .navbar-redesign.navbar-mobile .navbar > ul {
    display: block !important;
    position: absolute;
    top: 80px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    margin: 0;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(10, 16, 36, 0.95), rgba(15, 27, 61, 0.95));
    border: 1px solid rgba(0, 229, 216, 0.3);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 229, 216, 0.2);
    flex-direction: column;
    align-items: stretch;
    width: auto;
  }

  /* Mobile Navigation Items */
  .navbar-redesign .navbar ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
  }

  .navbar-redesign .nav-item {
    width: 100%;
    margin: 0;
  }

  .navbar-redesign.navbar-mobile .nav-link {
    display: block !important;
    padding: 14px 20px !important;
    width: 100%;
    font-size: 15px !important;
    color: var(--text-secondary) !important;
    border-bottom: 1px solid rgba(0, 229, 216, 0.1);
  }

  .navbar-redesign.navbar-mobile .nav-link:hover {
    color: var(--accent-primary) !important;
    background: rgba(0, 229, 216, 0.05);
  }

  .navbar-redesign .nav-link {
    padding: 12px 16px;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(0, 229, 216, 0.1);
  }

  /* Dropdowns Full Width on Mobile */
  .navbar-redesign .mega-dropdown,
  .navbar-redesign .quick-links-dropdown {
    width: 100% !important;
    max-width: 100vw;
    left: 0 !important;
    right: 0 !important;
    margin: 0;
    border-radius: 0;
    padding: 20px 16px !important;
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Mega Dropdown Mobile Layout */
  .navbar-redesign .mega-dropdown .row {
    margin: 0;
  }

  .navbar-redesign .mega-dropdown .col-md-4 {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }

  .navbar-redesign .mega-dropdown .col-md-4:last-child {
    margin-bottom: 0;
  }

  .navbar-redesign .mega-dropdown-scroll {
    max-height: 200px;
  }

  /* Quick Links Mobile Layout */
  .navbar-redesign .quick-links-dropdown .row {
    margin: 0;
  }

  .navbar-redesign .quick-links-dropdown .col-md-7,
  .navbar-redesign .quick-links-dropdown .col-md-5 {
    width: 100%;
    padding: 0;
  }

  .navbar-redesign .quick-links-dropdown .col-md-5 {
    margin-top: 20px;
  }

  /* Quick Link Cards Mobile */
  .quick-link-card {
    padding: 12px !important;
    margin-bottom: 8px;
  }

  .quick-link-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .quick-link-content h6 {
    font-size: 14px !important;
  }

  .quick-link-content p {
    font-size: 11px !important;
  }

  /* Image Container Mobile */
  .quick-links-image-container {
    min-height: 200px;
  }

  .quick-links-image {
    max-height: 180px;
  }

  /* Offerings Info Box Mobile */
  .offerings-info {
    margin-top: 20px;
  }

  .stat-number {
    font-size: 20px !important;
  }

  .stat-label {
    font-size: 11px !important;
  }

  /* Buttons Stack Vertically on Mobile */
  .navbar-redesign.navbar-mobile .btn-marketplace,
  .navbar-redesign.navbar-mobile .btn-login {
    display: flex !important;
    width: calc(100% - 40px) !important;
    margin: 10px 20px !important;
    padding: 14px 20px !important;
    justify-content: center;
    font-size: 14px;
  }

  .navbar-redesign .btn-marketplace,
  .navbar-redesign .btn-login {
    width: 100%;
    margin: 8px 0;
    padding: 14px 20px;
    justify-content: center;
    font-size: 14px;
  }

  .navbar-redesign .btn-marketplace i,
  .navbar-redesign .btn-login i {
    font-size: 16px;
  }

  /* Dropdown Items Mobile */
  .navbar-redesign.navbar-mobile .dropdown-menu {
    position: static !important;
    display: none !important;
    margin: 5px 15px !important;
    padding: 10px 0 !important;
    background: rgba(0, 229, 216, 0.08) !important;
    border: 1px solid rgba(0, 229, 216, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
  }

  .navbar-redesign.navbar-mobile .dropdown.show .dropdown-menu,
  .navbar-redesign.navbar-mobile .dropdown-menu.show,
  .navbar-redesign.navbar-mobile .dropdown-active {
    display: block !important;
  }

  .navbar-redesign.navbar-mobile .dropdown-item {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    color: var(--text-secondary) !important;
  }

  .navbar-redesign.navbar-mobile .dropdown-item:hover {
    color: var(--accent-primary) !important;
    background: rgba(0, 229, 216, 0.1) !important;
  }

  /* Mobile menu scrollbar */
  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar {
    width: 6px;
  }

  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar-track {
    background: rgba(0, 229, 216, 0.05);
    border-radius: 10px;
  }

  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
  }

  .navbar-redesign .dropdown-item {
    padding: 12px 16px;
    font-size: 13px;
  }

  /* Dropdown Headers Mobile */
  .navbar-redesign .dropdown-header {
    font-size: 11px;
    padding: 12px 16px 8px;
  }

  /* Nav Link Underline Effect Adjust */
  .navbar-redesign .nav-link::after {
    display: none;
  }

  /* Mobile Toggle Button Enhancement */
  .mobile-nav-toggle {
    color: var(--accent-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: all 0.3s ease;
    display: none;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-secondary);
    transform: scale(1.1);
  }

  /* Show mobile toggle on mobile */
  @media (max-width: 767px) {
    .mobile-nav-toggle {
      display: block;
    }
  }

  /* Hide desktop navbar on mobile */
  .navbar-redesign .navbar > ul {
    display: none;
  }

  /* Mobile Navbar Active State */
  .navbar-redesign.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(7, 11, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.3s;
    z-index: 9999;
  }

  .navbar-redesign.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--accent-primary);
    font-size: 32px;
    z-index: 10000;
  }

  .navbar-redesign.navbar-mobile .navbar > ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 16, 36, 0.95), rgba(15, 27, 61, 0.95));
    border: 1px solid rgba(0, 229, 216, 0.3);
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0, 229, 216, 0.2);
  }

  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar {
    width: 6px;
  }

  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar-track {
    background: rgba(0, 229, 216, 0.05);
    border-radius: 10px;
  }

  .navbar-redesign.navbar-mobile .navbar > ul::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
  }

  .navbar-redesign.navbar-mobile .nav-link {
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 229, 216, 0.1);
  }

  .navbar-redesign.navbar-mobile .nav-link:hover {
    color: var(--accent-primary);
    background: rgba(0, 229, 216, 0.05);
  }

  .navbar-redesign.navbar-mobile .btn-marketplace,
  .navbar-redesign.navbar-mobile .btn-login {
    width: calc(100% - 40px);
    margin: 10px 20px;
  }

  .navbar-redesign.navbar-mobile .dropdown-menu {
    position: static !important;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    background: rgba(0, 229, 216, 0.08);
    border: 1px solid rgba(0, 229, 216, 0.2);
    box-shadow: none;
    backdrop-filter: none;
    transform: none !important;
  }

  .navbar-redesign.navbar-mobile .dropdown.show .dropdown-menu,
  .navbar-redesign.navbar-mobile .dropdown-menu.show {
    display: block;
  }

  .navbar-redesign.navbar-mobile .dropdown-item {
    color: var(--text-secondary);
    padding: 10px 20px;
    font-size: 14px;
  }

  .navbar-redesign.navbar-mobile .dropdown-item:hover {
    color: var(--accent-primary);
    background: rgba(0, 229, 216, 0.1);
  }

  /* Ensure dropdowns don't overflow */
  .navbar-redesign .dropdown-menu {
    position: absolute !important;
    transform: none !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 48px) !important;
    margin-bottom: 16px;
  }

  .hero-section .carousel-item h2 {
    font-size: clamp(16px, 4vw, 20px) !important;
    padding: 15px 10px;
  }

  .glass-input {
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 12px;
  }

  .badge-redesign {
    padding: 8px 16px;
    font-size: 13px;
    margin: 6px !important;
  }

  #tagsDiv {
    padding: 16px !important;
  }

  /* OEM Grid Mobile */
  .oem-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .oem-card {
    padding: 24px 16px;
    min-height: 100px;
  }

  .oem-card img {
    max-height: 60px;
  }
}

/* Small Mobile Devices (< 480px) */
@media (max-width: 480px) {
  /* Further reduce padding on small screens */
  .navbar-redesign .mega-dropdown,
  .navbar-redesign .quick-links-dropdown {
    padding: 16px 12px !important;
  }

  /* Smaller text for very small screens */
  .navbar-redesign .dropdown-item {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* Button text sizing */
  .navbar-redesign .btn-marketplace,
  .navbar-redesign .btn-login {
    font-size: 13px;
    padding: 12px 16px;
  }

  /* Quick link cards even more compact */
  .quick-link-card {
    padding: 10px !important;
  }

  .quick-link-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  .quick-link-content h6 {
    font-size: 13px !important;
  }

  .quick-link-content p {
    font-size: 10px !important;
    line-height: 1.3;
  }

  /* Image adjustments */
  .quick-links-image-container {
    min-height: 160px;
  }

  .quick-links-image {
    max-height: 140px;
  }

  /* Stat items compact */
  .stat-number {
    font-size: 18px !important;
  }

  .stat-label {
    font-size: 10px !important;
  }

  /* Mega dropdown scroll height */
  .navbar-redesign .mega-dropdown-scroll {
    max-height: 180px;
  }
}

/* Landscape Mobile Devices */
@media (max-width: 767px) and (orientation: landscape) {
  .navbar-redesign .mega-dropdown,
  .navbar-redesign .quick-links-dropdown {
    max-height: 60vh;
  }

  .navbar-redesign .mega-dropdown-scroll {
    max-height: 150px;
  }
}

/* iPad and Tablet Specific (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Adjust dropdown positioning for tablets */
  .navbar-redesign .mega-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-redesign .quick-links-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Two column layout for mega dropdown on tablets */
  .navbar-redesign .mega-dropdown .col-md-4:nth-child(1),
  .navbar-redesign .mega-dropdown .col-md-4:nth-child(2) {
    width: 50%;
    float: left;
  }

  .navbar-redesign .mega-dropdown .col-md-4:nth-child(3) {
    width: 100%;
    clear: both;
    margin-top: 20px;
  }

  /* Quick Links tablet layout */
  .navbar-redesign .quick-links-dropdown .col-md-7 {
    width: 60%;
  }

  .navbar-redesign .quick-links-dropdown .col-md-5 {
    width: 40%;
  }

  /* OEM Grid Tablet */
  .oem-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .navbar-redesign .mega-dropdown {
    width: 1000px;
  }

  .navbar-redesign .quick-links-dropdown {
    width: 720px;
  }
}

/* ==================== NEW MARKETPLACE DESIGN ==================== */

/* Main Wrapper */
.mkp-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* === LEFT SIDEBAR === */
.mkp-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  height: calc(100vh - 110px);
  max-height: calc(100vh - 110px);
}

.mkp-filter-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mkp-filter-header {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.15), rgba(91, 140, 255, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.mkp-filter-header h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mkp-filter-header i {
  color: #00E5D8;
  font-size: 20px;
}

.mkp-filter-body {
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  scroll-behavior: smooth;
}

.mkp-filter-body::-webkit-scrollbar {
  width: 6px;
}

.mkp-filter-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.mkp-filter-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00E5D8, #5B8CFF);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.mkp-filter-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00FFE5, #6B9CFF);
}

/* All Content Button */
.mkp-cat-all {
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  color: #070B18;
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.mkp-cat-all:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 229, 216, 0.3);
}

.mkp-cat-all i:first-child {
  font-size: 18px;
}

.mkp-cat-all i:last-child {
  margin-left: auto;
  font-size: 20px;
}

/* Category Sections */
.mkp-category {
  margin-bottom: 16px;
}

.mkp-cat-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mkp-cat-title:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mkp-cat-title i:first-child {
  color: #00E5D8;
  font-size: 16px;
}

.mkp-chevron {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 14px;
  color: #94A3B8;
}

.mkp-cat-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 28px;
}

.mkp-cat-items.mkp-show {
  max-height: 500px;
}

.mkp-show .mkp-chevron {
  transform: rotate(180deg);
}

.mkp-cat-item {
  color: #94A3B8;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 4px 0;
}

.mkp-cat-item:hover {
  color: #00E5D8;
  background: rgba(0, 229, 216, 0.05);
  transform: translateX(4px);
}

.mkp-cat-item i {
  font-size: 10px;
}

/* === RIGHT CONTENT === */
.mkp-content {
  flex: 1;
  min-width: 0;
}

.mkp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.mkp-title-section h2 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.mkp-title-section p {
  color: #94A3B8;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mkp-badge {
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.mkp-count {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* === SOLUTION CARDS === */
.mkp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.mkp-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mkp-card:hover {
  transform: translateY(-4px);
  border-color: #00E5D8;
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.2);
}

.mkp-card-logo {
  height: 160px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkp-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mkp-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mkp-card-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.mkp-card-desc {
  color: #94A3B8;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

.mkp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  color: #070B18;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.mkp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.35);
  color: #070B18;
}

.mkp-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mkp-btn:hover i {
  transform: translateX(3px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .mkp-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .mkp-wrapper {
    flex-direction: column;
    padding: 0 16px;
  }
  
  .mkp-sidebar {
    width: 100%;
  }
  
  .mkp-filter-card {
    position: static;
    max-height: 400px;
  }
  
  .mkp-grid {
    grid-template-columns: 1fr;
  }
  
  .mkp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mkp-title-section h2 {
    font-size: 24px;
  }
}

/* Solution Cards */
.marketplace-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.marketplace-card:hover {
  transform: translateY(-2px);
  border-color: #00E5D8;
  box-shadow: 0 12px 40px rgba(0, 229, 216, 0.15);
}

.marketplace-card-inner {
  display: flex;
  align-items: stretch;
}

.marketplace-card-logo-container {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.marketplace-card-logo {
  width: 100%;
  height: 150px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketplace-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.marketplace-card-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marketplace-card-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.marketplace-card-text {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.btn-marketplace-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  color: #070B18;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: none;
}

.btn-marketplace-card:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 229, 216, 0.35);
  color: #070B18;
}

.btn-marketplace-card i {
  transition: transform 0.3s ease;
}

.btn-marketplace-card:hover i {
  transform: translateX(3px);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.sidebar-header h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
}

.sidebar-header h3 i {
  color: var(--accent-primary);
}

.view-all-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.view-all-link:hover {
  color: var(--accent-secondary);
}

.sidebar-content {
  max-height: 100%;
  overflow-y: auto;
  padding-right: 8px;
  flex: 1;
  min-height: 0;
}

.sidebar-content::-webkit-scrollbar {
  width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: var(--glass-base);
  border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 16px;
}

.category-item.all-content .category-link {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.1), rgba(91, 140, 255, 0.1));
  border: 1px solid var(--accent-primary);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.category-item.all-content .category-link:hover {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.2), rgba(91, 140, 255, 0.2));
  transform: translateX(4px);
}

.category-header {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.category-header i {
  color: var(--accent-primary);
  font-size: 14px;
}

.subcategory-list {
  list-style: none;
  padding: 0 0 0 24px;
  margin: 0 0 12px 0;
}

.subcategory-item {
  margin-bottom: 8px;
}

.subcategory-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.subcategory-link:hover {
  color: var(--accent-primary);
  background: rgba(0, 229, 216, 0.05);
  transform: translateX(4px);
}

.subcategory-link i {
  font-size: 10px;
  opacity: 0;
  transition: var(--transition-fast);
}

.subcategory-link:hover i {
  opacity: 1;
}

.show-toggle {
  margin-top: 8px;
}

.show-more,
.show-less {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  transition: var(--transition-fast);
}

.show-more:hover,
.show-less:hover {
  color: var(--accent-secondary);
}

.view-all-category {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.view-all-category:hover {
  color: var(--accent-secondary);
  transform: translateX(4px);
}

.content-header {
  margin-bottom: 28px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .marketplace-container {
    flex-direction: column;
  }
  
  .marketplace-sidebar {
    width: 100%;
  }
  
  .sidebar-glass-card {
    position: static;
    max-height: 450px;
  }
  
  .marketplace-card-inner {
    flex-direction: column;
  }
  
  .marketplace-card-logo-container {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
  }
  
  .marketplace-card-logo {
    height: 130px;
  }
  
  .marketplace-card-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .marketplace-container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .sidebar-glass-card {
    padding: 20px;
  }
  
  .marketplace-card-logo {
    height: 110px;
  }
  
  .marketplace-card-content {
    padding: 20px;
  }
  
  .marketplace-card-title {
    font-size: 18px;
  }
}

.marketplace-card-logo {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.marketplace-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.marketplace-card-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marketplace-card-title {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.marketplace-card-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.btn-marketplace-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: var(--transition-fast);
  border: none;
  align-self: flex-start;
}

.btn-marketplace-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.4);
  color: var(--bg-primary);
}

.btn-marketplace-card i {
  transition: var(--transition-fast);
}

.btn-marketplace-card:hover i {
  transform: translateX(4px);
}

/* Marketplace Responsive */
@media (max-width: 992px) {
  .marketplace-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .marketplace-sidebar {
    position: static;
    height: auto;
  }
  
  .sidebar-glass-card {
    max-height: 500px;
  }
  
  .sidebar-content {
    max-height: 400px;
  }
  
  .marketplace-card-inner {
    flex-direction: column;
  }
  
  .marketplace-card-logo-container {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .marketplace-card-logo {
    height: 140px;
  }
  
  .marketplace-card-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .sidebar-glass-card {
    padding: 20px;
  }
  
  .marketplace-card-logo {
    height: 100px;
    margin-bottom: 20px;
  }
  
  .marketplace-card-title {
    font-size: 18px;
  }
  
  .marketplace-card-text {
    font-size: 14px;
  }
}


/* ============================================
   OVERVIEW PAGE STYLES (ovw-*)
   ============================================ */

/* === SECTION WRAPPER === */
.ovw-section {
  padding: 40px 0 80px;
}

/* === HERO CARD === */
.ovw-hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.ovw-hero-card:hover {
  border-color: rgba(0, 229, 216, 0.3);
  box-shadow: 0 8px 32px rgba(0, 229, 216, 0.1);
}

.ovw-logo-container {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ovw-logo {
  max-width: 200px;
  height: auto;
  display: block;
}

.ovw-hero-content {
  padding: 0 20px;
}

.ovw-title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ovw-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.ovw-btn-access {
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  color: #070B18;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.3);
}

.ovw-btn-access:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.4);
  color: #070B18;
}

/* === TABS CARD === */
.ovw-tabs-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.ovw-tabs {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.1), rgba(91, 140, 255, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  margin: 0;
  list-style: none;
  gap: 8px;
}

.ovw-tab-item {
  flex: 1;
  max-width: 200px;
}

.ovw-tab-link {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ovw-tab-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 216, 0.5);
  color: #FFFFFF;
}

.ovw-tab-link.active {
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  border-color: transparent;
  color: #070B18;
  font-weight: 600;
}

.ovw-tab-content {
  padding: 0;
}

.ovw-tab-pane {
  padding: 40px;
}

.ovw-section-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 229, 216, 0.3);
  display: inline-block;
}

.ovw-content-wrapper {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.ovw-content-wrapper h1,
.ovw-content-wrapper h2,
.ovw-content-wrapper h3,
.ovw-content-wrapper h4 {
  color: #FFFFFF;
  margin-top: 28px;
  margin-bottom: 16px;
  font-weight: 600;
}

.ovw-content-wrapper p {
  margin-bottom: 16px;
}

.ovw-content-wrapper ul,
.ovw-content-wrapper ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.ovw-content-wrapper li {
  margin-bottom: 8px;
}

.ovw-content-wrapper a {
  color: #00E5D8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ovw-content-wrapper a:hover {
  color: #5B8CFF;
}

.ovw-content-wrapper table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.ovw-content-wrapper table th,
.ovw-content-wrapper table td {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.ovw-content-wrapper table th {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-weight: 600;
}

/* === VIDEOS GRID === */
.ovw-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.ovw-video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ovw-video-card:hover {
  transform: translateY(-4px);
  border-color: #00E5D8;
  box-shadow: 0 12px 32px rgba(0, 229, 216, 0.2);
}

.ovw-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.ovw-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === MODAL STYLES === */
.ovw-modal {
  background: rgba(7, 11, 24, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.ovw-modal-header {
  background: linear-gradient(135deg, rgba(0, 229, 216, 0.15), rgba(91, 140, 255, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.ovw-modal-header .modal-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.ovw-modal-header .modal-title i {
  color: #00E5D8;
}

.ovw-btn-close {
  background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ovw-btn-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.ovw-modal-body {
  padding: 30px;
}

.ovw-modal-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 229, 216, 0.05);
  border-left: 3px solid #00E5D8;
  border-radius: 8px;
}

.ovw-form-group {
  margin-bottom: 20px;
}

.ovw-form-label {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.ovw-form-label i {
  color: #00E5D8;
}

.ovw-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.ovw-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00E5D8;
  color: #FFFFFF;
  box-shadow: 0 0 0 0.25rem rgba(0, 229, 216, 0.1);
}

.ovw-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ovw-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.form-floating > .ovw-input:focus ~ label,
.form-floating > .ovw-input:not(:placeholder-shown) ~ label {
  color: #00E5D8;
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.6);
}

.ovw-btn-primary {
  background: linear-gradient(135deg, #00E5D8, #5B8CFF);
  color: #070B18;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 229, 216, 0.3);
}

.ovw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 216, 0.4);
  color: #070B18;
}

.ovw-btn-success {
  background: linear-gradient(135deg, #00E5A8, #00C896);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .ovw-hero-card {
    padding: 30px 24px;
  }

  .ovw-title {
    font-size: 28px;
  }

  .ovw-logo-container {
    margin-bottom: 24px;
  }

  .ovw-btn-access {
    margin-top: 20px;
    width: 100%;
  }

  .ovw-tabs {
    flex-direction: column;
  }

  .ovw-tab-item {
    max-width: none;
  }

  .ovw-videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ovw-section {
    padding: 20px 0 40px;
  }

  .ovw-hero-card {
    padding: 20px;
  }

  .ovw-title {
    font-size: 24px;
  }

  .ovw-description {
    font-size: 14px;
  }

  .ovw-tab-pane {
    padding: 24px 20px;
  }

  .ovw-section-title {
    font-size: 20px;
  }

  .ovw-logo {
    max-width: 150px;
  }
}
