body {
  background-color: #f7f9fb;
  color: #222;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar {
  background: linear-gradient(90deg, #1a237e 0%, #00838f 100%);
  transition: all 0.3s ease;
}

.navbar-brand {
  letter-spacing: 2px;
}

.btn-primary, .btn-outline-primary {
  background: linear-gradient(90deg, #00838f 0%, #1a237e 100%);
  border: none;
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px rgba(26,35,126,0.08);
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #1a237e 0%, #00838f 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,131,143,0.15);
}

.btn-outline-primary {
  background: #fff;
  color: #00838f;
  border: 2px solid #00838f;
  box-shadow: 0 2px 8px rgba(0,131,143,0.05);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: linear-gradient(90deg, #00838f 0%, #1a237e 100%);
  color: #fff;
  border: 2px solid #1a237e;
  box-shadow: 0 4px 16px rgba(26,35,126,0.12);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 0.85rem 2.5rem;
}

.card {
  border: none;
  border-radius: 1rem;
}

.card-title {
  color: #1a237e;
}

.feature-box {
  border: 1px solid #e0e0e0;
  background: #fff;
  transition: box-shadow 0.2s;
}
.feature-box:hover {
  box-shadow: 0 4px 24px rgba(0,131,143,0.08);
}

section {
  margin-bottom: 0;
}

footer {
  background: #1a237e;
  color: #fff;
}

footer a {
  color: #b2ebf2;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #00838f;
  background-color: #e0f7fa;
}

h2.fw-bold {
  color: #00838f;
}

.carousel .card {
  border-radius: 1rem;
  background: #f7f9fb;
}

input, textarea {
  border-radius: 0.5rem !important;
}

/* Add floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-image {
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* Sticky Navbar Styles */
.navbar.sticky-top {
  background-color: rgba(33, 37, 41, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} 