/* Base Styles */
:root {
  --primary-color: #46e56e;
  --primary-hover: #46e56e;
  --secondary-color: #10b981;
  --secondary-hover: #059669;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --background-light: #f9fafb;
  --background-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0rem;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul {
  /* list-style-position: inside; */
  padding-left: 1rem;
}





/* Hero Section */
.hero {

  background: linear-gradient(90deg, #ff5252, #6c63ff);

  color: white;
  padding: 6rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.hero-text {
  flex: 1;
  /* text-align: left;
  max-width: 600px; */
  padding-top: 3rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 28rem;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  border-radius: 13px;
}

.wave-divider {
  position: relative;
  width: 100%;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Features Intro Section */
.features-intro {
  padding: 1.6rem 0 3rem;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.intro-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.intro-content p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.25rem;
}

.floating-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.badge span {
  font-weight: 600;
  color: var(--text-color);
}

/* Features Grid */
.features {
  padding: 3rem 0 5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--background-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 24rem;

}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-content ul li{
  list-style-type: disc;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.animated-icon {
  position: relative;
  overflow: hidden;
}

.animated-icon svg {
  transition: transform 0.5s ease;
}

.feature-card:hover .animated-icon svg {
  transform: scale(1.2) rotate(5deg);
}

.feature-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.feature-card ul {
  margin-bottom: 1.5rem;
  list-style-type: disc;
  position: relative;
  z-index: 2;
}

.feature-card li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-align: justify;
}

.feature-image {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.learn-more {
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
  padding-top: 1rem;
  position: relative;
  z-index: 2;
}

.learn-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.learn-more:hover::after {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--background-white);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.testimonial-image {
  flex: 0 0 120px;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  flex: 1;
  position: relative;
}

.testimonial-quote svg {
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.1;
  color: var(--primary-color);
}

.testimonial-quote p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.testimonial-quote h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.testimonial-quote span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
  background-color: white;
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-element:nth-child(2) {
  top: 60%;
  left: 75%;
}

.floating-element:nth-child(3) {
  top: 30%;
  left: 85%;  
  top: 60%;
  left: 75%;
}

.floating-element:nth-child(3) {
  top: 30%;
  left: 85%;
}

@keyframes float {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(var(--x), var(--y));
  }
  100% {
      transform: translate(0, 0);
  }
}

/* Animation Classes */
[data-animation] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animation="fade-left"] {
  transform: translateX(30px);
}

[data-animation="fade-right"] {
  transform: translateX(-30px);
}

[data-animation].animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-text {
      text-align: center;
  }
  
  .testimonial-content {
      flex-direction: column;
      text-align: center;
  }
  
  .testimonial-quote svg {
      left: 50%;
      transform: translateX(-50%);
  }
}
footer > .container{
      ul{
        padding-left: 0rem;
      }
}


@media (max-width: 768px) {
  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      flex-direction: column;
      padding: 1rem 0;
      box-shadow: var(--shadow-md);
  }
  
  .nav-links a {
      padding: 0.75rem 1.5rem;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .hero h1 {
      font-size: 2.25rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .features-grid {
      /* grid-template-columns: 1fr;
      margin-left: 19px; */
      display: flex
;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-content {
      flex-direction: column;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 2rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }


  .hero-image img{

      display: none;
  }

  .intro-content p{

    font-size: 14px;
  }
  .intro-content h2{

    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .feature-card{
    font-size: 13px;

  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.75rem;
  }

  
  .floating-badges {
      /* flex-direction: column; */
      align-items: center;
  }
  
  .testimonial-content {
      padding: 1.5rem;
  }
  .hero-image img{

      display: none;
  }
  /* footer{

    padding-left: 5px;
  } */
}


@media (max-width: 375px) {
  


}