/* ==========================================
   ENGINUVITY NEXUS TECHNOLOGIES
   Main Stylesheet - Dark Theme Design System
   ========================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS Variables - Design System
   ========================================== */
:root {
  /* Color Palette */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #1a1a1a;
  --color-bg-tertiary: #252525;
  --color-accent-blue: #00d9ff;
  --color-accent-cyan: #00f0ff;
  --color-accent-violet: #7b2cbf;
  --color-accent-purple: #9d4edd;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0a0a0;
  --color-text-tertiary: #707070;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
  --gradient-card: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(37, 37, 37, 0.4) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.5rem;
  /* 24px */
  --fs-3xl: 1.875rem;
  /* 30px */
  --fs-4xl: 2.25rem;
  /* 36px */
  --fs-5xl: 3rem;
  /* 48px */
  --fs-6xl: 3.75rem;
  /* 60px */
  --fs-7xl: 4.5rem;
  /* 72px */

  /* Spacing */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2rem;
  /* 32px */
  --space-xl: 3rem;
  /* 48px */
  --space-2xl: 4rem;
  /* 64px */
  --space-3xl: 6rem;
  /* 96px */

  /* Border Radius */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 1rem;
  /* 16px */
  --radius-xl: 1.5rem;
  /* 24px */

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.3);
  --shadow-glow-violet: 0 0 20px rgba(123, 44, 191, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   Typography
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--fs-6xl);
}

h2 {
  font-size: var(--fs-5xl);
}

h3 {
  font-size: var(--fs-4xl);
}

h4 {
  font-size: var(--fs-3xl);
}

h5 {
  font-size: var(--fs-2xl);
}

h6 {
  font-size: var(--fs-xl);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-cyan);
}

/* ==========================================
   Layout & Container
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ==========================================
   Navigation
   ==========================================*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(10, 10, 10, 0.98);
}

.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  gap: var(--space-lg);
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  transition: opacity var(--transition-fast);
  margin-right: 1rem;
}

.navbar-brand:hover {
  opacity: 0.8;
}

/* Logo sizing controlled by Tailwind classes for responsive design */
.navbar-brand img {
  width: auto !important;
  object-fit: contain;
  transition: height var(--transition-base);
  /* Height is controlled by Tailwind responsive classes in navbar-component.js */
  /* h-9 (36px) sm:h-10 (40px) md:h-11 (44px) lg:h-12 (48px) xl:h-14 (56px) 2xl:h-16 (64px) */
}

.navbar-brand {
  margin-right: clamp(0.4rem, 1.5vw, 1rem);
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* Reduced from var(--space-lg) (32px) to 16px for tighter spacing */
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}

.navbar-menu li a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--color-text-primary);
}

/* Dropdown Menu Styles (Global) */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  cursor: pointer;
}

/* Split Menu Container */
.dropdown-menu.split-menu {
  display: flex;
  flex-direction: row;
  min-width: 500px;
  max-width: calc(100vw - 40px);
  /* Prevent overflow beyond viewport */
  padding: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 10000;
}

/* Responsive positioning - align right when needed */
.dropdown:last-of-type .dropdown-menu.split-menu,
.dropdown:nth-last-of-type(2) .dropdown-menu.split-menu {
  left: auto;
  right: 0;
}

