* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   BODY – 
========================= */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1a1140 0%, #0c081c 40%, #070513 100%);
  color: #f2f2f5;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 0 30px;
}

/* =========================
   NAVBAR – 
========================= */
.navbar {
  margin: 40px auto;
  max-width: 1150px;
  padding: 20px 40px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  position: sticky;
  top: 20px;
  z-index: 999;
  background: rgba(28,16,60,0.15); 
  backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(28,16,60,0.85); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.logo-img {
  width: 90px;
  transition: 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(203,108,230,0.4));
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: #e6e6f0;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: #cb6ce6;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO – 
========================= */
.hero {
  margin: 100px auto 140px auto;
  text-align: center;
  position: relative;
}

.hero h2 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero p {
  max-width: 650px;
  margin: auto;
  font-size: 1.05rem;
  color: #d9d9e5;
  margin-bottom: 50px;
}

.paragraph {
  font-size: 0.6rem;
  color:#d7d7e2;
  margin: auto;
}

/* Accent glow  */
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(203,108,230,0.15) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* =========================
   BUTTON 
========================= */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #cb6ce6;
  color: #cb6ce6;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #cb6ce6;
  color: #0c081c;
  box-shadow: 0 0 25px rgba(203,108,230,0.4);
}

/* =========================
   SERVICES SECTION
========================= */
.services {
  margin-bottom: 140px;
}

.services h3 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}

.services h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #cb6ce6;
  margin-top: 15px;
}

.cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(203,108,230,0.4);
  box-shadow: 0 15px 40px rgba(203,108,230,0.15);
}

.card h4 {
  margin-bottom: 15px;
  font-weight: 500;
  color: #cb6ce6;
  letter-spacing: 1px;
}

.card p {
  color: #d7d7e2;
  font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #1c103c;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #9c9cb2;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.5rem;
  color: #9c9cb2;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #cb6ce6;
  box-shadow: 0 0 25px rgba(203,108,230,0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .cards {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2rem;
  }

  nav ul {
    gap: 20px;
  }
}
