/* Mega Menu Header Styles */

.mega-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.mega-menu-header.scrolled {
  background: rgba(3, 13, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  width: 160px;
  height: 45px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

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

.logo-dark-theme {
  display: block;
}

.logo-light-theme {
  display: none;
}

body.light-theme .logo-dark-theme {
  display: none;
}

body.light-theme .logo-light-theme {
  display: block !important;
}

/* Navigation Menu */
.mega-menu-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
}

.nav-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #00D4FF;
}

.nav-item.active .nav-link i {
  transform: rotate(180deg);
}

/* Mega Menu Panel */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: rgba(10, 30, 60, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  pointer-events: none;
  width: auto;
  max-width: 1100px;
  z-index: 1000;
}

/* Prevent mega menu from going off-screen on the left */
.nav-item:first-child .mega-menu-panel,
.nav-item:nth-child(2) .mega-menu-panel {
  left: 0;
  transform: translateX(0);
}

/* Prevent mega menu from going off-screen on the right */
.nav-item:last-child .mega-menu-panel,
.nav-item:nth-last-child(2) .mega-menu-panel {
  left: auto;
  right: 0;
  transform: translateX(0);
}

/* Override right-edge repositioning for fixed-centered panels */
.nav-item:last-child .company-mega-panel,
.nav-item:nth-last-child(2) .company-mega-panel,
.nav-item:last-child .resources-mega-panel,
.nav-item:nth-last-child(2) .resources-mega-panel {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.nav-item.active .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
  pointer-events: all;
}

/* Fixed-position panels ignore margin-top */
.nav-item.active .company-mega-panel,
.nav-item.active .resources-mega-panel {
  margin-top: 0 !important;
  top: 70px !important;
}

/* Suppress transition on position/transform for fixed panels */
.company-mega-panel,
.resources-mega-panel {
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  gap: 35px;
  padding: 32px 40px;
  width: fit-content;
  margin: 0 auto;
}

/* Force horizontal layout for menus with 3+ sections */
.mega-menu-content:has(.mega-menu-section:nth-child(3)) {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  min-width: 800px;
  width: auto;
  max-width: 900px;
}

/* Force horizontal layout for menus with 4+ sections */
.mega-menu-content:has(.mega-menu-section:nth-child(4)) {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  min-width: 950px;
  width: auto;
  max-width: 1100px;
}

/* Mega Menu Sections */
.mega-menu-section {
  min-width: 0;
}

.mega-menu-section h3 {
  font-size: 11px;
  font-weight: 700;
  color: #00D4FF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.mega-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-section ul li a {
  display: block;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-menu-section ul li a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: #00D4FF;
  transform: translateX(4px);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* Highlight Section */
.highlight-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e0e5ff;
}

