/* Custom styles for Quantra Tech  website */

/* General styles */
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Hero section styling */
.hero-section {
  background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
  padding: 6rem 0;
  margin-bottom: 2rem;
}

/* Card hover effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom button styles */
.btn-primary {
  background-color: #4b6cb7;
  border-color: #4b6cb7;
}

.btn-primary:hover {
  background-color: #3f5ca0;
  border-color: #3f5ca0;
}

.btn-outline-primary {
  color: #4b6cb7;
  border-color: #4b6cb7;
}

.btn-outline-primary:hover {
  background-color: #4b6cb7;
  border-color: #4b6cb7;
}

/* Text accent color */
.text-primary {
  color: #4b6cb7 !important;
}

/* Footer link hover */
footer a:hover {
  color: #ccc !important;
  text-decoration: none;
}

/* App screenshot placeholder */
.app-screenshot {
  overflow: hidden;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }

  h1.display-4 {
    font-size: 2.5rem;
  }
}
