/* ==========================================================================
   INFINITIX INFOTECH - SOFTWARE DEVELOPMENT SERVICE PAGE STYLESHEET
   File: asset/css/software-development.css
   Theme: Deep Cyber Slate (#050814), Emerald Green (#10b981, #059669), Neon Cyan (#06b6d4)
   ========================================================================== */

/* Page Background Canvas */
.software-dev-page-body {
  background-color: #050814 !important;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 45%, rgba(6, 182, 212, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(5, 150, 105, 0.14) 0%, transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 30px 30px;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.text-gradient-software {
  background: linear-gradient(135deg, #ffffff 0%, #10b981 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Software Badge */
.software-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50px;
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
}

/* HERO SECTION (ENTERPRISE CYBERNETIC TERMINAL) */
.software-dev-hero {
  padding: 150px 0 90px;
  position: relative;
}

.hero-title-software {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle-software {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2.2rem;
}

.hero-cta-software {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-software-quote {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  padding: 0.95rem 2.2rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
}

.btn-software-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

.btn-software-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-software-wa:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-software-consult {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-software-consult:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

/* CYBERNETIC TERMINAL CODE FRAME */
.cyber-terminal-frame {
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  font-family: 'Space Mono', monospace, sans-serif;
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.terminal-code-line {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #34d399;
}

.code-keyword { color: #f472b6; }
.code-func { color: #60a5fa; }
.code-string { color: #fbbf24; }

/* INFOGRAPHIC CARDS */
.software-info-card {
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.2rem;
  transition: all 0.35s ease;
  height: 100%;
}

.software-info-card:hover {
  transform: translateY(-7px);
  border-color: #10b981;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

.software-icon-square {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.25));
  border: 1px solid #10b981;
  color: #34d399;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* SOLUTION MATRIX EQUAL CARDS */
.software-solution-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.software-solution-card:hover {
  border-color: #10b981;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* TECH STACK CIRCLES WITH LABELS UNDERNEATH */
.software-tech-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(10, 15, 30, 0.85);
  border: 2px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.software-tech-circle:hover {
  border-color: #34d399;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
}

/* COMPARISON TABLE */
.software-comp-wrapper {
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow-x: auto;
}

.software-comp-table {
  width: 100%;
  border-collapse: collapse;
  color: #cbd5e1;
}

.software-comp-table th, .software-comp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-comp-table th {
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-weight: 700;
}

.highlight-custom-soft {
  background: rgba(16, 185, 129, 0.15);
  color: #ffffff !important;
  font-weight: 600;
}

/* FAQS ACCORDION */
.software-faq-item {
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.software-faq-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.software-faq-button:not(.collapsed) {
  color: #34d399 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-faq-body {
  padding: 1.25rem 1.5rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* FINAL CTA BANNER */
.software-cta-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(6, 182, 212, 0.25) 100%), rgba(5, 8, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: 28px;
  padding: 4.5rem 2.5rem;
  text-align: center;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .software-dev-hero { padding: 120px 0 60px; }
}
