/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9faff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar-brand span {
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: #333;
}

.nav-link.active, .nav-link:hover {
  color: #2a6fdb !important;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  max-width: 700px;
  margin: auto;
  background-color: rgba(0,0,0,0.55);
  padding: 2rem;
  border-radius: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 18px rgba(42, 111, 219, 0.3);
}

.card-img-top {
  border-radius: 0.5rem 0.5rem 0 0;
}

/* Buttons */
.btn-primary {
  background-color: #2a6fdb;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1d4fbf;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

footer a {
  color: #bbb;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #2a6fdb;
}

/* Contact Form */
form .form-label {
  font-weight: 600;
}

.form-control:focus {
  border-color: #2a6fdb;
  box-shadow: 0 0 8px rgba(42,111,219,0.3);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .hero-section {
    height: 35vh !important;
  }

  .hero-overlay {
    padding: 1rem;
  }
}
