/* Custom Components */
/* Feature Box */
.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 2rem;
}

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

.feature-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-box h3 {
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-section {
  background-color: #f8f9fa;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.pricing-card ul {
  margin-bottom: 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Client Logos */
.clients-section {
  background-color: white;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.client-logos img {
  height: 50px;
  opacity: 0.7;
  transition: var(--transition);
}

.client-logos img:hover {
  opacity: 1;
}

/* Testimonials */
.testimonial-section {
  background-color: #f8f9fa;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.testimonial-text {
  font-style: normal;
  margin-bottom: 1.5rem;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-info h5 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #666;
  font-size: 0.875rem;
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a2e;
    color: #fff;
    padding: 70px 0 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00e785 0%, #00b4e7 100%);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    color: #b1b1b1;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00e785 0%, #00b4e7 100%);
}

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

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

.footer-links a {
    color: #b1b1b1;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00e785;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #b1b1b1;
}

.footer-contact i {
    color: #00e785;
    margin-right: 15px;
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: #b1b1b1;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-right: 10px;
}

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

.social-links a:hover {
    background: #00e785;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright-text p {
    margin: 0;
    color: #b1b1b1;
    font-size: 14px;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-payments p {
    margin: 0 10px 0 0;
    color: #b1b1b1;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-methods li {
    margin-left: 10px;
    font-size: 24px;
    color: #b1b1b1;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-title {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-payments {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-text {
        text-align: center;
    }
}


  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-left: 3px solid var(--primary-color);
    margin-top: 0.5rem;
    display: none;
  }

  .nav-item:hover .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero-banner {
    padding: 8rem 0 3rem;
    text-align: center;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 1s ease-out;
}

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

/* Form Styles */
.form-control {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 231, 133, 0.25);
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border-left: 4px solid var(--success-color);
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
  border-left: 4px solid var(--danger-color);
}