.highlight-section .section-title {
  color: #667eea;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.feature-list li i {
  color: #667eea;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Contact Button */
.contact-btn-header {
  padding: 10px 22px;
  background: linear-gradient(135deg, #0A4AFF 0%, #00D4FF 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
}

.contact-btn-header i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.contact-btn-header:hover i {
  transform: translateX(4px);
}

/* Light theme contact button */
body.light-theme .contact-btn-header {
  background: var(--original-orange) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

body.light-theme .contact-btn-header:hover {
  background: var(--original-orange-hover) !important;
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Overlay */
.mega-menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .mega-menu-panel {
    max-width: 950px;
  }
  
  .mega-menu-content {
    grid-template-columns: repeat(auto-fit, minmax(190px, auto));
    gap: 25px;
    padding: 28px 30px;
  }
  
  /* Maintain horizontal for 3+ sections */
  .mega-menu-content:has(.mega-menu-section:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    min-width: 750px;
    width: auto;
    max-width: 900px;
  }
  
  /* Maintain horizontal for 4+ sections */
  .mega-menu-content:has(.mega-menu-section:nth-child(4)) {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    min-width: 850px;
    width: auto;
    max-width: 950px;
  }
}

@media (max-width: 1200px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    gap: 2px;
  }
  
  .nav-link {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .mega-menu-panel {
    max-width: 750px;
  }
  
  .mega-menu-content {
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap: 20px;
    padding: 20px;
  }
  
  /* 3+ sections: 3 columns */
  .mega-menu-content:has(.mega-menu-section:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
    min-width: 550px;
    width: 550px;
  }
  
  /* 4+ sections: 2x2 grid */
  .mega-menu-content:has(.mega-menu-section:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
    min-width: 500px;
    width: 500px;
  }
}

@media (max-width: 1024px) {
  .mega-menu-nav {
    display: none;
  }
  
  .contact-btn-header {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Menu Styles */
  .mega-menu-nav.mobile-active {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 14, 39, 0.98);
    overflow-y: auto;
    padding: 20px;
  }
  
  .mega-menu-nav.mobile-active .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .mega-menu-nav.mobile-active .nav-link {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mega-menu-nav.mobile-active .mega-menu-panel {
    position: static;
    transform: none;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: auto;
    max-width: none;
  }

  /* Expertise panel: revert fixed positioning on mobile */
  .mega-menu-nav.mobile-active .expertise-mega-panel {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
  
  .mega-menu-nav.mobile-active .nav-item.active .mega-menu-panel {
    margin-top: 10px;
  }
  
  .mega-menu-nav.mobile-active .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .mega-menu-nav.mobile-active .menu-list li a {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .mega-menu-nav.mobile-active .menu-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .mega-menu-nav.mobile-active .menu-list li a strong {
    color: white;
  }
  
  .mega-menu-nav.mobile-active .menu-list li a span {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .mega-menu-nav.mobile-active .highlight-section {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
  }
  
  .mega-menu-nav.mobile-active .feature-list li {
    color: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 60px;
  }
  
  .logo {
    width: 120px;
    height: 32px;
  }
}

/* Animation for menu items */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Animation for left-aligned menus */
@keyframes slideDownLeft {
  from {
    opacity: 0;
    transform: translateX(0) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Animation for right-aligned menus */
@keyframes slideDownRight {
  from {
    opacity: 0;
    transform: translateX(0) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.nav-item.active .mega-menu-panel {
  animation: slideDown 0.3s ease forwards;
}

.nav-item:first-child.active .mega-menu-panel,
.nav-item:nth-child(2).active .mega-menu-panel {
  animation: slideDownLeft 0.3s ease forwards;
}

.nav-item:last-child.active .mega-menu-panel,
.nav-item:nth-last-child(2).active .mega-menu-panel {
  animation: slideDownRight 0.3s ease forwards;
}

/* ============================================
   SERVICES MEGA MENU - Premium 3-Column Layout
   ============================================ */

.services-mega-panel {
  width: 820px;
  max-width: calc(100vw - 40px);
  left: 0 !important;
  transform: translateX(0) !important;
  right: auto !important;
}

.nav-item.active .services-mega-panel {
  animation: servicesDrop 0.25s ease forwards !important;
}

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

.services-mega-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  padding: 0;
}

/* Column base */
.services-col {
  padding: 28px 28px 28px 28px;
}

.services-col-divider {
  border-left: 1px solid rgba(0, 212, 255, 0.1);
}

/* Column header */
.services-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00D4FF;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

/* Link list */
.services-link-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-link-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s ease;
  border: 1px solid transparent;
}

.services-link-item:hover {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.15);
}

.services-link-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.services-link-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  line-height: 1.3;
}

.services-link-item:hover .services-link-title {
  color: #00D4FF;
}

.services-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  margin-top: 2px;
  transition: color 0.2s ease;
}

.services-link-item:hover .services-link-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Services footer strip */
.svc-footer-strip {
  background: rgba(255, 123, 0, 0.08);
  border-top: 1px solid rgba(255, 123, 0, 0.2);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.svc-footer-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.svc-footer-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.svc-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ff7b00, #e65c00);
  color: #ffffff !important;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.svc-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.45);
}

.svc-footer-btn i {
  font-size: 11px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: transform 0.2s ease;
}

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

body.light-theme .svc-footer-strip { background: rgba(255,123,0,0.07) !important; border-top-color: rgba(255,123,0,0.2) !important; }
body.light-theme .svc-footer-text { color: rgba(26,31,58,0.55) !important; }
body.light-theme .svc-footer-text strong { color: #1a1f3a !important; }

/* Standard checklist */
.services-standard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-standard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.services-standard-list li i {
  font-size: 11px;
  color: #00D4FF !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  width: 14px;
  flex-shrink: 0;
}

/* CTA Box */
.services-cta-box {
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: auto;
}

.services-cta-headline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px 0;
  font-weight: 500;
}

.services-cta-btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #00D4FF !important;
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.3px;
}

.services-cta-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Light theme overrides */
body.light-theme .services-col-header {
  color: var(--original-orange) !important;
  border-bottom-color: rgba(255, 123, 0, 0.2) !important;
}

body.light-theme .services-col-divider {
  border-left-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .services-link-item:hover {
  background: rgba(255, 123, 0, 0.06) !important;
  border-color: rgba(255, 123, 0, 0.2) !important;
}

body.light-theme .services-link-title {
  color: #1a1f3a !important;
}

body.light-theme .services-link-item:hover .services-link-title {
  color: var(--original-orange) !important;
}

body.light-theme .services-link-sub {
  color: rgba(26, 31, 58, 0.5) !important;
}

body.light-theme .services-link-item:hover .services-link-sub {
  color: rgba(26, 31, 58, 0.65) !important;
}

body.light-theme .services-standard-list li {
  color: rgba(26, 31, 58, 0.75) !important;
}

body.light-theme .services-standard-list li i {
  color: var(--original-orange) !important;
}

body.light-theme .services-cta-box {
  background: rgba(255, 123, 0, 0.05) !important;
  border-color: rgba(255, 123, 0, 0.2) !important;
}

body.light-theme .services-cta-headline {
  color: rgba(26, 31, 58, 0.6) !important;
}

body.light-theme .services-cta-btn {
  color: var(--original-orange) !important;
}


/* ============================================
   EXPERTISE MEGA MENU - Premium 4-Column Layout
   ============================================ */

.expertise-mega-panel {
  width: 1020px;
  max-width: calc(100vw - 80px);
  /* Center in viewport regardless of nav item position */
  position: fixed !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 70px !important;
  margin-top: 0 !important;
  right: auto !important;
  padding: 0;
  overflow: hidden;
}

/* Override the animation to match fixed+centered position */
.nav-item.active .expertise-mega-panel {
  animation: expertiseDrop 0.25s ease forwards !important;
}

@keyframes expertiseDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* 4-column grid */
.expertise-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Each column */
.exp-col {
  padding: 26px 22px;
  border-right: 1px solid rgba(0, 212, 255, 0.08);
}

.exp-col:last-child {
  border-right: none;
}

/* Column header */
.exp-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #00D4FF;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

/* Link list */
.exp-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Each link row */
.exp-link-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.exp-link-item:hover {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.15);
}

/* Icon + title row */
.exp-link-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.exp-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(0, 212, 255, 0.6);
  transition: color 0.2s ease;
}

.exp-link-icon i {
  font-size: 12px;
  color: rgba(0, 212, 255, 0.6) !important;
  -webkit-text-fill-color: rgba(0, 212, 255, 0.6) !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.exp-link-item:hover .exp-link-icon i {
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
}

.exp-link-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.exp-link-item:hover .exp-link-title {
  color: #00D4FF;
}

/* Sub-text */
.exp-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  margin-top: 3px;
  padding-left: 25px;
  transition: color 0.2s ease;
}

.exp-link-item:hover .exp-link-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Bottom conversion strip */
.exp-footer-strip {
  background: rgba(0, 212, 255, 0.05);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.exp-footer-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.exp-footer-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.exp-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #0A4AFF, #00D4FF);
  color: #ffffff !important;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.exp-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.exp-footer-btn i {
  font-size: 11px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: transform 0.2s ease;
}

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

/* ── LIGHT THEME ── */
body.light-theme .exp-col {
  border-right-color: rgba(0, 0, 0, 0.07) !important;
}

body.light-theme .exp-col-header {
  color: var(--original-orange) !important;
  border-bottom-color: rgba(255, 123, 0, 0.15) !important;
}

body.light-theme .exp-link-item:hover {
  background: rgba(255, 123, 0, 0.06) !important;
  border-color: rgba(255, 123, 0, 0.18) !important;
}

body.light-theme .exp-link-icon i {
  color: rgba(255, 123, 0, 0.5) !important;
  -webkit-text-fill-color: rgba(255, 123, 0, 0.5) !important;
}

body.light-theme .exp-link-item:hover .exp-link-icon i {
  color: var(--original-orange) !important;
  -webkit-text-fill-color: var(--original-orange) !important;
}

body.light-theme .exp-link-title {
  color: #1a1f3a !important;
}

body.light-theme .exp-link-item:hover .exp-link-title {
  color: var(--original-orange) !important;
}

body.light-theme .exp-link-sub {
  color: rgba(26, 31, 58, 0.45) !important;
}

body.light-theme .exp-link-item:hover .exp-link-sub {
  color: rgba(26, 31, 58, 0.65) !important;
}

body.light-theme .exp-footer-strip {
  background: rgba(255, 123, 0, 0.04) !important;
  border-top-color: rgba(255, 123, 0, 0.12) !important;
}

body.light-theme .exp-footer-text {
  color: rgba(26, 31, 58, 0.55) !important;
}

body.light-theme .exp-footer-text strong {
  color: #1a1f3a !important;
}

body.light-theme .exp-footer-btn {
  background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 123, 0, 0.3) !important;
}

body.light-theme .exp-footer-btn:hover {
  box-shadow: 0 8px 22px rgba(255, 123, 0, 0.45) !important;
}

body.light-theme .exp-footer-btn i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}


/* ============================================
   INDUSTRIES MEGA MENU - 3-Column Asymmetric
   ============================================ */

.industries-mega-panel {
  width: 860px;
  max-width: calc(100vw - 80px);
  position: fixed !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 70px !important;
  margin-top: 0 !important;
  right: auto !important;
  padding: 0;
  overflow: hidden;
}

.nav-item.active .industries-mega-panel {
  animation: industriesDrop 0.25s ease forwards !important;
}

@keyframes industriesDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Industry Overview bar — sits above the grid */
.ind-overview-bar {
  padding: 10px 22px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  background: rgba(0, 212, 255, 0.03);
}

.ind-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, gap 0.2s ease;
}

.ind-overview-link:hover {
  background: rgba(0, 212, 255, 0.08);
  gap: 10px;
}

.ind-overview-link i {
  font-size: 11px;
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.ind-overview-arrow {
  margin-left: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ind-overview-link:hover .ind-overview-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Light theme */
body.light-theme .ind-overview-bar {
  border-bottom-color: rgba(255, 123, 0, 0.12) !important;
  background: rgba(255, 123, 0, 0.03) !important;
}

body.light-theme .ind-overview-link {
  color: var(--original-orange) !important;
  -webkit-text-fill-color: var(--original-orange) !important;
}

body.light-theme .ind-overview-link:hover {
  background: rgba(255, 123, 0, 0.07) !important;
}

body.light-theme .ind-overview-link i {
  color: var(--original-orange) !important;
  -webkit-text-fill-color: var(--original-orange) !important;
}

.industries-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 0;
}

/* Columns 1 & 2 */
.ind-col {
  padding: 26px 22px;
  border-right: 1px solid rgba(0, 212, 255, 0.08);
}

.ind-col:last-child { border-right: none; }

.ind-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #00D4FF;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.ind-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ind-link-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ind-link-item:hover {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.15);
}

.ind-link-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ind-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-link-icon i {
  font-size: 11px;
  color: rgba(0, 212, 255, 0.55) !important;
  -webkit-text-fill-color: rgba(0, 212, 255, 0.55) !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.ind-link-item:hover .ind-link-icon i {
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
}

.ind-link-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.ind-link-item:hover .ind-link-title { color: #00D4FF; }

.ind-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.5;
  margin-top: 3px;
  padding-left: 25px;
  transition: color 0.2s ease;
}

.ind-link-item:hover .ind-link-sub { color: rgba(255, 255, 255, 0.55); }

/* Column 3: Featured Case Study Card */
.ind-proof-col {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  background: rgba(0, 212, 255, 0.025);
}

.ind-proof-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 212, 255, 0.5);
  margin-bottom: 12px;
}

