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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Ninja Progress Indicator */
.ninja-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(232, 180, 184, 0.3);
  z-index: 1000;
}

.ninja-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e74c3c, #8b0000);
  width: 0%;
  transition: width 0.3s ease;
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: #e74c3c;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.particle.ninja-star {
  width: 8px;
  height: 8px;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.particle.code {
  width: 4px;
  height: 4px;
  background: #3498db;
  border-radius: 50%;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fefcfc 0%, #f5e6e8 50%, #e8b4b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%23e74c3c" opacity="0.05"/></svg>')
    repeat;
  background-size: 50px 50px;
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}

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

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #e74c3c, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInFromTop 1s ease-out;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #666;
  animation: slideInFromBottom 1s ease-out 0.3s both;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  animation: slideInFromBottom 1s ease-out 0.9s both;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e74c3c;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Central Graphic */
.central-graphic {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  z-index: 1;
}

.ninja-star-main {
  background: url(../../img/starImage2.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  animation: rotateNinja 10s linear infinite;
  position: relative;
}

.orbiting-icons {
  position: absolute;
  top: 110%;
  left: 110%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}

.orbit-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: orbit 15s linear infinite;
}

.orbit-item:nth-child(1) {
  animation-delay: 0s;
}
.orbit-item:nth-child(2) {
  animation-delay: -3s;
}
.orbit-item:nth-child(3) {
  animation-delay: -6s;
}
.orbit-item:nth-child(4) {
  animation-delay: -9s;
}
.orbit-item:nth-child(5) {
  animation-delay: -12s;
}

@keyframes rotateNinja {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #e74c3c, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

/* Images Section */
.images-section {
  background: #f8f9fa;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(231, 76, 60, 0.8),
    rgba(139, 0, 0, 0.8)
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.overlay-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.image-caption {
  font-size: 1rem;
  text-align: center;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #fefcfc 0%, #f5e6e8 100%);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%23e74c3c" opacity="0.02"/></svg>')
    repeat;
  background-size: 100px 100px;
}

.about-content {
  position: relative;
  z-index: 2;
}

.main-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.principle-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.principle-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.principle-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e74c3c;
}

.principle-description {
  color: #666;
  line-height: 1.6;
}

/* Story Section */
.story-section {
  background: #fff;
}

.founder-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.founder-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #e74c3c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e74c3c;
}

.founder-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.ninja-alias {
  font-size: 1rem;
  color: #8b0000;
  font-style: italic;
  margin-bottom: 2rem;
}

.founder-story {
  line-height: 1.8;
  color: #555;
}

.transformation-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.transformation-point {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: #666;
}

.mission-statement {
  background: linear-gradient(135deg, #e74c3c 0%, #8b0000 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.mission-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Timeline Section */
/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background: #f8f9fa;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #e74c3c, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
}

/* Main Timeline Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #8b0000);
  z-index: 1;
}

/* Timeline Items Container */
.timeline-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0 5%;
  gap: 2rem;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 200px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  z-index: 2;
}

.timeline-item.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Dot */
.timeline-dot {
  position: relative;
  width: 100px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #8b0000);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 1rem;
}

.timeline-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #c0392b, #7f0000);
}

.timeline-dot.active {
  background: linear-gradient(135deg, #27ae60, #16a085);
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

/* Timeline Content */
.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.95);
  width: 350px;
  max-width: 90vw;
  z-index: 10;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.timeline-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
  
}

.timeline-content.permanent {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.timeline-content:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Arrow pointing up to the dot */
.timeline-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
 
}

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #e74c3c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.timeline-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: center;
}

.timeline-achievements {
  list-style: none;
  margin-top: 1rem;
}

.timeline-achievements li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.timeline-achievements li::before {
  content: "⭐";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-size: 1.1rem;
}

.timeline-achievements li:hover {
  color: #e74c3c;
}

/* Ninja Star Animation */
.ninja-star {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #8b0000;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 0.9rem;
  }

  .timeline-content {
    margin-left: 1rem;
    padding: 2rem;
    
  }

  .timeline-content::before {
    left: -10px;
    border-right-width: 10px;
    border-top-width: 10px;
    border-bottom-width: 10px;
   
  }

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

  .timeline-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section{
    padding: 100px 0 0 0;
  }
  .container {
    padding: 0 1rem;
  }
.timeline-section{
  display: none;;
}
  .timeline-content {
    margin-left: 0.5rem;
    padding: 1.5rem;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }
  
}

/* Scroll Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects */
.timeline-item:hover .ninja-star {
  animation-duration: 1s;
}

/* Add a subtle hint that dots are interactive */
.timeline-dot::after {
  content: "👆";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.timeline-dot:hover::after {
  opacity: 0.7;
}

.timeline-dot.active::after {
  content: "📌";
  opacity: 1;
}

/* Floating particles for extra ninja effect */
.timeline-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%23e74c3c" opacity="0.02"/></svg>')
    repeat;
  background-size: 150px 150px;
  pointer-events: none;
  animation: floatBackground 30s linear infinite;
}

@keyframes floatBackground {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(150px) translateY(150px);
  }
}
/* Services Section */
.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  height: 20rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(231, 76, 60, 0.05),
    rgba(139, 0, 0, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e74c3c;
}

.ninja-name {
  font-size: 1rem;
  color: #8b0000;
  font-style: italic;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "🥷";
  position: absolute;
  left: 0;
}

.results-preview {
  background: linear-gradient(135deg, #e74c3c, #8b0000);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #8b0000 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%23ffffff" opacity="0.1"/></svg>')
    repeat;
  background-size: 50px 50px;
  animation: backgroundMove 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.primary-cta {
  background: white;
  color: #e74c3c;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0.8;
}

.trust-item {
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.trust-item::before {
  content: "✅";
  position: absolute;
  left: 0;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #e74c3c, #8b0000);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .central-graphic {
    display: none;
  }

  .founder-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    left: 4rem;
    right: 0;
  }

  .timeline-year {
    left: 2rem;
    transform: translateY(-50%);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
