:root {
  --accent-color: #2060e4;
}

/* Bootstrap Color Overrides */
.text-accent {
  color: var(--accent-color) !important;
}

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

.btn-accent:hover {
  background-color: #032874;
  border-color: #032874;
  color: white;
}

.global-stats .stat-item {
  padding: 0.5rem;
}

.global-stats .stat-item strong {
  font-size: 1.2rem;
  display: block;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.success-stat {
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.success-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-location {
  text-align: center;
}

.cta-features {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
}

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

.hero-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 1000 1000"><polygon fill="rgba(3,40,116,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat center center;
  background-size: cover;
}

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

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

.platform-preview {
  position: relative;
}

.floating-card {
  position: absolute;
  animation: float 3s ease-in-out infinite;
}

.floating-card .card {
  border-radius: .25rem;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

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

  50% {
    transform: translateY(-10px);
  }
}

.trust-indicators {
  margin-top: 2rem;
}

.rating-stars {
  font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, #032874, #2060e4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;

}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--light-color);
  font-size: 0.9rem;
}

/* Benefits Section */
.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032874, #2060e4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.benefits-image {
  position: relative;
}

.benefits-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #032874, #2060e4);
  border-radius: 15px;
  z-index: -1;
}

/* Pricing Section */
.pricing-card {
  position: relative;
}

/* .pricing-card.featured {
  transform: scale(1.05);
} */

.pricing-card .card {
  border: 2px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pricing-card.featured .card {
  border-color: #032874;
  box-shadow: 0 10px 30px rgba(3, 40, 116, 0.2);
}

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

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #032874;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 3;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #032874;
}

.price-period {
  font-size: 1.2rem;
  color: var(--light-color);
}

.pricing-features {
  list-style: none !important;
  padding: 0;
}
.about-section ul li:before {
  display: none;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #a7d3ff;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonial-card .card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
}

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

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

.testimonial-text {
  font-style: italic;
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  color: #333;
}

/* CTA Section */
.cta-form .form-control {
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.cta-form .form-control:focus {
  border-color: white;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  background: white;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Card Hover Effects */
.card {
  transition: all 0.3s ease;
}

/* AI Tools Section */
.bg-gradient {
  background: linear-gradient(135deg, #032874 0%, #2060e4 100%);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Success Metrics Section */
.metric-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e9ecef;
}

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

.metric-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032874, #2060e4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.metric-icon i {
  font-size: 2rem;
  color: white;
}

.metric-number {
  font-size: 3rem;
  font-weight: bold;
  color: #032874;
  margin-bottom: 0.5rem;
}

.metric-title {
  color: #333;
  margin-bottom: 1rem;
}

.metric-description {
  color: var(--light-color);
  font-size: 0.9rem;
}

/* Security Section */
.security-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032874, #2060e4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon i {
  font-size: 1.5rem;
  color: white;
}

.cert-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cert-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cert-card h6 {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Mobile App Section */
.mobile-mockup {
  text-align: center;
}

.phone-frame {
  display: inline-block;
  padding: 20px;
  background: linear-gradient(135deg, #032874, #2060e4);
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.phone-frame img {
  border-radius: 20px;
  max-width: 300px;
}

.mobile-feature {
  font-size: 1.1rem;
  color: #333;
}

.app-download-buttons .btn {
  min-width: 200px;
}

/* Support Section */
.support-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e9ecef;
  height: 100%;
}

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

.support-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032874, #2060e4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.support-icon i {
  font-size: 2rem;
  color: white;
}

.support-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.support-features li {
  padding: 0.5rem 0;
  color: var(--light-color);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.support-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #032874;
  font-weight: bold;
}

.support-stats {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.support-stats h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 576px) {

  .global-stats {
    margin-bottom: 1rem;
  }

  .global-stats .stat-item strong {
    font-size: 1rem;
  }

  .compliance-badges .badge {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }

  .hero-section {
    padding-top: 100px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon i {
    font-size: 1.2rem;
  }

  .hero-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 1rem;
  }

  .floating-card {
    display: none;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .testimonial-card {
    margin-bottom: 1rem;
  }

  .cta-features .row {
    text-align: center;
  }

  .cta-features .col-md-4 {
    margin-bottom: 0.5rem;
  }

  .success-stat {
    margin-bottom: 1rem;
  }

  .metric-card,
  .support-card {
    margin-bottom: 1.5rem;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .phone-frame {
    padding: 15px;
  }

  .phone-frame img {
    max-width: 250px;
  }

  .app-download-buttons .btn {
    width: 100%;
    min-width: auto;
  }

  .cert-card {
    margin-bottom: 1rem;
  }

  .support-stats h3 {
    font-size: 2rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {

  .hero-section {
    padding-top: 120px;
  }

  .display-4 {
    font-size: 2.2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.5rem 1.2rem;
  }

  .hero-section .btn {
    margin-bottom: 1rem;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 1.5rem;
  }

  .floating-card {
    display: none;
  }

  .success-stat {
    margin-bottom: 1rem;
  }

  .metric-card,
  .support-card {
    margin-bottom: 1.5rem;
  }

  .phone-frame img {
    max-width: 280px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {

  .feature-card {
    padding: 1.8rem;
  }

  /* .pricing-card.featured {
    transform: scale(1.02);
  } */

  .phone-frame img {
    max-width: 320px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .metric-card,
  .support-card {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1201px) {

  .metric-card,
  .support-card {
    padding: 2.5rem 2rem;
  }

  .phone-frame img {
    max-width: 350px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

  .feature-icon,
  .benefit-icon {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .floating-card,
  .back-to-top,
  .cta-form {
    display: none !important;
  }

  .hero-section {
    padding-top: 0;
  }

}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-card {
    animation: none;
  }
}

 /* Dark Mode Support */
/*@media (prefers-color-scheme: dark) {
  .success-stat {
    background: rgba(255, 255, 255, 0.05);
  }
} */