/* Reset & Base */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.separator-one{
    height: 100px;
}

.separator-two{
    height: 120px;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1f1f1f, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffb6c1;
  font-family: 'Orbitron', sans-serif;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

.logo-spinner-container {
  text-align: center;
  animation: fadeInUp 2s ease;
}

.loader-spinner-glow {
  width: 80px;
  height: 80px;
  border: 8px solid #ff69b4;
  border-top: 8px solid transparent;
  border-radius: 50%;
  animation: spin 1.2s linear infinite, glowPulse 2s ease-in-out infinite;
  margin: 0 auto 25px;
  box-shadow: 0 0 15px #ff69b4;
}

.loader-brand {
  font-size: 2.8rem;
  color: #ffd1dc;
  text-shadow: 0 0 20px #ff69b4;
  margin-bottom: 0.5rem;
}

.loader-sub {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.8;
  font-family: 'Poppins', sans-serif;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px #ff69b4;
  }
  50% {
    box-shadow: 0 0 25px #ff69b4;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 3rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #ff69b4;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffb6c1;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 15vh;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffd1dc;
  text-shadow: 0 0 15px #ffd1dc;
  font-weight: 700;
}

.hero .highlight {
  color: #ff69b4;
  font-weight: 700;
}

.hero .offers {
  font-size: 1.75rem;
  line-height: 1.6;
  color: #f5f5f5;
  font-weight: 600;
}

.offer {
  color: #ffa07a;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-weight: 700;
}

.offer:hover {
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
}

/* Background Cards */
.background-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.background-cards .card {
  position: absolute;
  width: 260px;
  height: 340px;
  padding: 1.5rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.6);
  transform: scale(0.9) rotateY(20deg);
  opacity: 0.4;
  transition: all 0.6s ease;
  animation: float 6s ease-in-out infinite;
}

.web-design-card {
  top: 20%;
  left: 10%;
  background: linear-gradient(135deg, #d5a3ff, #a1c4fd);
}

.ai-card {
  top: 12%;
  right: 10%;
  background: linear-gradient(135deg, #ffdde1, #fbb1bd);
}

.branding-card {
  bottom: 15%;
  left: 20%;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}

.seo-card {
  bottom: 12%;
  right: 12%;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(0.9) rotateY(20deg);
  }
  50% {
    transform: translateY(-15px) scale(0.9) rotateY(20deg);
  }
}

.background-cards .focused {
  transform: scale(1.1) rotateY(0deg);
  opacity: 1;
  z-index: 5;
  border: 2px solid #ff69b4;
  box-shadow: 0 0 25px #ff69b4;
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fefefe;
}

#homepage {
  position: relative;
  z-index: 5;
  padding-bottom: 8rem; /* creates space before the growth section */
  
}


/* Testimonials */
.testimonials-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  overflow-x: hidden;
  margin-top: 5rem;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: 'Orbitron', sans-serif;
  color: #ffd1dc;
  text-shadow: 0 0 10px #ff69b4;
}

/* Carousel container */
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track scrolling */
.carousel-track {
  display: flex;
  gap: 2rem;
  width: fit-content;
  animation: scrollLeft 60s linear infinite;
}

.carousel-track.paused {
  animation-play-state: paused;
}

/* Testimonial cards */
.testimonial-card {
  background: white;
  color: #333;
  border-radius: 20px 20px 20px 0;
  padding: 1.5rem 2rem;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  position: relative;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.85;
}

.testimonial-card.hovered {
  animation: none !important;
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 15px 45px rgba(255, 105, 180, 0.4);
}

.testimonial-card span {
  color: #ff69b4;
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#growth{
    margin-top: 5%;
}

.growth-section {
  padding: 5rem 2rem;
  margin-top: 4rem; /* adds breathing space from the section above */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}


.growth-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
}
#growthChart {
  max-width: 90%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.4);
}

.features-section {
  padding: 5rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffe4e1, #e0bbff);
  color: #333;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #ff69b4;
}

#features{
    margin-top: 20%;
}

.button-row {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ripple-button {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff69b4, #ffd1dc);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ripple-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
}

.ripple-button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.ripple-button:active::after {
  width: 200px;
  height: 200px;
  opacity: 1;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.8s ease;
}

.parallax-layer {
  will-change: transform;
  transition: transform 0.05s linear;
}
