/* =========================
   GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* =========================
   HEADER & NAV
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 50px;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: rgb(43, 197, 151);
}

nav .cta {
  background: rgb(43, 197, 151);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  transition: background 0.3s ease;
}

nav .cta:hover {
  background: rgb(36, 165, 127);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
}

/* =========================
   CONTENT SECTIONS
========================= */
.content {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: rgb(43, 197, 151);
}

.content p {
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1rem;
}

/* =========================
   HIGHLIGHTS LIST
========================= */
.highlights ul {
  list-style: none;
  margin-top: 1rem;
}

.highlights ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.highlights ul li::before {
  content: "✔";
  color: rgb(43, 197, 151);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  border-top: 1px solid #eee;
}

footer a {
  color: rgb(43, 197, 151);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero {
    height: 40vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .content {
    margin: 2rem auto;
  }
}


.cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: rgb(43, 197, 151);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    width 0.2s ease,
    height 0.2s ease,
    background-color 0.3s ease;
  z-index: 9999;
}

/* When moving, fade in */
.cursor-ball.active {
  opacity: 1;
}

/* Optional hover grow effect */
a:hover ~ .cursor-ball,
button:hover ~ .cursor-ball {
  width: 25px;
  height: 25px;
  background-color: rgba(43, 197, 151, 0.7);
}
