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;
}

/* Common Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-transform: uppercase;
}

    .section-title span {
        background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-padding {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

    .btn-primary:hover {
        background: var(--gradient-hover);
        transform: translateY(-2.5px);
        box-shadow: 0 8px 25px var(--boxshadow);
    }
.service-banner {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 0 0;
    padding: 0 1rem;
}

.service-wrapper {
    width: 100%;
    max-width: 550px;
    overflow: visible;
}

@media (min-width: 992px) {
    .service-banner {
        width: 150%;
        padding-left: 40px;
    }

    .service-wrapper {
        width: 95%;
    }
}

.service-img {
    width: 550px; /* or whatever fixed size looks right */
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-wrapper:hover .service-img {
    transform: scale(1.03);
}

.service-visual {
    position: relative;
    z-index: 2;
    animation: fadeUp .85s .12s ease both;
}