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;
}

/* Utility Classes */
.max-width-600 {
  max-width: 600px;
}

.icon-sm {
  height: 64px;
  width: auto;
}

.contact-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Form Styling */
.form-control:focus,
.form-select:focus {
  border-color: #258cfb;
  box-shadow: 0 0 0 0.2rem rgba(37, 140, 251, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

/* Footer Enhancement */
.footer {
  margin-top: auto;
  background-color: #f8f9fa;
}

/* Card Hover Effect */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Service Item Icon */
.service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Hero Section Enhancement */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 140, 251, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  font-style: italic;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #258cfb, transparent);
  border-radius: 2px;
}

/* Service Item Styling */
.service-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-item:hover {
  border-left-color: #258cfb;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-item h4 {
  color: #1a1a1a;
  font-weight: 600;
}

.service-item a {
  color: #258cfb;
  transition: color 0.2s ease;
}

.service-item a:hover {
  color: #0d6efd;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  border-color: #258cfb;
  transform: translateY(-2px);
}

.service-card i {
  color: #258cfb;
  font-size: 1.5rem;
}

/* Feature List */
.feature-list li {
  padding: 1rem 0;
  line-height: 1.6;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: "? ";
  color: #258cfb;
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Responsive Image Container */
.img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .img-container {
    margin-bottom: 0;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Button Styling Enhancement */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(13, 110, 253, 0.3);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 0.75rem 3rem;
}

/* Accessibility - Focus Indicators */
a:focus,
button:focus {
  outline: 2px solid #258cfb;
  outline-offset: 2px;
}

/* Utilities */
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.text-decoration-none:hover {
  text-decoration: none !important;
}