/* =====================================
   SOFTWARE DEVELOPMENT HERO
===================================== */

.software-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111, #000);

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 120px 20px;
}

.hero-content {
  max-width: 950px;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 14px;
  color: white;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

/* Gradient Highlight Text */
.hero-content h1 span {
  background: linear-gradient(90deg, #4b5cff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
  margin-top: 18px;
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  padding: 14px 35px;
  background: orange;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: white;
}

/* Secondary Button */
.btn-secondary {
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  color: orange;
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}

/* ==============================
   SOFTWARE STATS SECTION
============================== */

.soft-stats {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #050b1a, #070f25);
}

.soft-stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.soft-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 35px 20px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.soft-stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 180, 0.25);
}

.soft-stat-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #4cc9f0;
  margin-bottom: 8px;
}

.soft-stat-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .soft-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .soft-stats-container {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   WHY CHOOSE SOFTWARE SECTION
============================== */

.soft-why {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #070c1c, #000);
}

.soft-why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.soft-why-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.soft-why-left h2 span {
  color: #3aa0ff;
}

.soft-why-left p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* Points */
.soft-point {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  align-items: flex-start;
}

.soft-point i {
  font-size: 20px;
  color: #00ffb3;
  margin-top: 6px;
}

.soft-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.soft-point p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* RIGHT CODE BOX */
.soft-codebox {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Code Header */
.soft-code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.soft-code-header p {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Dots */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27c93f;
}

/* Code Text */
.soft-codebox pre {
  padding: 22px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Courier New", monospace;
  white-space: pre-wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .soft-why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .soft-point {
    justify-content: center;
    text-align: left;
  }
}


/* ==============================
   SOFTWARE SERVICES SECTION
============================== */

.soft-services {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #11162c, #05050b);
  text-align: center;
}

/* Container Fix */
.soft-services-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */
.soft-services-heading {
  max-width: 800px;
  margin: 0 auto 70px;
}

.soft-services-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.soft-services-heading h2 span {
  color: #4fa3ff;
}

.soft-services-heading p {
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Grid Center Perfect */
.soft-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-content: center;
  align-items: stretch;
}

/* Card */
.soft-service-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  transition: 0.35s ease;
  min-height: 280px;
}

.soft-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 163, 255, 0.45);
}

