/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.85;
}

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
  color: #0d6efd !important;
}
.navbar-nav .nav-link.active {
  font-weight: bold;
  color: #0d6efd !important;
}

/* Hero Section */
.hero {
  background: url("https://via.placeholder.com/1600x600?text=InventOne+Hero") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.hero .btn {
  font-weight: 600;
}

/* Highlights Cards */
.highlights .card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.highlights .card:hover {
  transform: translateY(-8px);
}

/* Testimonials */
.testimonials blockquote {
  font-size: 1.25rem;
  font-style: italic;
}

/* Stats Section */
.stats h3 {
  font-weight: bold;
}
.stats p {
  margin: 0;
  font-size: 1rem;
}

/* Team Section */
.team .card {
  border: none;
  border-radius: 16px;
  transition: transform 0.3s;
}
.team .card:hover {
  transform: translateY(-6px);
}

/* Contact */
.contact form .form-control {
  border-radius: 10px;
  box-shadow: none;
}
.contact form button {
  border-radius: 8px;
  padding: 10px 20px;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
footer a {
  text-decoration: underline;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dark Mode */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}
body.dark-mode .navbar,
body.dark-mode .bg-light {
  background-color: #1e1e1e !important;
}
body.dark-mode .card {
  background-color: #2a2a2a;
  color: #e0e0e0;
}
body.dark-mode footer {
  background-color: #1e1e1e !important;
}
