/* -------------------- */
/* Improved Header Style */
.software-header h2 { font-size: 2.4rem; font-weight: 700; color: var(--color-purple); letter-spacing: 0.5px; position: relative; display: inline-block; padding-bottom: 10px; }
.software-header { padding: 40px 20px; text-align: center; margin-bottom: 40px; z-index: 1;}
.software-header .header-line { background: linear-gradient(to right, #3b82f6, #0ea5e9); height: 4px; width: 100%; border-radius: 3px; margin: 10px auto 0 auto; max-width: 1200px; }
.section-subtitle { font-size: 1.05rem; color: #363f48; margin-top: 15px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* -------------------- */
/* Improved Software Card Hover Effects */
.software-card { position: relative; background: var(--color-white);  padding: 20px 15px; text-align: center; transition: all 0.4s ease; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); height: 100%; overflow: visible; }
.software-card-link * { text-decoration: none !important; }
.software-card-link { text-decoration: none; display: block; height: 100%; color: inherit; }
.software-card:hover { background: var(--color-purple); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); }
.software-card:hover .software-title { color: var(--color-white); }
.software-card:hover .vector-icon { filter: brightness(0) invert(1); transition: filter 0.3s ease; }
.software-icon-wrapper { margin-bottom: 10px; width: 55px; height: 55px; margin: 0 auto 1rem; background: var(--color-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; padding: 30px; transition: all 0.3s ease; }
.software-title { font-size: 1rem; text-decoration: none; font-weight: 600; color: #0f172a; margin-top: 10px; transition: color 0.3s ease; }
.vector-icon { width: 38px; height: 38px; object-fit: contain; transition: filter 0.3s ease; }
.software-card:hover .vector-icon { filter: brightness(0) saturate(100%) invert(11%) sepia(16%) saturate(3067%) hue-rotate(231deg) brightness(95%) contrast(102%)!important; }

/* Feature Dropdown Styles - Compact Below Card */
.feature-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px) scale(0.95); width: 95%; background: var(--color-white); backdrop-filter: blur(8px); padding: 12px 15px; opacity: 0; visibility: hidden; transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 100; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); margin-top: 5px; }
.software-card:hover .feature-dropdown { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; visibility: visible; }
.feature-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.feature-list li { padding: 5px 0; padding-left: 20px; position: relative; color: var(--color-purple); font-size: 0.6rem; font-weight: 500; transition: all 0.2s ease; line-height: 1.4; }
.feature-list li:before { content: '✓'; position: absolute; left: 0; color: var(--color-purple); font-weight: bold; font-size: 0.5rem; }
.feature-list li:hover { padding-left: 23px; }

/* Add spacing for dropdown */
.software-section .row { row-gap: 2.5rem !important; }

/* -------------------- */
/* Responsive */
@media (max-width: 768px) {
  .software-header h2 { font-size: 2rem; }
  .software-title { font-size: 0.9rem; }
  .vector-icon { width: 32px; height: 32px; }
  .section-subtitle { font-size: 0.95rem; }
  .feature-dropdown { padding: 10px 12px; width: 98%; }
  .feature-list li { font-size: 0.75rem; padding: 4px 0; padding-left: 18px; }
  .software-section .row { row-gap: 2rem !important; }
  .software-card { padding: 15px 12px; }
  .software-icon-wrapper { width: 50px; height: 50px; padding: 25px; }
}