:root {
  --primary: #2665a9;
  --primary-dark: #17406d;
  --secondary: #ff7d4d;
  --accent: #17406d;
  --dark: #17406d;
  --light: #f8faff;
  --gradient: linear-gradient(135deg, var(--primary));
  --glass: #f8faff;
  --glass-border: f8faff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
}

body {
  background-color: var(--dark);
  color: white;
  line-height: 1.6;
  /* background-image: radial-gradient(
      circle at 20% 30%,
      rgba(108, 77, 255, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 125, 77, 0.15) 0%,
      transparent 30%
    ); */
}

/* Section 1: Hero with Animated Particles */
.marketing-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  background-color: var(--dark);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: float infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, white, #e0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* box-shadow: 0 10px 30px rgba(108, 77, 255, 0.3); */
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
 
}

.cta-button:hover::before {
  opacity: 1;
}

/* Section 2: Services Grid with Hover Effects */
.services-section {
  padding: 100px 5%;
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem !important;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right,  var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  color: var(--light) !important;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    transparent 60%,
    rgba(108, 77, 255, 0.05) 100%
  ); */
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-15px);
  /* box-shadow: 0 25px 60px rgba(108, 77, 255, 0.2); */
  border-color: var(--primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 77, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 32px;
  border: 1px solid var(--glass-border);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: white;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: white;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Section 3: Stats with Animated Counters */
.stats-section {
  padding: 120px 5%;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(
      circle at 20% 30%,
      white 0%,
      transparent 20%
    ),
    radial-gradient(circle at 80% 70%, white 0%, transparent 20%);
}

/* Section 4: Process Section */
.process-section {
  padding: 120px 5%;
  background: rgba(15, 15, 30, 0.8);
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(38, 101, 169, 0.3);
}

.step-content {
  padding-top: 10px;
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.process-line {
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--glass-border);
  z-index: -1;
}

/* Section 5: Testimonials Slider */
.testimonials-section {
  padding: 120px 5%;
  background: rgba(15, 15, 30, 0.7);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 30px;
}

.testimonials-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.testimonial-card {
  background: rgba(15, 15, 30, 0.8);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(0deg);
  scroll-snap-align: start;
  flex: 0 0 100%;
  margin-right: 30px;
  min-width: 0;
}

.testimonial-card:last-child {
  margin-right: 0;
}

.testimonial-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);

}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: white;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Section 6: Pricing Plans */
.pricing-section {
  padding: 120px 5%;
  background: rgba(15, 15, 30, 0.8);
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.pricing-card {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid var(--glass-border);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 1px solid var(--primary);
  box-shadow: 0 20px 50px rgba(38, 101, 169, 0.2);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.pricing-card .price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-card ul li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li i {
  color: var(--accent);
}

.pricing-card .cta-button {
  width: 100%;
  text-align: center;
}


/* Section 8: CTA with Interactive Background */
.cta-section {
  padding: 150px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(
      circle at 20% 30%,
      rgba(108, 77, 255, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 125, 77, 0.3) 0%,
      transparent 30%
    ); */
  z-index: -1;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, white, #e0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

/* Footer */
.footer {
  padding: 80px 5% 40px;
  background: rgba(15, 15, 30, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .cta-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle,
  .cta-subtitle {
    font-size: 1.2rem;
  }

  .services-grid,
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card {
    padding: 40px 30px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .process-step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .process-line {
    left: 30px;
    top: 60px;
    height: calc(100% - 60px);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-slider {
    scroll-snap-type: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
