:root {
  --primary: #833AB4;
  --primary-light: #C13584;
  --secondary: #5B51D8;
  --accent: #E1306C;
  --success: #28a745;
  --warning: #ffc107;
  --error: #dc3545;
  --background: #F9F9F9;
  --text: #333333;
  --text-light: #666666;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #833AB4 1px, transparent 1px);
  background-size: 50px 50px;
  animation: particleAnimation 20s linear infinite;
  opacity: 0.1;
}

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

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

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(131, 58, 180, 0.1);
  color: var(--primary);
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.2s;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.4s;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.6s;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.8s;
}

.trust-badge {
  display: flex;
  align-items: center;
  color: var(--success);
  font-weight: 500;
}

.hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  transform: translateX(50px);
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards 1s;
}

.main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.card-1 {
  top: 10%;
  left: -30px;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  bottom: 15%;
  right: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.card-text p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.8rem;
}

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

@keyframes fadeInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-collapse{
    background-color: #FFF;
    padding: 15px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .image-wrapper {
    margin-top: 3rem;
  }
}

/* Gradient Effects */
.bg-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%) !important;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  padding: 0.25rem 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
#hero {
  padding-top: 140px;
  padding-bottom: 70px;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card-1 {
  top: 10%;
  left: -30px;
  animation-delay: 0.5s;
}

.floating-card-2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 1s;
}

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

/* Services Section */
#services {
  position: relative;
  padding: 80px 0;
}

.popular-card {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 1;
}

.pricing-value {
  margin: 15px 0;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

/* Stats Section */
#stats {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.count-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 180px;
  text-align: center;
  transition: all 0.3s ease;
}

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

/* Benefits Section */
#benefits {
  padding: 80px 0;
  position: relative;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
}

/* Testimonials Section */
#testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-rating {
  font-size: 0.8rem;
}

.growth-badge {
  background: linear-gradient(90deg, var(--success) 0%, #36d278 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev i,
.carousel-control-next i {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-indicators {
  position: relative;
  margin-top: 20px;
  margin-bottom: 0;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  opacity: 0.5;
}

.testimonial-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23833AB4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  border: none;
}

/* Contact Section */
#contact {
  padding: 80px 0;
}

.contact-form-container {
  position: relative;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(131, 58, 180, 0.25);
}

/* Footer */
footer {
  background-color: #1a1a1a;
}

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

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

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .popular-card {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .floating-card {
    display: none;
  }
  #backToTop{
    display:none
  }
}