html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
  padding: 5rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0 2rem;
    min-height: auto;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* Step Numbers */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* Feature Icons */
.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* About Section */
.about-placeholder {
  background: linear-gradient(135deg, #e8f4fc 0%, #d4e6f1 100%);
  border-radius: 12px;
  padding: 4rem 2rem;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  color: #1a5276 !important;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #154360 0%, #2874a6 100%);
}

/* Form Styles */
.form-control:focus, .form-select:focus {
  border-color: #2e86c1;
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 193, 0.25);
}
