:root {
  --purple: #bc32c3;
  --yellow: #f0b501;
  --black: #0a0a0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: white;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
}

.logo span {
  color: var(--yellow);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.btn-yellow {
  background: var(--yellow);
  color: black !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple) 0%, #8e24aa 100%);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  margin-top: 80px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-purple {
  background: var(--purple);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-purple:hover {
  background: var(--yellow);
  color: black;
  transform: translateY(-5px);
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 20s infinite linear;
}

.shape:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { width: 200px; height: 200px; bottom: 20%; right: 15%; animation-delay: 5s; }
.shape:nth-child(3) { width: 400px; height: 400px; top: 50%; left: 70%; animation-delay: 10s; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Portfolio */
.portfolio {
  padding: 8rem 8%;
  background: var(--black);
}

.portfolio h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--yellow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.project-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}

.project-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px 40px rgba(188, 50, 195, 0.4);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-card .overlay {
  padding: 1.5rem;
  text-align: center;
}

.live-link {
  color: var(--yellow);
  margin-top: 1rem;
  display: inline-block;
}

/* Quote Section */
.quote-section {
  padding: 8rem 8%;
  background: linear-gradient(135deg, var(--purple), #6d1b73);
  text-align: center;
}

.quote-section h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

#quoteForm {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

#quoteForm input,
#quoteForm select {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

#quoteForm button {
  padding: 1.2rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 8% 2rem;
  text-align: center;
}

footer .logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.socials a {
  color: var(--yellow);
  margin: 0 1rem;
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* You can later add a hamburger menu */
  }

  .hero h1 {
    font-size: 3rem;
  }
}
/* Testimonials Page */
.testimonials {
  padding: 8rem 8%;
  background: var(--black);
  text-align: center;
}

.testimonials h2 {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 4rem;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: #111;
  border-radius: 20px;
  padding: 2rem;
  margin: 0 1rem;
  min-width: 100%;
  box-shadow: 0 10px 20px rgba(188, 50, 195, 0.2);
  text-align: center;
  animation: pop-in 0.5s ease;
}

.testimonial-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.client-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--purple);
}

.client-info h4 {
  font-size: 1.5rem;
  color: var(--yellow);
}

.client-info span {
  font-size: 1rem;
  opacity: 0.7;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--purple);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
}

.prev { left: -3rem; }
.next { right: -3rem; }

.prev:hover, .next:hover {
  background: var(--yellow);
  color: black;
}

@keyframes pop-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Pricing Page */
.pricing {
  padding: 8rem 8%;
  background: linear-gradient(135deg, var(--purple), #6d1b73);
  text-align: center;
}

.pricing h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: #111;
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: 0.4s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px 40px rgba(240, 181, 1, 0.4);
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 2rem;
}

.price span {
  font-size: 1.5rem;
  opacity: 0.7;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card li {
  font-size: 1.1rem;
  margin: 1rem 0;
  opacity: 0.9;
}

.popular .badge {
  background: var(--yellow);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .prev { left: 0; }
  .next { right: 0; }
}
/* Pricing Ticker */
.ticker-wrapper {
  overflow: hidden;
  background: linear-gradient(90deg, #e74c3c, #27ae60); /* Festive red-to-green gradient */
  border-radius: 10px;
  margin: 1rem 0;
  position: relative;
  height: 40px; /* Adjust height as needed */
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5); /* Subtle glow */
  animation: glow 2s ease-in-out infinite alternate; /* Festive pulsing glow */
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  animation: scroll-left 15s linear infinite; /* Adjust speed with duration */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Half, since text is duplicated */
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.7); /* Pulse between red and green glow */
  }
}
/* Gradient Prices */
.price {
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--purple), var(--yellow)); /* Purple to yellow gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block; /* Ensures gradient and filter apply properly */
  font-weight: 900; /* Bold font */
  filter: drop-shadow(0 0 10px rgba(240, 181, 1, 0.8)) /* Layered outer glow */
}

.price span {
  font-size: 1.5rem;
  opacity: 0.7;
  background: none; /* Keep /mo non-gradient for readability */
  -webkit-text-fill-color: white;
  text-fill-color: white;
  font-weight: 700; /* Bold for /mo too */
  filter: none; /* No glow on /mo to avoid clutter */
}
/* Pulsing Animation for Middle Card */
.price-card.popular {
  animation: pulse 2s infinite ease-in-out; /* Gentle pulse every 2s */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1); /* Normal size */
    box-shadow: 0 10px 20px rgba(240, 181, 1, 0.2); /* Subtle yellow shadow */
  }
  50% {
    transform: scale(1.05); /* Slight grow for pop */
    box-shadow: 0 15px 30px rgba(240, 181, 1, 0.5); /* Brighter glow */
  }
}