/* Icon */
.soft-icon {
  width: 52px;
  height: 52px;
  background: rgba(79, 163, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.soft-icon i {
  font-size: 21px;
  color: #4fa3ff;
}

/* Title */
.soft-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Paragraph */
.soft-service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* List */
.soft-service-card ul {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.soft-service-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 9px;
}

/* Responsive Fix */
@media (max-width: 1000px) {
  .soft-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .soft-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   SOFTWARE PROCESS SECTION
============================== */

.soft-process {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.soft-process-container {
  max-width: 1250px;
  margin: auto;
}

.soft-process-heading {
  text-align: center;
  margin-bottom: 70px;
}

.soft-process-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.soft-process-heading h2 span {
  color: #00cfff;
}

.soft-process-heading p {
  max-width: 750px;
  margin: 15px auto;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Layout */
.soft-process-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Steps */
.soft-step {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #00cfff;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.step-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.step-text ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.step-text ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

/* Right Image */
.soft-process-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(0, 207, 255, 0.25);
}

/* Responsive */
@media (max-width: 950px) {
  .soft-process-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .soft-step {
    text-align: left;
  }

  .soft-process-image {
    margin-top: 40px;
  }
}


/* ==============================
   SOFTWARE TECHNOLOGY STACK SECTION
============================== */

.soft-techstack {
  padding: 110px 20px;
  background: radial-gradient(circle at center, #121833, #05050b);
  text-align: center;
}

.soft-techstack-container {
  max-width: 1150px;
  margin: auto;
}

/* Heading */
.soft-techstack-heading {
  max-width: 750px;
  margin: 0 auto 70px;
}

.soft-techstack-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.soft-techstack-heading h2 span {
  color: #4fa3ff;
}

.soft-techstack-heading p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Grid */
.soft-techstack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  justify-content: center;
}

/* Card */
.tech-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px 10px;
  transition: 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 163, 255, 0.4);
}

/* Icon Text */
.tech-card span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* Colors */
.lr { color: #ff4d6d; }
.rc { color: #4fa3ff; }
.vu { color: #00ff99; }
.nj { color: #33ff66; }
.py { color: #4fa3ff; }
.jv { color: #ff9933; }

.aw { color: #ffcc00; }
.dc { color: #4fa3ff; }
.k8 { color: #4fa3ff; }
.ms { color: #4fa3ff; }
.mg { color: #00ff66; }
.rd { color: #ff4444; }

/* Responsive */
@media(max-width: 1100px) {
  .soft-techstack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 650px) {
  .soft-techstack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================
   SOFTWARE ARCHITECTURE SECTION
============================== */

.soft-architecture {
  padding: 120px 20px;
  background: radial-gradient(circle at center, #121833, #05050b);
  text-align: center;
}

.soft-architecture-container {
  max-width: 1150px;
  margin: auto;
}

/* Heading */
.soft-architecture-heading {
  max-width: 750px;
  margin: 0 auto 70px;
}

.soft-architecture-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.soft-architecture-heading h2 span {
  color: #4fa3ff;
}

.soft-architecture-heading p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Grid */
.soft-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: center;
}

/* Card */
.arch-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 45px 32px;
  text-align: left;
  transition: 0.35s ease;
}

.arch-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 163, 255, 0.35);
}

/* Icon */
.arch-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.arch-icon i {
  color: #fff;
}

/* Icon Colors */
.arch-icon.blue {
  background: rgba(79, 163, 255, 0.2);
}

.arch-icon.purple {
  background: rgba(160, 90, 255, 0.2);
}

.arch-icon.green {
  background: rgba(0, 255, 150, 0.18);
}

/* Title */
.arch-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Text */
.arch-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* List */
.arch-card ul {
  list-style: none;
  padding: 0;
}

.arch-card ul li {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 18px;
}

.arch-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4fa3ff;
}

/* Responsive */
@media(max-width: 1000px) {
  .soft-architecture-grid {
    grid-template-columns: 1fr;
  }

  .arch-card {
    text-align: center;
  }
}

/* ==============================
   SOFTWARE METHODOLOGIES SECTION
============================== */

.soft-methodologies {
  padding: 130px 20px;

  /* ✅ DIFFERENT BACKGROUND FROM OTHER SECTIONS */
  background: radial-gradient(circle at top, #151a38, #06060d);
  text-align: center;
}

.soft-methodologies-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.soft-methodologies-heading {
  max-width: 750px;
  margin: 0 auto 70px;
}

.soft-methodologies-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.soft-methodologies-heading h2 span {
  color: #4fa3ff;
}

.soft-methodologies-heading p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* Grid */
.soft-methodologies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 45px 32px;
  text-align: left;
  transition: 0.35s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 163, 255, 0.35);
}

/* Icon */
.method-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.method-icon i {
  color: #fff;
}

/* Icon Colors */
.method-icon.purple {
  background: rgba(160, 90, 255, 0.2);
}

.method-icon.blue {
  background: rgba(79, 163, 255, 0.2);
}

.method-icon.green {
  background: rgba(0, 255, 150, 0.18);
}

/* Title */
.method-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Text */
.method-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

/* List */
.method-card ul {
  list-style: none;
  padding: 0;
}

.method-card ul li {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 18px;
}

.method-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4fa3ff;
}

/* Responsive */
@media(max-width: 1000px) {
  .soft-methodologies-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    text-align: center;
  }
}

/* ==============================
   SOFTWARE CTA SECTION
============================== */

.soft-cta {
  padding: 140px 20px;
  background: radial-gradient(circle at top, #141a35, #05050b);
  text-align: center;
}

.soft-cta-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.soft-cta-heading {
  max-width: 800px;
  margin: auto;
}

.soft-cta-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.soft-cta-heading h2 span {
  color: #4fa3ff;
}

.soft-cta-heading p {
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Grid */
.soft-cta-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px 30px;
  transition: 0.35s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 163, 255, 0.35);
}

/* Icon */
.cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 22px;
  color: #fff;
}

/* Icon Colors */
.cta-icon.blue {
  background: rgba(79, 163, 255, 0.25);
}

.cta-icon.purple {
  background: rgba(160, 90, 255, 0.22);
}

.cta-icon.green {
  background: rgba(0, 255, 150, 0.2);
}

/* Card Text */
.cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Bottom CTA */
.soft-cta-bottom {
  margin-top: 90px;
}

.soft-cta-bottom h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.soft-cta-bottom p {
  margin: 12px auto 35px;
  max-width: 650px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Main Button */
.cta-main-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(90deg, #4fa3ff, #7a5cff);
  color: #fff;
  text-decoration: none;
  transition: 0.35s ease;
}

.cta-main-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsive */
@media(max-width: 950px) {
  .soft-cta-grid {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}