/* ── ola.css → css/services/ola.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── CARD ── */
.ola-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.ola-card::before { content: ''; display: block; height: 4px; background: var(--G); }

.ola-card-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.6rem; background: var(--G);
}
.ola-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.ola-card-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.ola-card-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .05rem; }

/* ── CARD BODY ── */
.ola-card-body { padding: 1.5rem 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }

/* info block */
.ola-info-block {
    display: flex; align-items: flex-start; gap: .6rem;
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: var(--r2); padding: .9rem 1.1rem;
    font-size: .86rem; color: #1e40af; line-height: 1.7;
}
.ola-info-block i { font-size: .88rem; flex-shrink: 0; margin-top: .15rem; }
.ola-info-block p { margin: 0; }

/* portal row */
.ola-portal-wrap {
    display: flex; align-items: center; gap: 1rem;
    background: var(--xpale); border: 1.5px solid var(--pale);
    border-left: 5px solid var(--G);
    border-radius: var(--r2); padding: 1.1rem 1.3rem;
}
.ola-portal-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: var(--G); color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: 0 3px 10px rgba(30,58,138,.2);
}
.ola-portal-content { flex: 1; min-width: 0; }
.ola-portal-label {
    font-size: .72rem; font-weight: 700; color: var(--t3);
    text-transform: uppercase; letter-spacing: .8px; margin-bottom: .18rem;
}
.ola-portal-url {
    font-size: .88rem; font-weight: 600; color: var(--blue);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.ola-portal-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--G); color: var(--white);
    border-radius: 9px; padding: .6rem 1.4rem;
    font-size: .84rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 3px 10px rgba(30,58,138,.2);
    white-space: nowrap; flex-shrink: 0;
}
.ola-portal-btn:hover { opacity: .88; transform: translateY(-2px); color: var(--white); }
.ola-portal-btn:focus-visible { outline: 3px solid var(--mid); outline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ola-card-body   { padding: 1.1rem; }
    .ola-portal-wrap { flex-wrap: wrap; gap: .8rem; }
    .ola-portal-btn  { width: 100%; justify-content: center; }
}
@media print {
    .ola-card { box-shadow: none; border: 1px solid #ccc; }
    .ola-portal-btn { background: none; color: var(--blue); box-shadow: none; border: 1px solid var(--blue); }
}