body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f1a;
  color: #fff;
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: #0b0b15;
  border-bottom: 1px solid #222;
  padding: 10px;
  z-index: 999;
  text-align: center;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  display: inline-block;
  margin: 0 15px;
}
.nav-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: #00f0ff;
  border-bottom: 2px solid #00f0ff;
}

/* Hero */
.hero {
  height: 650px;
  background: url('images/Hero\ section-01.jpg') no-repeat center / cover;
  filter: brightness(0.8);
}

/* Intro */
.intro-section {
  text-align: center;
  padding: 40px 20px;
}
.intro-section h1 {
  font-size: 2.4em;
  color: #00d4ff;
}
.intro-section p {
  font-size: 1.1em;
  color: #ccc;
}
.cta-buttons a {
  background: #00d4ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-buttons a:hover {
  background: #04f0c1;
}

/* Neon Animated Line */
.neon-animated {
  color: #00f0ff;
  animation: neonFlicker 3s infinite alternate;
}
@keyframes neonFlicker {
  0% { text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff; }
  50% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #00f0ff; }
  100% { text-shadow: 0 0 15px #00f0ff, 0 0 25px #00f0ff; }
}

/* Section Title */
.section-title {
  font-size: 1.8em;
  margin: 50px 0 30px;
  text-align: center;
  color: #00d4ff;
}
.section-subtext {
  text-align: center;
  color: limegreen;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Services */
.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.card {
  background: #1e1e2e;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00d4ff66;
}

/* Packages */
.package-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.package-card {
  background: #151526;
  border: 2px solid #00d4ff;
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.package-card h3 {
  color: #00d4ff;
  margin-bottom: 10px;
}
.package-card h4 {
  color: #fff;
  margin-bottom: 20px;
}
.package-card ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 0.9em;
}
.package-card.highlight {
  border-color: #ff00ff;
  box-shadow: 0 0 12px #ff00ff66;
}
.neon-hover:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px #00f0ff, 0 0 25px #00f0ff;
  border-image: linear-gradient(90deg, #00f0ff, #ff00ff, #00f0ff) 1;
}

/* Addons */
.addon-list, .renewal-list {
  max-width: 800px;
  margin: auto;
  font-size: 1em;
  color: #ccc;
  list-style-type: square;
  padding-left: 40px;
}
.note {
  font-size: 0.85em;
  text-align: center;
  color: #888;
  margin-top: 15px;
}

/* Contact */
.contact {
  text-align: center;
  padding: 60px 20px;
}
.contact a {
  display: inline-block;
  margin: 10px 15px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  background: #00d4ff;
  color: #000;
}
.contact a.email {
  background: #00d4ff;
  color: #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #aaa;
  background: #0b0b15;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease;
}

.back-to-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px #00f0ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff00ff;

}
