/**
 * Global UI polish — subtle refinements across pages.
 * Loads after responsive.css; overrides are intentionally light.
 */

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.65;
}

::selection {
    background-color: rgba(11, 74, 167, 0.2);
    color: #27282c;
}

img {
    vertical-align: middle;
}

/* Keyboard focus — visible but not harsh */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(11, 74, 167, 0.55);
    outline-offset: 3px;
}

/* Primary buttons */
.btn-one {
    border-radius: 3px;
}

.btn-one:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(11, 74, 167, 0.28);
}

.btn-one:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Header bar — slightly softer depth */
.header-upper-style1 .inner-container {
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
}

/* Highlight cards — gentle lift on hover */
.single-highlight-box .inner-content {
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.single-highlight-box:hover .inner-content {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}

/* Section titles — micro spacing for readability */
.sec-title .title {
    letter-spacing: 0.02em;
}
