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;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 24px;
}

.service-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    text-align: center;
    color: #222;
    transition: transform .20s ease, box-shadow .20s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 40px rgba(0,0,0,.12);
    }

.img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-icon {
    font-size: 34px;
    color: var(--primary, #0b84ff);
    margin-bottom: 10px;
}

.service-card h3 {
    font-weight: bold;
    margin-bottom: 6px;
}

.service-card p {
    font-size: .9rem;
    color: #666;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 14px;
    margin-top: 20px;
}

    .gallery img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }
