* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
}

body {
  background: #0b0b0b;
  color: #ffffff;
  overflow-x: hidden;
}

/* Background Video */
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.overlay {
  background: rgba(0, 0, 0, 0.55);
  min-height: 100vh;
  padding: 60px 8%;
}

/* Mouse follower — 1 inch (~96px) */
#mouse-follower {
  position: fixed;
  width: 96px;
  height: auto;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
}

/* HERO INTRO */
.hero-intro {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 80px 0;
}

.profile-pic {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5d547;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CTA */
.cta-btn {
  padding: 18px 50px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #1e3cff, #ff3b3b);
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  filter: brightness(0.7);
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-size: 3rem;
  margin-bottom: 50px;
}

.service-card {
  margin-bottom: 50px;
}

.service-card h3 {
  font-size: 2rem;
  color: #3fa9f5;
}

.service-card p {
  font-size: 1.4rem;
  margin: 12px 0;
}

.service-card span {
  font-size: 1.15rem;
  color: #f5d547;
  line-height: 1.6;
  display: block;
}

/* SIGNUP */
.signup {
  max-width: 700px;
  margin: auto;
  padding: 80px 0;
}

.signup h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

form input,
form select {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.1rem;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff3b3b, #f5d547);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}

.submit-btn:hover {
  filter: brightness(0.7);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 1rem;
  color: #cccccc;
}

/* MOBILE */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1.3rem;
  }

  .services h2,
  .signup h2 {
    font-size: 2.4rem;
  }
}
