.software-showcase {
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
}

:root{
  --glass: rgba(255,255,255,.14);
  --glass-2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.28);
  --stroke-soft: rgba(255,255,255,.18);
  --blueGlow: rgba(86, 207, 255, .65);
  --blueGlow2: rgba(86, 207, 255, .35);
  --text: #0b1b2a;
}

.package_main{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(255,255,255,.25), rgba(255,255,255,0) 60%),
    radial-gradient(900px 500px at 20% 60%, rgba(86,207,255,.16), rgba(0,0,0,0) 60%),
    radial-gradient(900px 500px at 80% 65%, rgba(86,207,255,.12), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, #4a5a72 0%, #2a3a56 45%, #1b2a40 100%);
  color: var(--text);
  /* background-image: url('../img/sllider1.webp');
  background-repeat: no-repeat; */
  overflow-x:hidden;
}

/* faint “tech / dots” overlay */
.package_main:before{
  content:"";
  /* position:fixed; */
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.07) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 75%, rgba(255,255,255,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.06) 0 2px, transparent 3px);
  background-size: 220px 220px, 260px 260px, 240px 240px, 280px 280px;
  opacity:.65;
  pointer-events:none;
  mix-blend-mode: screen;
  filter: blur(.2px);
}

.wrap{
  width:min(1080px, 94vw);
  padding: 26px 0;
}

/* Outer neon frame */
.neon-frame{
  position:relative;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.03);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 18px 60px rgba(0,0,0,.30);
}

.neon-frame:before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius: 30px;
  background:
    linear-gradient(135deg,
      rgba(110,230,255,.95),
      rgba(110,230,255,.15),
      rgba(255,255,255,.25),
      rgba(110,230,255,.20),
      rgba(110,230,255,.85)
    );
  filter: blur(10px);
  opacity:.85;
  z-index:-1;
}

/* Top “glass” header */
.top-panel{
  position:relative;
  border-radius: 18px;
  padding: 28px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.10));
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 18px 45px rgba(0,0,0,.14);
}

.top-panel:before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 24px;
  background:
    radial-gradient(700px 120px at 50% -10%, rgba(110,230,255,.55), rgba(0,0,0,0) 65%);
  opacity:.8;
  pointer-events:none;
}

.top-title{
  font-weight: 700;
  letter-spacing:.2px;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  text-align:center;
  margin:0 0 10px;
  color:#0a2237;
}

.top-sub{
  max-width: 820px;
  margin: 0 auto;
  text-align:center;
  color: rgba(8,25,40,.88);
  font-size: 1.03rem;
  line-height: 1.55;
}

/* Bottom two panels container */
.bottom-row{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.glass-card{
  border-radius: 18px;
  padding: 22px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border: 1px solid var(--stroke-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 16px 40px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
}

.glass-card:before{
  content:"";
  position:absolute;
  inset:-40px -60px auto -60px;
  height: 140px;
  background:
    radial-gradient(260px 90px at 50% 50%, rgba(110,230,255,.32), rgba(0,0,0,0) 70%);
  opacity:.9;
  pointer-events:none;
}

.sections-title{
  font-weight: 700;
  color:#0a2237;
  font-size: 1.75rem;
  margin-bottom: 14px;
}

/* Check list */
.checklist{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap: 12px;
}
.checklist li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(8,25,40,.92);
  font-size: 1.03rem;
  line-height:1.35;
}

.check-dot{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(80, 214, 170, .22);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow:
    0 0 0 1px rgba(80,214,170,.22) inset,
    0 10px 18px rgba(0,0,0,.12);
  flex: 0 0 30px;
  margin-top: 1px;
}
.check-dot i{
  color: #2fbf8a;
  font-size: 1.15rem;
}

/* Left button */
.btn-quote{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing:.2px;
  color: #ffffff;
  background: linear-gradient(90deg, #0a5bd8 0%, #0f78ff 45%, #19b5d9 100%);
  box-shadow:
    0 14px 28px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.14) inset;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .12s ease, filter .12s ease;
}
.btn-quote:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Contact form styling */
.form-label{
  font-weight: 600;
  color: rgba(8,25,40,.90);
  margin-bottom: 6px;
}
.form-control .form-control-sm{
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.14);
  color: rgba(8,25,40,.92);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
  padding: 10px 12px;
}
.form-control .form-control-sm:focus{
  background: rgba(255,255,255,.18);
  border-color: rgba(110,230,255,.55);
  box-shadow: 0 0 0 .22rem rgba(110,230,255,.18);
  color: rgba(8,25,40,.92);
}

.btn-send{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: .6px;
  color:#ffffff;
  background: linear-gradient(90deg, #0a5bd8 0%, #0f78ff 35%, #33c06b 100%);
  box-shadow:
    0 14px 28px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.14) inset;
  transition: transform .12s ease, filter .12s ease;
}
.btn-send:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Small “lock icons” in background corners */
.locks{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.25;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}
.lock{
  position:absolute;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(6px);
}
.lock i{ color: rgba(255,255,255,.95); font-size: 18px; }
.lock.one{ top: 20px; left: 22px; }
.lock.two{ top: 28px; right: 26px; }
.lock.three{ bottom: 22px; left: 34px; opacity:.18; transform: scale(.92); }
.lock.four{ bottom: 18px; right: 30px; opacity:.18; transform: scale(.92); }

/* Responsive */
@media (max-width: 992px){
  .bottom-row{ grid-template-columns: 1fr; }
  .top-sub{ font-size: 1rem; }
}
