* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background-color: #0d1b2a;
  color: #f8f9fa;
  scroll-behavior: smooth;
  line-height: 1.6;
}

a {
  color: #00cfff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #a8ff60;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  color: #00cfff;
}

.btn-info {
  background-color: #00cfff;
  border: none;
  color: #0d1b2a;
}
.btn-info:hover {
  background-color: #00b5e2;
  color: #fff;
}
.btn-outline-light:hover {
  background-color: #a8ff60;
  color: #0d1b2a;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shadow {
  box-shadow: 0 8px 24px rgba(0, 207, 255, 0.2);
}
.border-primary {
  border: 2px solid #00cfff !important;
}
.bg-dark {
  background-color: #0d1b2a !important;
}
.bg-secondary {
  background-color: #132d46 !important;
}

[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos].aos-animate {
  opacity: 1;
}

.pricing-card {
  border-radius: 1rem;
  border: 1px solid #00cfff;
  background: #101f33;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

.bi {
  color: #00cfff;
  transition: transform 0.3s ease;
}
.bi:hover {
  color: #a8ff60;
  transform: scale(1.2);
}

ul.list-unstyled li {
  padding-left: 1.5rem;
  position: relative;
}
ul.list-unstyled li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a8ff60;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  section {
    padding: 60px 0;
  }
}

footer {
  background-color: #0b1723;
  color: #ccc;
  padding: 40px 0;
}
footer a {
  color: #00cfff;
}
footer a:hover {
  color: #a8ff60;
}

.navbar-custom {
  background-color: #0d1b2a;
  border-bottom: 2px solid #00cfff;
}
.navbar-custom .nav-link {
  color: #f8f9fa;
  margin-right: 1rem;
  transition: all 0.2s ease;
}
.navbar-custom .nav-link:hover {
  color: #a8ff60;
}
