/* Base Styles */
:root {
  --primary: #4a6bff;
  --secondary: #6c8aff;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  --gray: #6c757d;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.check-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.btn-primary:hover {
  background-color: #3a5bef;
  border-color: #3a5bef;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* Icon Styles */
.icon-lg {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
    text-align: center;
  }
}

/* Testimonials */

.col-md-6 {
  transition: all 0.3s ease;
}
.col-md-6:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.testimonial-card {
  transition: all 0.3s ease;
}

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

/* Contact Form */
#contact .card {
  border-radius: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .d-sm-flex .btn {
    width: auto;
  }
}

@keyframes slideDown {
  from {
    top: -60px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

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

.lazy-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lazy-section.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* AI Theme Styles */
.ai-circuit-overlay {
  background-image: radial-gradient(
      circle at center,
      rgba(46, 149, 255, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(to right, rgba(46, 149, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(46, 149, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  z-index: 1;
}

.text-gradient-primary {
  background: linear-gradient(90deg, #2e95ff 0%, #f542e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 2px solid rgba(46, 149, 255, 0.5);
  border-radius: 50%;
  animation: pulse 3s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

/* Update your existing particle styles */
.particle {
  position: absolute;
  background: radial-gradient(circle, #2e95ff 0%, rgba(46, 149, 255, 0) 70%),
    linear-gradient(to bottom right, #2e95ff, #f542e6);
  border-radius: 50%;
  animation: float linear infinite;
  filter: blur(1px);
}

@keyframes float {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-100vh) rotate(360deg);
  }
}

/* Industries Section Styles */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-lg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-primary-light {
  background-color: rgba(46, 149, 255, 0.1);
}

.bg-primary-soft {
  background-color: rgba(46, 149, 255, 0.15);
}
