:root {
  --primary-color: #760606;
  --secondary-color: #a84242;
  --accent-color: #d87373;
  --dark-purple: #4a0404;
  --light-bg: #fff5f5;
  --text-dark: #2d2d2d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(118, 6, 6, 0.95) 0%,
      rgba(74, 4, 4, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600")
      center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.btn-cta {
  background: var(--secondary-color);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
  animation: fadeInUp 1.4s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 66, 66, 0.5);
  background: #8f3535;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--dark-purple);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
}

/* What Is Section */
.what-is-section {
  background: var(--light-bg);
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(118, 6, 6, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-purple);
}

.feature-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-purple) 100%
  );
  color: white;
}

.impact-section .section-title {
  color: white;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* Testimonials */
.testimonial-section {
  min-width
  background: var(--light-bg);
}

.testimonial-card {
    min-width:286px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin: 20px;
  text-align: center;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(216, 115, 115, 0.2) 0%,
    rgba(168, 66, 66, 0.2) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.cta-checklist {
  list-style: none;
  max-width: 500px;
  margin: 40px auto;
  text-align: left;
}

.cta-checklist li {
  font-size: 1.2rem;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-checklist i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.4rem;
}

/* Footer */
.footer {
  background: var(--dark-purple);
  color: white;
  padding: 60px 0 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .btn-cta {
    padding: 15px 40px;
    font-size: 1rem;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

