:root {
  --primary: #2a4f6a;
  --secondary: #2a4f6a;
  --accent: #e4353a;
  --light: #f3f4f6;
  --dark: #2a4f6a;
  --success: #10b981;
  --gray: #777;
}

/* General Container */
.container-software {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Header */
.hero-header-software {
  position: relative;
  background:
    linear-gradient(rgba(14, 43, 108, 0.35), rgba(153, 180, 238, 0.35)),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #fff;
  padding: 7rem 1rem 6rem;
  text-align: center;
  overflow: hidden;
}

.hero-header-software::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.hero-header-content-software {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

.hero-header-content-software h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white !important;
}

.hero-header-content-software p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap; /* wrap on small screens */
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.breadcrumb li {
    margin: 0.25rem 0.5rem; /* smaller vertical margin for mobile */
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    white-space: nowrap; /* prevent text break in link */
}


/* Sections */
section {
  padding: 60px 0;
}

h2 {
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
}

h3 {
  color: var(--dark);
  margin-bottom: 15px;
}

/* Grid & Card */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card-software {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.card-software:hover {
  transform: translateY(-5px);
}

.card-software h3 {
  margin-bottom: 10px;
}

.card-software ul {
  list-style: none;
  padding: 0;
}

.card-software ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #444;
}

.card-software ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* About Section Paragraph */
.container-software p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Banner & CTA */
.banner {
  background: linear-gradient(rgba(14, 43, 108, 0.4), rgba(153, 180, 238, 0.5)),
              url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.bannerContent {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.banner h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.ctaButton {
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.ctaButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.4s ease;
  z-index: -1;
}

.ctaButton:hover {
  background-color: #c62a22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ctaButton:hover::before {
  left: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-header-content-software h1 {
    font-size: 2rem;
  }
  .hero-header-content-software p {
    font-size: 1rem;
  }
  .banner h1 {
    font-size: 2rem;
  }
}
