* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Noto Sans SC", sans-serif;
  background-color: #0f1126;
  color: #fff;
}
.navbar {
  background: linear-gradient(90deg, #1a1f3b, #5468ff);
}
.hero {
  background: linear-gradient(rgba(10, 10, 30, 0.9), rgba(10, 10, 30, 0.9)),
    url("assets/img/hero.jpg") center/cover no-repeat;
  padding: 140px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  color: #a2c2ff;
  text-shadow: 0 0 10px rgba(164, 202, 255, 0.8);
}
.btn-neon {
  background-color: transparent;
  border: 2px solid #a2c2ff;
  color: #a2c2ff;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-neon:hover {
  background-color: #a2c2ff;
  color: #0f1126;
  box-shadow: 0 0 15px #a2c2ff;
}
.section-title {
  font-size: 2rem;
  color: #a2c2ff;
  margin-bottom: 30px;
}
.product-card {
  background-color: #1a1f3b;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(84, 104, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(84, 104, 255, 0.3);
}
.icon-feature i {
  font-size: 2.5rem;
  color: #a2c2ff;
}
.icon-feature i,
.bi {
  color: #a2c2ff;
  transition: transform 0.3s ease;
}
.icon-feature:hover i {
  transform: scale(1.2);
}

ul li i.bi-check-circle-fill {
  color: #4caf50;
}

img.rounded.shadow {
  box-shadow: 0 0 30px rgba(84, 104, 255, 0.15);
  border-radius: 15px;
}

.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.product-card,
.card.bg-opacity-10 {
  background-color: #1a1f3b !important;
  border: none;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(84, 104, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover,
.card.bg-opacity-10:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(84, 104, 255, 0.25);
}

.card.border-info {
  background-color: #1f223a;
  color: #fff;
  box-shadow: 0 0 30px rgba(84, 104, 255, 0.15);
}
.card.border-info:hover {
  box-shadow: 0 0 40px rgba(84, 104, 255, 0.4);
}

.btn-info {
  background-color: #a2c2ff;
  color: #0f1126;
  border: none;
}
.btn-outline-info {
  border-color: #a2c2ff;
  color: #a2c2ff;
}
.btn-outline-info:hover {
  background-color: #a2c2ff;
  color: #0f1126;
}
.btn-neon {
  background-color: transparent;
  border: 2px solid #a2c2ff;
  color: #a2c2ff;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-neon:hover {
  background-color: #a2c2ff;
  color: #0f1126;
  box-shadow: 0 0 15px #a2c2ff;
}
label {
  color: #a2c2ff;
}
.form-control,
.form-check-input {
  background-color: #1a1f3b;
  border: 1px solid #5468ff;
  color: #fff;
}
.form-control::placeholder {
  color: #aaa;
}
.form-check-label {
  color: #ccc;
}
.btn-submit {
  background-color: #a2c2ff;
  color: #0f1126;
  font-weight: bold;
  border: none;
}
.btn-submit:hover {
  background-color: #fff;
  color: #0f1126;
}
.contact-info i {
  color: #a2c2ff;
  font-size: 1.2rem;
  margin-right: 10px;
}
footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 0;
}
footer a {
  color: #a2c2ff;
  margin-right: 15px;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
