/* Modern Section Styles */
.solutions-section, .ai-section, .marketing-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 40px;
}

.section-header span.text-primary {
  color: #4e73df;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d3e977;
}

.section-header .lead {
  font-size: 1.1rem;
  color: #e5e8eb;
  margin-bottom: 0;
}

/* Feature Cards */
.feature-card, .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(195, 171, 171, 0.247);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 3px solid #4e73df;
}

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

.icon-box, .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(78, 114, 223, 0.284);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.icon-box i, .feature-icon i {
  color: #4e73df;
  font-size: 1.25rem;
}

.feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #c9bc43;
}

.feature-content p {
  color: #b6966e;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-button .btn-primary {
  background: #4e73df;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.cta-button .btn-primary:hover {
  background: #2e59d9;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(78, 115, 223, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .solutions-section, .ai-section, .marketing-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .feature-card, .feature-item {
    padding: 15px;
  }
  
  .icon-box, .feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .icon-box i, .feature-icon i {
    font-size: 1rem;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  overflow: hidden;
}

.why-card {
  display: flex;
  background: #3b6bbe4a;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 3px solid #4e73df;
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(78, 115, 223, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #4e73df;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: #4e73df;
  color: #fff;
  transform: rotateY(180deg);
}

.why-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26ea0d;
}

.why-content p {
  color: #a867a3;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animation Delays */
[data-aos-delay="100"] {
  transition-delay: 100ms;
}

[data-aos-delay="200"] {
  transition-delay: 200ms;
}

[data-aos-delay="300"] {
  transition-delay: 300ms;
}

[data-aos-delay="400"] {
  transition-delay: 400ms;
}

[data-aos-delay="500"] {
  transition-delay: 500ms;
}

[data-aos-delay="600"] {
  transition-delay: 600ms;
}

/* Footer Styles */
.footer-section {
  background: #1a1a2e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(78, 115, 223, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

.footer-logo h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-icon {
  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;
  text-decoration: none;
}

.social-icon:hover {
  background: #4e73df;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #4e73df;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #a8b2d1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #4e73df;
  transform: translateX(5px);
  padding-left: 15px;
}

.footer-link:hover::before {
  opacity: 1;
  left: 0;
}

.contact-info {
  list-style: none;
  padding: 0;

  margin: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #a8b2d1;
}

.contact-info i {
  color: #4e73df;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-info a {
  color: #a8b2d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #4e73df;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  height: 48px;
  border-radius: 4px 0 0 4px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-primary {
  background: #4e73df;
  border-color: #4e73df;
  border-radius: 0 4px 4px 0;
  padding: 0 20px;
  height: 48px;
  transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
  background: #3a5bd9;
  border-color: #3a5bd9;
}

.payment-methods h6 {
  color: #a8b2d1;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #a8b2d1;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #a8b2d1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #4e73df;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .footer-section {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 3rem 0;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
  }
  
  .footer-heading {
    margin-top: 2rem;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
}