/* For medium screens, ensure dropdowns don't overflow */
@media (max-width: 1280px) {
  .dropdown-menu.split-menu {
    min-width: 450px;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 1024px) {
  .dropdown-menu.split-menu {
    min-width: 400px;
    max-width: calc(100vw - 24px);
  }
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Left Side: List */
.dropdown-list {
  flex: 1;
  padding: 0.5rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 220px;
}

.dropdown-list a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: normal;
  /* Allow text wrapping */
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.dropdown-list a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  padding-left: 1.75rem;
}

/* Right Side: Preview Panel */
.dropdown-preview {
  flex: 1.2;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.preview-content h3 {
  font-size: 1.1rem;
  color: var(--color-accent-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.preview-content p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Action Links (Right Side) */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 0 0 auto;
  margin-left: auto;
}

.navbar-actions a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar-actions a:hover {
  color: var(--color-text-primary);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--fs-2xl);
  cursor: pointer;
  flex: 0 0 auto;
}

/* Mobile Company Name */
.mobile-company-name {
  display: none;
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  white-space: normal;
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  line-height: 1.3;
  max-width: 60%;
}

@media (max-width: 1300px) {
  .mobile-company-name {
    display: block;
  }

  .mobile-only-menu-item {
    display: block !important;
  }

  /* Ensure navbar container is flexbox on mobile */
  .navbar .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  /* Logo takes minimum space and comes first */
  .navbar-brand {
    flex: 0 0 auto !important;
    order: 1 !important;
    margin-right: 0 !important;
    z-index: 10;
  }

  /* Company name in middle with flex-grow */
  .mobile-company-name {
    order: 2 !important;
    flex: 1 1 auto !important;
    margin: 0 0.5rem !important;
  }

  /* Hamburger takes minimum space and comes last */
  .navbar-toggle {
    flex: 0 0 auto !important;
    order: 3 !important;
    margin-left: 0 !important;
    z-index: 10;
  }

  /* Hide desktop menu on mobile */
  .navbar-menu {
    order: 4 !important;
  }
}

/* Responsive font sizes for smaller screens */
@media (max-width: 480px) {
  .mobile-company-name {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    max-width: 65%;
  }
}

@media (max-width: 360px) {
  .mobile-company-name {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    max-width: 70%;
  }
}

/* Hide mobile-only menu items on desktop */
.mobile-only-menu-item {
  display: none;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  font-family: var(--font-primary);
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent-blue);
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--color-accent-cyan);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-lg);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding-top: 80px;
  /* Restored to center content in visible area below navbar */
}

.hero .container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 0;
  opacity: 0.6;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: var(--fs-7xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: var(--fs-2xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--fs-xl);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

/* ==========================================
   Cards
   ========================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 217, 255, 0.3);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: var(--fs-3xl);
  color: var(--color-text-primary);
}

.card-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.card-description {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ==========================================
   Forms
   ========================================== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--fs-base);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--fs-base);
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
  background: rgba(26, 26, 26, 1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-tertiary);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--color-bg-secondary);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
  /* Center justify everything */
}

.footer-section h4 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  display: block;
  /* Ensure block for centering */
}

.footer-section p,
.footer-section a {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
  display: block;
}

.footer-section a:hover {
  color: var(--color-accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-tertiary);
  font-size: var(--fs-sm);
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ===============================
   MOBILE NAV SPACING & VISIBILITY FIX
   =============================== */
@media (max-width: 768px) {

  /* 1. Reset default list spacing */
  nav ul,
  nav li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  /* 2. Remove Flex/Grid gaps */
  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    row-gap: 0 !important;
  }

  /* 3. Control spacing via padding (touch-friendly) */
  nav li {
    padding: 0 !important;
    width: 100%;
    /* Ensure full width */
  }

  nav li>a {
    display: flex;
    align-items: center;
    min-height: 44px;
    /* Mobile tap target */
    padding: 12px 20px !important;
    line-height: 1.2 !important;
    width: 100%;
    justify-content: space-between;
    /* Push arrow to right */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* 4. Fix hidden dropdowns & Responsive Height */
  /* Target the DIV .dropdown-menu instead of UL UL */
  .dropdown-menu.split-menu {
    position: static !important;
    /* Remove absolute positioning */
    display: block !important;
    width: 100% !important;
    min-width: unset !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    /* Collapsing mechanism */
    max-height: 0;
    overflow-y: hidden;
    /* Hide content when collapsed */
    transition: max-height 0.4s ease-in-out;
  }

  /* When parent LI has 'active' class (toggled via JS) */
  .dropdown.active .dropdown-menu.split-menu {
    max-height: 60vh;
    /* Allow up to 60% of viewport height */
    overflow-y: auto;
    /* Enable internal scrolling if content exceeds height */
    padding-bottom: 20px;
    /* Add some breathing room at bottom */
  }

  /* Hide preview panel on mobile to save space */
  .dropdown-preview {
    display: none !important;
  }

  /* Adjust dropdown list items */
  .dropdown-list {
    border: none !important;
    padding: 0 !important;
  }

  .dropdown-list a {
    padding-left: 40px !important;
    /* Indent submenu items */
    font-size: 0.9rem !important;
    color: var(--color-text-secondary) !important;
    border-bottom: none !important;
  }

  /* Rotate arrow icon when active */
  .dropdown.active>a svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}