
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation */
  .navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: #333 !important;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
  }
  
  .brand-text {
    color: #333;
    font-weight: 700;
  }
  
  .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #4F46E5 !important;
  }
  
  .nav-link.active {
    color: #4F46E5 !important;
    font-weight: 600;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  }

  .btn-outline-primary {
    border: 2px solid #4F46E5;
    color: #4F46E5;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline-primary:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
    border-color: #7C3AED;
  }

  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 70px 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .gradient-text {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
  }
  
  .hero-buttons {
    margin-top: 3rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
  }
  
  .btn-outline-secondary {
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
  }
  
  .hero-image {
    position: relative;
    margin-top: 2rem;
  }
  
  .hero-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  
  /* Hero Stats */
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  /* Services Section */
  .services-section {
    padding: 100px 0;
    background: #fff;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4F46E5;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
  }
  
  .service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  .service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .service-features li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
  }
  
  .service-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .service-link:hover {
    color: #7C3AED;
    text-decoration: none;
  }
  
  /* Stats Section */
  .stats-section {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    padding: 80px 0;
  }
  
  .stat-card {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
  }
  
  .stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .stat-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-stars {
    color: #fbbf24;
  }
  
  .testimonial-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
  }
  
  .author-info h6 {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
  }
  
  .author-info small {
    color: #64748b;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    padding: 100px 0;
    color: white;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .btn-light {
    background: white;
    color: #4F46E5;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  }
  
  /* Footer */
  .footer {
    background: #1e293b !important;
  }
  
  .footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
  }
  
  .footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .cta-title {
      font-size: 2rem;
    }
    
    .service-card {
      padding: 2rem;
    }
    
    .hero-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .stats-section .stat-number {
      font-size: 2.5rem;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  }
  
  /* Page-specific styles */
  .page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 80px;
    text-align: center;
  }
  
  .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  .page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .content-section {
    padding: 80px 0;
  }
  
  .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .solution-card img {
    height: 300px;
  }
  
  .blog-card-body {
    padding: 2rem;
  }
  
  .blog-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .blog-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-control:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.1);
  }
  
  .contact-info {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
  }
  
  /* Pricing styles */
  .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .pricing-card.featured {
    border-color: #4F46E5;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
  }
  
  .price {
    font-size: 3rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 0.5rem;
  }
  
  .price-period {
    color: #64748b;
    font-size: 1rem;
  }
  
  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .pricing-features li {
    padding: 0.75rem 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .featured-badge {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .side-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
  }
  
  .side-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4F46E5;
  }