/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cosmic Background */
body {
    background: radial-gradient(circle at 20% 20%, #1a1f3b, #0a0f1f 40%, #000000 90%);
    color: #e6e6e6;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
/* Navigation */
.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #8a2be2, #00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.35);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #8a2be2;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
}

.site-header {
    text-align: center;
    /* extra top padding so fixed navbar doesn't overlap the heading */
    padding: 120px 20px 60px;
}

.site-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.site-header p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
}

.hero h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #8a2be2, #00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
}
body {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.services {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.service-tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.service-tier h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-tier ul {
  margin: 10px 0;
  padding-left: 20px;
}

.price-range {
  margin-top: 10px;
  font-weight: bold;
  color: #a0e0ff;
}