.ind-proof-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(4, 8, 20, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ind-proof-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.ind-proof-visual {
  height: 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020814 0%, #040c1e 50%, #020814 100%);
  flex-shrink: 0;
}

.ind-proof-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ind-proof-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ind-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  color: #00D4FF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
}

.ind-proof-tag i {
  font-size: 9px;
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.ind-proof-headline {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}

.ind-proof-card:hover .ind-proof-headline { color: #fff; }

.ind-proof-stat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.ind-proof-stat strong {
  color: #00D4FF;
  font-weight: 700;
}

.ind-proof-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #00D4FF;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  transition: gap 0.2s ease;
}

.ind-proof-card:hover .ind-proof-cta { gap: 8px; }

.ind-proof-cta i {
  font-size: 10px;
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

/* ── LIGHT THEME ── */
body.light-theme .ind-col { border-right-color: rgba(0,0,0,0.07) !important; }
body.light-theme .ind-col-header { color: var(--original-orange) !important; border-bottom-color: rgba(255,123,0,0.15) !important; }
body.light-theme .ind-link-item:hover { background: rgba(255,123,0,0.06) !important; border-color: rgba(255,123,0,0.18) !important; }
body.light-theme .ind-link-icon i { color: rgba(255,123,0,0.5) !important; -webkit-text-fill-color: rgba(255,123,0,0.5) !important; }
body.light-theme .ind-link-item:hover .ind-link-icon i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .ind-link-title { color: #1a1f3a !important; }
body.light-theme .ind-link-item:hover .ind-link-title { color: var(--original-orange) !important; }
body.light-theme .ind-link-sub { color: rgba(26,31,58,0.42) !important; }
body.light-theme .ind-link-item:hover .ind-link-sub { color: rgba(26,31,58,0.62) !important; }
body.light-theme .ind-proof-col { background: rgba(255,123,0,0.025) !important; }
body.light-theme .ind-proof-label { color: rgba(255,123,0,0.5) !important; }
body.light-theme .ind-proof-card { background: #fff !important; border-color: rgba(0,0,0,0.1) !important; }
body.light-theme .ind-proof-card:hover { border-color: rgba(255,123,0,0.3) !important; box-shadow: 0 12px 40px rgba(255,123,0,0.1) !important; }
body.light-theme .ind-proof-tag { background: rgba(255,123,0,0.08) !important; border-color: rgba(255,123,0,0.2) !important; color: var(--original-orange) !important; }
body.light-theme .ind-proof-tag i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .ind-proof-headline { color: #1a1f3a !important; }
body.light-theme .ind-proof-stat { color: rgba(26,31,58,0.45) !important; }
body.light-theme .ind-proof-stat strong { color: var(--original-orange) !important; }
body.light-theme .ind-proof-cta { color: var(--original-orange) !important; border-top-color: rgba(255,123,0,0.1) !important; }
body.light-theme .ind-proof-cta i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }

@media (max-width: 1024px) {
  .mega-menu-nav.mobile-active .industries-mega-panel {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
  .mega-menu-nav.mobile-active .industries-mega-grid {
    grid-template-columns: 1fr;
  }
  .mega-menu-nav.mobile-active .ind-col,
  .mega-menu-nav.mobile-active .ind-proof-col {
    border-right: none;
    border-bottom: 1px solid rgba(0,212,255,0.08);
  }
}


/* ============================================
   COMPANY MEGA MENU - Single Column
   ============================================ */

.company-mega-panel {
  width: 480px !important;
  max-width: calc(100vw - 80px);
  position: fixed !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 70px !important;
  margin-top: 0 !important;
  right: auto !important;
  padding: 0 !important;
  overflow: hidden;
  bottom: auto !important;
}

.nav-item.active .company-mega-panel {
  animation: companyDrop 0.25s ease forwards !important;
}

@keyframes companyDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.company-mega-grid {
  padding: 0;
}

.cmp-col {
  padding: 26px 28px 20px;
}

.cmp-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #00D4FF;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.cmp-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cmp-link-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cmp-link-item:hover {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.15);
}

.cmp-link-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cmp-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmp-link-icon i {
  font-size: 12px;
  color: rgba(0, 212, 255, 0.6) !important;
  -webkit-text-fill-color: rgba(0, 212, 255, 0.6) !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.cmp-link-item:hover .cmp-link-icon i {
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
}

.cmp-link-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.cmp-link-item:hover .cmp-link-title { color: #00D4FF; }

.cmp-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  margin-top: 3px;
  padding-left: 25px;
  transition: color 0.2s ease;
}

.cmp-link-item:hover .cmp-link-sub { color: rgba(255, 255, 255, 0.55); }

/* Company footer strip */
.cmp-footer-strip {
  background: rgba(255, 123, 0, 0.08);
  border-top: 1px solid rgba(255, 123, 0, 0.2);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.cmp-footer-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.cmp-footer-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.cmp-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ff7b00, #e65c00);
  color: #ffffff !important;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.cmp-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.45);
}

.cmp-footer-btn i {
  font-size: 11px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: transform 0.2s ease;
}

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

/* Light theme — Company */
body.light-theme .cmp-col-header { color: var(--original-orange) !important; border-bottom-color: rgba(255,123,0,0.15) !important; }
body.light-theme .cmp-link-item:hover { background: rgba(255,123,0,0.06) !important; border-color: rgba(255,123,0,0.18) !important; }
body.light-theme .cmp-link-icon i { color: rgba(255,123,0,0.5) !important; -webkit-text-fill-color: rgba(255,123,0,0.5) !important; }
body.light-theme .cmp-link-item:hover .cmp-link-icon i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .cmp-link-title { color: #1a1f3a !important; }
body.light-theme .cmp-link-item:hover .cmp-link-title { color: var(--original-orange) !important; }
body.light-theme .cmp-link-sub { color: rgba(26,31,58,0.42) !important; }
body.light-theme .cmp-link-item:hover .cmp-link-sub { color: rgba(26,31,58,0.62) !important; }
body.light-theme .cmp-footer-strip { background: rgba(255,123,0,0.07) !important; border-top-color: rgba(255,123,0,0.2) !important; }
body.light-theme .cmp-footer-text { color: rgba(26,31,58,0.55) !important; }
body.light-theme .cmp-footer-text strong { color: #1a1f3a !important; }

@media (max-width: 1024px) {
  .mega-menu-nav.mobile-active .company-mega-panel {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
}


/* ============================================
   RESOURCES MEGA MENU - Single Column
   ============================================ */

.resources-mega-panel {
  width: 500px !important;
  max-width: calc(100vw - 80px);
  position: fixed !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 70px !important;
  margin-top: 0 !important;
  right: auto !important;
  padding: 0 !important;
  overflow: hidden;
  bottom: auto !important;
}

.nav-item.active .resources-mega-panel {
  animation: resourcesDrop 0.25s ease forwards !important;
}

@keyframes resourcesDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.res-mega-grid {
  padding: 0;
}

.res-col {
  padding: 26px 28px 20px;
}

.res-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #00D4FF;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.res-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.res-link-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.res-link-item:hover {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.15);
}

.res-link-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.res-link-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-link-icon i {
  font-size: 12px;
  color: rgba(0, 212, 255, 0.6) !important;
  -webkit-text-fill-color: rgba(0, 212, 255, 0.6) !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: color 0.2s ease, -webkit-text-fill-color 0.2s ease;
}

.res-link-item:hover .res-link-icon i {
  color: #00D4FF !important;
  -webkit-text-fill-color: #00D4FF !important;
}

.res-link-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.res-link-item:hover .res-link-title { color: #00D4FF; }

.res-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  margin-top: 3px;
  padding-left: 25px;
  transition: color 0.2s ease;
}

.res-link-item:hover .res-link-sub { color: rgba(255, 255, 255, 0.55); }

/* Resources footer strip */
.res-footer-strip {
  background: rgba(255, 123, 0, 0.08);
  border-top: 1px solid rgba(255, 123, 0, 0.2);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.res-footer-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.res-footer-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.res-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ff7b00, #e65c00);
  color: #ffffff !important;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.res-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.45);
}

.res-footer-btn i {
  font-size: 11px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  transition: transform 0.2s ease;
}

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

/* Light theme — Resources */
body.light-theme .res-col-header { color: var(--original-orange) !important; border-bottom-color: rgba(255,123,0,0.15) !important; }
body.light-theme .res-link-item:hover { background: rgba(255,123,0,0.06) !important; border-color: rgba(255,123,0,0.18) !important; }
body.light-theme .res-link-icon i { color: rgba(255,123,0,0.5) !important; -webkit-text-fill-color: rgba(255,123,0,0.5) !important; }
body.light-theme .res-link-item:hover .res-link-icon i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .res-link-title { color: #1a1f3a !important; }
body.light-theme .res-link-item:hover .res-link-title { color: var(--original-orange) !important; }
body.light-theme .res-link-sub { color: rgba(26,31,58,0.42) !important; }
body.light-theme .res-link-item:hover .res-link-sub { color: rgba(26,31,58,0.62) !important; }
body.light-theme .res-footer-strip { background: rgba(255,123,0,0.07) !important; border-top-color: rgba(255,123,0,0.2) !important; }
body.light-theme .res-footer-text { color: rgba(26,31,58,0.55) !important; }
body.light-theme .res-footer-text strong { color: #1a1f3a !important; }

@media (max-width: 1024px) {
  .mega-menu-nav.mobile-active .resources-mega-panel {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
}
